:root{
  --green: #32613E;
  --header-bg: #FAF8F2;
  --page-bg: #FFFFFF;

  --order-btn: #F29E25;
  --order-now-btn: #8B4636;

  --btn-text: #FAF8F2;

  --text: #1a1a1a;
  --muted: #4a4a4a;

  --container: 1120px;
  --radius: 8px;

  --hero-aspect: 1920 / 1131;          /* desktop hero image ratio */
  --hero-aspect-mobile: 768 / 1024;    /* update to match hero-mobile.webp */
}

*{ 
  box-sizing: border-box;
  border-radius: var(--radius); 
}

html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Epilogue", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--page-bg);
  padding-top: 82px;
}



.container{
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3{
  font-family: "Gayathri", system-ui, sans-serif;
  margin: 0;
  line-height: 1.05;
}

h1{
  font-size: clamp(44px, 5vw, 64px);
}

.section-title{
  font-size: 40px;
  color: var(--green);
  letter-spacing: -0.02em;
}

/* Header is fixed in both states so the page never reflows (no jump). */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background: var(--header-bg);
  border: none;
  border-radius: 0;
  box-shadow: none;

  /* smooth morph */
  will-change: transform, box-shadow, border-radius;
  transition:
    transform 240ms ease,
    border-radius 240ms ease,
    box-shadow 240ms ease;
}

/* On scroll: visually becomes the floating pill, but still fixed (no reflow). */
.site-header.is-floating{
  transform: translateY(40px) scale(0.96);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
}

.brand{
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0 auto;
}

.brand-logo{
  height: 42px;
  width: auto;
  border-radius: 0;
}

.nav{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 120px;
}
.nav-link{
  text-decoration: none;
  color: var(--green);
  font-weight: 500;
  font-size: 18px;
  padding: 10px 10px;
  border-radius: 10px;
}
.nav-link:hover{
  background: rgba(50,97,62,0.08);
}

.header-cta{
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  padding: 12px 32px;
  transition: transform 0.08s ease, filter 0.12s ease;
  user-select: none;
}
.btn:active{ transform: translateY(1px); }

.btn-order{
  background: var(--order-btn);
  color: var(--btn-text);
  border-color: rgba(0,0,0,0.06);
}

.btn-order-now{
  background: var(--order-now-btn);
  color: var(--btn-text);
  border-color: rgba(0,0,0,0.06);
}

.btn-lg{
  padding: 12px 32px;
  font-size: 18px;
}

.text-link{
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  padding: 10px 0;
}
.text-link:hover{ text-decoration: underline; }

/* Hero */
.hero{
  position: relative;
  padding: 0; /* image handles the vertical space */
}

/* Keep the grid so the copy can stay left aligned, but place everything on the same grid row */
.hero-inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;

  /* This is the hero aspect ratio, tracks image height */
  aspect-ratio: var(--hero-aspect);

  /* Add breathing room for the overlaid copy */
  --heroPadX: clamp(21px, 3.3vw, 49px);
  padding: 0 var(--heroPadX);
}

/* Full-bleed background image behind the grid (works even inside a padded container) */
.hero-media{
  position: absolute;
  inset: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw); /* compensates for container padding */
  height: 100%;
  z-index: 0;
  border-radius: 0;
}

.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
}

/* Put all non-media content on top of the image */
.hero-inner > :not(.hero-media){
  grid-row: 1;
  z-index: 1;
  width: 100%;
}

/* Optional: ensure text reads well on busy parts of the photo */
.hero-inner::before{
  content: "";
  position: absolute;
  inset: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw); /* compensates for container padding */
  height: 100%;
  z-index: 1;

  
}

.hero-title{
  font-size: clamp(40px, 4.5vw, 58px);
  color: #EDE3B9;
  font-weight: 400;
  letter-spacing: -0.03em;
  max-width: calc(52.08333333vw - var(--heroPadX));
  margin-top: clamp(56px, 7vw, 96px);
}

