/* ================================================
   CULINARY FOR ROYALTY — ENHANCEMENT LAYER
   Editorial Modernist Luxury · v2
   ================================================ */

:root {
    --gold-deep: #b88a2a;
    --gold-bright: #f0c869;
    --cream: #f5f0e8;
    --cream-dark: #ebe3d3;
    --ink: #1a1612;
    --ink-soft: #2d2723;
    --font-display: "Cormorant Garamond", "Merriweather", serif;
    --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.45, 0, 0.55, 1);
}

/* ── DISPLAY SERIF & TYPOGRAPHY UPGRADES ── */
.display-serif {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.05;
}

.display-serif em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

h2.display-serif {
    font-size: clamp(3.2rem, 5.5vw, 6rem);
}

.script-flourish {
    font-family: var(--font-script);
    color: var(--gold);
    font-size: 1.35em;
    letter-spacing: 0.01em;
    font-weight: 400;
    line-height: 0.9;
    display: inline-block;
    transform: translateY(0.08em);
}

/* Refined scroll reveal — uses ease-luxury for premium feel */
.reveal {
    transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury);
    transform: translateY(40px);
}
.reveal.visible {
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.28s; }
.reveal-delay-4 { transition-delay: 0.38s; }
.reveal-delay-5 { transition-delay: 0.48s; }

/* ────────────────────────────────────────────────
   ANNOUNCEMENT BAR
   ──────────────────────────────────────────────── */
.announcement-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, #0a0907, #1a1612, #0a0907);
    border-bottom: 1px solid rgba(219, 161, 54, 0.15);
    overflow: hidden;
    z-index: 600;
    height: 32px;
    display: flex;
    align-items: center;
}

.announcement-track {
    display: flex;
    gap: 6rem;
    white-space: nowrap;
    animation: announce-scroll 50s linear infinite;
    font-size: 1.1rem;
    color: rgba(219, 161, 54, 0.7);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: var(--font-serif);
}

.announcement-track span {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.announcement-track i {
    color: var(--gold);
    font-size: 0.9rem;
}

@keyframes announce-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ────────────────────────────────────────────────
   NAV — refined with logo icon + hover indicators
   ──────────────────────────────────────────────── */
header {
    top: 32px !important;
}

header.scrolled {
    background: rgba(8, 6, 4, 0.96);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-bottom: 1px solid rgba(219, 161, 54, 0.18);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.3);
}

nav {
    height: 7rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 4dvw;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    height: 100%;
    opacity: 0;
    transition: opacity 400ms var(--ease-smooth);
}
.nav-brand img {
    height: 4.2rem;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}
header.scrolled .nav-brand { opacity: 1; }

.nav-links {
    justify-content: center;
    gap: 3vw;
    font-size: 1.25rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    font-family: var(--font-serif);
}

.nav-links li > a {
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 0;
    transition: color 300ms var(--ease-smooth);
}

.nav-links li > a > span {
    position: relative;
}

.nav-links li > a > span::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 400ms var(--ease-luxury);
}

.nav-links li > a:hover > span::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.nav-links li > a:hover { color: var(--gold); }

.nav-links li.order-now > a {
    color: var(--gold);
    border: 1px solid rgba(219, 161, 54, 0.4);
    padding: 0.8rem 1.6rem;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 400ms var(--ease-luxury);
    background: rgba(219, 161, 54, 0.05);
}

.nav-links li.order-now > a:hover {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
}

.nav-links li.order-now > a i {
    font-size: 1rem;
    transition: transform 400ms var(--ease-luxury);
}

.nav-links li.order-now > a:hover i { transform: translateX(4px); }

/* Override old nav-line styles */
.nav-line { display: none !important; }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 10;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--white);
    transition: all 350ms var(--ease-luxury);
}

body.mobile-nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.mobile-nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.mobile-nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ────────────────────────────────────────────────
   HERO — cinematic, layered, refined
   ──────────────────────────────────────────────── */
.hero {
    background: var(--black) !important;
    background-image: none !important;
    overflow: hidden;
    padding-top: calc(7rem + 32px + 3dvh);
    padding-bottom: 10dvh;
    min-height: 100dvh;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
    animation: hero-ken-burns 20s var(--ease-smooth) infinite alternate;
    will-change: transform;
}

