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

:root {
    --plum-deep: #5C2D4E;
    --plum: #7B3F5E;
    --plum-mid: #9B5A7A;
    --plum-light: #C4879F;
    --plum-pale: #F2E4E9;
    --plum-ghost: #FAF3F6;
    --amber: #D4943A;
    --amber-light: #E8A84C;
    --amber-pale: #FDF3E0;
    --cream: #FDFBF9;
    --white: #FFFFFF;
    --text-dark: #1A1418;
    --text-mid: #4A3F44;
    --text-light: #8A7880;
    --text-muted: #B8A8AE;
    --line: #E8DDD0;
    --line-light: #F2EBE8;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 249, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
    border-color: var(--line);
    box-shadow: 0 1px 20px rgba(92, 45, 78, 0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-mark {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--plum);
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--plum);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--plum);
}

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

.nav-link--accent {
    color: var(--plum);
    border: 1px solid var(--plum-light);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.nav-link--accent::after {
    display: none;
}

.nav-link--accent:hover {
    background: var(--plum);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-dark);
    transition: transform var(--transition), opacity var(--transition);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px var(--space-lg) var(--space-2xl);
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.hero-bg-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--line), transparent);
    transform: translateX(-50%);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
}

.hero-headline-accent {
    color: var(--plum);
    font-style: italic;
    font-weight: 400;
}

.hero-subhead {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-mid);
    max-width: 480px;
    margin-bottom: var(--space-lg);
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: var(--plum);
    color: var(--white);
    border-color: var(--plum);
}

.btn--primary:hover {
    background: var(--plum-deep);
    border-color: var(--plum-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(92, 45, 78, 0.2);
}

.btn--ghost {
    background: transparent;
    color: var(--text-mid);
    border-color: var(--line);
}

.btn--ghost:hover {
    border-color: var(--plum-light);
    color: var(--plum);
    background: var(--plum-ghost);
}

.btn--large {
    padding: 16px 32px;
    font-size: 0.875rem;
}

/* ===== HERO RIGHT ===== */
.hero-right {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 600/760;
    background: var(--plum-pale);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(123, 63, 94, 0.15);
    pointer-events: none;
}

.hero-stat {
    margin-top: var(--space-md);
    padding-left: var(--space-md);
    border-left: 1px solid var(--line);
}

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--plum);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-stat-value {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-top: 2px;
}

.hero-scroll-hint {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--white);
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-mid);
    letter-spacing: 0.02em;
    flex: 1;
}

.trust-item svg {
    color: var(--amber);
    flex-shrink: 0;
}

.trust-divider {
    width: 1px;
    height: 24px;
    background: var(--line);
    flex-shrink: 0;
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
}

.accent-underline {
    position: relative;
    color: var(--plum);
    font-style: italic;
    font-weight: 400;
}

.accent-underline::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--amber-light);
}

/* ===== SERVICES ===== */
.services {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.services-header {
    margin-bottom: var(--space-xl);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line-light);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-card {
    background: var(--white);
    padding: var(--space-xl) var(--space-lg);
    transition: background var(--transition);
}

.service-card:hover {
    background: var(--plum-ghost);
}

.service-card-num {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--amber);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.service-card p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-mid);
}

/* ===== ABOUT ===== */
.about {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

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

.about-image-col {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 560/680;
    background: var(--plum-pale);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--amber-light);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about-content-col {
    padding: var(--space-lg) 0;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: var(--space-md);
}

.about-values {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.value-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-sm);
    align-items: start;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--line-light);
}

.value-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.value-item-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum);
    padding-top: 4px;
}

.value-item-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-mid);
}

/* ===== WHY US ===== */
.why-us {
    padding: var(--space-3xl) 0;
    background: var(--plum-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(232, 168, 76, 0.1);
    pointer-events: none;
}

.why-us .section-eyebrow {
    color: var(--amber-light);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .accent-underline {
    color: var(--amber-light);
}

.why-us .accent-underline::after {
    background: var(--amber-light);
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.why-item {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: var(--space-md);
}

.why-item-marker {
    color: var(--amber);
    font-size: 0.75rem;
    padding-top: 6px;
}

.why-item-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.why-item-desc {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
}

.why-us-visual {
    position: relative;
}

.why-us-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 520/640;
    background: rgba(255, 255, 255, 0.05);
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.why-us-quote {
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    border-left: 2px solid var(--amber);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.why-us-quote p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* ===== LOCATION ===== */
.location {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.location-details {
    margin: var(--space-lg) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.location-detail svg {
    color: var(--plum);
    flex-shrink: 0;
    margin-top: 2px;
}

.location-detail-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.location-detail-value {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-mid);
}

.location-detail-value a {
    color: var(--plum);
    transition: color var(--transition);
}

.location-detail-value a:hover {
    color: var(--plum-deep);
}

.location-cta {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.location-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1/1;
    min-height: 400px;
}

.location-map-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.map-placeholder {
    position: absolute;
    inset: var(--space-md);
    background: rgba(253, 251, 249, 0.95);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    border: 1px solid var(--line);
}

.map-placeholder svg {
    color: var(--plum);
}

.map-placeholder p {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.map-link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--plum);
    border-bottom: 1px solid var(--plum-light);
    padding-bottom: 2px;
    transition: border-color var(--transition);
}

.map-link:hover {
    border-color: var(--plum);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-logo-mark {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--amber-light);
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--amber-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9375rem;
}

.footer-contact a {
    color: var(--amber-light);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--amber);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== MOBILE MENU ===== */
.nav-links.open {
    display: flex;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .hero-right {
        max-width: 500px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-image-col {
        max-width: 480px;
    }

    .why-us-layout {
        grid-template-columns: 1fr;
    }

    .why-us-visual {
        max-width: 480px;
    }

    .location-layout {
        grid-template-columns: 1fr;
    }

    .location-map {
        aspect-ratio: 16/9;
        min-height: 300px;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 251, 249, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        border-bottom: 1px solid var(--line);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link--accent {
        display: inline-block;
        text-align: center;
        width: 100%;
    }

    .hero {
        padding: 100px var(--space-md) var(--space-xl);
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }

    .hero-image-frame {
        aspect-ratio: 4/5;
    }

    .trust-bar-inner {
        flex-direction: column;
        gap: var(--space-sm);
        padding: var(--space-lg);
    }

    .trust-divider {
        display: none;
    }

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

    .service-card {
        padding: var(--space-lg);
    }

    .about-image-accent {
        display: none;
    }

    .why-us-quote p {
        font-size: 1.1rem;
    }

    .footer-top {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .footer-contact {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .hero-scroll-hint {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

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

    .location-cta {
        flex-direction: column;
    }

    .location-cta .btn {
        width: 100%;
    }
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
