/* =============================================
   CUSTOM PROPERTIES
============================================= */
:root {
    /* Brand colors — OKLCH */
    --cream:           oklch(35% 0.029 21);
    --cream-dark:      oklch(30% 0.025 21);
    --cream-mid:       oklch(27% 0.023 21);
    --espresso:        oklch(92% 0.123 106);
    --espresso-mid:    oklch(87% 0.118 106);
    --espresso-light:  oklch(83% 0.114 106);
    --gold:            oklch(80% 0.16 55);
    --gold-light:      oklch(90% 0.10 55);
    --text-dark:       oklch(20% 0.018 21);

    /* Alpha-variant tokens (replaces all inline rgba()) */
    --gold-a12:        color-mix(in oklch, var(--gold) 12%, transparent);
    --gold-a18:        color-mix(in oklch, var(--gold) 18%, transparent);
    --gold-a22:        color-mix(in oklch, var(--gold) 22%, transparent);
    --gold-a50:        color-mix(in oklch, var(--gold) 50%, transparent);
    --gold-a55:        color-mix(in oklch, var(--gold) 55%, transparent);
    --cream-a35:       color-mix(in oklch, var(--cream) 35%, transparent);
    --cream-a45:       color-mix(in oklch, var(--cream) 45%, transparent);
    --cream-a55:       color-mix(in oklch, var(--cream) 55%, transparent);
    --cream-a60:       color-mix(in oklch, var(--cream) 60%, transparent);
    --cream-a65:       color-mix(in oklch, var(--cream) 65%, transparent);
    --cream-a68:       color-mix(in oklch, var(--cream) 68%, transparent);
    --cream-a70:       color-mix(in oklch, var(--cream) 70%, transparent);
    --cream-a75:       color-mix(in oklch, var(--cream) 75%, transparent);
    --cream-a88:       color-mix(in oklch, var(--cream) 88%, transparent);
    --cream-a96:       color-mix(in oklch, var(--cream) 96%, transparent);
    --espresso-a06:    color-mix(in oklch, var(--espresso) 6%, transparent);
    --espresso-a08:    color-mix(in oklch, var(--espresso) 8%, transparent);
    --espresso-a50:    color-mix(in oklch, var(--espresso) 50%, transparent);
    --white-a04:       color-mix(in oklch, oklch(99.5% 0.003 79) 4%, transparent);
    --white-a07:       color-mix(in oklch, oklch(99.5% 0.003 79) 7%, transparent);

    /* Dark mode surface tokens */
    --surface-dark-dm:  oklch(18% 0.015 21);
    --gallery-dark-dm:  oklch(15% 0.012 21);
    --hover-dark-dm:    oklch(22% 0.020 21);

    /* Typography — deliberately chosen, not reflex picks */
    --font-display: 'Spectral', 'Georgia', serif;
    --font-heading: 'Spectral', 'Georgia', serif;
    --font-body:    'Jost', 'Helvetica Neue', sans-serif;

    --nav-h:         72px;
    --pad-section:   clamp(64px, 9vw, 128px);
    --pad-container: clamp(20px, 5vw, 64px);
    --max-w:         1280px;

    --ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-gold: 0 6px 40px var(--gold-a22);
    --shadow-dark: 0 6px 40px var(--espresso-a08);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--espresso);
    line-height: 1.65;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* =============================================
   SKIP LINK
============================================= */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    padding: 12px 20px;
    background: var(--espresso);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 9999;
    transition: top 0.2s ease;
}

.skip-link:focus { top: 16px; }

/* =============================================
   FOCUS VISIBLE
============================================= */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.hero :focus-visible,
.about :focus-visible,
.contact :focus-visible,
.footer :focus-visible,
.mobile-menu :focus-visible {
    outline-color: var(--cream);
}

/* =============================================
   UTILITIES
============================================= */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-container);
}

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

/* Section kicker — espresso-light on light backgrounds for WCAG AA */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--espresso-light);
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
}

/* On dark sections, kicker is gold-light (passes ~6.5:1) */
.on-dark .section-label,
.about .section-label,
.contact .section-label {
    color: var(--gold-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--espresso);
    margin-bottom: 16px;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

/* Gold on cream-dark fails contrast — use espresso-light instead */
.gallery .section-title em { color: var(--espresso-light); }

.section-desc {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--espresso-light);
    max-width: 520px;
    line-height: 1.85;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(44px, 7vw, 88px);
}

