﻿      :root {
        --bg: #f6f2e9;
        --surface: #fdfaf4;
        --surface-soft: #efe8db;
        --ink: #162320;
        --ink-soft: #243530;
        --deep: #0f1816;
        --sage: #8ea88d;
        --sage-bright: #a9c29f;
        --moss: #71876d;
        --olive: #60755c;
        --gold-soft: #d7c39b;
        --rose-sand: #d4b5a0;
        --muted: #6c756f;
        --muted-2: rgba(22, 35, 32, 0.58);
        --line: rgba(96, 117, 92, 0.14);
        --shadow: 0 22px 70px rgba(19, 28, 26, 0.08);
        --shadow-soft: 0 18px 40px rgba(21, 30, 28, 0.06);
        --radius-lg: 28px;
        --radius-md: 20px;
        --radius-sm: 14px;
        --ease: cubic-bezier(0.22, 1, 0.36, 1);
      }

      * { box-sizing: border-box; }
      html { scroll-behavior: smooth; }

      body {
        margin: 0;
        font-family: "DM Sans", sans-serif;
        background:
          radial-gradient(circle at top left, rgba(169, 194, 159, 0.16), transparent 26%),
          radial-gradient(circle at right 15%, rgba(212, 181, 160, 0.16), transparent 24%),
          linear-gradient(180deg, #f8f5ee, #f4efe5 50%, #f6f2e9 100%);
        color: var(--ink);
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
        overflow-x: clip;
      }

      img { display: block; max-width: 100%; }
      a { color: inherit; text-decoration: none; }
      button, input, textarea, select { font: inherit; }
      ::selection { background: rgba(142, 168, 141, 0.25); color: var(--ink); }

      .page-shell { position: relative; }

      .ambient-blur { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
      .ambient-blur::before, .ambient-blur::after {
        content: ""; position: absolute; border-radius: 999px; filter: blur(90px); opacity: 0.5;
      }
      .ambient-blur::before {
        top: -120px; left: -140px; width: 340px; height: 340px;
        background: rgba(169, 194, 159, 0.22);
      }
      .ambient-blur::after {
        top: 180px; right: -120px; width: 320px; height: 320px;
        background: rgba(212, 181, 160, 0.2);
      }

      .site-nav {
        position: fixed; inset: 0 0 auto 0; z-index: 70;
        display: flex; align-items: center; justify-content: space-between;
        padding: 24px 80px; transition: all 0.5s var(--ease);
      }
      .site-nav.scrolled {
        padding-top: 16px; padding-bottom: 16px;
        background: rgba(253, 250, 244, 0.74);
        border-bottom: 1px solid rgba(96, 117, 92, 0.1);
        backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 14px 40px rgba(18, 28, 25, 0.05);
      }
      .nav-brand {
        font-family: "Syne", sans-serif; font-size: 13px; font-weight: 600;
        letter-spacing: 0.35em; text-transform: uppercase; color: var(--ink);
      }
      .nav-links { display: flex; align-items: center; gap: 34px; }
      .nav-links a {
        position: relative; font-size: 11px; letter-spacing: 0.16em;
        text-transform: uppercase; color: var(--muted-2); transition: color 0.3s ease;
      }
      .nav-links a::after {
        content: ""; position: absolute; left: 0; right: 0; bottom: -8px;
        height: 1px; background: var(--ink); transform: scaleX(0);
        transform-origin: left; transition: transform 0.3s ease;
      }
      .nav-links a:hover { color: var(--ink); }
      .nav-links a:hover::after { transform: scaleX(1); }
      .nav-cta {
        display: inline-flex; align-items: center; gap: 10px;
        padding: 12px 22px; border-radius: 999px;
        background: rgba(255, 255, 255, 0.54);
        border: 1px solid rgba(96, 117, 92, 0.12);
        box-shadow: var(--shadow-soft); color: var(--ink);
        font-size: 12px; font-weight: 500;
        transition: transform 0.35s var(--ease), background 0.35s ease, box-shadow 0.35s ease;
      }
      .nav-cta:hover {
        transform: translateY(-2px); background: rgba(255, 255, 255, 0.82);
        box-shadow: 0 20px 40px rgba(18, 28, 25, 0.08);
      }
      .mobile-toggle, .mobile-nav { display: none; }

      .hero {
        position: relative; z-index: 1; min-height: 100vh; padding: 128px 80px 56px;
      }
      .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(380px, 480px);
        gap: 52px; align-items: center;
      }
      .eyebrow {
        display: inline-flex; align-items: center; gap: 12px;
        padding: 12px 16px; border-radius: 999px;
        background: rgba(255, 255, 255, 0.56);
        border: 1px solid rgba(96, 117, 92, 0.12);
        backdrop-filter: blur(12px); box-shadow: var(--shadow-soft);
        color: var(--olive); font-family: "Syne", sans-serif;
        font-size: 10px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
      }
      .eyebrow-dot {
        width: 9px; height: 9px; border-radius: 999px;
        background: #22c55e;
        box-shadow: 0 0 8px 2px rgba(34, 197, 94, 0.5);
        animation: livePulse 1.8s ease-in-out infinite;
      }
      .hero-copy { max-width: 760px; }
      .hero-title {
        margin: 22px 0 18px; font-family: "Cormorant Garamond", serif;
        font-size: clamp(68px, 10vw, 126px); line-height: 0.92;
        letter-spacing: -0.05em; font-weight: 300; color: var(--ink);
      }
      .hero-title em { font-style: italic; font-weight: 500; color: var(--moss); }
      .hero-subtitle {
        max-width: 560px; margin: 0 0 34px; color: var(--muted);
        font-size: 17px; line-height: 1.9; font-weight: 300;
      }
      .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }
      .btn-primary, .btn-secondary {
        display: inline-flex; align-items: center; gap: 12px;
        padding: 16px 22px; border-radius: 999px;
        font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
        transition: transform 0.35s var(--ease), box-shadow 0.35s ease,
          background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
      }
      .btn-primary {
        background: linear-gradient(135deg, var(--sage-bright), var(--sage));
        color: var(--deep); box-shadow: 0 18px 38px rgba(142, 168, 141, 0.24);
      }
      .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 44px rgba(142, 168, 141, 0.26); }
      .btn-secondary {
        border: 1px solid rgba(96, 117, 92, 0.14);
        background: rgba(255, 255, 255, 0.48); color: var(--ink); box-shadow: var(--shadow-soft);
      }
      .btn-secondary:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.74); }
      .hero-meta { display: flex; flex-wrap: wrap; gap: 28px; }
      .hero-meta-item { display: flex; flex-direction: column; gap: 6px; }
      .hero-meta-value {
        font-family: "Cormorant Garamond", serif; font-size: 34px; line-height: 1; color: var(--ink);
      }
      .hero-meta-label {
        font-family: "Syne", sans-serif; font-size: 10px;
        letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
      }
      .hero-visual { position: relative; }
      .hero-card {
        position: relative; overflow: hidden; border-radius: 36px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(96, 117, 92, 0.12);
        box-shadow: var(--shadow); min-height: 700px; transform: translateY(0);
      }
      .hero-card::after {
        content: ""; position: absolute; inset: 18px;
        border: 1px solid rgba(255, 255, 255, 0.38);
        border-radius: 28px; pointer-events: none;
      }
      .hero-image {
        width: 100%; height: 700px; object-fit: cover;
        filter: saturate(0.9) contrast(1.02) brightness(0.92);
        transform: scale(1.05); animation: heroFloat 20s var(--ease) infinite alternate;
      }
      .hero-panel {
        position: absolute; left: 22px; right: 22px; bottom: 22px;
        display: grid; gap: 16px; padding: 22px;
        background: rgba(15, 24, 22, 0.68);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px; backdrop-filter: blur(14px); color: #f9f6f0;
      }
      .hero-panel-top { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
      .hero-panel-title {
        margin: 0; font-family: "Cormorant Garamond", serif;
        font-size: 32px; font-weight: 400; line-height: 1.05;
      }
      .hero-panel-copy {
        margin: 8px 0 0; max-width: 300px; font-size: 13px;
        line-height: 1.75; color: rgba(249, 246, 240, 0.68);
      }
      .hero-panel-badge {
        padding: 10px 12px; border-radius: 999px;
        background: rgba(255, 255, 255, 0.1); font-family: "Syne", sans-serif;
        font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft);
      }
      .hero-panel-grid {
        display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px;
      }
      .hero-panel-stat { padding: 14px; border-radius: 18px; background: rgba(255, 255, 255, 0.06); }
      .hero-panel-stat strong {
        display: block; margin-bottom: 4px; font-family: "Cormorant Garamond", serif;
        font-size: 28px; font-weight: 400;
      }
      .hero-panel-stat span {
        font-size: 11px; letter-spacing: 0.12em;
        text-transform: uppercase; color: rgba(249, 246, 240, 0.6);
      }
      .scroll-note {
        display: flex; align-items: center; justify-content: center; gap: 14px;
        margin-top: 38px; font-family: "Syne", sans-serif; font-size: 10px;
        letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted);
      }
      .scroll-line {
        position: relative; width: 56px; height: 1px;
        background: rgba(96, 117, 92, 0.18); overflow: hidden;
      }
      .scroll-line::after {
        content: ""; position: absolute; top: 0; left: -40%;
        width: 40%; height: 100%; background: var(--sage);
        animation: shimmer 2.2s ease-in-out infinite;
      }

      .section { position: relative; z-index: 1; padding: 120px 80px; }
      .section-shell {
        border-radius: 34px; background: rgba(255, 255, 255, 0.62);
        border: 1px solid rgba(96, 117, 92, 0.1);
        box-shadow: var(--shadow-soft); backdrop-filter: blur(12px);
      }
      .section-shell-dark {
        background: linear-gradient(180deg, rgba(22, 35, 32, 0.96), rgba(15, 24, 22, 0.98));
        border-color: rgba(255, 255, 255, 0.06); color: #f8f5ee;
      }
      .section-inner { padding: 80px; }
      .section-label {
        display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
        color: var(--olive); font-family: "Syne", sans-serif; font-size: 10px;
        font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
      }
      .section-label::before {
        content: ""; width: 26px; height: 1px; background: rgba(96, 117, 92, 0.32);
      }
      .section-title {
        margin: 0; font-family: "Cormorant Garamond", serif;
        font-size: clamp(48px, 6vw, 74px); line-height: 0.98;
        letter-spacing: -0.04em; font-weight: 300;
      }
      .section-title em { font-style: italic; font-weight: 500; color: var(--moss); }
      .section-title.light { color: #f8f5ee; }
      .section-title.light em { color: var(--sage-bright); }
      .section-copy { max-width: 620px; margin-top: 20px; color: var(--muted); font-size: 16px; line-height: 1.9; }

      .story-block { text-align: center; }
      .story-divider {
        width: 68px; height: 1px; margin: 0 auto 28px;
        background: linear-gradient(90deg, transparent, var(--sage), transparent);
      }
      .story-quote {
        max-width: 840px; margin: 0 auto 24px; font-family: "Cormorant Garamond", serif;
        font-size: clamp(32px, 4vw, 48px); line-height: 1.35;
        font-style: italic; font-weight: 300; color: #f8f5ee;
      }
      .story-credit { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(248, 245, 238, 0.52); }
      .story-stats {
        display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px; margin-top: 56px;
      }
      .story-stat {
        padding: 24px 18px; border-radius: 22px;
        background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.05);
      }
      .story-stat strong {
        display: block; margin-bottom: 6px; font-family: "Cormorant Garamond", serif;
        font-size: 42px; font-weight: 400; color: var(--sage-bright);
      }
      .story-stat span {
        font-family: "Syne", sans-serif; font-size: 10px;
        letter-spacing: 0.2em; text-transform: uppercase; color: rgba(248, 245, 238, 0.5);
      }

      .menu-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 42px; }
      .menu-pills { display: flex; flex-wrap: wrap; gap: 10px; }
      .menu-pill {
        padding: 10px 14px; border-radius: 999px; border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.48); color: var(--muted);
        font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
      }

      .dish-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 18px; }
      .dish-feature {
        position: relative; overflow: hidden; min-height: 620px;
        border-radius: 30px; box-shadow: var(--shadow);
      }
      .dish-feature img {
        width: 100%; height: 100%; object-fit: cover;
        transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
        filter: brightness(0.8) saturate(0.88);
      }
      .dish-feature:hover img { transform: scale(1.05); filter: brightness(0.72) saturate(0.95); }
      .dish-feature-overlay {
        position: absolute; inset: 0; display: flex; flex-direction: column;
        justify-content: end; padding: 34px;
        background: linear-gradient(180deg, rgba(15, 24, 22, 0.04), rgba(15, 24, 22, 0.76));
        color: #fbf8f3;
      }
      .dish-kicker {
        font-family: "Syne", sans-serif; font-size: 10px;
        letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage-bright);
      }
      .dish-title {
        margin: 8px 0 12px; font-family: "Cormorant Garamond", serif;
        font-size: 42px; line-height: 1.04; font-style: italic; font-weight: 400;
      }
      .dish-text { max-width: 420px; margin: 0; color: rgba(251, 248, 243, 0.72); font-size: 14px; line-height: 1.85; }
      .dish-price { margin-top: 18px; font-family: "Cormorant Garamond", serif; font-size: 34px; color: var(--gold-soft); }
      .dish-stack { display: grid; gap: 18px; }
      .dish-card {
        display: grid; grid-template-columns: 148px 1fr; gap: 18px; align-items: stretch;
        padding: 18px; border-radius: 24px; background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(96, 117, 92, 0.1); box-shadow: var(--shadow-soft);
        transition: transform 0.45s var(--ease), box-shadow 0.45s ease;
      }
      .dish-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(19, 28, 26, 0.08); }
      .dish-card-media { overflow: hidden; border-radius: 18px; }
      .dish-card-media img {
        width: 100%; height: 100%; min-height: 166px; object-fit: cover;
        transition: transform 0.8s var(--ease);
      }
      .dish-card:hover .dish-card-media img { transform: scale(1.06); }
      .dish-card-content { display: flex; flex-direction: column; justify-content: center; }
      .dish-card-title {
        margin: 8px 0; font-family: "Cormorant Garamond", serif;
        font-size: 28px; line-height: 1.08; font-style: italic; font-weight: 400;
      }
      .dish-card-text { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
      .dish-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; }
      .dish-card-link {
        font-family: "Syne", sans-serif; font-size: 10px;
        letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive);
      }

      .about-grid {
        display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
        gap: 26px; align-items: stretch;
      }
      .about-card, .about-image-card { border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-soft); }
      .about-card {
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(96, 117, 92, 0.1); padding: 46px;
      }
      .about-text { margin: 20px 0 0; font-size: 15px; line-height: 1.95; color: var(--muted); white-space: pre-line; }
      .feature-list {
        display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px; margin-top: 36px;
      }
      .feature-item {
        display: flex; align-items: start; gap: 12px; padding: 16px 18px;
        border-radius: 18px; background: rgba(255, 255, 255, 0.66);
        border: 1px solid rgba(96, 117, 92, 0.08);
      }
      .feature-icon {
        width: 26px; height: 26px; display: inline-flex; align-items: center;
        justify-content: center; border-radius: 999px;
        background: rgba(142, 168, 141, 0.14); color: var(--olive); flex: 0 0 auto;
      }
      .feature-copy strong { display: block; margin-bottom: 4px; font-size: 13px; font-weight: 600; color: var(--ink); }
      .feature-copy span { display: block; font-size: 13px; line-height: 1.75; color: var(--muted); }
      .about-image-card { position: relative; min-height: 100%; }
      .about-image-card img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
      .about-floating {
        position: absolute; left: 24px; right: 24px; bottom: 24px;
        padding: 18px 20px; border-radius: 22px;
        background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(12px); color: var(--ink);
      }
      .about-floating strong {
        display: block; margin-bottom: 6px; font-family: "Cormorant Garamond", serif;
        font-size: 30px; font-weight: 400;
      }
      .about-floating span { color: var(--muted); font-size: 13px; line-height: 1.75; }

      .gallery-wrap { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 20px; align-items: stretch; }
      .gallery-note {
        display: flex; flex-direction: column; justify-content: space-between;
        padding: 34px; border-radius: 30px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.62));
        border: 1px solid rgba(96, 117, 92, 0.1); box-shadow: var(--shadow-soft);
      }
      .gallery-note p { margin: 18px 0 0; max-width: 360px; color: var(--muted); font-size: 15px; line-height: 1.9; }
      .gallery-note-stats { display: grid; gap: 10px; margin-top: 44px; }
      .gallery-note-stats div {
        display: flex; align-items: center; justify-content: space-between;
        gap: 12px; padding: 16px 0; border-top: 1px solid var(--line);
      }
      .gallery-note-stats strong { font-family: "Cormorant Garamond", serif; font-size: 28px; font-weight: 400; }
      .gallery-note-stats span {
        font-family: "Syne", sans-serif; font-size: 10px;
        letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
      }
      .gallery-grid {
        display: grid; grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 240px 240px; gap: 12px;
      }
      .gallery-item { overflow: hidden; border-radius: 24px; box-shadow: var(--shadow-soft); }
      .gallery-item img {
        width: 100%; height: 100%; object-fit: cover;
        transition: transform 0.7s var(--ease), filter 0.7s ease; filter: saturate(0.92);
      }
      .gallery-item:hover img { transform: scale(1.05); filter: saturate(1); }
      .gallery-tall { grid-row: 1 / 3; }
      .gallery-wide { grid-column: 2 / 4; }

      .reserve-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 20px; align-items: stretch; }
      .reserve-info {
        padding: 42px; border-radius: 30px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.6));
        border: 1px solid rgba(96, 117, 92, 0.08); box-shadow: var(--shadow-soft);
      }
      .reserve-title {
        margin: 0 0 24px; font-family: "Cormorant Garamond", serif;
        font-size: clamp(48px, 6vw, 76px); line-height: 0.96;
        letter-spacing: -0.04em; font-weight: 300;
      }
      .reserve-title em { display: block; font-style: italic; color: var(--moss); font-weight: 500; }
      .reserve-copy { max-width: 480px; margin: 0 0 34px; color: var(--muted); font-size: 16px; line-height: 1.9; }
      .info-list { display: grid; gap: 14px; }
      .info-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 18px 20px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(96, 117, 92, 0.1);
        box-shadow: 0 4px 16px rgba(19, 28, 26, 0.04);
      }
      .info-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: rgba(142, 168, 141, 0.14);
        color: var(--olive);
      }
      .info-icon svg {
        width: 20px;
        height: 20px;
        display: block;
        flex-shrink: 0;
      }
      .info-text { flex: 1; min-width: 0; }
      .info-item strong {
        display: block;
        margin-bottom: 4px;
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--muted);
        font-weight: 600;
      }
      .info-item span {
        display: block;
        color: var(--ink);
        font-size: 14px;
        line-height: 1.5;
        font-weight: 400;
      }

      .reserve-form-card {
        padding: 42px; border-radius: 30px;
        background: linear-gradient(180deg, rgba(18, 31, 28, 0.96), rgba(15, 24, 22, 0.99));
        color: #faf7f1; box-shadow: var(--shadow);
      }
      .form-intro { margin-bottom: 26px; }
      .form-intro h3 { margin: 0 0 10px; font-family: "Cormorant Garamond", serif; font-size: 40px; font-weight: 400; }
      .form-intro p { margin: 0; color: rgba(250, 247, 241, 0.62); font-size: 14px; line-height: 1.85; }
      .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 18px; }
      .field { display: grid; }
      .field.full { grid-column: 1 / -1; }
      .field label {
        margin-bottom: 10px; font-family: "Syne", sans-serif; font-size: 9px;
        font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--sage-bright);
      }
      .field input, .field select, .field textarea {
        width: 100%; border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px; background: rgba(255, 255, 255, 0.05);
        color: #faf7f1; padding: 16px; outline: none;
        transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      }
      .field input::placeholder, .field textarea::placeholder { color: rgba(250, 247, 241, 0.34); }
      .field input:focus, .field select:focus, .field textarea:focus {
        border-color: rgba(169, 194, 159, 0.42); background: rgba(255, 255, 255, 0.07);
        box-shadow: 0 0 0 4px rgba(142, 168, 141, 0.12); transform: translateY(-1px);
      }
      .field select option { color: var(--ink); }
      .field textarea { min-height: 120px; resize: vertical; }
      .submit-btn {
        display: inline-flex; align-items: center; justify-content: center; gap: 12px;
        width: 100%; margin-top: 24px; padding: 18px 22px; border: 0; border-radius: 999px;
        background: linear-gradient(135deg, var(--sage-bright), var(--sage));
        color: var(--deep); font-size: 12px; font-weight: 700;
        letter-spacing: 0.18em; text-transform: uppercase;
        box-shadow: 0 18px 38px rgba(142, 168, 141, 0.2);
        transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
      }
      .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 24px 44px rgba(142, 168, 141, 0.24); }

      .testimonials-shell { text-align: center; }
      .testimonial-carousel { position: relative; min-height: 240px; margin-top: 30px; }
      .testimonial-slide {
        position: absolute; inset: 0; display: flex; flex-direction: column;
        align-items: center; justify-content: center; gap: 22px;
        opacity: 0; visibility: hidden; transform: translateY(14px);
        transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), visibility 0.7s ease;
      }
      .testimonial-slide.active { opacity: 1; visibility: visible; transform: translateY(0); }
      .testimonial-stars { display: inline-flex; gap: 6px; color: #D4AF37; }
      .testimonial-quote {
        max-width: 760px; margin: 0; font-family: "Cormorant Garamond", serif;
        font-size: clamp(30px, 4vw, 44px); line-height: 1.35;
        font-style: italic; font-weight: 300; color: #f8f5ee;
      }
      .testimonial-author {
        font-family: "Syne", sans-serif; font-size: 10px;
        letter-spacing: 0.22em; text-transform: uppercase; color: rgba(248, 245, 238, 0.58);
      }
      .carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
      .carousel-dot {
        width: 9px; height: 9px; padding: 0; border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.3); background: transparent;
        transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
      }
      .carousel-dot.active { background: var(--sage-bright); border-color: var(--sage-bright); transform: scale(1.16); }

      .site-footer { position: relative; z-index: 1; padding: 32px 80px 56px; }
      .footer-shell {
        padding: 36px 42px 28px; border-radius: 28px;
        background: rgba(255, 255, 255, 0.62);
        border: 1px solid rgba(96, 117, 92, 0.1); box-shadow: var(--shadow-soft);
      }
      .footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; }
      .footer-brand {
        font-family: "Syne", sans-serif; font-size: 16px; font-weight: 600;
        letter-spacing: 0.32em; text-transform: uppercase;
      }
      .footer-location { margin-top: 10px; color: var(--muted); font-size: 13px; }
      .footer-title {
        margin: 0 0 16px; font-family: "Syne", sans-serif; font-size: 10px;
        letter-spacing: 0.22em; text-transform: uppercase; color: var(--olive);
      }
      .footer-links { display: grid; gap: 10px; }
      .footer-links a { color: var(--muted); font-size: 13px; transition: color 0.3s ease, transform 0.3s ease; }
      .footer-links a:hover { color: var(--ink); transform: translateX(2px); }
      .footer-bottom {
        margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line);
        text-align: center; font-size: 12px; color: var(--muted);
      }

      .icon { width: 16px; height: 16px; flex: 0 0 auto; }
      .icon.sm { width: 14px; height: 14px; }

      [data-reveal] {
        opacity: 0; transform: translate3d(0, 30px, 0);
        transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
        filter: blur(3px); will-change: opacity, transform;
      }
      [data-reveal].revealed { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
      [data-reveal="left"] { transform: translate3d(-34px, 0, 0); }
      [data-reveal="right"] { transform: translate3d(34px, 0, 0); }
      [data-delay="100"] { transition-delay: 100ms; }
      [data-delay="180"] { transition-delay: 180ms; }
      [data-delay="260"] { transition-delay: 260ms; }
      [data-delay="340"] { transition-delay: 340ms; }

      .hero-fade { opacity: 0; transform: translateY(24px); animation: fadeUp 0.9s var(--ease) forwards; }
      .delay-1 { animation-delay: 0.1s; }
      .delay-2 { animation-delay: 0.24s; }
      .delay-3 { animation-delay: 0.38s; }
      .delay-4 { animation-delay: 0.52s; }

      @keyframes livePulse {
        0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6), 0 0 8px 2px rgba(34, 197, 94, 0.4); transform: scale(1); }
        50%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0), 0 0 14px 4px rgba(34, 197, 94, 0.3); transform: scale(1.15); }
        100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0), 0 0 8px 2px rgba(34, 197, 94, 0.4); transform: scale(1); }
      }

      @keyframes fadeUp {
        from { opacity: 0; transform: translateY(24px); }
        to { opacity: 1; transform: translateY(0); }
      }
      @keyframes heroFloat {
        0% { transform: scale(1.05) translate3d(0, 0, 0); }
        50% { transform: scale(1.08) translate3d(-10px, -8px, 0); }
        100% { transform: scale(1.1) translate3d(10px, 8px, 0); }
      }
      @keyframes softPulse {
        0% { box-shadow: 0 0 0 0 rgba(142, 168, 141, 0.34); }
        70% { box-shadow: 0 0 0 10px rgba(142, 168, 141, 0); }
        100% { box-shadow: 0 0 0 0 rgba(142, 168, 141, 0); }
      }
      @keyframes shimmer {
        0% { left: -40%; }
        100% { left: 110%; }
      }

      @media (max-width: 1180px) {
        .site-nav, .hero, .section, .site-footer { padding-left: 40px; padding-right: 40px; }
        .section-inner { padding: 58px; }
        .hero-grid, .dish-grid, .gallery-wrap, .reserve-grid, .about-grid { grid-template-columns: 1fr; }
        .hero-card, .hero-image { min-height: auto; height: 600px; }
        .hero-copy { max-width: none; }
        .about-image-card img { min-height: 520px; }
        .footer-grid { grid-template-columns: 1fr 1fr; }
      }

      @media (max-width: 768px) {
        .site-nav { padding: 18px 24px; }
        .nav-links, .nav-cta { display: none; }
        .mobile-toggle {
          display: inline-flex; align-items: center; gap: 10px; border: 0;
          background: rgba(255, 255, 255, 0.62); border-radius: 999px;
          padding: 10px 14px; color: var(--ink); box-shadow: var(--shadow-soft);
        }
        .mobile-nav {
          position: fixed; top: 74px; left: 24px; right: 24px; z-index: 68;
          display: none; flex-direction: column; gap: 2px; padding: 10px;
          border-radius: 22px; background: rgba(253, 250, 244, 0.92);
          border: 1px solid rgba(96, 117, 92, 0.1); box-shadow: var(--shadow);
          backdrop-filter: blur(16px);
        }
        .mobile-nav.open { display: flex; }
        .mobile-nav a {
          padding: 14px 12px; border-radius: 14px; color: var(--muted);
          font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
        }
        .mobile-nav a:last-child { background: rgba(142, 168, 141, 0.12); color: var(--ink); }
        .hero, .section, .site-footer { padding-left: 24px; padding-right: 24px; }
        .hero { padding-top: 108px; padding-bottom: 42px; }
        .hero-grid { gap: 28px; }
        .hero-actions, .hero-meta, .menu-head { flex-direction: column; align-items: flex-start; }
        .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
        .hero-card, .hero-image { height: 520px; }
        .hero-panel-grid, .story-stats, .feature-list, .form-grid, .footer-grid { grid-template-columns: 1fr; }
        .section-inner, .about-card, .reserve-info, .reserve-form-card, .gallery-note, .footer-shell { padding: 30px 24px; }
        .dish-card { grid-template-columns: 1fr; }
        .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 180px); }
        .gallery-wide, .gallery-tall { grid-column: auto; grid-row: auto; }
        .about-image-card img { min-height: 400px; }
        .testimonial-carousel { min-height: 300px; }
      }

      /* ── CHEFS SECTION ── */
      .chefs-head {
        text-align: center;
        margin-bottom: 56px;
      }

      .chefs-head .section-copy {
        margin: 20px auto 0;
      }

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

      .chef-card {
        border-radius: 26px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(96, 117, 92, 0.1);
        box-shadow: var(--shadow-soft);
        transition: transform 0.45s var(--ease), box-shadow 0.45s ease;
      }

      .chef-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 28px 60px rgba(19, 28, 26, 0.1);
      }

      .chef-media {
        position: relative;
        overflow: hidden;
        height: 300px;
      }

      .chef-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        filter: saturate(0.88) brightness(0.95);
        transition: transform 0.8s var(--ease), filter 0.8s ease;
      }

      .chef-card:hover .chef-media img {
        transform: scale(1.06);
        filter: saturate(1) brightness(0.9);
      }

      .chef-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: flex-end;
        padding: 18px;
        background: linear-gradient(180deg, transparent 50%, rgba(15, 24, 22, 0.65) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
      }

      .chef-card:hover .chef-overlay {
        opacity: 1;
      }

      .chef-specialty {
        display: inline-block;
        padding: 7px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.22);
        backdrop-filter: blur(8px);
        font-family: "Syne", sans-serif;
        font-size: 10px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: #fff;
      }

      .chef-info {
        padding: 22px 22px 24px;
      }

      .chef-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
      }

      .chef-role {
        font-family: "Syne", sans-serif;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--olive);
      }

      .chef-years {
        font-family: "Syne", sans-serif;
        font-size: 10px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--muted);
        padding: 5px 10px;
        border-radius: 999px;
        background: rgba(96, 117, 92, 0.08);
        border: 1px solid rgba(96, 117, 92, 0.1);
      }

      .chef-name {
        margin: 0 0 10px;
        font-family: "Cormorant Garamond", serif;
        font-size: 26px;
        font-weight: 400;
        font-style: italic;
        line-height: 1.1;
        color: var(--ink);
      }

      .chef-bio {
        margin: 0;
        font-size: 13px;
        line-height: 1.8;
        color: var(--muted);
      }

      @media (max-width: 1180px) {
        .chefs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      }

      @media (max-width: 768px) {
        .chefs-grid { grid-template-columns: 1fr; }
        .chef-media { height: 260px; }
        .chef-overlay { opacity: 1; }
      }
