/* ============================================
   SHE SAVES SAVVY — Landing Page
   Soft Contrast palette: #EDE8E9 #D6CCC2 #F5EBE0 #E3D5CA #D5BDAF
   with warm taupe accents for contrast.
   ============================================ */

/* --- Brand Tokens --- */
:root {
    --green-dark:    #5B4942;
    --green-mid:     #A78F83;
    --green-light:   #D5BDAF;
    --mauve:         #E3D5CA;
    --gold:          #D5BDAF;
    --gold-light:    #E9D8CD;
    --cream:         #F5EBE0;
    --cream-deep:    #EDE8E9;
    --white:         #FFFFFF;
    --charcoal:      #342A26;
    --gray-soft:     #71635B;
    --gray-light:    #F8F4EF;
    --taupe-dark:    #4A3933;
    --taupe-mid:     #7B665B;
    --taupe-soft:    #B79F92;

    --font-display:  'Playfair Display', Georgia, serif;
    --font-script:   'Dancing Script', cursive;
    --font-body:     'DM Sans', system-ui, sans-serif;

    --radius-sm:     8px;
    --radius-md:     16px;
    --radius-lg:     24px;
    --radius-xl:     36px;
    --radius-full:   9999px;

    --shadow-card:       0 2px 10px rgba(91,73,66,0.06), 0 12px 32px rgba(91,73,66,0.08);
    --shadow-card-hover: 0 6px 18px rgba(91,73,66,0.10), 0 20px 44px rgba(91,73,66,0.14);
    --shadow-btn-gold:   0 6px 20px rgba(213,189,175,0.42);
    --shadow-btn-green:  0 6px 20px rgba(74,57,51,0.24);

    --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* --- Layout Utilities --- */
.section-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 14px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition:
        transform 0.28s var(--ease-spring),
        box-shadow 0.28s var(--ease-smooth),
        background 0.22s var(--ease-smooth),
        color 0.22s var(--ease-smooth);
    position: relative;
}

.btn:focus-visible {
    outline: 2px solid var(--taupe-dark);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--taupe-dark);
    color: var(--white);
    box-shadow: var(--shadow-btn-green);
}
.btn-primary:hover {
    background: #5B4942;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(74,57,51,0.30);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
    background: rgba(245,235,224,0.38);
    color: var(--taupe-dark);
    border: 1.5px solid rgba(91,73,66,0.16);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(245,235,224,0.56);
    border-color: rgba(91,73,66,0.30);
    transform: translateY(-2px);
}
.btn-ghost:active { transform: translateY(0); }

.btn-gold {
    background: var(--gold);
    color: var(--taupe-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 16px 36px;
    box-shadow: var(--shadow-btn-gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(213,189,175,0.50);
}
.btn-gold:active { transform: translateY(-1px); }

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 22px 28px;
    transition:
        background 0.32s var(--ease-smooth),
        padding 0.32s var(--ease-smooth),
        box-shadow 0.32s var(--ease-smooth);
}

.site-nav.nav-scrolled {
    background: rgba(237,232,233,0.94);
    padding: 14px 28px;
    box-shadow: 0 8px 28px rgba(91,73,66,0.12);
    backdrop-filter: blur(16px);
}

.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand wordmark */
.nav-brand {
    display: flex;
    align-items: baseline;
    gap: 3px;
    color: var(--taupe-dark);
    line-height: 1;
}
.brand-sans {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    color: rgba(74,57,51,0.88);
}
.brand-script {
    font-family: var(--font-script);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--taupe-mid);
    line-height: 1;
    margin-left: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
}
.nav-links a {
    color: rgba(74,57,51,0.78);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.22s var(--ease-smooth);
}
.nav-links a:hover { color: var(--taupe-dark); }
.nav-links a:focus-visible {
    outline: 2px solid var(--taupe-dark);
    outline-offset: 2px;
    border-radius: 2px;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 230px;
    padding: 10px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(91,73,66,0.14);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s var(--ease-smooth), transform 0.18s var(--ease-smooth);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(-3px);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    color: var(--taupe-dark) !important;
    border-radius: var(--radius-sm);
}