.section-header .section-desc { margin: 0 auto; }

/* =============================================
   BUTTONS
============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 36px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--ease), color var(--ease),
                transform var(--ease), box-shadow var(--ease);
    min-height: 52px;
    min-width: 44px;
    border: 1.5px solid transparent;
    border-radius: 0;
    white-space: nowrap;
}

.btn-primary {
    background: var(--espresso);
    color: var(--cream);
}
.btn-primary:hover {
    background: var(--espresso-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border-color: var(--gold-a55);
}
.btn-outline:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--espresso);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--espresso);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* =============================================
   NAVIGATION
============================================= */
.nav {
    position: fixed;
    inset: 0 0 auto;
    height: var(--nav-h);
    z-index: 900;
    display: flex;
    align-items: center;
    transition: background 0.5s ease, box-shadow 0.5s ease;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 44px;
}

.nav-logo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--gold);
    flex-shrink: 0;
}

.nav-logo-fallback {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--espresso);
    border: 1.5px solid var(--gold);
    display: none;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    flex-shrink: 0;
}

.nav-brand-text { display: none; }

.nav-brand-text .brand-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    line-height: 1.1;
    transition: color var(--ease);
}

.nav-brand-text .brand-sub {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}

.nav-links {
    display: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream-a88);
    position: relative;
    transition: color var(--ease);
    padding: 4px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    display: none;
    padding: 11px 26px;
    font-size: 0.7rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
}

.h-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--cream);
    transition: transform 0.35s ease, opacity 0.35s ease;
    transform-origin: center;
}

.hamburger.open .h-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open .h-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .h-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav.scrolled {
    background: var(--cream-a96);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--espresso-a08), 0 4px 32px var(--espresso-a06);
}

.nav.scrolled .nav-links a { color: var(--espresso); }
.nav.scrolled .nav-links a:hover { color: var(--gold); }
.nav.scrolled .brand-name { color: var(--espresso); }
.nav.scrolled .h-line { background: var(--espresso); }

.mobile-menu {
    position: fixed;
    inset: var(--nav-h) 0 0;
    z-index: 800;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    transform: translateX(101%);
    visibility: hidden;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.45s;
    overflow: hidden;
}

.mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0s;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--espresso);
    transition: color var(--ease);
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-menu-cta {
    margin-top: 8px;
    font-size: 0.75rem !important;
    font-family: var(--font-body) !important;
    letter-spacing: 0.18em !important;
}

/* =============================================
   HERO
============================================= */
.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    background: var(--cream);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 25% 55%, color-mix(in oklch, var(--gold) 22%, transparent) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 80% 15%, color-mix(in oklch, var(--gold) 14%, transparent) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 70% 85%, color-mix(in oklch, var(--espresso) 12%, transparent) 0%, transparent 55%),
        linear-gradient(140deg, oklch(8% 0.010 21) 0%, oklch(42% 0.042 21) 45%, oklch(26% 0.024 21) 75%, oklch(8% 0.010 21) 100%);
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--gold-a12);
    pointer-events: none;
}

.hero-ring-1 { width: 520px; height: 520px; right: -120px; top: 50%; transform: translateY(-50%); }
.hero-ring-2 { width: 740px; height: 740px; right: -230px; top: 50%; transform: translateY(-50%); border-color: var(--gold-a12); }
.hero-ring-3 { width: 320px; height: 320px; left: -90px;   top: 8%; border-color: var(--gold-a12); }

/* Photo panel — right side of hero at desktop */
.hero-photo {
    display: none;
    position: relative;
    overflow: hidden;
}

.hero-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--cream) 0%, transparent 45%);
    z-index: 1;
    pointer-events: none;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: calc(var(--nav-h) + 48px) var(--pad-container) 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-eyebrow {
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.1s forwards;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 10vw, 8rem);
    font-weight: 300;
    line-height: 0.92;
    color: var(--espresso);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.22s forwards;
}

.hero-headline em {
    font-style: italic;
    color: var(--gold-light);
    display: block;
}

.hero-sub {
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 300;
    color: var(--espresso-light);
    max-width: 460px;
    line-height: 1.9;
    margin-bottom: 52px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.38s forwards;
}

