/* ===== Variables =====
   These are shorthand aliases that point to tokens.css.
   Change values in tokens.json → run `node build-tokens.js` → styles update automatically.
   Do not hardcode values here; always reference a token variable.
   ===== */
:root {
    /* Colors */
    --blush:         var(--color-blush-base);
    --blush-light:   var(--color-blush-light);
    --blush-dark:    var(--color-blush-dark);
    --blossom:       var(--color-blossom-base);
    --petal:         var(--color-petal-base);
    --butter:        var(--color-butter-light);
    --butter-medium: var(--color-butter-medium);
    --butter-dark:   var(--color-butter-dark);
    --cream:         var(--color-surface-cream);
    --warm-white:    var(--color-surface-warm-white);
    --text:          var(--color-text-primary);
    --text-light:    var(--color-text-secondary);
    --text-muted:    var(--color-text-muted);
    --gold:          var(--color-gold-base);
    --gold-light:    var(--color-gold-light);
    --gold-soft:     var(--color-gold-soft);

    /* Typography */
    --font-display:  var(--typography-family-display);
    --font-italic:   var(--typography-family-italic);
    --font-body:     var(--typography-family-body);

    /* Layout */
    --section-padding:  var(--spacing-section-y) 0;
    --container-width:  var(--spacing-container-max);

    /* Motion */
    --transition:       var(--motion-fast);
    --transition-slow:  var(--motion-slow);

    /* Shadows (already defined in tokens.css — re-exported for shorthand use in styles) */

    /* Shape */
    --radius-sm: var(--shape-radius-sm);
    --radius-md: var(--shape-radius-md);
    --radius-lg: var(--shape-radius-lg);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text);
    background-color: var(--warm-white);
    line-height: 1.75;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text);
    letter-spacing: -0.01em;
}

h2 em, h1 em {
    font-family: var(--font-italic);
    font-style: italic;
    font-weight: 400;
    color: var(--blush-dark);
}

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

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.section-intro {
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
    font-size: 1rem;
    font-weight: 300;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blush-dark);
    margin-bottom: 1rem;
}

.label-dash {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--blush-dark);
}

/* Decorative blobs — organic shapes */
.section-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 1;
}

.about-blob {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, var(--petal) 0%, transparent 70%);
    top: -100px;
    right: -120px;
}

.approach-blob {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--butter-medium) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    opacity: 0.35;
}

.contact-blob {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, var(--blush-light) 0%, transparent 70%);
    top: -120px;
    left: -100px;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 254, 251, 0.85);
    backdrop-filter: blur(18px) saturate(1.1);
    -webkit-backdrop-filter: blur(18px) saturate(1.1);
    border-bottom: 1px solid rgba(242, 196, 200, 0.18);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(255, 254, 251, 0.95);
    box-shadow: 0 4px 20px -10px rgba(90, 55, 60, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.01em;
}

/* ===== Nav wordmark ===== */
.nav-wordmark {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--transition);
}

.nav-wordmark .brand-amp {
    color: var(--blush-dark);
}

.nav-logo:hover .nav-wordmark {
    color: var(--blush-dark);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.25rem;
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--blush-dark);
    transition: width var(--transition);
    border-radius: 2px;
}

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

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

.nav-cta {
    background: var(--text);
    color: var(--warm-white) !important;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    transition: all var(--transition) !important;
    letter-spacing: 0.1em !important;
}

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

.nav-cta:hover {
    background: var(--blush-dark);
    transform: translateY(-1px);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text);
    transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Top padding clears the fixed nav; bottom padding gives room above the scroll indicator */
    padding: calc(var(--nav-height) + 3rem) 0 6rem;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(247, 214, 217, 0.55) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 80% 70%, rgba(254, 246, 228, 0.7) 0%, transparent 60%),
        linear-gradient(135deg, var(--blush-light) 0%, var(--cream) 50%, var(--butter) 100%);
    overflow: hidden;
}

/* Organic blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: float 16s ease-in-out infinite;
}

.hero-blob-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(224, 161, 168, 0.35) 0%, transparent 70%);
    top: -120px;
    left: -120px;
}

.hero-blob-2 {
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(248, 232, 192, 0.55) 0%, transparent 70%);
    bottom: -200px;
    right: -180px;
    animation-delay: -6s;
    animation-duration: 20s;
}

.hero-blob-3 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(247, 214, 217, 0.4) 0%, transparent 70%);
    top: 40%;
    left: 55%;
    animation-delay: -10s;
    animation-duration: 24s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -20px) scale(1.04);
    }
    66% {
        transform: translate(-20px, 25px) scale(0.97);
    }
}

/* Hero decorative floral accents */
.hero-accent {
    position: absolute;
    width: 90px;
    height: 160px;
    color: var(--blush-dark);
    opacity: 0.35;
    pointer-events: none;
    z-index: 2;
}

