/* ==========================================================================
   GREEN GYEOL - LUXURY PROFESSIONAL DESIGN
   ========================================================================== */

/* === CSS VARIABLES - MINIMALIST LUXURY === */
:root {
    /* Refined Green Palette */
    --green-primary: #6B8E6F;
    --green-dark: #526952;
    --green-light: #95B097;
    --green-lighter: #C8D9C9;
    --green-pale: #F0F5F1;
    --green-accent: #8FAD91;

    /* Luxurious Neutrals */
    --cream: #FDFCFB;
    --cream-dark: #F8F7F5;
    --beige: #EFEDE9;
    --ivory: #FFFFF8;
    --gray-50: #FCFCFC;
    --gray-100: #F7F7F7;
    --gray-200: #ECECEC;
    --gray-300: #D8D8D8;
    --gray-400: #B0B0B0;
    --gray-500: #7C7C7C;
    --gray-600: #5A5A5A;
    --gray-700: #3A3A3A;
    --gray-800: #2A2A2A;
    --gray-900: #1A1A1A;
    --black: #0D0D0D;
    --white: #FFFFFF;

    /* Typography */
    --font-display: 'Bodoni Moda', serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Enhanced Spacing for Luxury */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-8: 3rem;
    --space-10: 4rem;
    --space-12: 6rem;
    --space-16: 10rem;
    --space-20: 12rem;

    /* Layout */
    --container-narrow: 720px;
    --container-medium: 960px;
    --container: 1140px;
    --container-wide: 1320px;

    /* Subtle Luxury Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.1);
    --shadow-green: 0 8px 32px rgba(107, 142, 111, 0.12);
    --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.04);

    /* Refined Transitions */
    --transition-base: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-spring: all 0.7s cubic-bezier(0.34, 1.35, 0.64, 1);
    --transition-elegant: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* === TYPOGRAPHY - MINIMALIST LUXURY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
}

.lead-text {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.9;
    color: var(--gray-700);
    letter-spacing: 0.01em;
}

/* === CONTAINERS === */
.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--space-5);
}

.container-medium {
    max-width: var(--container-medium);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--space-8);
}

/* === NAVIGATION - MINIMALIST LUXURY === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 251, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 142, 111, 0.08);
    transition: var(--transition-elegant);
}

.nav-container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: var(--space-6) var(--space-8);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 300;
    color: var(--gray-900);
    letter-spacing: 0.08em;
    transition: var(--transition-elegant);
}

.nav-brand:hover {
    color: var(--green-primary);
}

.nav-links {
    display: flex;
    gap: var(--space-10);
    align-items: center;
}

.nav-links a {
    font-size: 0.813rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-600);
    transition: var(--transition-elegant);
    position: relative;
    padding: var(--space-2) 0;
}

.nav-links a:hover {
    color: var(--gray-900);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--green-primary);
    transition: var(--transition-elegant);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: var(--space-3) var(--space-6);
    background: var(--gray-900);
    color: var(--white) !important;
    border-radius: 0;
    border: 1px solid var(--gray-900);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--white);
    color: var(--gray-900) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: var(--space-2);
    margin-left: var(--space-4);
    padding-left: var(--space-4);
    border-left: 1px solid var(--gray-300);
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--gray-300);
    color: var(--gray-600);
    padding: var(--space-2) var(--space-3);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
    border-radius: 2px;
    font-family: var(--font-body);
}

.lang-btn:hover {
    border-color: var(--green-primary);
    color: var(--green-primary);
}

.lang-btn.active {
    background: var(--green-primary);
    border-color: var(--green-primary);
    color: var(--white);
}

/* === SECTION HEADERS - MINIMALIST LUXURY === */
.section-header {
    margin-bottom: var(--space-12);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.688rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: var(--space-6);
    position: relative;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -var(--space-3);
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--green-primary);
    opacity: 0.4;
}

.section-header.centered .section-label::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-label.light {
    color: var(--gray-300);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-5);
    line-height: 1.2;
}

.title-underline {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, var(--gray-900) 0%, var(--gray-300) 100%);
    margin-top: var(--space-6);
    opacity: 0.3;
}

.title-underline.centered {
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    line-height: 1.8;
}

.section-description.light {
    color: rgba(255, 255, 255, 0.8);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-5) var(--space-10);
    font-family: var(--font-body);
    font-size: 0.813rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-elegant);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gray-900);
    color: var(--white);
    border: 1px solid var(--gray-900);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-900);
    border: 1px solid var(--gray-900);
}

.btn-secondary::before {
    background: var(--gray-900);
}