@keyframes hero-ken-burns {
    0% { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.15) translate(-1.5%, -2%); }
}

.hero-overlay {
    background: 
        radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.9) 100%),
        linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.9) 100%);
}

/* Decorative gold corner brackets — subtle luxury frame */
.hero-decor {
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 1;
    opacity: 0;
    animation: hero-decor-fade 1.5s var(--ease-luxury) 0.6s forwards;
    border-color: rgba(219, 161, 54, 0.4);
    border-style: solid;
}

.hero-decor-tl {
    top: 6rem;
    left: 4rem;
    border-width: 1px 0 0 1px;
}

.hero-decor-br {
    bottom: 6rem;
    right: 4rem;
    border-width: 0 1px 1px 0;
}

@keyframes hero-decor-fade {
    to { opacity: 1; }
}

.hero-content {
    gap: 2.5rem;
    max-width: 900px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--gold);
    font-size: 1.05rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 400;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6em;
}

.hero-tagline .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: word-reveal 800ms var(--ease-luxury) forwards;
}

.hero-tagline .word:nth-child(1) { animation-delay: 0.8s; }
.hero-tagline .word:nth-child(2) { animation-delay: 0.9s; }
.hero-tagline .word:nth-child(3) { animation-delay: 1.0s; color: var(--gold); }
.hero-tagline .word:nth-child(4) { animation-delay: 1.1s; }
.hero-tagline .word:nth-child(5) { animation-delay: 1.2s; }
.hero-tagline .word:nth-child(6) { animation-delay: 1.3s; color: var(--gold); }
.hero-tagline .word:nth-child(7) { animation-delay: 1.4s; }
.hero-tagline .word:nth-child(8) { animation-delay: 1.5s; }
.hero-tagline .word:nth-child(9) { animation-delay: 1.6s; }

@keyframes word-reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.button-ghost {
    color: rgba(255, 255, 255, 0.85);
    padding: 1.6rem 0;
    font-size: 1.3rem;
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: color 400ms var(--ease-luxury), border-color 400ms var(--ease-luxury);
}

.button-ghost:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.button-ghost i {
    transition: transform 400ms var(--ease-luxury);
}

.button-ghost:hover i { transform: translateX(6px); }

.hero-scroll {
    bottom: 4rem !important;
    animation: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    letter-spacing: 0.3em;
    z-index: 1;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold-bright), transparent);
    animation: scroll-line 2.4s var(--ease-smooth) infinite;
}

@keyframes scroll-line {
    to { transform: translateY(120px); }
}

/* Premium button refinement */
.button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    font-size: 1.2rem;
    letter-spacing: 0.18em;
    padding: 1.7rem 4.2rem;
    transition: color 400ms var(--ease-luxury), border-color 400ms var(--ease-luxury);
}

.button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(1);
    transform-origin: right center;
    transition: transform 600ms var(--ease-luxury);
    z-index: -1;
}

.button:hover::before {
    transform: scaleX(0);
    transform-origin: left center;
}

.button:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.button.alternate::before {
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left center;
}

.button.alternate:hover::before {
    transform: scaleX(1);
    transform-origin: right center;
}

.button.alternate:hover {
    color: var(--ink);
    border-color: var(--white);
}

/* ────────────────────────────────────────────────
   STATS STRIP
   ──────────────────────────────────────────────── */
.stats-strip {
    background: linear-gradient(180deg, var(--black) 0%, #0c0a08 100%);
    padding: 7dvh 6dvw;
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid rgba(219, 161, 54, 0.08);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.stat-num-wrap {
    display: inline-flex;
    align-items: baseline;
    line-height: 1;
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(4rem, 5.5vw, 6.5rem);
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(3rem, 4vw, 4.5rem);
    color: var(--gold-bright);
    font-weight: 300;
    line-height: 1;
    margin-left: 0.05em;
}

.stat-icon {
    font-size: clamp(3rem, 4vw, 4.5rem);
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(219, 161, 54, 0.25), transparent);
}

/* ────────────────────────────────────────────────
   EXPERIENCES — editorial numbered cards
   ──────────────────────────────────────────────── */
#experiences {
    background: var(--cream);
    padding: 14dvh 6dvw;
}