.hero-accent-left {
    left: 6%;
    top: 22%;
}

.hero-accent-right {
    right: 6%;
    bottom: 22%;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    max-width: min(780px, 92%);
    width: 100%;
}

/* Small "Event Planning" eyebrow label above the headline */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--blush-dark);
    margin-bottom: 2rem;
}

/* Main hero headline */
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(4rem, 9vw, 7rem);
    font-weight: 400;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.0;
    margin-bottom: 0;
}

.hero h1 em {
    font-family: var(--font-italic);
    font-style: italic;
    font-weight: 400;
    color: var(--blush-dark);
}

/* Ampersand — plain, same pink as the rest of the accent elements */
.hero-amp,
.brand-amp {
    color: var(--blush-dark);
    font-style: normal;
    font-family: inherit;
}

/* Thin rule between headline and tagline */
.hero-rule {
    width: 50px;
    height: 1px;
    background: var(--blush-dark);
    margin: 1.75rem auto;
    opacity: 0.4;
}

/* Brand tagline — the italic signature line */
.hero-tagline {
    font-family: var(--font-italic);
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

.tagline-line {
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--blush-dark);
    opacity: 0.6;
}


.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto 3.25rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    z-index: 3;
    transition: opacity var(--transition);
}

.scroll-indicator:hover {
    opacity: 0.7;
}

.scroll-indicator-line {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--blush-dark));
    position: relative;
    overflow: hidden;
}

.scroll-indicator-line::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--text));
    animation: scrollDown 2.2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -40px; }
    100% { top: 100%; }
}

.scroll-indicator-text {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1.05rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    border: 1.5px solid transparent;
}

.btn-primary {
    background: var(--text);
    color: var(--warm-white);
    border-color: var(--text);
    box-shadow: 0 6px 20px -8px rgba(46, 42, 43, 0.3);
}

.btn-primary:hover {
    background: var(--blush-dark);
    border-color: var(--blush-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px -8px rgba(212, 148, 154, 0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: rgba(46, 42, 43, 0.2);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--text);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ===== About ===== */
.about {
    background: var(--cream);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-frame {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-slow);
}

.about-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.about-image-frame:hover {
    transform: translateY(-4px);
}

.about-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.about-image-accent {
    position: absolute;
    top: 30px;
    left: -30px;
    right: 30px;
    bottom: -30px;
    background: linear-gradient(135deg, var(--butter-medium) 0%, var(--petal) 100%);
    border-radius: var(--radius-lg);
    z-index: 1;
    opacity: 0.75;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.85;
}

/* ===== Quote Banner ===== */
.quote-banner {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--petal) 0%, var(--butter-medium) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.quote-blob-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    top: -100px;
    left: 10%;
}

.quote-blob-2 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(254, 246, 228, 0.7) 0%, transparent 70%);
    bottom: -80px;
    right: 15%;
}

.quote-mark {
    width: 48px;
    height: 48px;
    color: var(--blush-dark);
    opacity: 0.45;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    transform: scaleX(-1);
}