.btn-secondary:hover {
    background: var(--gray-900);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn.large {
    padding: var(--space-5) var(--space-10);
    font-size: 1.05rem;
}

.btn-arrow {
    font-size: 1.5rem;
    transition: var(--transition-base);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--green-pale) 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(250, 249, 247, 0.4),
        rgba(250, 249, 247, 0.8)
    );
}

.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: var(--space-6);
    padding-top: var(--space-16);
}

.hero-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--green-primary);
}

.label-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--green-dark);
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-5);
    line-height: 1.1;
}

.title-line {
    display: block;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-style: italic;
    font-weight: 400;
    color: var(--green-primary);
    margin-bottom: var(--space-6);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: var(--space-10);
    line-height: 1.8;
}

.hero-description strong {
    color: var(--green-dark);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: var(--space-5);
    justify-content: center;
    margin-bottom: var(--space-12);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-8);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--green-primary);
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-500);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gray-300), transparent);
}

.scroll-down {
    position: absolute;
    bottom: var(--space-10);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    color: var(--gray-400);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gray-400), transparent);
    animation: scrollAnimation 2s ease-in-out infinite;
}

@keyframes scrollAnimation {
    0%, 100% {
        opacity: 0;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === FEATURED QUOTE - MINIMALIST LUXURY === */
.featured-quote {
    padding: var(--space-20) 0;
    background: var(--white);
}

.featured-quote blockquote {
    position: relative;
    text-align: center;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 10rem;
    font-weight: 400;
    color: var(--green-pale);
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-style: italic;
    font-weight: 400;
    color: var(--gray-800);
    max-width: 800px;
    margin: 0 auto var(--space-8);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.quote-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--green-dark);
}

.author-title {
    font-size: 0.85rem;
    color: var(--gray-500);
    letter-spacing: 1px;
}

/* === HK TRIP SECTION === */
.hk-trip-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gray-900);
    padding: var(--space-10) 0;
}

.trip-video-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trip-video {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    opacity: 0.6;
}

.trip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.4),
        rgba(10, 10, 10, 0.7)
    );
}

.trip-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: var(--space-6);
}

.trip-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-6);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    margin-bottom: var(--space-6);
}

.badge-flag {
    font-size: 1.5rem;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}

.trip-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: var(--space-5);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.trip-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* === ABOUT SECTION - MINIMALIST LUXURY === */
.about-section {
    padding: var(--space-20) 0;
    background: var(--ivory);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.about-images {
    position: relative;
}

.image-main {
    position: relative;
    z-index: 2;
}

.image-main img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
}

.image-frame {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: 20px;
    left: 20px;
    border: 2px solid var(--green-primary);
    z-index: -1;
}

.image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: var(--green-pale);
    z-index: 1;
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    right: -40px;
    z-index: 3;
    background: var(--white);
    padding: var(--space-6);
    box-shadow: var(--shadow-xl);
}

.badge-content {
    text-align: center;
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    color: var(--green-primary);
    margin-bottom: var(--space-2);
}

.badge-text {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gray-600);
    line-height: 1.4;
}

.about-text {
    margin-bottom: var(--space-8);
}

.about-text p {
    margin-bottom: var(--space-5);
    line-height: 1.9;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.expertise-item {
    display: flex;
    gap: var(--space-5);
    align-items: flex-start;
}

.expertise-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-pale);
    color: var(--green-primary);
    border-radius: 50%;
}

.expertise-icon svg {
    width: 16px;
    height: 16px;
}

.expertise-text h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-2);
    color: var(--gray-900);
}

.expertise-text p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* === PORTFOLIO SECTION - MINIMALIST LUXURY === */
.portfolio-section {
    padding: var(--space-20) 0;
    background: var(--cream);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-10);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    background: var(--white);
    transition: var(--transition-elegant);
    border: 1px solid var(--gray-200);
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.portfolio-image-container {
    position: relative;
    overflow: hidden;
}

.portfolio-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 142, 111, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-elegant);
    pointer-events: none;
}

.portfolio-item:hover .portfolio-image-container::after {
    opacity: 1;
}

.portfolio-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.comparison-side {
    position: relative;
}

.comparison-side img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.portfolio-item:hover .comparison-side img {
    transform: scale(1.03);
}

.comparison-label {
    position: absolute;
    bottom: var(--space-2);
    left: var(--space-2);
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.85);
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    border-radius: 3px;
}

.comparison-side.before .comparison-label {
    color: var(--gray-500);
}