.nav-dropdown-menu a:hover {
    background: var(--gray-light);
}

.nav-cta-link {
    background: var(--gold) !important;
    color: var(--taupe-dark) !important;
    padding: 9px 22px;
    border-radius: var(--radius-full);
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition:
        background 0.22s var(--ease-smooth),
        transform 0.22s var(--ease-spring) !important;
}
.nav-cta-link:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px) !important;
}

.social-links__list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: inherit;
    transition:
        color 0.22s var(--ease-smooth),
        background 0.22s var(--ease-smooth),
        border-color 0.22s var(--ease-smooth),
        transform 0.22s var(--ease-spring);
}

.social-links__link:hover {
    transform: translateY(-1px);
}

.social-links__link:focus-visible {
    outline: 2px solid var(--taupe-dark);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

.social-links__icon {
    width: 31px;
    height: 31px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(91,73,66,0.18);
    border-radius: var(--radius-sm);
    font-size: 0.98rem;
    line-height: 1;
    color: var(--taupe-dark);
    background: rgba(255,255,255,0.58);
}

.social-links--header {
    margin-left: 18px;
}

.social-links--header .social-links__list {
    gap: 8px;
}

.social-links--header .social-links__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.social-links--header .social-links__link:hover .social-links__icon {
    border-color: rgba(91,73,66,0.32);
    background: rgba(255,255,255,0.8);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--taupe-dark);
    border-radius: 2px;
    transition: transform 0.22s var(--ease-smooth), opacity 0.22s;
}

body.nav-theme-dark .nav-brand {
    color: var(--white);
}

body.nav-theme-dark .brand-sans {
    color: rgba(255,255,255,0.92);
}

body.nav-theme-dark .brand-script {
    color: var(--gold-light);
}

body.nav-theme-dark .nav-links a {
    color: rgba(255,255,255,0.82);
}

body.nav-theme-dark .nav-links a:hover {
    color: var(--white);
}

body.nav-theme-dark .social-links--header .social-links__icon {
    border-color: rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.12);
    color: var(--white);
}

body.nav-theme-dark .site-nav.nav-scrolled .social-links--header .social-links__icon {
    border-color: rgba(91,73,66,0.18);
    background: rgba(255,255,255,0.58);
    color: var(--taupe-dark);
}

body.nav-theme-dark .nav-toggle span {
    background: var(--white);
}

body.nav-theme-dark .site-nav.nav-scrolled .nav-brand {
    color: var(--taupe-dark);
}

body.nav-theme-dark .site-nav.nav-scrolled .brand-sans {
    color: rgba(74,57,51,0.88);
}

body.nav-theme-dark .site-nav.nav-scrolled .brand-script {
    color: var(--taupe-mid);
}

body.nav-theme-dark .site-nav.nav-scrolled .nav-links a {
    color: rgba(74,57,51,0.78);
}

body.nav-theme-dark .site-nav.nav-scrolled .nav-links a:hover {
    color: var(--taupe-dark);
}

body.nav-theme-dark .site-nav.nav-scrolled .nav-toggle span {
    background: var(--taupe-dark);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 130px 28px 90px;
}

/* Layered gradient mesh background */
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(213,189,175,0.56), transparent 34%),
        radial-gradient(circle at bottom left, rgba(227,213,202,0.72), transparent 38%),
        linear-gradient(135deg, var(--cream-deep) 0%, var(--cream) 46%, var(--mauve) 100%);
    z-index: 0;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    will-change: transform;
}
.hero-blob--1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, #D5BDAF 0%, transparent 65%);
    top: -180px; right: -120px;
    opacity: 0.42;
}
.hero-blob--2 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, #E3D5CA 0%, transparent 65%);
    bottom: -100px; left: -100px;
    opacity: 0.22;
}
.hero-blob--3 {
    width: 340px; height: 340px;
    background: radial-gradient(circle, #B79F92 0%, transparent 65%);
    top: 50%; left: 18%;
    transform: translateY(-50%);
    opacity: 0.14;
}

/* SVG grain overlay for texture */
.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.045;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    text-align: center;
}

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--taupe-mid);
    margin-bottom: 22px;
    display: block;
    opacity: 0;
    animation: fadeUp 0.65s 0.15s var(--ease-spring) forwards;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7.5vw, 5.75rem);
    font-weight: 700;
    color: var(--taupe-dark);
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.65s 0.32s var(--ease-spring) forwards;
}
.hero-headline em {
    font-style: italic;
    font-weight: 400;
    color: var(--taupe-mid);
}

.hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(74,57,51,0.74);
    line-height: 1.68;
    max-width: 600px;
    margin: 0 auto 44px;
    opacity: 0;
    animation: fadeUp 0.65s 0.50s var(--ease-spring) forwards;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.65s 0.68s var(--ease-spring) forwards;
}

/* Scroll hint */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 0.6s 1.3s ease forwards;
}
.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, transparent, rgba(74,57,51,0.32));
    animation: scrollPulse 2.2s 1.6s ease-in-out infinite;
}
.scroll-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(74,57,51,0.42);
}

/* ============================================
   VALUE PROPOSITION SECTION
   ============================================ */
.values {
    padding: 108px 0;
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 42px 32px;
    box-shadow: var(--shadow-card);
    transition:
        transform 0.3s var(--ease-smooth),
        box-shadow 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}
.value-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-mid), var(--green-light), transparent);
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}
.value-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-card-hover);
}
.value-card:hover::after { opacity: 1; }

/* Middle card featured treatment */
.value-card--featured {
    background: linear-gradient(145deg, var(--taupe-dark), var(--green-dark));
}
.value-card--featured::after {
    background: linear-gradient(90deg, var(--gold), var(--cream));
    opacity: 1;
}
.value-card--featured .value-title { color: var(--white); }
.value-card--featured .value-desc  { color: rgba(255,255,255,0.70); }

.value-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}
.value-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.value-desc {
    font-size: 0.93rem;
    color: var(--gray-soft);
    line-height: 1.72;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 108px 0;
    background: var(--gray-light);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 88px;
    align-items: center;
}

/* Stats card */
.about-visual {
    position: relative;
}
.about-card {
    background: linear-gradient(145deg, var(--taupe-dark), var(--green-dark));
    border-radius: var(--radius-xl);
    padding: 52px 44px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.about-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213,189,175,0.28) 0%, transparent 70%);
}
.about-card::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227,213,202,0.24) 0%, transparent 70%);
}

.about-stat { padding: 24px 0; }
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.5;
}
.about-divider {
    height: 1px;
    background: rgba(255,255,255,0.12);
}

/* About text */
.about-text .section-eyebrow { text-align: left; }
.about-text .section-title   { text-align: left; margin-bottom: 24px; }
.about-body {
    font-size: 1rem;
    color: var(--gray-soft);
    line-height: 1.78;
    margin-bottom: 18px;
}
.about-text .btn { margin-top: 10px; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 108px 0;
    background: var(--cream);
}

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

.service-item {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 34px 30px;
    box-shadow: var(--shadow-card);
    transition:
        transform 0.28s var(--ease-smooth),
        box-shadow 0.28s var(--ease-smooth);
}
.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.service-icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: background 0.22s var(--ease-smooth);
}
.service-item:hover .service-icon {
    background: var(--mauve);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.service-desc {
    font-size: 0.9rem;
    color: var(--gray-soft);
    line-height: 1.68;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 128px 0;
    overflow: hidden;
    background: linear-gradient(145deg, var(--taupe-dark), var(--green-dark));
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.cta-blob--1 {
    width: 550px; height: 550px;
    background: radial-gradient(circle, #D5BDAF 0%, transparent 65%);
    top: -120px; right: -120px;
    opacity: 0.46;
}
.cta-blob--2 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, #E3D5CA 0%, transparent 65%);
    bottom: -90px; left: -90px;
    opacity: 0.20;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-section .section-eyebrow { color: var(--gold-light); }

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.68);
    max-width: 540px;
    margin: 0 auto 44px;
    line-height: 1.68;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #3F312C;
    padding: 72px 28px 0;
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .nav-brand {
    margin-bottom: 14px;
}

.footer-brand .brand-sans {
    color: rgba(255,245,240,0.92);
}

.footer-brand .brand-script {
    color: var(--gold-light);
}

.footer-tagline {
    font-size: 0.82rem;
    color: rgba(255,245,240,0.76);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-nav-title {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,245,240,0.46);
    margin-bottom: 22px;
}
.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.footer-nav a {
    font-size: 0.88rem;
    color: rgba(255,245,240,0.74);
    transition: color 0.22s var(--ease-smooth);
}
.footer-nav a:hover { color: var(--white); }
.footer-nav a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 2px;
}

.social-links--footer {
    align-self: start;
}

.social-links--footer::before {
    content: "Follow";
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,245,240,0.46);
    margin-bottom: 22px;
}