.hero-subtitle{
  margin: 18px 0 0;
  font-size: 38px;
  font-weight: 300;
  font-family: "Epilogue", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  color: #EDE3B9;
  max-width: calc(42.9375vw - var(--heroPadX));
}

.hero-actions{
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================
   Hero – Follow our journey
   ============================= */

.hero-follow{
  margin-top: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-follow__label{
  font-family: "Epilogue", system-ui, sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: rgba(250, 248, 242, 0.9);
}

.hero-follow__icons{
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-follow__icons a{
  display: inline-flex;
  width: 67px;
  height: 67px;
}

.hero-follow__icons img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Placeholder sections */
.section-placeholder{
  padding: 70px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Responsive */
@media (max-width: 900px){
  .hero-inner{
    --heroPadX: clamp(18px, 3vw, 44px);
    grid-template-columns: 1fr;
    padding: clamp(44px, 7vw, 72px) var(--heroPadX) clamp(28px, 6vw, 56px);
  }
  .nav{ display: none; }
  .hamburger{ display: inline-flex; align-items: center; justify-content: center; }
  .hero-inner > :not(.hero-media){
    max-width: none;
  }
  .hero-title,
  .hero-subtitle{
    max-width: none;
  }
}



/* =============================
   Menu (What’s in the bowl?)
   Option B: fixed corners, edge strips scale slightly
   ============================= */

/* Tuning knobs */
:root{
  --menu-frame-bg: #FFFFFF;
  --menu-frame-pad: clamp(28px, 3vw, 44px);
  /* Bottom padding can be a bit smaller so there's less blank space under the callout */
  --menu-frame-pad-bottom: calc(var(--menu-frame-pad) * 0);
  --menu-corner: 29px;                 /* fixed corner size */
  --menu-edge-h: 22px;                 /* edge strip thickness (adjust to your SVG height) */
  --menu-edge-scale: 1;                /* will be nudged by breakpoints */
  --menu-border-inset: 10px;            /* space around outside of border */
}

.menu{
  width: 100%;
  border-radius: 0;
}

/* The framed card that contains the border SVGs + menu content */
.menu-frame{
  position: relative;
  width: 100%;
  background: var(--menu-frame-bg);
  border-radius: var(--radius);

  /* Make space so content doesn’t collide with border artwork */
    padding:
    calc(var(--menu-frame-pad) + var(--menu-corner) + 10px)
    calc(var(--menu-frame-pad) + var(--menu-corner) + 10px)
    calc(var(--menu-frame-pad-bottom) + var(--menu-corner) + 10px)
    calc(var(--menu-frame-pad) + var(--menu-corner) + 10px);
  padding-bottom: calc(var(--menu-frame-pad-bottom) + var(--menu-corner) + 10px);

  /* Helpers so edge strips don't overlap the corners */
  --menu-edge-thickness: calc(var(--menu-edge-h) * var(--menu-edge-scale));
  --menu-edge-offset: calc(var(--menu-corner) + var(--menu-border-inset));
  --menu-edge-right-x: calc(100% - var(--menu-edge-thickness) - var(--menu-border-inset));
  --menu-edge-bottom-y: calc(100% - var(--menu-edge-thickness) - var(--menu-border-inset));

  overflow: hidden;
}

/* Edge strips rendered on pseudo-elements so they don't tile under corners */
.menu-frame::before{
  content: "";
  position: absolute;
  left: var(--menu-edge-offset);
  right: var(--menu-edge-offset);
  top: var(--menu-border-inset);
  bottom: var(--menu-border-inset);
  pointer-events: none;
  user-select: none;
  z-index: 1;

  background-image:
    url("../assets/menu/top-border.svg"),
    url("../assets/menu/bottom-border.svg");

  /* Use ROUND so tiles are never cut off; mask ensures it only shows as strips */
  background-repeat: round no-repeat, round no-repeat; /* repeat X only */
  background-position: left top, left bottom;
  background-size:
    auto calc(var(--menu-edge-h) * var(--menu-edge-scale)),
    auto calc(var(--menu-edge-h) * var(--menu-edge-scale));

  /* Show only the top + bottom strips (prevents the pattern from filling the whole frame) */
  -webkit-mask:
    linear-gradient(#000 0 0) top / 100% calc(var(--menu-edge-h) * var(--menu-edge-scale)) no-repeat,
    linear-gradient(#000 0 0) bottom / 100% calc(var(--menu-edge-h) * var(--menu-edge-scale)) no-repeat;
  mask:
    linear-gradient(#000 0 0) top / 100% calc(var(--menu-edge-h) * var(--menu-edge-scale)) no-repeat,
    linear-gradient(#000 0 0) bottom / 100% calc(var(--menu-edge-h) * var(--menu-edge-scale)) no-repeat;
}

.menu-frame::after{
  content: "";
  position: absolute;
  left: var(--menu-border-inset);
  right: var(--menu-border-inset);
  top: var(--menu-edge-offset);
  bottom: var(--menu-edge-offset);
  pointer-events: none;
  user-select: none;
  z-index: 1;

  background-image:
    url("../assets/menu/left-border.svg"),
    url("../assets/menu/right-border.svg");

  /* Use ROUND so tiles are never cut off; mask ensures it only shows as strips */
  background-repeat: no-repeat round, no-repeat round; /* repeat Y only */
  background-position: left top, right top;
  background-size:
    calc(var(--menu-edge-h) * var(--menu-edge-scale)) auto,
    calc(var(--menu-edge-h) * var(--menu-edge-scale)) auto;

  /* Show only the left + right strips */
  -webkit-mask:
    linear-gradient(#000 0 0) left / calc(var(--menu-edge-h) * var(--menu-edge-scale)) 100% no-repeat,
    linear-gradient(#000 0 0) right / calc(var(--menu-edge-h) * var(--menu-edge-scale)) 100% no-repeat;
  mask:
    linear-gradient(#000 0 0) left / calc(var(--menu-edge-h) * var(--menu-edge-scale)) 100% no-repeat,
    linear-gradient(#000 0 0) right / calc(var(--menu-edge-h) * var(--menu-edge-scale)) 100% no-repeat;
}

/* Inner padding so content never touches the border ornaments */
.menu-inner{
  position: relative;
  z-index: 3;
  padding: 0;
}

/* Title */
.menu-title{
  font-family: "Gayathri", system-ui, sans-serif;
  font-weight: 400;
  text-align: center;
  color: var(--green);
  font-size: clamp(46px, 4.5vw, 72px);
  letter-spacing: -0.02em;
  margin: 0 0 34px;
}

/* 3-column layout */
.menu-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 56px);
  align-items: start;
}

.menu-col{
  min-width: 0;
}

/* Pill headers inside each column */
.menu-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 52px;
  padding: 0 22px;

  border-radius: 8px;
  font-family: "Gayathri", system-ui, sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1;

  padding-top: 10px;
  color: #FAF8F2;
  margin: 0 0 16px;
  width: 80%;
}

.menu-pill--bases{ background: #F29E25; }
.menu-pill--proteins{ background: #E26133; }
.menu-pill--veggies{ background: #3E6142; }
.menu-pill--lentils{ background: #8B4636; }
.menu-pill--toppings{ background: #EDE3B8; color: #8B4636; }
.menu-pill--sauces{ background: #FAF8F2; color: #8B4636; border: 1px solid rgba(0,0,0,0.08); }

/* Items */
.menu-item{
  margin: 0 0 18px;
}
.menu-item-title{
  font-family: "Epilogue", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.12;
  margin: 0;
  color: #111;
}
.menu-item-desc{
  margin: 4px 0 0;
  font-family: "Epilogue", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.35;
  color: #555;
}

/* Vertical dividers (optional) */
.menu-divider{
  width: 1px;
  background: rgba(0,0,0,0.18);
  border-radius: 0;
}

/* Menu callout */
.menu-callout{
  position: relative;
  display: inline-block;
  background: #FAF8F2;
  border-radius: 8px;
  padding: 22px 26px 12px 26px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  transform: translate(184px, -108px); /* x, y */
}

@media (max-width: 700px){
  /* On mobile, keep the callout in normal flow under the menu text (no floating/overlap) */
  .menu-callout{
    transform: none;
    width: min(340px, 100%);
    margin: 22px auto 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  }

  /* Re-center the layered kicker text without the desktop offset */
  .menu-callout__kicker{
    margin-left: 0;
    display: block;
    text-align: center;
  }

  .menu-callout__body{
    justify-content: center;
  }

  /* Nudge the star so it stays visually attached on smaller width cards */
  .menu-callout__star{
    left: -6%;
    top: -22%;
  }
}

/* Star sits "outside" top-left of the callout but stays anchored to it */
.menu-callout__star{
  position: absolute;
  left: -4%;
  top: -18%;
  width: clamp(56px, 6.4vw, 88px);
  height: auto;
}

/* The 3-layer overlapped text */
.menu-callout__kicker{
  position: relative;
  display: inline-block;
  margin-left: 54px;
  margin-bottom: 0px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: clamp(20px, 1.8vw, 22px);
  line-height: 1;

  max-width: 100%;
  text-align: center;
}

.menu-callout__kicker-text{
  /* base layer */
  color: #E26133;

  /* wrap-safe 3-layer effect:
     +1.25px = #F09E25
     +2.5px  = #E26133
  */
  text-shadow:
    -1.25px 0 0 #F09E25,
    -2.5px 0 0 #3e6142;

  /* allow wrapping inside the callout */
  white-space: normal;
  overflow-wrap: anywhere;
}

/* Cup + title row */
.menu-callout__body{
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-callout__cup{
  width: clamp(40px, 4.4vw, 60px);
  height: auto;
  flex: 0 0 auto;
}

.menu-callout__title{
  font-size: clamp(20px, 2.0vw, 34px);
  line-height: 1.1;
  color: #111;
}

/* --- Border ornaments --- */
.menu-ornament{
  position: absolute;
  pointer-events: none;
  user-select: none;
  border-radius: 0;
  z-index: 1;
}

/* Corners (fixed) */
.menu-corner{
  width: var(--menu-corner);
  height: var(--menu-corner);
  object-fit: contain;
  z-index: 2;
}

.menu-corner--tl{ top: var(--menu-border-inset); left: var(--menu-border-inset); }
.menu-corner--tr{ top: var(--menu-border-inset); right: var(--menu-border-inset); }
.menu-corner--bl{ bottom: var(--menu-border-inset); left: var(--menu-border-inset); }
.menu-corner--br{ bottom: var(--menu-border-inset); right: var(--menu-border-inset); }

/* Edge strips (scale slightly within range) */
.menu-edge{
  height: var(--menu-edge-h);
  width: calc(100% - (2 * var(--menu-corner)));
  left: calc(var(--menu-corner) + var(--menu-border-inset));
  transform-origin: center;
  transform: scaleX(var(--menu-edge-scale));
}
.menu-edge--top{ top: var(--menu-border-inset); }
.menu-edge--bottom{ bottom: var(--menu-border-inset); }

.menu-edge-vert{
  width: var(--menu-edge-h);
  height: calc(100% - (2 * var(--menu-corner)));
  top: calc(var(--menu-corner) + var(--menu-border-inset));
  transform-origin: center;
  transform: scaleY(var(--menu-edge-scale));
}
.menu-edge-vert--left{ left: var(--menu-border-inset); }
.menu-edge-vert--right{ right: var(--menu-border-inset); }

/* Ensure ornament images fill their boxes */
.menu-ornament img,
.menu-ornament svg{
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
}

/* Veggie decorations (fixed-ish size, responsive clamp)
   These should be slightly cut off by the frame edges (menu-frame has overflow: hidden).
*/
/* A decor layer that overlays the menu frame (does not affect layout) */
.menu-decor{
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Veggies are positioned relative to the menu frame */
.menu-veggie{
  position: absolute;
  display: block;
  height: auto;
  border-radius: 0;
}

/*
  Goal:
  - Anchor each veggie by percentage of the frame width/height
  - Keep a consistent “cut off” amount using translate(%), which is relative to the veggie itself
  - So resizing the window does NOT cause drift
*/

.menu-veggie--tomato{
  width: clamp(70px, 7vw, 120px);
  left: 0;
  top: 8%;
  transform: translate(-18%, -5%);
}

.menu-veggie--cucumber{
  width: clamp(56px, 5vw, 90px);
  left: 86%;
  top: 0;
  transform: translate(-50%, -35%);
}

.menu-veggie--chili{
  width: clamp(56px, 5.5vw, 96px);
  left: 14%;
  top: 92%;
  transform: translate(-60%, -40%);
}

.menu-veggie--onion{
  width: clamp(86px, 8vw, 150px);
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 10%);
}

.menu-veggie--cilantro{
  width: clamp(110px, 10vw, 186px);
  left: 94%;
  top: 64%;
  transform: translate(-50%, -50%);
}

/* Option B scaling range via breakpoints (keeps the strip from feeling too stretched) */
@media (max-width: 980px){
  :root{ --menu-edge-scale: 0.92; }

  /* Stack menu into a single column */
  .menu-grid{ grid-template-columns: 1fr; }
  .menu-inner{ padding: calc(var(--menu-frame-pad) + 2px); }

  /* Tablet: center the pills, but keep the item text left-aligned
     and aligned to the pill's left edge by matching widths + margins */
  .menu-pill{
    display: flex;
    width: min(520px, 86%);
    margin-left: auto;
    margin-right: auto;
  }

  .menu-item{
    width: min(520px, 86%);
    margin-left: auto;
    margin-right: auto;
  }

  /* Tablet: keep the callout in normal flow under the items and centered */
  .menu-callout{
    transform: none;
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 26px auto 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  }

  .menu-callout__kicker{
    margin-left: 0;
    display: block;
    text-align: center;
  }

  .menu-callout__body{
    justify-content: center;
  }

  .menu-callout__star{
    left: -6%;
    top: -22%;
  }

  .menu-veggie--onion{
    width: clamp(86px, 8vw, 150px);
    left: 95%;
    top: 95%;
    transform: translate(-50%, 10%) scaleX(-1);
    transform-origin: center;
  }

  .menu-veggie--chili{
    width: clamp(56px, 5.5vw, 96px);
    left: 4%;
    top: 80%;
    transform: translate(-78%, -48%);
  }

  .menu-veggie--tomato{
    top: 28%;
    left: -2%;
  }

  .menu-veggie--cilantro{
    width: clamp(101px, 9.35vw, 176px);
    left: auto;
    right: 0;
    top: 58%;
    transform: translate(18%, -50%);
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-subtitle {
    font-size: 20px;
    line-height: 1.4;
    max-width: calc(42.9375vw - var(--heroPadX));
  }

  .hero-follow__label{
    font-size: 20px;
  }

  .hero-follow__icons a{
    display: inline-flex;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 700px){
  /* Mobile: widen usable content area inside the menu frame */
  :root{
    --menu-frame-pad: 12px;        /* was 28–44px via clamp; too much on small screens */
    --menu-border-inset: 8px;      /* keep the outside breathing room but slightly tighter */
  }

  /* Reduce the big left/right padding that was making the content look narrow */
  .menu-frame{
    padding: calc(var(--menu-frame-pad) + var(--menu-edge-thickness) + 14px);
  }

  .menu-pill{
    width: 100%;
  }

  .menu-grid{
    gap: 18px;
  }

  .menu-veggie--chili{
    width: clamp(56px, 5.5vw, 96px);
    left: 6%;
    top: 76%;
    transform: translate(-78%, -48%);
  }

  .menu-veggie--tomato{
    top: 28%;
    left: -2%;
  }

  .menu-veggie--onion{
    width: clamp(86px, 8vw, 150px);
    left: 93%;
    top: 87%;
    transform: translate(-50%, 10%) scaleX(-1);
    transform-origin: center;
  }
  
  .hero-title{
    max-width: 100%;
  }

  .hero-subtitle{
    max-width: 100%;
  }

  
}

@media (min-width: 1200px){
  :root{ --menu-edge-scale: 1.06; }
}
@media (min-width: 1500px){
  :root{ --menu-edge-scale: 1.12; }
}

/* =============================
   Why Kachumbar Exists
   ============================= */


.why-exists{
  position: relative;
  background-color: #8B4636;
  color: #FAF8F2;

  /* section padding */
  padding: clamp(56px, 7vw, 96px) 0;

  /* reserve space for the 52px border */
  padding-bottom: calc(clamp(56px, 7vw, 96px) + 52px);

  border-radius: 0;

  /* repeating bottom border (path is relative to /css/styles.css) */
  background-image: url("../assets/why-border.svg");
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: auto 52px;
}

/* Desktop-only: make section ~50% taller with equal top/bottom space (plus the 52px border) */
@media (min-width: 769px){
  .why-exists{
    padding-top: calc(clamp(56px, 7vw, 96px) * 1.5);
    padding-bottom: calc((clamp(56px, 7vw, 96px) * 1.5) + 52px);
  }

  /* Center the title pill between the top padding and the start of the copy */
  .why-exists__title{
    margin-top: clamp(22px, 3vw, 38px);
  }
}

@media (max-width: 768px){
  .why-exists{
    background-size: auto 32px;
  }
}

/* Override the global `* { border-radius: var(--radius); }` inside this section
   (keep everything square EXCEPT the title pill) */
.why-exists{ border-radius: 0; }
.why-exists *:not(.why-exists__title){
  border-radius: 0;
}

.why-exists .container{
  padding-left: clamp(28px, 6vw, 84px);
  padding-right: clamp(28px, 6vw, 84px);
}

.why-exists__title{
  font-family: "Gayathri", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1;
  letter-spacing: 0.02em;

  /* Title pill styling */
  display: inline-block;
  background: #EDE3B9;
  color: #3E6041;
  border-radius: 8px;
  padding: 20px 80px 5px;

  margin: 0 0 clamp(22px, 3vw, 38px);
}

.why-exists__copy{
  font-family: "Epilogue", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 28px);
  line-height: 1.35;
  color: #FAF8F2;
  width: 100%;
  max-width: none;
}

.why-exists__copy p{
  margin: 0 0 clamp(18px, 2.2vw, 30px);
}

.why-exists__copy p:last-child{
  margin-bottom: 0;
}

/* =============================
   Our Story
   ============================= */

.story{
  background: #ffffff;
  padding: clamp(44px, 6vw, 84px) 0;
  border-radius: 0;
}

/* Override global border radius inside this section */
.story, .story *{
  border-radius: 0;
}

.story .container{
  padding-left: clamp(28px, 6vw, 84px);
  padding-right: clamp(28px, 6vw, 84px);
}

.story-inner{
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(420px, 1.25fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: start;
}

/* Small-ish screens: ensure a clearer gap between image and text */
@media (max-width: 1100px){
  .story-inner{
    gap: clamp(40px, 6vw, 84px);
  }
}

.story-media{
  width: 100%;
  max-width: 560px;
  justify-self: end;
  position: relative;

  /* Allow the image column to stretch to match the text column height */
  align-self: stretch;
  display: flex;
}

/* Star pinned to the story image's top-left corner */
.story-star{
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(100px, 10vw, 200px);
  height: auto;
  transform: translate(-35%, -35%);
  z-index: 3;
  pointer-events: none;
  user-select: none;
  border-radius: 0;
}

.story-media > img:not(.story-star){
  /* Default: keep desktop feel */
  width: 100%;
  height: auto;
  max-height: 600px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

/* On smaller screens: make the image slightly taller than the text block */
@media (max-width: 1100px){
  .story-content{
    align-self: stretch;
  }

  .story-media > img:not(.story-star){
    max-height: none;
    height: 105%;
  }
}

.story-content{
  padding-top: clamp(6px, 1vw, 14px);
  text-align: center;
}

.story-title{
  display:inline-block;
  font-family: "Gayathri", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 0 0 clamp(18px, 2.8vw, 34px);
  text-align: center;
    /* Title pill styling */
  background: #E26133;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 20px 80px 5px;
}

.story-copy{
  font-family: "Epilogue", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 28px);
  line-height: 1.35;
  color: #8B4636;
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
  text-align:left;
}

.story-copy p{
  margin: 0 0 clamp(16px, 2.1vw, 28px);
}

.story-copy p:last-child{
  margin-bottom: 0;
}

@media (max-width: 700px){
  .story-inner{
    grid-template-columns: 1fr;
  }

  .story-title{
    text-align: left;
  }

  .story-copy{
    max-width: 70ch;
    margin-left: 0;
    margin-right: 0;
  }
  .story-media{
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 700px){
  .story .container{
    padding-left: 22px;
    padding-right: 22px;
  }

  .story-media img{
    border-radius: 8px;
  }
}

/* =============================
   Footer
   ============================= */

.site-footer{
  background: #EDE3B8;
  border-top: 0;
  padding: 40px 0 22px;
  border-radius: 0;
}

/* Override global border radius inside footer */
.site-footer, .site-footer *{
  border-radius: 0;
}

.site-footer__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.site-footer__contact{
  max-width: 60ch;
}

.site-footer__title{
  font-family: "Gayathri", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: #3E6142;
}

.site-footer__text{
  margin: 0 0 10px;
  font-family: "Epilogue", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.45;
  color: rgba(62, 97, 66, 0.95);
}

.site-footer__link{
  color: #8B4636;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 70, 54, 0.35);
}
.site-footer__link:hover{
  border-bottom-color: rgba(139, 70, 54, 0.9);
}

.site-footer__social{
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.site-footer__social-link{
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.site-footer__social-link img{
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.site-footer__copy{
  margin: 0;
  text-align: center;
  font-family: "Epilogue", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: rgba(62, 97, 66, 0.9);
}

@media (max-width: 700px){
  .site-footer{
    padding: 34px 0 20px;
  }

  .site-footer__text{
    font-size: 16px;
  }

  .site-footer__social-link{
    width: 48px;
    height: 48px;
  }

  .site-footer__copy{
    font-size: 14px;
  }
}

@media (max-width: 768px) {

  body{
    padding-top: 64px;
  }

  /* On mobile: override transform for floating header, but keep fixed position. */
  .site-header.is-floating{
    transform: translateY(24px) scale(0.95);
  }

  /* Slightly tighter inner padding so content fits nicely */
  .header-inner{
    padding: 14px 18px;
  }

  .brand-logo{
    max-height: 36px; /* keeps logo from stretching */
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 20px;
    line-height: 1.4;
  }

  .hero-follow__label{
    font-size: 20px;
  }

  .hero-follow__icons a{
    display: inline-flex;
    width: 50px;
    height: 50px;
  }



  /* Mobile hero: full-bleed background image with copy overlaid */
  .hero-inner{
    --heroPadX: 20px;

    /* Let content define height, but ensure the hero feels full-screen on phones */
    aspect-ratio: auto;
    min-height: calc(100svh - 64px); /* 64px matches mobile body padding-top */

    /* Keep single-column layout and stack content at the top */
    grid-template-columns: 1fr;
    align-items: start;

    /* Give the copy a little breathing room from the top */
    padding: 16px var(--heroPadX) 28px;
  }

  /* Keep the hero image behind the text (not in normal flow) */
  .hero-media{
    position: absolute;
    inset: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 100%;
    z-index: 0;
    border-radius: 0;
  }

  .hero-media img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;      /* fills the hero section */
    object-position: center;
    border-radius: 0;
    transform: none;
  }

  /* Ensure overlay text stays on top */
  .hero-inner > :not(.hero-media){
    grid-row: 1;
    z-index: 2;
    padding: 0; /* hero-inner already has side padding */
  }

  /* OVERRIDE desktop spacing so text can sit at the very top */
  .hero-title{
    margin-top: 20px;
  }

  .hero-subtitle{
    margin-top: 0px;
  }

  .hero-follow{
    margin-top: 30px;
  }

  .why-exists__title{
    padding: 20px 20px 5px;
  }

  .why-exists .container{
    text-align: center;
  }

  .why-exists .container{
    padding-left: 22px;
    padding-right: 22px;
  }
  .why-exists__copy{
    width: 100%;
    max-width: none;
    text-align: left;
  }

  /* Mobile: put “Follow our journey on” and the icons on the same row */
  .hero-follow{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap; /* if needed on very small screens */
  }

  .hero-follow__label{
    margin: 0;
    line-height: 1.2;
    white-space: nowrap; /* keeps the phrase together; icons will wrap if needed */
  }

  .hero-follow__icons{
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .hero-follow__icons a{
    width: 40px;
    height: 40px;
  }
}

/* ===========================================================
   First-fold redesign: contained hero + signature bowls strip
   Overrides the older full-bleed hero rules above.
   =========================================================== */
.hero,
.signature-bowls,
.hero-intro{
  border-radius: 0;
}

.hero{
  background: var(--green);
  padding: clamp(20px, 3.5vw, 56px) 0 clamp(16px, 2.5vw, 36px);
}

.hero-inner,
.signature-bowls > .container,
.hero-intro__inner{
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.hero-inner{
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  aspect-ratio: auto;
}

.hero-inner::before{ content: none; }

.hero-media{
  position: static;
  width: 100%;
  height: auto;
  margin-left: 0;
  inset: auto;
  z-index: auto;
  border-radius: 20px;
  overflow: hidden;
}

.hero-media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  aspect-ratio: var(--hero-aspect);
  object-fit: cover;
}

.hero-title{
  font-size: clamp(28px, 4vw, 52px);
  color: #EDE3B9;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
  max-width: none;
}

.signature-bowls{
  background: var(--green);
  padding: 0 0 clamp(28px, 4vw, 56px);
}

.signature-bowls__scroll{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.6vw, 22px);
}

.bowl-card{
  position: relative;
}

.bowl-card__image{
  aspect-ratio: 5 / 4;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}

.bowl-card__label{
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: "Epilogue", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #FAF8F2;
  white-space: nowrap;
}

.bowl-card__label--c1{ background: var(--order-btn); }
.bowl-card__label--c2{ background: var(--order-now-btn); }
.bowl-card__label--c3{ background: #C75D2E; }

.hero-intro{
  background: var(--page-bg);
  padding: clamp(28px, 5vw, 64px) 0;
}

.hero-intro__inner{
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 32px);
}

.hero-intro .hero-subtitle{
  color: var(--text);
  max-width: 720px;
  margin: 0;
}

.hero-intro .hero-follow{
  margin-top: 0;
}

.hero-intro .hero-follow__label{
  color: var(--text);
}

@media (max-width: 768px){
  .hero{
    padding: clamp(16px, 4vw, 28px) 0 clamp(12px, 3vw, 24px);
  }

  .hero-inner{
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding-block: 0;
  }

  .hero-title{
    font-size: clamp(22px, 6vw, 30px);
    margin: 0;
    line-height: 1.2;
  }

  .hero-media img{
    aspect-ratio: 4 / 5;
    border-radius: 18px;
  }

  .signature-bowls{
    padding-bottom: clamp(24px, 5vw, 40px);
  }

  .signature-bowls__scroll{
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding-bottom: 8px;
  }

  .signature-bowls__scroll::-webkit-scrollbar{ display: none; }

  .bowl-card{
    flex: 0 0 64%;
    scroll-snap-align: start;
  }

  .bowl-card__label{
    font-size: 13px;
    padding: 7px 12px;
  }

  .hero-intro .hero-subtitle{
    font-size: 22px;
  }
}