.comparison-side.after .comparison-label {
    color: var(--green-primary);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-6);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-text {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* === TECHNIQUE SHOWCASE - MINIMALIST LUXURY === */
.technique-showcase {
    padding: var(--space-20) 0;
    background: var(--ivory);
}

.technique-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.technique-visual {
    position: relative;
}

.technique-image-wrapper {
    position: relative;
    z-index: 2;
}

.technique-image-wrapper img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.technique-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-8);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.overlay-content h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    line-height: 1.2;
}

.visual-accent {
    position: absolute;
    top: 30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: var(--green-pale);
    z-index: 1;
}

.technique-description {
    margin-bottom: var(--space-8);
}

.technique-description p {
    margin-bottom: var(--space-5);
    line-height: 1.9;
}

.technique-features {
    display: grid;
    gap: var(--space-5);
}

.feature-card {
    padding: var(--space-6);
    background: var(--white);
    border-left: 3px solid var(--green-primary);
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--green-light);
    margin-bottom: var(--space-3);
}

.feature-card h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-2);
    color: var(--gray-900);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Continue in next message... */

/* === PROCESS SECTION - MINIMALIST LUXURY === */
.process-section {
    padding: var(--space-20) 0;
    background: var(--white);
}

.process-timeline {
    position: relative;
    margin-top: var(--space-12);
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--green-lighter), transparent);
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    margin-bottom: var(--space-16);
}

.step-number {
    position: absolute;
    left: 50%;
    top: var(--space-8);
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 3px solid var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--green-primary);
    z-index: 10;
}

.step-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
}

.process-step.reverse .step-content {
    direction: rtl;
}

.process-step.reverse .step-info {
    direction: ltr;
}

.step-image {
    position: relative;
}

.step-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
    box-shadow: var(--shadow-lg);
    background: var(--cream);
}

.image-border {
    position: absolute;
    top: -15px;
    right: -15px;
    bottom: 15px;
    left: 15px;
    border: 2px solid var(--green-lighter);
    z-index: -1;
}

.step-info h3 {
    font-size: 2rem;
    margin-bottom: var(--space-4);
}

.step-info > p {
    margin-bottom: var(--space-5);
    line-height: 1.8;
}

.step-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.step-details li {
    padding-left: var(--space-5);
    position: relative;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.step-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-weight: 600;
}

/* === IDEAL CLIENTS - MINIMALIST LUXURY === */
.ideal-clients {
    padding: var(--space-20) 0;
    background: var(--cream);
}

.clients-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-8);
}

.clients-card {
    padding: var(--space-10);
    background: var(--white);
    border-top: 4px solid;
    box-shadow: var(--shadow-md);
}

.clients-card.recommended {
    border-color: var(--green-primary);
}

.clients-card.not-recommended {
    border-color: var(--gray-300);
}

.card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    border-radius: 50%;
}

.recommended .card-icon {
    background: var(--green-pale);
    color: var(--green-primary);
}

.not-recommended .card-icon {
    background: var(--gray-100);
    color: var(--gray-400);
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.clients-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-6);
}

.clients-list {
    list-style: none;
}

.clients-list li {
    padding: var(--space-4) 0;
    padding-left: var(--space-6);
    border-bottom: 1px solid var(--gray-100);
    position: relative;
    line-height: 1.7;
}

.clients-list li:last-child {
    border-bottom: none;
}

.clients-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-weight: 600;
}

/* To be continued... */

/* === SCHEDULE SECTION - MINIMALIST LUXURY === */
.schedule-section {
    position: relative;
    padding: var(--space-20) 0;
    background: var(--gray-900);
    color: var(--white);
    overflow: hidden;
}

.schedule-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
    opacity: 0.9;
}

.schedule-content {
    position: relative;
    z-index: 2;
}

.schedule-date {
    text-align: center;
    margin-bottom: var(--space-10);
}

.date-large {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.date-year {
    font-size: 1.5rem;
    color: var(--green-lighter);
    letter-spacing: 4px;
}

.schedule-details {
    max-width: 700px;
    margin: 0 auto var(--space-10);
}

.detail-row {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-6) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-2);
    color: var(--white);
}

.detail-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.schedule-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    padding: var(--space-6);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    max-width: 700px;
    margin: 0 auto;
}

.alert-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.schedule-alert p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* === PRICING SECTION - MINIMALIST LUXURY === */
.pricing-section {
    padding: var(--space-20) 0;
    background: var(--white);
}

.pricing-card {
    background: var(--white);
    padding: var(--space-10);
    box-shadow: var(--shadow-xl);
    border-top: 4px solid var(--green-primary);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-8);
    border-bottom: 2px solid var(--green-lighter);
    margin-bottom: var(--space-8);
}

.pricing-header h3 {
    font-size: 2rem;
}

.price-tag {
    text-align: right;
}