.social-links--footer .social-links__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.social-links--footer .social-links__link {
    color: rgba(255,245,240,0.76);
    font-size: 0.88rem;
}

.social-links--footer .social-links__link:hover {
    color: var(--white);
}

.social-links--footer .social-links__link:focus-visible {
    outline-color: var(--gold);
}

.social-links--footer .social-links__icon {
    width: 30px;
    height: 30px;
    border-color: rgba(255,245,240,0.18);
    color: rgba(255,245,240,0.86);
    background: rgba(255,245,240,0.07);
}

.footer-bottom {
    max-width: 1160px;
    margin: 0 auto;
    padding: 22px 0;
    font-size: 0.78rem;
    color: rgba(255,245,240,0.68);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.45; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(1.2); }
}
@keyframes contactSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-header {
    background: linear-gradient(145deg, var(--taupe-dark), var(--green-dark));
    padding: 140px 0 80px; /* extra top padding clears the fixed nav */
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-header-blobs { position: absolute; inset: 0; pointer-events: none; }

.contact-header-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    opacity: 0.18;
}
.contact-header-blob--1 {
    width: 420px; height: 420px;
    background: var(--green-light);
    top: -100px; left: -60px;
}
.contact-header-blob--2 {
    width: 320px; height: 320px;
    background: var(--mauve);
    bottom: -80px; right: 8%;
}

.contact-header-inner { position: relative; z-index: 1; }

.contact-header .section-eyebrow { color: var(--gold-light); }

.contact-header-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin: 6px 0 20px;
}

.contact-header-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section wrapper */
.contact-section {
    background: var(--cream);
    padding: 72px 0 100px;
}

.contact-section-inner { max-width: 1180px; }

/* Card (shared by form and success state) */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 52px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-mode-selector {
    display: inline-flex;
    gap: 10px;
    padding: 8px;
    margin: 0 0 28px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(91,73,66,0.08);
    border-radius: var(--radius-full);
    box-shadow: 0 8px 24px rgba(91,73,66,0.08);
}

.contact-mode-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: var(--radius-full);
    color: var(--taupe-dark);
    font-size: 0.92rem;
    font-weight: 600;
    transition: background 0.2s var(--ease-smooth), color 0.2s var(--ease-smooth), transform 0.2s var(--ease-smooth);
}

.contact-mode-pill:hover {
    background: rgba(91,73,66,0.08);
    transform: translateY(-1px);
}

.contact-mode-pill--active {
    background: var(--taupe-dark);
    color: var(--white);
    box-shadow: 0 8px 22px rgba(74,57,51,0.18);
}

.contact-chat-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.95fr);
    gap: 24px;
    align-items: start;
}

.contact-chat-card,
.contact-chat-summary {
    padding: 34px;
}

.contact-chat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-chat-title,
.contact-chat-summary-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--taupe-dark);
    margin: 8px 0 0;
    letter-spacing: -0.02em;
}

.contact-chat-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.contact-chat-actions form {
    margin: 0;
}

.contact-chat-switch,
.contact-chat-reset,
.contact-chat-confirm,
.contact-chat-send {
    min-width: 150px;
}

.contact-chat-alert {
    margin-bottom: 18px;
}

