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

    :root {
      --sage:   #7aab8a;
      --sage-light: #a8c9b2;
      --sage-dark:  #4d7a60;
      --cream:  #fdf8f1;
      --warm:   #f5ede0;
      --brown:  #5c3d2e;
      --mocha:  #8b5e3c;
      --text:   #2d1f13;
      --muted:  #7a6355;
      --white:  #ffffff;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 2.5rem;
      background: rgba(253,248,241,0.92);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(122,171,138,0.25);
    }
    .nav-logo {
      font-family: 'Satisfy', cursive;
      font-size: 1.6rem;
      color: var(--sage-dark);
      text-decoration: none;
    }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      text-decoration: none; color: var(--mocha);
      font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--sage-dark); }
    .nav-cta {
      background: var(--sage); color: var(--white);
      padding: 0.55rem 1.4rem; border-radius: 50px;
      text-decoration: none; font-size: 0.85rem; font-weight: 500;
      letter-spacing: 0.04em;
      transition: background 0.2s, transform 0.15s;
    }
    .nav-cta:hover { background: var(--sage-dark); transform: translateY(-1px); }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 72px;
      overflow: hidden;
    }
    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 0 3rem 0 5rem;
      position: relative;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--warm); border: 1px solid var(--sage-light);
      border-radius: 50px; padding: 0.35rem 1rem;
      font-size: 0.78rem; color: var(--sage-dark); font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.7s ease both;
    }
    .hero-badge::before { content: '🌿'; font-size: 0.9rem; }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 5vw, 4.8rem);
      line-height: 1.1; color: var(--text);
      animation: fadeUp 0.7s 0.1s ease both;
    }
    .hero-title em {
      font-style: italic; color: var(--sage-dark);
    }
    .hero-subtitle {
      margin-top: 1.25rem; font-size: 1.1rem;
      color: var(--muted); line-height: 1.65;
      max-width: 38ch;
      animation: fadeUp 0.7s 0.2s ease both;
    }
    .hero-actions {
      display: flex; gap: 1rem; margin-top: 2.5rem;
      flex-wrap: wrap;
      animation: fadeUp 0.7s 0.3s ease both;
    }
    .btn-primary {
      background: var(--sage-dark); color: var(--white);
      padding: 0.9rem 2rem; border-radius: 50px;
      text-decoration: none; font-weight: 500; font-size: 0.95rem;
      letter-spacing: 0.02em;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(77,122,96,0.3);
    }
    .btn-primary:hover { background: var(--brown); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(77,122,96,0.35); }
    .btn-outline {
      border: 2px solid var(--sage); color: var(--sage-dark);
      padding: 0.9rem 2rem; border-radius: 50px;
      text-decoration: none; font-weight: 500; font-size: 0.95rem;
      transition: all 0.2s;
    }
    .btn-outline:hover { background: var(--sage); color: white; }

    .hero-right {
      position: relative; overflow: hidden;
      animation: fadeIn 1s 0.2s ease both;
    }
    .hero-image {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    .hero-image:hover { transform: scale(1.03); }

    /* decorative blob */
    .blob {
      position: absolute; border-radius: 50%;
      filter: blur(70px); pointer-events: none; opacity: 0.35;
    }
    .blob-1 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, var(--sage-light), transparent);
      top: -150px; right: -100px;
    }
    .blob-2 {
      width: 350px; height: 350px;
      background: radial-gradient(circle, #f5d9b5, transparent);
      bottom: 50px; left: -80px;
    }

    /* ─── SECTION BASICS ─── */
    section { padding: 6rem 5vw; position: relative; }
    .section-label {
      font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--sage-dark);
      margin-bottom: 0.75rem;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      line-height: 1.2;
    }
    .section-desc {
      margin-top: 1rem; color: var(--muted);
      font-size: 1.05rem; line-height: 1.7; max-width: 55ch;
    }

    /* ─── MARQUEE ─── */
    .marquee-wrap {
      background: var(--sage-dark); overflow: hidden;
      padding: 0.9rem 0;
    }
    .marquee-inner {
      display: flex; gap: 3rem;
      white-space: nowrap;
      animation: marquee 24s linear infinite;
    }
    .marquee-inner span {
      color: var(--white); font-size: 0.85rem;
      letter-spacing: 0.1em; text-transform: uppercase;
      opacity: 0.9;
    }
    .marquee-inner span::before { content: '✦ '; color: var(--sage-light); }

    /* ─── MENU ─── */
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    .menu-card {
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(92,61,46,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: default;
    }
    .menu-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(92,61,46,0.14);
    }
    .menu-card-img {
      height: 260px; overflow: hidden;
    }
    .menu-card-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.5s;
    }
    .menu-card:hover .menu-card-img img { transform: scale(1.06); }
    .menu-card-body { padding: 1.5rem; }
    .menu-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem; color: var(--text);
    }
    .menu-card-desc {
      margin-top: 0.4rem; font-size: 0.9rem; color: var(--muted);
      line-height: 1.6;
    }
    /* ─── ABOUT ─── */
    .about-wrap {
      background: var(--warm);
      border-radius: 32px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      padding: 4rem;
      overflow: hidden;
    }
    .about-imgs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .about-imgs img {
      width: 100%; border-radius: 16px;
      object-fit: cover; aspect-ratio: 1;
    }
    .about-imgs img:first-child {
      grid-column: span 2;
      aspect-ratio: 16/9;
    }

    /* ─── COMMUNITY ─── */
    .community-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }
    .community-img img {
      width: 100%; border-radius: 24px;
      object-fit: cover; aspect-ratio: 4/5;
    }
    .community-badge {
      display: inline-block;
      background: var(--sage); color: var(--white);
      padding: 0.3rem 0.9rem; border-radius: 50px;
      font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .community-pillars {
      margin-top: 2rem;
      display: flex; flex-direction: column; gap: 1rem;
    }
    .pillar {
      display: flex; align-items: flex-start; gap: 1rem;
      background: var(--white); border-radius: 14px;
      padding: 1rem 1.25rem;
      box-shadow: 0 2px 12px rgba(92,61,46,0.06);
    }
    .pillar-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
    .pillar-title { font-weight: 600; font-size: 0.95rem; color: var(--text); }
    .pillar-text { font-size: 0.85rem; color: var(--muted); margin-top: 0.2rem; line-height: 1.5; }

    /* ─── INSTAGRAM ─── */
    .ig-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin-top: 2.5rem;
    }
    .ig-item {
      aspect-ratio: 1; overflow: hidden; border-radius: 12px; position: relative;
      cursor: pointer;
    }
    .ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .ig-item:hover img { transform: scale(1.08); }
    .ig-overlay {
      position: absolute; inset: 0;
      background: rgba(77,122,96,0.7);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity 0.3s;
    }
    .ig-item:hover .ig-overlay { opacity: 1; }
    .ig-overlay svg { width: 32px; height: 32px; fill: white; }

    /* ─── ORDER CTA ─── */
    .order-cta {
      background: var(--sage-dark);
      border-radius: 32px;
      padding: 5rem 4rem;
      text-align: center;
      margin: 0 5vw 4rem;
      position: relative; overflow: hidden;
    }
    .order-cta::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .order-cta .section-label { color: var(--sage-light); }
    .order-cta .section-title { color: var(--white); position: relative; }
    .order-cta .section-desc { color: rgba(255,255,255,0.75); margin: 0 auto; position: relative; }
    .order-cta .btn-primary {
      background: var(--white); color: var(--sage-dark);
      margin-top: 2rem; display: inline-block; position: relative;
    }
    .order-cta .btn-primary:hover { background: var(--warm); color: var(--brown); }

    /* ─── FOOTER ─── */
    footer {
      background: var(--text); color: rgba(255,255,255,0.7);
      padding: 3rem 5vw;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
    }
    .footer-brand { font-family: 'Satisfy', cursive; font-size: 1.8rem; color: var(--white); }
    .footer-tagline { font-size: 0.9rem; margin-top: 0.5rem; line-height: 1.6; }
    footer h4 { color: var(--white); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
    footer a { color: rgba(255,255,255,0.65); text-decoration: none; display: block; font-size: 0.9rem; margin-bottom: 0.4rem; transition: color 0.2s; }
    footer a:hover { color: var(--sage-light); }
    .footer-bottom {
      background: rgba(0,0,0,0.3); padding: 1rem 5vw;
      text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.4);
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; } to { opacity: 1; }
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1; transform: translateY(0);
    }

    /* ─── FULL MENU PAGE ─── */
    .menu-page-hero {
      padding-top: 120px;
      padding-bottom: 3rem;
      text-align: center;
    }
    .menu-page-notice {
      display: inline-block;
      background: var(--sage);
      color: var(--white);
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      margin-top: 1.5rem;
    }
    .menu-page-section {
      padding: 3rem 5vw;
    }
    .menu-cat-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: var(--sage-dark);
      margin-bottom: 1.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid var(--sage-light);
    }
    .menu-full-grid {
      max-width: 800px;
    }
    .menu-full-item {
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(122,171,138,0.15);
    }
    .menu-full-name {
      font-weight: 500;
      font-size: 1.05rem;
      color: var(--text);
    }
    .menu-full-note {
      font-size: 0.8rem;
      color: var(--muted);
      font-weight: 400;
      font-style: italic;
      margin-left: 0.35rem;
    }

    /* ─── MOBILE ─── */
    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-left { padding: 5rem 2rem 2rem; }
      .hero-right { height: 400px; }
      .about-wrap { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
      .community-wrap { grid-template-columns: 1fr; }
      .ig-grid { grid-template-columns: repeat(2, 1fr); }
      footer { grid-template-columns: 1fr; gap: 2rem; }
      nav { padding: 1rem 1.25rem; }
      .nav-links { display: none; }
      .order-cta { padding: 3rem 2rem; margin: 0 1rem 2rem; }
      section { padding: 4rem 1.25rem; }
      .menu-full-item { flex-wrap: wrap; }
    }