.quote-banner blockquote {
    font-family: var(--font-italic);
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text);
    max-width: 760px;
    margin: 0 auto 1.25rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.quote-attribution {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

/* ===== Services ===== */
.services {
    background: var(--warm-white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 214, 217, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Three-card layout — cards are wider so give them more internal breathing room */
.services-grid-3 .service-card {
    padding: 2.5rem 2.25rem 2.75rem;
}

.service-card {
    background: var(--cream);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: left;
    position: relative;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition);
    border: 1px solid rgba(242, 196, 200, 0.15);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blush) 0%, var(--butter-medium) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(247, 214, 217, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(224, 161, 168, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blush-light) 0%, var(--butter) 100%);
    border-radius: 50%;
    position: relative;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-icon-wrap {
    transform: rotate(-8deg) scale(1.05);
}

.service-icon {
    width: 30px;
    height: 30px;
    color: var(--blush-dark);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text);
    position: relative;
    z-index: 2;
}

.service-card p {
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* ===== Approach ===== */
.approach {
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
    position: relative;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.approach-item {
    padding: 2.25rem 1.75rem;
    background: var(--warm-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(242, 196, 200, 0.18);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.approach-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at top left, var(--blush-light) 0%, transparent 70%);
    border-radius: 0 0 100% 0;
    opacity: 0.6;
}

.approach-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.approach-number {
    font-family: var(--font-italic);
    font-style: italic;
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--blush-dark);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
    opacity: 0.8;
}

.approach-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.approach-content p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Areas ===== */
.areas {
    background: var(--warm-white);
    text-align: center;
    position: relative;
}

.areas::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(248, 232, 192, 0.35) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

.areas-intro {
    color: var(--text-light);
    margin: 0 auto 2.5rem;
    font-size: 1rem;
    max-width: 500px;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.area-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 0.85rem 1.75rem;
    background: var(--cream);
    border: 1px solid rgba(242, 196, 200, 0.4);
    border-radius: 50px;
    color: var(--text);
    transition: all var(--transition);
    cursor: default;
}

.area-tag:hover {
    background: var(--petal);
    border-color: var(--blush);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px -6px rgba(212, 148, 154, 0.35);
}

.area-tag-accent {
    background: linear-gradient(135deg, var(--butter-medium) 0%, var(--petal) 100%);
    border-color: transparent;
    font-style: italic;
    font-family: var(--font-italic);
    font-size: 0.95rem;
}

/* Charlotte — featured market, visually elevated */
.area-tag-charlotte {
    background: var(--blush-dark);
    color: #fff;
    border-color: transparent;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    padding: 0.65rem 1.75rem;
    box-shadow: 0 4px 16px -6px rgba(212, 148, 154, 0.5);
}

.area-tag-charlotte:hover {
    background: var(--blossom);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -6px rgba(212, 148, 154, 0.5);
}

/* ===== Contact ===== */
.contact {
    background: var(--cream);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 5rem;
    align-items: start;
}

.contact-text {
    position: sticky;
    top: 120px;
}

.contact-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.25rem;
}

.contact-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-accent {
    color: var(--blush-dark);
    opacity: 0.55;
    max-width: 180px;
}

/* Hidden honeypot field — invisible to humans, catches spam bots */
.form-honeypot {
    display: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: var(--warm-white);
    padding: 2.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(242, 196, 200, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-optional {
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--text-muted);
    opacity: 0.7;
    font-size: 0.9em;
}

.form-group label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.55rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0.9rem 1.1rem;
    border: 1.5px solid rgba(242, 196, 200, 0.4);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--text);
    transition: all var(--transition);
    outline: none;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(224, 161, 168, 0.55);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blush-dark);
    background: var(--warm-white);
    box-shadow: 0 0 0 4px rgba(247, 214, 217, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Footer ===== */
.footer {
    padding: 4rem 0 2.5rem;
    background: linear-gradient(135deg, #3a3234 0%, #2e2729 100%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--blush-dark) 50%, transparent 100%);
}

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

/* Footer wordmark */
.footer-wordmark {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--petal);
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
    transition: color var(--transition);
}

.footer-wordmark .brand-amp {
    color: var(--petal);
}

.footer:hover .footer-wordmark {
    color: var(--blush);
}

.footer-tagline {
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-divider {
    width: 40px;
    height: 1px;
    background: rgba(247, 214, 217, 0.3);
    margin: 0 auto 1.5rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

/* Stagger children */
.services-grid .fade-in:nth-child(1) { transition-delay: 0.05s; }
.services-grid .fade-in:nth-child(2) { transition-delay: 0.12s; }
.services-grid .fade-in:nth-child(3) { transition-delay: 0.19s; }
.services-grid .fade-in:nth-child(4) { transition-delay: 0.26s; }
.services-grid .fade-in:nth-child(5) { transition-delay: 0.33s; }
.services-grid .fade-in:nth-child(6) { transition-delay: 0.40s; }

.approach-grid .fade-in:nth-child(1) { transition-delay: 0.05s; }
.approach-grid .fade-in:nth-child(2) { transition-delay: 0.15s; }
.approach-grid .fade-in:nth-child(3) { transition-delay: 0.25s; }
.approach-grid .fade-in:nth-child(4) { transition-delay: 0.35s; }

.areas-list .fade-in:nth-child(1) { transition-delay: 0.05s; }
.areas-list .fade-in:nth-child(2) { transition-delay: 0.10s; }
.areas-list .fade-in:nth-child(3) { transition-delay: 0.15s; }
.areas-list .fade-in:nth-child(4) { transition-delay: 0.20s; }
.areas-list .fade-in:nth-child(5) { transition-delay: 0.25s; }
.areas-list .fade-in:nth-child(6) { transition-delay: 0.30s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-accent { display: none; }
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        max-width: 460px;
        margin: 0 auto;
    }

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

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-text {
        position: static;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 5rem 0;
    }

    .nav-inner {
        height: 68px;
    }

    .nav-logo {
        font-size: 1.15rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 254, 251, 0.98);
        backdrop-filter: blur(18px);
        padding: 1.75rem 2rem 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(242, 196, 200, 0.2);
    }

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: calc(var(--nav-height-mobile) + 2rem) 0 5rem;
    }

    .hero h1 {
        font-size: clamp(3rem, 12vw, 4.5rem);
    }

    .hero-eyebrow {
        margin-bottom: 1.5rem;
    }

    .hero-tagline {
        font-size: 1.05rem;
        margin-bottom: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2.25rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

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

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .scroll-indicator {
        display: none;
    }
}

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