.contact-chat-alert--hidden {
    display: none;
}

.contact-chat-transcript {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 360px;
    max-height: 560px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    padding: 18px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(245,235,224,0.72), rgba(237,232,233,0.86));
    border: 1px solid rgba(91,73,66,0.08);
    margin-bottom: 20px;
}

.chat-bubble {
    max-width: 88%;
    padding: 16px 18px;
    border-radius: 24px;
    box-shadow: 0 10px 24px rgba(91,73,66,0.08);
}

.chat-bubble--assistant {
    align-self: flex-start;
    background: var(--white);
    color: var(--charcoal);
    border-top-left-radius: 10px;
}

.chat-bubble--thinking {
    opacity: 0.88;
}

.chat-bubble--user {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--taupe-dark), var(--green-dark));
    color: var(--white);
    border-top-right-radius: 10px;
}

.chat-bubble-role {
    display: block;
    margin-bottom: 6px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
}

.chat-bubble p {
    margin: 0;
    line-height: 1.7;
    white-space: pre-wrap;
}

.chat-bubble-thinking {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-chat-input {
    min-height: 122px;
    background: var(--white);
}

.contact-chat-submit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}

.contact-chat-send-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-chat-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-soft);
    font-size: 0.84rem;
    font-weight: 600;
}

.contact-chat-loading--hidden {
    display: none;
}

.contact-chat-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(123,102,91,0.24);
    border-top-color: var(--taupe-dark);
    border-radius: 50%;
    animation: contactSpin 0.8s linear infinite;
}

.contact-chat-helper {
    margin: 0;
    color: var(--gray-soft);
    font-size: 0.88rem;
    line-height: 1.6;
}

.contact-chat-summary {
    position: sticky;
    top: 108px;
}

.contact-chat-summary-list {
    display: grid;
    gap: 16px;
    margin: 24px 0 0;
}

.contact-chat-summary-list div {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--cream-deep);
}

.contact-chat-summary-list dt {
    margin-bottom: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--taupe-mid);
}

.contact-chat-summary-list dd {
    margin: 0;
    color: var(--charcoal);
    line-height: 1.6;
}

.contact-chat-status {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    background: rgba(91,73,66,0.08);
    color: var(--taupe-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.contact-chat-status--ready {
    background: rgba(123,102,91,0.14);
}

.contact-chat-missing {
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: var(--gray-light);
    color: var(--gray-soft);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-chat-missing--hidden {
    display: none;
}

.contact-chat-confirm-form {
    margin-top: 24px;
}

.contact-chat-confirm:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

.contact-chat-send[disabled] {
    opacity: 0.7;
    cursor: progress;
}

/* ── Form layout ── */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.form-group--consent { margin-bottom: 0; }

.form-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-mid);
}

.form-label-optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.6;
    font-size: 0.75rem;
}

.required-star { color: #B91C1C; margin-left: 1px; }

/* Inputs, selects, textareas */
.form-control {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--cream);
    border: 1.5px solid var(--cream-deep);
    border-radius: var(--radius-sm);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 0.2s var(--ease-smooth), box-shadow 0.2s var(--ease-smooth), background 0.2s var(--ease-smooth);
}

.form-control:focus {
    border-color: var(--taupe-mid);
    box-shadow: 0 0 0 3px rgba(123, 102, 91, 0.14);
    background: var(--white);
}

.form-control.input-validation-error {
    border-color: #B91C1C;
    box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.08);
}

/* Custom select chevron */
select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235B4942' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
    cursor: pointer;
}

textarea.form-control {
    resize: none;
    overflow-y: auto;
    min-height: 130px;
    line-height: 1.65;
}

/* Validation messages */
.field-error {
    font-size: 0.8rem;
    color: #B91C1C;
    display: block;
}

.field-validation-valid { display: none; }

.contact-validation-summary {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-bottom: 28px;
    font-size: 0.88rem;
    color: #B91C1C;
}

.contact-validation-summary ul { list-style: disc; padding-left: 18px; margin: 0; }

.validation-summary-valid { display: none; }