.currency {
    font-size: 1.25rem;
    color: var(--gray-500);
    margin-right: var(--space-2);
}

.amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--green-primary);
}

.pricing-includes {
    margin-bottom: var(--space-8);
}

.pricing-includes h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-5);
    color: var(--gray-800);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-includes ul {
    list-style: none;
    display: grid;
    gap: var(--space-4);
}

.pricing-includes li {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-pale);
    color: var(--green-primary);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
}

.pricing-includes li span:last-child {
    line-height: 1.7;
}

.pricing-footer {
    padding-top: var(--space-6);
    border-top: 1px solid var(--gray-200);
}

.footer-note {
    display: grid;
    gap: var(--space-3);
}

.footer-note p {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.footer-note strong {
    color: var(--gray-800);
}

/* === FAQ SECTION - MINIMALIST LUXURY === */
.faq-section {
    padding: var(--space-20) 0;
    background: var(--ivory);
}

.faq-list {
    margin-top: var(--space-10);
}

.faq-item {
    background: var(--cream-dark);
    margin-bottom: var(--space-5);
    border-left: 3px solid transparent;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-left-color: var(--green-primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6);
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 500;
}

.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--green-primary);
    border: 2px solid var(--green-lighter);
    border-radius: 50%;
    transition: var(--transition-base);
}

.faq-item:hover .faq-toggle {
    background: var(--green-pale);
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 var(--space-6) var(--space-6);
}

.faq-answer p {
    line-height: 1.9;
    color: var(--gray-600);
}

/* === BOOKING SECTION - MINIMALIST LUXURY === */
.booking-section {
    position: relative;
    padding: var(--space-20) 0;
    background: var(--gray-900);
    overflow: hidden;
}

.booking-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    opacity: 0.95;
}

.booking-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.98);
    padding: var(--space-12);
    box-shadow: var(--shadow-xl);
}

.booking-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
    margin: var(--space-10) 0;
    flex-wrap: wrap;
}

.booking-step {
    text-align: center;
    flex: 0 0 auto;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: var(--green-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    margin: 0 auto var(--space-4);
    box-shadow: var(--shadow-green);
}

.booking-step h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-2);
    color: var(--gray-900);
}

.booking-step p {
    font-size: 0.9rem;
    color: var(--gray-600);
    max-width: 120px;
}

.step-arrow {
    color: var(--gray-300);
    font-size: 2rem;
}

.booking-cta {
    text-align: center;
}

.whatsapp-qr-section {
    margin-bottom: var(--space-8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-5);
}

.qr-code-wrapper {
    background: var(--white);
    padding: var(--space-6);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 300px;
}

.whatsapp-qr {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.qr-instruction {
    font-size: 1rem;
    color: var(--gray-700);
    max-width: 400px;
    text-align: center;
    line-height: 1.6;
}

/* === FOOTER === */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: var(--space-12) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-10);
    padding-bottom: var(--space-10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-8);
}

.footer-brand h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: var(--space-3);
}

.footer-brand p {
    margin-bottom: var(--space-2);
    font-size: 0.95rem;
}

.footer-tagline {
    color: var(--green-light);
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
}

.footer-section h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--space-3);
}

.footer-section a {
    color: var(--gray-400);
    transition: var(--transition-base);
}

.footer-section a:hover {
    color: var(--green-light);
    padding-left: var(--space-2);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: var(--space-2);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .nav-links {
        gap: var(--space-5);
    }

    .about-grid,
    .technique-grid,
    .step-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .floating-badge {
        right: 20px;
    }

    .timeline-line {
        display: none;
    }

    .step-number {
        position: static;
        margin: 0 auto var(--space-5);
        transform: none;
    }

    .process-step.reverse .step-content {
        direction: ltr;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .pricing-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }

    .price-tag {
        text-align: left;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --space-8: 2rem;
        --space-10: 3rem;
        --space-12: 4rem;
        --space-16: 5rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        min-height: 100svh;
    }

    .hk-trip-section {
        min-height: 80vh;
    }

    .trip-video {
        width: 100%;
        height: auto;
    }

    .trip-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .trip-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-5);
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .booking-steps {
        flex-direction: column;
        gap: var(--space-4);
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container-wide,
    .container,
    .container-medium {
        padding: 0 var(--space-4);
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .image-frame,
    .image-border,
    .visual-accent,
    .image-accent {
        display: none;
    }

    .floating-badge {
        position: static;
        margin-top: var(--space-6);
    }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === PRINT STYLES === */
@media print {
    .nav,
    .scroll-down,
    .booking-section,
    .footer {
        display: none;
    }

    body {
        background: white;
    }
}