#experiences h2 {
    margin-bottom: 1.5rem;
}

#experiences h3 {
    color: rgba(0, 0, 0, 0.45);
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: 2.2rem;
    margin-bottom: 7rem;
}

.services {
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    padding-top: 0;
    cursor: default;
}

.service-number {
    position: absolute;
    top: -3rem;
    left: -1rem;
    font-family: var(--font-display);
    font-size: 9rem;
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
    font-weight: 300;
    font-style: italic;
    z-index: 0;
    pointer-events: none;
    margin: 0;
}

.service-img {
    height: 32dvh;
    position: relative;
    margin-bottom: 2.5rem;
    z-index: 1;
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 50%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 600ms var(--ease-luxury);
}

.service-card:hover .service-img-overlay { opacity: 1; }

.service-img-caption {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 1.8rem;
    font-style: italic;
    transform: translateY(10px);
    transition: transform 600ms var(--ease-luxury);
}

.service-card:hover .service-img-caption { transform: translateY(0); }

.service-card:hover .service-img > img {
    transform: scale(1.06);
}

h4.service-name {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

p.service-desc {
    font-size: 1.45rem;
    line-height: 1.9;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-price {
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
}

.service-price strong {
    color: var(--gold-deep);
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0.2rem;
}

.service-link {
    font-size: 1.15rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid currentColor;
    padding-bottom: 3px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 400ms var(--ease-luxury);
}

.service-link:hover { color: var(--gold-deep); }

.service-link i {
    font-size: 0.85rem;
    transition: transform 400ms var(--ease-luxury);
}

.service-link:hover i { transform: translateX(5px); }


/* ────────────────────────────────────────────────
   DAILY DINING — refined corner brackets
   ──────────────────────────────────────────────── */
#daily-dining {
    padding: 16dvh 6dvw;
    position: relative;
    overflow: hidden;
}

#daily-dining::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(219, 161, 54, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.dd-inner {
    padding: 8rem 6rem;
    max-width: 780px;
}

.dd-inner::before,
.dd-inner::after {
    width: 80px;
    height: 80px;
}

h2.dd-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 4.5vw, 4.8rem);
    font-weight: 400;
    letter-spacing: -0.015em;
}

h2.dd-title strong {
    font-weight: 600;
    color: var(--gold);
    font-style: italic;
}

h3.dd-title {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0;
    font-weight: 300;
}

.checks {
    align-items: center;
    font-family: var(--font-display);
    gap: 1.5rem;
}

.checks li {
    font-size: 2.4rem;
    font-weight: 400;
    font-style: italic;
}

.checks li i {
    color: var(--gold);
    font-size: 1.2rem;
    background: rgba(219, 161, 54, 0.1);
    border: 1px solid rgba(219, 161, 54, 0.3);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ────────────────────────────────────────────────
   PROCESS — 4-step editorial timeline
   ──────────────────────────────────────────────── */
#process {
    background: var(--cream-dark);
    color: var(--ink);
    padding: 14dvh 6dvw;
    position: relative;
    overflow: hidden;
}

#process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.06) 20%, rgba(0, 0, 0, 0.06) 80%, transparent);
    pointer-events: none;
}

.process-header {
    text-align: center;
    margin-bottom: 8rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.process-header h2 {
    color: var(--ink);
    font-size: clamp(3.5rem, 5vw, 5.5rem);
    margin: 1rem 0 2rem;
}

.process-intro {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.9rem;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.6;
    font-weight: 300;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem 8rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    position: relative;
}

.process-step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    transition: all 500ms var(--ease-luxury);
}

.process-step:hover .process-step-number {
    background: var(--gold);
    transform: rotate(360deg);
}

.process-step-number span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 500ms var(--ease-luxury);
}

.process-step:hover .process-step-number span { color: var(--white); }

.process-step-content h4 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: var(--ink);
    margin: 0 0 1.2rem;
    font-weight: 500;
    text-align: left;
    letter-spacing: -0.01em;
}

.process-step-content p {
    font-size: 1.5rem;
    line-height: 1.85;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 300;
    margin: 0;
}


/* ────────────────────────────────────────────────
   GALLERY — refined
   ──────────────────────────────────────────────── */
#gallery {
    padding: 14dvh 0 12dvh;
    background: var(--cream);
}