/* Custom checkbox */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.form-check-input {
    width: 20px; height: 20px; min-width: 20px;
    margin-top: 2px;
    border: 2px solid var(--green-mid);
    border-radius: 5px;
    background: var(--cream);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    transition: background 0.15s var(--ease-smooth), border-color 0.15s var(--ease-smooth);
}

.form-check-input:checked {
    background: var(--taupe-dark);
    border-color: var(--taupe-dark);
}

.form-check-input:checked::after {
    content: '';
    position: absolute;
    left: 4px; top: 2px;
    width: 8px; height: 12px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(40deg);
}

.form-check-input:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.form-check-input.input-validation-error { border-color: #B91C1C; }

.form-check-label {
    font-size: 0.88rem;
    color: var(--gray-soft);
    line-height: 1.55;
    padding-top: 1px;
}

/* Honeypot — completely off-screen */
.field-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px; height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    tab-size: 0;
}

/* Submit row */
.contact-submit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--cream-deep);
}

.contact-required-note {
    font-size: 0.78rem;
    color: var(--gray-soft);
    margin: 0;
}

.contact-submit-btn {
    min-width: 180px;
}

.contact-submit-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

/* ── Success state ── */
.contact-success {
    text-align: center;
    padding: 72px 52px;
    animation: fadeUp 0.5s var(--ease-smooth) both;
}

.contact-success-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--gold), var(--taupe-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: var(--white);
    box-shadow: 0 4px 24px rgba(91, 73, 66, 0.24);
}

.contact-success-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: -0.02em;
    margin: 12px 0 16px;
}

.contact-success-body {
    font-size: 1rem;
    color: var(--gray-soft);
    max-width: 420px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.contact-success-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   CONTENT PAGES
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--taupe-dark), var(--green-dark));
    color: var(--white);
    padding: 150px 0 82px;
}

.page-hero-inner {
    max-width: 860px;
}

.page-hero .section-eyebrow {
    color: var(--gold-light);
}

.page-hero h1,
.service-detail h2,
.portrait-panel h2,
.legal-copy h2,
.faq-stack h2,
.article-card h2 {
    font-family: var(--font-display);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.page-hero h1 {
    font-size: clamp(2.35rem, 5vw, 4.5rem);
    max-width: 820px;
    margin-bottom: 22px;
}

.page-hero p {
    max-width: 720px;
    color: rgba(255,255,255,0.82);
    font-size: 1.08rem;
}

.content-section,
.legal-page,
.trust-section,
.service-detail {
    padding: 94px 0;
}

.content-section--soft,
.service-detail--soft {
    background: var(--gray-light);
}

.split-layout,
.service-detail-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 58px;
    align-items: start;
}

.portrait-panel,
.feature-card,
.trust-placeholder,
.article-card,
.contact-expect-card {
    background: var(--white);
    border: 1px solid rgba(91,73,66,0.10);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
}

.portrait-panel,
.feature-card,
.trust-placeholder,
.article-card,
.contact-expect-card {
    padding: 28px;
}

.portrait-panel {
    position: sticky;
    top: 110px;
}

.portrait-panel h2,
.portrait-panel .about-card-title {
    color: var(--green-dark);
    font-size: 2rem;
    margin-bottom: 14px;
}

.content-copy p,
.service-detail p,
.legal-copy p,
.feature-card p,
.article-card p,
.faq-stack p {
    color: var(--gray-soft);
}

.content-copy p + p {
    margin-top: 18px;
}