/* Outline button in hero: cream token is now dark, so override to yellow-green */
.hero .btn-outline {
    color: var(--espresso);
    border-color: color-mix(in oklch, var(--espresso) 55%, transparent);
}
.hero .btn-outline:hover {
    background: var(--espresso);
    border-color: var(--espresso);
    color: var(--cream);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.52s forwards;
}


/* =============================================
   EVENT STRIP
============================================= */
.event-strip {
    background: var(--espresso);
    padding: 18px var(--pad-container);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 0;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--gold-light);
    padding: 4px 28px;
    white-space: nowrap;
}

.marquee-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* =============================================
   SERVICES — editorial numbered list
============================================= */
.services {
    background: var(--cream);
    padding: var(--pad-section) 0;
}

.services-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: clamp(48px, 7vw, 96px);
}

.services-intro .section-title { margin-bottom: 0; }

.services-intro .section-desc { max-width: 460px; }

.services-list {
    list-style: none;
    border-top: 1px solid var(--gold-a22);
}

.service-row {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 0 clamp(20px, 4vw, 48px);
    align-items: baseline;
    padding: clamp(28px, 4vw, 44px) 0;
    border-bottom: 1px solid var(--gold-a22);
    transition: background var(--ease);
    position: relative;
}

.service-row:hover { background: color-mix(in oklch, var(--cream-dark) 40%, transparent); }

.service-n {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--gold);
    padding-top: 4px;
}

.service-body { display: grid; gap: 8px; }

.service-body h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.65rem);
    font-weight: 400;
    color: var(--espresso);
    line-height: 1.15;
}

.service-body p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--espresso-light);
    max-width: 56ch;
}

/* =============================================
   ABOUT
============================================= */
.about {
    background: var(--espresso);
    padding: var(--pad-section) 0;
    position: relative;
    overflow: hidden;
}

.about-ring-1 {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid var(--gold-a12);
    top: -140px; right: -140px;
    pointer-events: none;
}

.about-ring-2 {
    position: absolute;
    width: 360px; height: 360px;
    border-radius: 50%;
    border: 1px solid var(--gold-a12);
    bottom: -100px; left: -80px;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    position: relative;
    z-index: 1;
}

.about-text .section-title { color: var(--cream); text-align: left; }

.about-text p {
    font-size: clamp(0.92rem, 1.8vw, 1rem);
    color: var(--cream-a68);
    line-height: 1.95;
    margin-bottom: 20px;
}

.about-text p:last-of-type { margin-bottom: 0; }

.about-photo {
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-bottom: 4px;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.about-photo:hover img { transform: scale(1.03); }

.about-sig {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
    margin-top: 36px;
    letter-spacing: 0.03em;
}

/* Pull quote replaces metric grid */
.about-callout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.about-quote::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 24px;
}

.about-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    line-height: 1.45;
}

.about-quote cite {
    display: block;
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-detail {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--cream-a70);
    line-height: 1.55;
}

.about-detail::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 0.65em;
}

/* =============================================
   GALLERY — masonry photo grid
============================================= */
.gallery {
    background: var(--cream-dark);
    padding: var(--pad-section) 0;
}

.gallery-grid {
    columns: 2;
    column-gap: 8px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 8px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
    opacity: 0.88;
}

.gallery-footer { text-align: center; margin-top: clamp(36px, 5vw, 64px); }

/* =============================================
   TESTIMONIALS — review invite state
   (swap in real reviews once Google Business is live)
============================================= */
.testimonials {
    background: var(--cream);
    padding: var(--pad-section) 0;
}

.review-invite {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    max-width: 520px;
    margin: 0 auto;
}

.review-stars {
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 4px;
}

.review-invite-text {
    font-size: clamp(0.92rem, 2vw, 1.05rem);
    color: var(--espresso-light);
    line-height: 1.85;
}

/* =============================================
   CONTACT
============================================= */
.contact {
    background: var(--espresso);
    padding: var(--pad-section) 0;
}

.contact-heading { margin-bottom: clamp(40px, 6vw, 72px); }

.contact .section-title { color: var(--cream); text-align: left; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
}

.contact-intro h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 18px;
    line-height: 1.3;
}

.contact-intro p {
    font-size: 0.92rem;
    color: var(--cream-a60);
    line-height: 1.85;
    margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 18px; }

.c-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.88rem;
    color: var(--cream-a70);
}