#gallery h2 {
    color: var(--ink);
    margin: 1.2rem 0 1.5rem;
    padding: 0 6dvw;
}

#gallery h2 em,
#gallery h2 strong {
    color: var(--gold-deep);
    font-style: italic;
    font-weight: 400;
}

.gallery-intro {
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.9rem;
    color: rgba(0, 0, 0, 0.5);
    margin: 0 auto 5rem;
    max-width: 600px;
    padding: 0 6dvw;
    font-weight: 300;
}

.gallery-item {
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gallery-item::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
}

/* ────────────────────────────────────────────────
   REVIEWS — editorial pull quotes
   ──────────────────────────────────────────────── */
#reviews {
    padding: 14dvh 6dvw;
}

#reviews h2 {
    margin-bottom: 1.5rem;
}

#reviews h2 em {
    color: var(--gold);
    font-style: italic;
}

.review-container { gap: 4rem; max-width: 1200px; }

.review-box {
    padding: 4.5rem 3rem;
    position: relative;
    background: rgba(255, 255, 255, 0.015);
    transition: all 600ms var(--ease-luxury);
}

.review-box:hover {
    background: rgba(219, 161, 54, 0.04);
    border-color: rgba(219, 161, 54, 0.35);
    transform: translateY(-4px);
}

.review-quote-icon {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 1.5rem;
}

p.review-desc {
    font-family: var(--font-display);
    font-size: 1.7rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    font-style: italic;
    font-weight: 300;
}

.reviewer-block {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    width: 100%;
    margin-top: auto;
}

p.reviewer {
    font-size: 1.25rem;
    color: var(--gold);
    letter-spacing: 0.18em;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.reviewer-tag {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
    font-style: italic;
}

/* ────────────────────────────────────────────────
   CHEF — magazine spread feel
   ──────────────────────────────────────────────── */
#chef {
    position: relative;
}

.chef-image {
    position: relative;
    overflow: hidden;
}

.chef-image img {
    transition: transform 1.5s var(--ease-luxury);
}

#chef:hover .chef-image img { transform: scale(1.04); }

.chef-image-tag {
    position: absolute;
    top: 3rem;
    left: 3rem;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    padding: 1.5rem 2rem;
    border-left: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.chef-image-tag span:first-child {
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.chef-image-tag span:last-child {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 400;
    font-style: italic;
}

.social {
    padding: 10dvh 7dvw;
}

.chef-intro {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.social h2 {
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 6vw, 6.5rem);
    font-weight: 400;
    margin-top: 1.5rem;
}

.social h2 em {
    color: var(--gold-deep);
    font-style: italic;
    font-weight: 300;
}

.social h3 {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 2.2rem;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 300;
}

.chef-body {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 3rem;
    margin-top: 1rem;
}

.chef-body p:first-child {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-style: italic;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.75);
    font-weight: 400;
    margin-bottom: 2rem !important;
}

.drop-cap {
    font-family: var(--font-display);
    float: left;
    font-size: 6rem;
    line-height: 0.85;
    margin: 0.5rem 1rem 0 0;
    color: var(--gold-deep);
    font-weight: 500;
    font-style: normal;
}

#chef p {
    font-size: 1.5rem;
}

.chef-badges {
    margin-top: 1rem;
}

.chef-badge {
    background: var(--cream);
    border: 1px solid var(--gold);
    padding: 1rem 1.6rem;
    font-size: 1.2rem;
    transition: all 400ms var(--ease-luxury);
}

.chef-badge:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.chef-badge:hover i { color: var(--white); }

strong.tagline {
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: var(--ink);
    font-style: italic;
    font-weight: 400;
    margin-top: 2rem;
}

strong.tagline em {
    color: var(--gold-deep);
}

/* ────────────────────────────────────────────────
   CONTACT — refined form
   ──────────────────────────────────────────────── */
#contact {
    padding: 14dvh 6dvw;
}

#contact h2 em {
    color: var(--gold);
    font-style: italic;
}

p.contact {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 6rem;
    max-width: 560px;
}

.contact-container {
    grid-template-columns: 1fr 320px;
    gap: 7rem;
    max-width: 1100px;
}