.feature-grid,
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.feature-card h3,
.service-title,
.process-list h3,
.article-card h2 {
    color: var(--green-dark);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.process-list article {
    border-top: 2px solid var(--gold);
    padding-top: 18px;
}

.process-list span,
.article-card span {
    display: inline-block;
    color: var(--green-mid);
    font-weight: 700;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.centered-action {
    text-align: center;
    margin-top: 44px;
}

.service-detail {
    scroll-margin-top: 96px;
}

.service-detail h2 {
    color: var(--green-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.service-detail .btn {
    margin-top: 26px;
}

.check-list,
.mini-list {
    list-style: none;
}

.check-list li,
.mini-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--gray-soft);
}

.check-list li::before,
.mini-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.mini-list {
    margin: 18px 0;
}

.text-link {
    color: var(--taupe-dark);
    font-weight: 700;
    border-bottom: 1px solid currentColor;
}

.trust-section {
    background: var(--cream-deep);
}

.trust-placeholder {
    grid-column: 1 / -1;
    text-align: center;
}

.trust-placeholder-title {
    color: var(--green-mid);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
}

.trust-placeholder p:last-child {
    max-width: 640px;
    margin: 0 auto;
}

.article-card h2 {
    font-size: 1.55rem;
    margin-bottom: 12px;
}

.faq-stack {
    max-width: 900px;
}

.faq-stack section + section {
    margin-top: 50px;
}

.faq-stack h2 {
    color: var(--green-dark);
    font-size: 2rem;
    margin-bottom: 18px;
}

.faq-stack details {
    background: var(--white);
    border: 1px solid rgba(91,73,66,0.12);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    padding: 18px 22px;
}

.faq-stack details + details {
    margin-top: 14px;
}

.faq-stack summary {
    cursor: pointer;
    color: var(--green-dark);
    font-weight: 700;
}

.faq-stack details p {
    margin-top: 14px;
}

.faq-stack a,
.legal-copy a {
    color: var(--taupe-dark);
    font-weight: 700;
    text-decoration: underline;
}

.legal-copy {
    max-width: 860px;
}

.legal-copy h2 {
    color: var(--green-dark);
    font-size: 1.8rem;
    margin: 34px 0 12px;
}

.legal-copy h2:first-child {
    margin-top: 0;
}

.anchor-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.anchor-pills a {
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.footer-disclaimer {
    max-width: 540px;
    margin-top: 20px;
    color: rgba(255,245,240,0.72);
    font-size: 0.82rem;
    line-height: 1.6;
}

.contact-expect-card {
    max-width: 760px;
    margin: 32px auto 0;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: stretch;
}

.booking-layout > .contact-card {
    height: 100%;
}

.booking-card {
    position: sticky;
    top: 110px;
}

.booking-card .contact-required-note {
    margin: 12px 0 18px;
}

.booking-link {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.booking-fallback {
    margin: 0;
    padding: 18px;
    border: 1px dashed rgba(91,73,66,0.22);
    border-radius: var(--radius-sm);
    background: var(--gray-light);
    color: var(--gray-soft);
    font-size: 0.9rem;
    line-height: 1.6;
}

.site-chat {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 140;
}

.site-chat-launcher {
    min-width: 104px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: var(--taupe-dark);
    color: var(--white);
    box-shadow: var(--shadow-card-hover);
    font-weight: 600;
}

.site-chat-panel {
    position: absolute;
    right: 0;
    bottom: 64px;
    width: min(390px, calc(100vw - 32px));
    max-height: min(72vh, 680px);
    height: min(72vh, 680px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(91,73,66,0.12);
    border-radius: var(--radius-sm);
    box-shadow: 0 18px 44px rgba(52,42,38,0.18);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.2s var(--ease-smooth), transform 0.2s var(--ease-smooth);
}

.site-chat-panel--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.site-chat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.site-chat-eyebrow {
    display: block;
    margin-bottom: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-mid);
}

.site-chat-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1.15;
    color: var(--green-dark);
}

.site-chat-close {
    color: var(--taupe-dark);
    font-size: 0.88rem;
    font-weight: 600;
}

.site-chat-disclaimer,
.site-chat-status {
    min-width: 0;
    font-size: 0.82rem;
    color: var(--gray-soft);
    line-height: 1.5;
}

.site-chat-disclaimer {
    flex: 0 0 auto;
}

.site-chat-status {
    flex: 1 1 180px;
}

.site-chat-messages {
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(91,73,66,0.10);
    border-radius: var(--radius-sm);
    background: rgba(249,247,243,0.42);
}

.site-chat-bubble {
    max-width: 88%;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    line-height: 1.55;
}

.site-chat-bubble--assistant {
    align-self: flex-start;
    background: var(--gray-light);
    color: var(--charcoal);
}

.site-chat-bubble--user {
    align-self: flex-end;
    background: var(--taupe-dark);
    color: var(--white);
}

.site-chat-quick-replies-carousel {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.site-chat-quick-replies-frame {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
}

.site-chat-quick-replies {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.site-chat-quick-replies::-webkit-scrollbar {
    display: none;
}

.site-chat-quick-replies-arrow {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(91,73,66,0.14);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--taupe-dark);
    font-weight: 700;
}

.site-chat-quick-replies-arrow:disabled {
    opacity: 0.38;
    cursor: default;
}

.site-chat-chip {
    flex: 0 0 auto;
    padding: 9px 12px;
    border: 1px solid rgba(91,73,66,0.14);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--taupe-dark);
    font-size: 0.84rem;
    white-space: nowrap;
}

.site-chat-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-chat-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(91,73,66,0.16);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--charcoal);
    resize: vertical;
    font: inherit;
}

.site-chat-form-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.site-chat-send {
    margin-left: auto;
    flex: 0 0 auto;
    min-width: 88px;
    justify-content: center;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 960px) {
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .about-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 44px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .contact-chat-layout {
        grid-template-columns: 1fr;
    }
    .contact-chat-summary {
        position: static;
    }
    .booking-layout {
        grid-template-columns: 1fr;
    }
    .booking-card {
        position: static;
    }
    .split-layout,
    .service-detail-inner {
        grid-template-columns: 1fr;
    }
    .feature-grid,
    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .process-list,
    .article-grid {
        grid-template-columns: 1fr;
    }
    .portrait-panel {
        position: static;
    }
    .contact-chat-header,
    .contact-chat-submit-row {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-chat-send-group {
        justify-content: space-between;
    }
    .contact-chat-actions {
        justify-content: flex-start;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 640px) {
    /* Mobile nav */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(237,232,233,0.98);
        backdrop-filter: blur(14px);
        flex-direction: column;
        gap: 0;
        padding: 12px 0 20px;
        border-top: 1px solid rgba(91,73,66,0.10);
    }
    .nav-links--open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 13px 28px;
    }
    .social-links--header {
        position: absolute;
        top: 50%;
        right: 70px;
        margin-left: 0;
        transform: translateY(-50%);
    }
    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border: 0;
        background: transparent;
        padding: 0 0 0 18px;
        min-width: 0;
    }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        transform: none;
    }
    .nav-cta-link {
        margin: 8px 28px 0 !important;
        text-align: center !important;
        display: block !important;
        border-radius: var(--radius-full) !important;
    }
    .nav-toggle { display: flex; }

    /* Sections */
    .section-inner { padding: 0 18px; }
    .values        { padding: 76px 0; }
    .about         { padding: 76px 0; }
    .services      { padding: 76px 0; }
    .cta-section   { padding: 88px 0; }
    .content-section,
    .legal-page,
    .trust-section,
    .service-detail { padding: 76px 0; }
    .page-hero { padding: 124px 0 64px; }
    .feature-grid,
    .trust-grid { grid-template-columns: 1fr; }

    .hero-headline { font-size: clamp(2.6rem, 11vw, 3.4rem); }
    .hero-sub br   { display: none; }

    .service-item  { flex-direction: column; gap: 16px; }

    .footer-inner  { grid-template-columns: 1fr; gap: 36px; }
    .footer-inner  { padding-bottom: 40px; }

    /* Contact page */
    .contact-header   { padding: 120px 0 60px; }
    .contact-card     { padding: 32px 22px; }
    .contact-success  { padding: 48px 22px; }
    .contact-chat-card,
    .contact-chat-summary { padding: 28px 22px; }
    .contact-mode-selector {
        display: grid;
        width: 100%;
    }
    .form-row         { grid-template-columns: 1fr; }
    .contact-submit-row {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 14px;
    }
    .contact-submit-btn { width: 100%; text-align: center; }
    .contact-chat-transcript { min-height: 300px; }
}
