  @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

  :root {
    --cream: #F5F0E8;
    --cream-dark: #EAE4D6;
    --sage: #4A5E3A;
    --sage-light: #6B7B5A;
    --sage-muted: #9AA87A;
    --sage-pale: #C5C9B0;
    --ink: #2E3A2E;
    --warm-mid: #7A6A52;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--ink);
  }

  /* ── NAV ── */
  nav {
    background: var(--cream);
    border-bottom: 1px solid var(--sage-pale);
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-logo img { height: 62px; object-fit: contain; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--sage);
    text-decoration: none;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-order {
    background: var(--sage);
    color: var(--cream);
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 11px 26px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
  }
  .nav-order:hover { background: var(--ink); }

  /* ── HERO ── */
  .hero {
    min-height: 88vh;
    background: var(--cream-dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .hero-text {
    padding: 80px 64px 80px 80px;
  }
  .hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--sage-muted);
    margin-bottom: 28px;
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 4.5vw, 68px);
    font-weight: 400;
    font-style: italic;
    color: var(--ink);
    line-height: 1.12;
    margin-bottom: 28px;
  }
  .hero-divider {
    width: 44px;
    height: 1px;
    background: var(--sage-muted);
    margin-bottom: 28px;
  }
  .hero p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--sage-light);
    line-height: 1.85;
    margin-bottom: 44px;
    max-width: 420px;
  }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--sage);
    color: var(--cream);
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 15px 38px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
  }
  .btn-outline {
    background: transparent;
    color: var(--sage);
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 14px 38px;
    border: 1px solid var(--sage);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
  }
  .hero-image {
    height: 88vh;
    overflow: hidden;
  }
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  /* ── MARQUEE ── */
  .marquee-bar {
    background: var(--sage);
    padding: 13px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .marquee-inner {
    display: inline-block;
    animation: marquee 22s linear infinite;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage-pale);
  }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ── PHILOSOPHY ── */
  .philosophy {
    padding: 100px 40px;
    text-align: center;
  }
  .section-label {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--sage-muted);
    margin-bottom: 22px;
  }
  .philosophy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 400;
    font-style: italic;
    color: var(--ink);
    line-height: 1.4;
    max-width: 680px;
    margin: 0 auto 24px;
  }
  .philosophy p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-style: italic;
    color: var(--sage-light);
    line-height: 1.9;
    max-width: 560px;
    margin: 0 auto;
  }
  .section-divider {
    width: 44px;
    height: 1px;
    background: var(--sage-muted);
    margin: 44px auto;
  }

  /* ── PILLARS ── */
  .pillars {
    background: var(--cream-dark);
    padding: 80px 40px;
  }
  .pillars-grid {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
  }
  .pillar-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-style: italic;
    color: var(--sage-pale);
    margin-bottom: 16px;
  }
  .pillar h3 {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 14px;
  }
  .pillar p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-style: italic;
    color: var(--sage-light);
    line-height: 1.8;
  }

  /* ── MENU ── */
  .menu-section {
    padding: 100px 40px;
    background: var(--cream);
  }
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 400;
    font-style: italic;
    color: var(--ink);
  }
  .menu-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .menu-card { background: var(--cream-dark); overflow: hidden; }
  .menu-card-img {
    height: 240px;
    overflow: hidden;
    background: var(--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: var(--sage-muted);
  }
  .menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
  }
  .menu-card:hover .menu-card-img img { transform: scale(1.04); }
  .menu-card-body { padding: 30px 28px; }
  .menu-tag {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage-muted);
    margin-bottom: 10px;
  }
  .menu-card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 12px;
  }
  .menu-card-body p {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--sage-light);
    line-height: 1.85;
    margin-bottom: 26px;
  }
  .menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--sage-pale);
    padding-top: 20px;
  }
  .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--sage);
  }
  .order-btn {
    background: transparent;
    border: 1px solid var(--sage);
    color: var(--sage);
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .order-btn:hover { background: var(--sage); color: var(--cream); }

  /* ── ABOUT STRIP ── */
  .about-strip {
    background: var(--sage);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
  }
  .about-image {
    overflow: hidden;
  }
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .about-text {
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .about-text .section-label { color: var(--sage-muted); }
  .about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    line-height: 1.3;
    margin-bottom: 22px;
  }
  .about-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-style: italic;
    color: var(--sage-pale);
    line-height: 1.9;
    margin-bottom: 38px;
  }
  .btn-light {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245,240,232,0.45);
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 14px 34px;
    cursor: pointer;
    width: fit-content;
    text-decoration: none;
    display: inline-block;
  }

  /* ── DELIVERY ── */
  .delivery {
    background: var(--cream-dark);
    padding: 80px 40px;
    text-align: center;
  }
  .delivery h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 14px;
  }
  .delivery p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--sage-light);
    margin-bottom: 34px;
    line-height: 1.8;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    padding: 64px 40px 32px;
    text-align: center;
  }
  footer img.footer-logo { height: 72px; margin-bottom: 28px; object-fit: contain; background: var(--cream); border-radius: 4px; padding: 6px 12px; }
  .footer-links {
    display: flex;
    gap: 36px;
    justify-content: center;
    list-style: none;
    margin-bottom: 28px;
  }
  .footer-links a {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--sage-muted);
    text-decoration: none;
  }
  .footer-line {
    width: 40px;
    height: 1px;
    background: var(--sage);
    margin: 0 auto 24px;
  }
  .footer-copy {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: var(--sage-light);
    line-height: 2;
  }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-image { height: 70vw; }
    .hero-image img { object-position: center 15%; }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-grid { grid-template-columns: 1fr; }
    .about-strip { grid-template-columns: 1fr; }
    .about-image { height: 60vw; }
    nav {
      padding: 10px 16px 8px;
      flex-wrap: wrap;
      height: auto;
      gap: 8px;
    }
    .nav-logo { order: 1; }
    .nav-logo img { height: 48px; }
    .nav-order {
      font-size: 9px;
      padding: 9px 16px;
      order: 3;
      width: fit-content;
      margin: 2px auto 0;
    }
    .nav-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 4px 14px;
      width: 100%;
      padding: 6px 0 2px;
      border-top: 1px solid var(--sage-pale);
      order: 2;
    }
    .nav-links a {
      font-size: 9px;
      letter-spacing: 1.5px;
    }
  }