.form-info label {
    font-size: 1rem;
    letter-spacing: 0.22em;
    color: var(--gold);
    opacity: 0.7;
    font-weight: 500;
}

.textbox {
    border-bottom-width: 1px;
    border-top: none;
    border-left: none;
    border-right: none;
    background: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.15);
    border-radius: 0;
    padding: 1.4rem 0;
    font-size: 1.5rem;
    transition: all 500ms var(--ease-luxury);
    color: var(--white);
}

.textbox:focus {
    border-bottom-color: var(--gold);
    background: transparent;
    box-shadow: 0 1px 0 0 var(--gold);
}

.textbox::placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-style: italic;
    font-weight: 300;
}

select.textbox {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%23dba136' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 24px;
    padding-right: 32px;
    cursor: pointer;
}

select.textbox option {
    background: var(--ink);
    color: var(--white);
}

textarea.textbox {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    padding: 1.5rem;
    min-height: 16rem;
}

textarea.textbox:focus {
    border-color: var(--gold);
    box-shadow: none;
}

.form-info.service-interest { width: 100%; }

.form-submit {
    background: var(--gold);
    color: var(--white);
    border: 1px solid var(--gold);
    padding: 1.8rem 4rem;
    font-family: var(--font-serif);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 1.25rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    transition: all 500ms var(--ease-luxury);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--black);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 500ms var(--ease-luxury);
    z-index: -1;
}

.form-submit:hover::before {
    transform: scaleX(1);
}

.form-submit:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.form-submit i {
    font-size: 1rem;
    transition: transform 400ms var(--ease-luxury);
}

.form-submit:hover i { transform: translateX(6px); }

.socials {
    padding-left: 4.5rem;
}

.socials-heading {
    margin-bottom: 2rem;
}

