/* ============================================
   SHE SAVES SAVVY — Landing Page
   Brand colors: #2E4E3E #7A9E7E #D4B6C8 #D4AF37 #F7F3EC #333333
   ============================================ */

/* --- Brand Tokens --- */
:root {
    --green-dark:    #2E4E3E;
    --green-mid:     #7A9E7E;
    --green-light:   #B2CCAB;
    --mauve:         #D4B6C8;
    --gold:          #D4AF37;
    --gold-light:    #E5CB6A;
    --cream:         #F7F3EC;
    --cream-deep:    #EDE8DF;
    --white:         #FFFFFF;
    --charcoal:      #333333;
    --gray-soft:     #6B7280;
    --gray-light:    #F2EEE8;

    --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 8px rgba(46,78,62,0.05), 0 8px 28px rgba(46,78,62,0.07);
    --shadow-card-hover: 0 4px 16px rgba(46,78,62,0.10), 0 16px 48px rgba(46,78,62,0.13);
    --shadow-btn-gold:   0 2px 14px rgba(212,175,55,0.35);
    --shadow-btn-green:  0 2px 14px rgba(46,78,62,0.28);

    --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(--gold);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--green-dark);
    color: var(--white);
    box-shadow: var(--shadow-btn-green);
}
.btn-primary:hover {
    background: #3A6050;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(46,78,62,0.32);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
    background: rgba(255,255,255,0.10);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.38);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.20);
    border-color: rgba(255,255,255,0.62);
    transform: translateY(-2px);
}
.btn-ghost:active { transform: translateY(0); }

.btn-gold {
    background: var(--gold);
    color: var(--green-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 6px 26px rgba(212,175,55,0.42);
}
.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(46,78,62,0.97);
    padding: 14px 28px;
    box-shadow: 0 4px 28px rgba(46,78,62,0.22);
    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(--white);
    line-height: 1;
}
.brand-sans {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.92);
}
.brand-script {
    font-family: var(--font-script);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-left: 2px;
}

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

.nav-cta-link {
    background: var(--gold) !important;
    color: var(--green-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;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    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: var(--green-mid);
    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, #7A9E7E 0%, transparent 65%);
    top: -180px; right: -120px;
    opacity: 0.42;
}
.hero-blob--2 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, #D4B6C8 0%, transparent 65%);
    bottom: -100px; left: -100px;
    opacity: 0.22;
}
.hero-blob--3 {
    width: 340px; height: 340px;
    background: radial-gradient(circle, #D4AF37 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(--gold);
    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(--white);
    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(--gold);
}

.hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(255,255,255,0.72);
    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(255,255,255,0.45));
    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(255,255,255,0.38);
}

/* ============================================
   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: var(--green-dark);
}
.value-card--featured::after {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    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: 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(212,175,55,0.22) 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(212,182,200,0.18) 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);
    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.10);
}

/* 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(--cream-deep);
}

.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: 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, #7A9E7E 0%, transparent 65%);
    top: -120px; right: -120px;
    opacity: 0.46;
}
.cta-blob--2 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, #D4B6C8 0%, transparent 65%);
    bottom: -90px; left: -90px;
    opacity: 0.20;
}

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

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

.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: #1C3128;
    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-tagline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.38);
    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,255,255,0.32);
    margin-bottom: 22px;
}
.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.footer-nav a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    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;
}

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

/* ============================================
   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); }
}

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

.contact-header {
    background: 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-mid);
    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: 780px; }

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

/* ── 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(--green-dark);
    box-shadow: 0 0 0 3px rgba(46, 78, 62, 0.10);
    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='%232E4E3E' 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: vertical;
    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(--green-dark);
    border-color: var(--green-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(--green-mid), var(--green-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(46, 78, 62, 0.28);
}

.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;
}

/* ============================================
   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;
        gap: 44px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 640px) {
    /* Mobile nav */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(46,78,62,0.98);
        backdrop-filter: blur(14px);
        flex-direction: column;
        gap: 0;
        padding: 12px 0 20px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .nav-links--open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 13px 28px;
    }
    .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; }

    .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; }
    .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; }
}
