:root {
    --bamboo-dark:   #1A2A14;
    --bamboo-mid:    #3B5C2A;
    --bamboo-light:  #8AAF5A;
    --ember:         #D4540A;
    --ember-glow:    #F2A13B;
    --ash:           #F5EDD8;
    --smoke:         #C9BFA8;
    --char:          #0E1A09;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--char);
    color: var(--ash);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ── BAMBOO TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 38px,
      rgba(138,175,90,0.04) 38px,
      rgba(138,175,90,0.04) 40px
    );
    pointer-events: none;
    z-index: 0;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 5%;
    background: linear-gradient(to bottom, rgba(14,26,9,0.92) 0%, transparent 100%);
    backdrop-filter: blur(2px);
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: var(--ember-glow);
  }
  .nav-cta {
    background: transparent;
    border: 1.5px solid var(--ember);
    color: var(--ember-glow);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.55rem 1.4rem;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    text-decoration: none;
  }
  .nav-cta:hover { background: var(--ember); color: var(--ash); }

  .nav-actions { display: flex; gap: 0.6rem; align-items: center; }
  .nav-check { background: transparent; border: 1px solid rgba(138,175,90,0.08); color: var(--bamboo-light); padding: 0.45rem 1rem; cursor: pointer; }
  .nav-check:hover { background: rgba(138,175,90,0.04); }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 90vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 5% 8%;
    overflow: hidden;
  }

  /* Bamboo stalk silhouettes */
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 70% 30%, rgba(212,84,10,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(59,92,42,0.18) 0%, transparent 60%),
      linear-gradient(170deg, var(--bamboo-dark) 0%, var(--char) 60%);
  }
  .stalks {
    position: absolute; inset: 0;
    overflow: hidden;
  }
  .stalk {
    position: absolute; bottom: 0;
    width: 18px;
    background: linear-gradient(to top, var(--bamboo-mid), var(--bamboo-light));
    border-radius: 9px 9px 0 0;
    opacity: 0.18;
    transform-origin: bottom center;
  }
  .stalk::after {
    content: '';
    position: absolute;
    left: 50%; transform: translateX(-50%);
    width: 100%; height: 3px;
    background: rgba(138,175,90,0.4);
    border-radius: 2px;
  }
  /* node marks on stalks via box-shadows */
  .stalk-node {
    position: absolute; left: 0; right: 0;
    height: 2px;
    background: rgba(255,255,255,0.12);
  }

  /* ember particles */
  .embers {
    position: absolute; inset: 0; pointer-events: none;
  }
  .ember-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--ember-glow);
    animation: rise linear infinite;
    opacity: 0;
  }
  @keyframes rise {
    0%   { transform: translateY(0)   translateX(0)   scale(1);   opacity: 0.9; }
    60%  { opacity: 0.5; }
    100% { transform: translateY(-140px) translateX(var(--drift)) scale(0.2); opacity: 0; }
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bamboo-light);
    margin-bottom: 1.2rem;
    position: relative; z-index: 2;
  }
  .hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.8rem, 10vw, 9rem);
    font-weight: 900;
    line-height: 0.9;
    position: relative; z-index: 2;
    color: var(--ash);
  }
  .hero-headline em {
    font-style: normal;
    color: var(--ember);
    display: block;
  }
  .hero-tagline {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--smoke);
    margin-top: 1.2rem;
    position: relative; z-index: 2;
    max-width: 420px;
  }
  .hero-actions {
    display: flex; gap: 1rem; align-items: center;
    margin-top: 2.8rem;
    position: relative; z-index: 2;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--ember);
    color: var(--ash);
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2.4rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--ember-glow); transform: translateY(-2px); }
  .btn-ghost {
    background: transparent;
    color: var(--smoke);
    border: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    cursor: pointer;
    display: flex; align-items: center; gap: 0.5rem;
    transition: color 0.2s;
    text-decoration: none;
  }
  .btn-ghost:hover { color: var(--ash); }

  .hero-location {
    position: absolute; bottom: 2.5rem; right: 5%;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bamboo-light);
    opacity: 0.7;
    z-index: 2;
    writing-mode: vertical-rl;
  }

  /* ── DIVIDER ── */
  .bamboo-divider {
    display: flex; align-items: center; gap: 1rem;
    padding: 0 5%;
    margin: 0;
  }
  .bamboo-divider span { flex: 1; height: 1px; background: rgba(138,175,90,0.2); }
  .bamboo-divider .node { width: 6px; height: 6px; background: var(--bamboo-light); border-radius: 50%; opacity: 0.5; }

  /* ── ABOUT ── */
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 7rem 5%;
    align-items: center;
    position: relative; z-index: 1;
  }
  .about-visual {
    padding-right: 6%;
  }
  .bamboo-icon-large {
    width: 100%;
    max-width: 360px;
  }
  .about-text .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bamboo-light);
    margin-bottom: 1.4rem;
  }
  .about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ash);
    margin-bottom: 1.6rem;
  }
  .about-text h2 span { color: var(--ember); }
  .about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--smoke);
    margin-bottom: 1.2rem;
    max-width: 460px;
  }

  /* ── MENU HIGHLIGHT ── */
  .menu-section {
    padding: 5rem 5%;
    position: relative; z-index: 1;
  }
  .menu-section .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 1rem;
    text-align: center;
  }
  .menu-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    color: var(--ash);
    margin-bottom: 3.5rem;
  }
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5px;
    background: rgba(138,175,90,0.08);
    border: 1px solid rgba(138,175,90,0.12);
  }
  .menu-card {
    background: rgba(26,42,20,0.7);
    padding: 2.2rem 2rem;
    transition: background 0.25s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }
  .menu-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--ember);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .menu-card:hover { background: rgba(59,92,42,0.25); }
  .menu-card:hover::before { transform: scaleX(1); }
  .menu-card .emoji { font-size: 2rem; margin-bottom: 1rem; }
  .menu-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--ash);
    margin-bottom: 0.5rem;
  }
  .menu-card p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--smoke);
  }
  .menu-card .price {
    margin-top: 1.2rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ember-glow);
    font-family: 'Playfair Display', serif;
  }

  /* ── HOW IT WORKS ── */
  .how-section {
    padding: 6rem 5%;
    position: relative; z-index: 1;
    text-align: center;
  }
  .how-section .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bamboo-light);
    margin-bottom: 1rem;
  }
  .how-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--ash);
    margin-bottom: 3.5rem;
  }
  .how-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 860px;
    margin: 0 auto;
  }
  .how-step {
    flex: 1; min-width: 180px; max-width: 220px;
    position: relative;
    padding: 0 1.5rem;
  }
  .how-step:not(:last-child)::after {
    content: '';
    position: absolute; right: 0; top: 28px;
    width: 1px; height: 40%;
    background: rgba(138,175,90,0.2);
  }
  .step-icon {
    width: 56px; height: 56px;
    border: 1.5px solid var(--bamboo-mid);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.2rem;
    background: rgba(26,42,20,0.5);
  }
  .how-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--ash);
    margin-bottom: 0.5rem;
  }
  .how-step p {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--smoke);
  }

  /* ── CONTACT / ORDER ── */
  .contact-section {
    padding: 6rem 5%;
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(26,42,20,0.5) 0%, rgba(14,26,9,0.5) 100%);
    border-top: 1px solid rgba(138,175,90,0.1);
    border-bottom: 1px solid rgba(138,175,90,0.1);
  }
  .contact-info .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 1rem;
  }
  .contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--ash);
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  .contact-info p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--smoke);
    margin-bottom: 2rem;
    max-width: 400px;
  }
  .phone-link {
    display: flex; align-items: center; gap: 1rem;
    text-decoration: none;
    border: 1px solid var(--ember);
    padding: 1.2rem 1.8rem;
    color: var(--ash);
    transition: background 0.2s;
    max-width: fit-content;
  }
  .phone-link:hover { background: rgba(212,84,10,0.15); }
  .phone-link .ph-icon { font-size: 1.4rem; }
  .phone-link .ph-text .label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bamboo-light);
    margin-bottom: 0.1rem;
  }
  .phone-link .ph-text .number {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--ember-glow);
    letter-spacing: 0.05em;
  }
  .cod-note {
    margin-top: 1.5rem;
    display: flex; gap: 0.7rem;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    background: rgba(212,84,10,0.08);
    border-left: 2px solid var(--ember);
  }
  .cod-note p { margin: 0; font-size: 0.82rem; color: var(--smoke); }
  .cod-note p strong { color: var(--ember-glow); }

  .map-placeholder {
    background: rgba(26,42,20,0.6);
    border: 1px solid rgba(138,175,90,0.15);
    padding: 3rem 2rem;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: 300px;
    gap: 1rem;
  }
  .map-pin { font-size: 2.5rem; }
  .map-place {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--ash);
  }
  .map-region {
    font-size: 0.82rem;
    color: var(--smoke);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* Contact actions layout */
  .contact-actions { display: flex; gap: 1.2rem; align-items: center; margin-top: 1rem; flex-wrap: wrap; }
  .contact-order { padding: 0.9rem 1.6rem; font-size: 1rem; }

  /* ── FOOTER ── */
  footer {
    padding: 3rem 5%;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    text-align: center;
    position: relative; z-index: 1;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--ember-glow);
    letter-spacing: 0.05em;
  }
  .footer-tagline {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    color: var(--smoke);
    font-size: 0.95rem;
  }
  .footer-copy {
    font-size: 0.72rem;
    color: rgba(201,191,168,0.4);
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 700px) {
    .about, .contact-section { grid-template-columns: 1fr; }
    .about-visual { display: none; }
    .how-steps { gap: 2rem; }
    .how-step:not(:last-child)::after { display: none; }
    .hero-location { display: none; }
    .contact-actions { flex-direction: column; align-items: flex-start; }
  }

  /* Map placeholder: delivery check */
  #check-delivery { margin-top: 0.8rem; border: 1px solid rgba(138,175,90,0.1); }
  .delivery-result { margin-top: 0.6rem; font-size: 0.95rem; color: var(--smoke); }
  .delivery-result.available { color: var(--bamboo-light); }
  .delivery-result.not-available { color: var(--ember-glow); }