.c-detail svg { color: var(--gold); flex-shrink: 0; }
.c-detail a   { color: var(--gold); transition: opacity var(--ease); }
.c-detail a:hover { opacity: 0.75; }

/* Form */
.form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    background: var(--white-a04);
    border: 1px solid var(--gold-a22);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.93rem;
    padding: 13px 16px;
    width: 100%;
    min-height: 52px;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color var(--ease), background var(--ease);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--cream-a35); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--gold);
    background: var(--white-a07);
}

.form-select { cursor: pointer; }
.form-select option { background: var(--espresso); color: var(--cream); }

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

.form-submit { width: 100%; }

.form-required-note {
    font-size: 0.72rem;
    color: var(--cream-a60);
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.form-required-mark {
    color: var(--gold);
    font-weight: 500;
    margin-left: 1px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 22px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold);
}

.form-error {
    display: none;
    text-align: center;
    padding: 16px;
    font-size: 0.88rem;
    color: var(--cream-a70);
    line-height: 1.65;
    border: 1px solid var(--gold-a22);
}

.form-error a { color: var(--gold); text-decoration: underline; }

/* =============================================
   FOOTER
============================================= */
.footer {
    background: var(--text-dark);
    padding: 52px 0 28px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    text-align: center;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--gold-a18);
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.footer-brand-sub {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream-a55);
    margin-top: 5px;
}

.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }

.footer-nav a {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream-a45);
    transition: color var(--ease);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.footer-nav a:hover { color: var(--gold); }

.footer-social-links { display: flex; gap: 14px; }

.footer-social-link {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold-a22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-a45);
    transition: border-color var(--ease), color var(--ease);
}

.footer-social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer-copy {
    text-align: center;
    font-size: 0.72rem;
    color: var(--cream-a55);
    padding-top: 24px;
    letter-spacing: 0.04em;
}

/* =============================================
   SCROLL REVEAL
============================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVE — TABLET 481px+
============================================= */
@media (min-width: 481px) {
    .nav-brand-text { display: block; }

    .services-intro { grid-template-columns: 1fr 1fr; align-items: end; }

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

    .footer-main { flex-direction: row; justify-content: space-between; text-align: left; }

    .footer-nav { justify-content: flex-start; }
}

/* =============================================
   RESPONSIVE — SMALL LAPTOP 769px+
============================================= */
@media (min-width: 769px) {
    .hamburger    { display: none; }
    .mobile-menu  { display: none !important; }
    .nav-links    { display: flex; }
    .nav-cta      { display: inline-flex; }

    .hero { grid-template-columns: 1fr 42vw; }
    .hero-photo { display: block; }
    .hero-ring-1, .hero-ring-2 { display: none; }
    .hero-content { max-width: 720px; }

    .service-row { grid-template-columns: 4rem 1fr; }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 96px;
        align-items: start;
    }

    .contact-grid {
        grid-template-columns: 1fr 1.45fr;
        gap: 88px;
        align-items: start;
    }

    .gallery-grid { columns: 3; }
}

/* =============================================
   RESPONSIVE — DESKTOP 1025px+
============================================= */
@media (min-width: 1025px) {
    .gallery-grid { columns: 4; }
}

/* =============================================
   DARK MODE
============================================= */
@media (prefers-color-scheme: dark) {
    body,
    .services,
    .testimonials {
        background: var(--surface-dark-dm);
    }

    .gallery { background: var(--gallery-dark-dm); }

    .section-title                { color: var(--cream); }
    .section-desc                 { color: var(--cream-a68); }
    .section-label                { color: var(--gold-light); }

    .service-body h3              { color: var(--cream); }
    .service-body p               { color: var(--cream-a68); }
    .service-row:hover            { background: var(--hover-dark-dm); }

    .review-invite-text           { color: var(--cream-a68); }

    .mobile-menu            { background: var(--surface-dark-dm); }
    .mobile-menu a:not(.btn) { color: var(--cream); }

    .nav.scrolled {
        background: color-mix(in oklch, var(--surface-dark-dm) 96%, transparent);
    }
    .nav.scrolled .nav-links a    { color: var(--cream-a88); }
    .nav.scrolled .brand-name     { color: var(--cream); }
    .nav.scrolled .h-line         { background: var(--cream); }
}

/* =============================================
   REDUCED MOTION
============================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