.social-text {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* ────────────────────────────────────────────────
   FOOTER — large refined
   ──────────────────────────────────────────────── */
.footer-large {
    background: linear-gradient(180deg, #000 0%, #050402 100%);
    border-top: 1px solid rgba(219, 161, 54, 0.12);
    padding: 0;
}

.footer-top {
    padding: 6dvh 6dvw 4dvh;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand img {
    height: 5rem;
    margin-bottom: 2rem;
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.45rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 0 0 2.5rem;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(219, 161, 54, 0.08);
    border: 1px solid rgba(219, 161, 54, 0.2);
    color: var(--gold);
    border-radius: 50%;
    transition: all 400ms var(--ease-luxury);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.footer-social a i { color: inherit; font-size: 1.4rem; }

.footer-col h6 {
    font-size: 1.05rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 500;
    text-align: left;
}

.footer-col ul {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
}

.footer-col li,
.footer-col li a {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    transition: color 400ms var(--ease-luxury);
}

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

.footer-bottom {
    padding: 2.5rem 6dvw;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
    gap: 2.5rem;
    font-size: 1.15rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.3);
    transition: color 400ms var(--ease-luxury);
}

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


/* ────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .announcement-bar { height: 28px; }
    .announcement-track { font-size: 0.95rem; }
    header { top: 28px !important; }

    nav { grid-template-columns: 1fr auto; padding: 0 4vw; }
    .nav-brand { opacity: 1; }
    .nav-brand img { height: 3.5rem; }
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(8, 6, 4, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        font-size: 1.8rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 400ms var(--ease-luxury);
        z-index: 5;
    }

    body.mobile-nav-open .nav-links {
        opacity: 1;
        pointer-events: auto;
    }

    .hero-decor { display: none; }

    /* Stats strip on mobile — single column stack */
    .stats-strip { grid-template-columns: 1fr; padding: 5dvh 4dvw; gap: 4rem 0; }
    .stat-divider { display: none; }

    /* Process */
    .process-grid { grid-template-columns: 1fr; gap: 4rem; }

    /* Chef tag */
    .chef-image-tag { top: 2rem; left: 2rem; padding: 1rem 1.5rem; }
    .chef-image-tag span:last-child { font-size: 1.5rem; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr 1fr; gap: 4rem 2rem; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 1.2rem; text-align: center; }

    /* Reviews single column */
    .review-box { padding: 3.5rem 2.5rem; }
}

@media (max-width: 640px) {
    .announcement-bar { height: 26px; }
    .announcement-track { font-size: 0.8rem; gap: 4rem; }
    header { top: 26px !important; }

    nav { padding: 0 4vw; height: 6.5rem; }
    .nav-brand img { height: 3rem; }

    .hero-content { gap: 2rem; padding: 0 4vw; }
    .hero-eyebrow { font-size: 0.9rem; letter-spacing: 0.3em; gap: 1rem; }
    .hero-eyebrow-line { width: 25px; }
    .hero-tagline { font-size: 1.1rem; letter-spacing: 0.2em; gap: 0.4em; }
    .hero-actions { flex-direction: column; width: 100%; gap: 1.2rem; }
    .hero-actions .button, .button-ghost { width: 100%; text-align: center; justify-content: center; }
    .hero-scroll { bottom: 3rem !important; }
    .hero-scroll-line { height: 40px; }

    .stats-strip { padding: 5dvh 4dvw; gap: 3rem 1rem; }
    .stat-num { font-size: 3.2rem; }
    .stat-label { font-size: 0.95rem; letter-spacing: 0.18em; }

    #experiences { padding: 10dvh 5dvw; }
    .service-number { font-size: 7rem; top: -2rem; }
    h4.service-name { font-size: 2rem; }
    .service-meta { flex-direction: column; gap: 1.2rem; align-items: flex-start; }

    #process { padding: 10dvh 5dvw; }
    .process-header { margin-bottom: 5rem; }
    .process-step { gap: 1.5rem; }
    .process-step-number { width: 50px; height: 50px; }
    .process-step-content h4 { font-size: 2rem; }

    #gallery h2 em { font-size: inherit; }

    .review-container { grid-template-columns: 1fr; gap: 2rem; }

    .chef-image-tag { top: 1.5rem; left: 1.5rem; padding: 0.8rem 1.2rem; }
    .chef-image-tag span:first-child { font-size: 0.85rem; }
    .chef-image-tag span:last-child { font-size: 1.3rem; }

    .drop-cap { font-size: 4.5rem; }
    .chef-body p:first-child { font-size: 1.55rem; }

    #contact { padding: 10dvh 5dvw; }
    .contact-container { grid-template-columns: 1fr; gap: 4rem; }
    .socials { padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 3rem; }

    .footer-top { grid-template-columns: 1fr; gap: 3rem; padding: 5dvh 5dvw 3dvh; text-align: center; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .footer-col h6 { text-align: center; }
    .footer-col ul { align-items: center; }
    .footer-bottom-links { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .hero-bg img { animation: none !important; }
    .announcement-track { animation: none !important; }
    .hero-scroll-line::after { animation: none !important; }
    .hero-tagline .word { animation: none !important; opacity: 1; transform: none; }
    .reveal { transition-duration: 0.3s; }
}

/* ────────────────────────────────────────────────
   SUBPAGE FIXES — fixed header offset
   ──────────────────────────────────────────────── */
/* Menu page needs top padding to clear the fixed header + ticker */
.subpage-menu main {
    padding-top: calc(10dvh + 7rem + 32px) !important;
}

/* Menu page title — luxury serif treatment */
.subpage-menu main h1 {
    font-family: var(--font-display) !important;
    font-weight: 400 !important;
    letter-spacing: -0.02em !important;
    font-size: clamp(4.5rem, 7vw, 8rem) !important;
    color: var(--white) !important;
    line-height: 1.05 !important;
    margin: 1.5rem 0 2rem;
}

.subpage-menu main h1 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
}

.subpage-menu main .menu-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.subpage-menu main .menu-main.center {
    flex: 1.4;
}

.subpage-menu main .menu-main p {
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.65rem;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    max-width: 400px;
}

.menu-eyebrow {
    font-size: 1.1rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: block;
}

.menu-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin-top: 1rem;
}

.subpage-menu .menu-name {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.01em;
    font-style: italic;
}

/* Override the original "header.subpage" positioning by using the same logic as homepage header */
header#main-header.scrolled .nav-brand { opacity: 1 !important; }

@media (max-width: 1100px) {
    .subpage-menu main {
        padding-top: calc(8dvh + 6.5rem + 28px) !important;
    }
}

@media (max-width: 640px) {
    .subpage-menu main {
        padding-top: calc(6dvh + 6.5rem + 26px) !important;
    }
}
