/* ============================================================
   GRILL & GREEN — HOMEPAGE
   Hero · Featured · Story · Staff · Spotlights · Drinks · Footer
   ============================================================ */

/* ============================================================
   01 HERO
   Split layout: left text (48%) + right photo stack (52%)
   ============================================================ */

.hero {
  background: var(--field);
  min-height: calc(100vh - var(--nav-h));
  max-height: 860px;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 48fr 52fr;
  gap: 40px;
  align-items: start;
}

/* ---- LEFT: Text column ---- */
.hero__text {
  padding: 72px 0 48px;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 20px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ember);
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--ff-display);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--ink-2);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero__headline em {
  font-style: italic;
  color: var(--ember);
}

/* Each word wrapped for breeze animation */
.hero__headline .hero-word {
  display: inline-block;
}

.hero__sub {
  font-family: var(--ff-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--dust);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  margin-bottom: 0;
}

.hero-order-block {
  margin-top: 28px;
  margin-bottom: 24px;
  max-width: 100%;
  width: 100%;
}

/* ---- RIGHT: Photo column ---- */
.hero__photo {
  position: relative;
  padding: 72px clamp(12px, 2vw, 24px) 48px 0;
}

.hero__photo-main {
  position: relative;
  width: 100%;
  height: clamp(520px, 46vw, 580px);
  overflow: visible;
  margin-top: 18px;
  margin-left: 16px;
}

.hero__photo-main > img:first-of-type {
  border-radius: var(--r-hero);
}

.hero__photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__photo-outdoor {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(45%, -45%);
  width: clamp(148px, 20vw, 190px);
  height: clamp(110px, 15vw, 142px);
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--field);
  box-shadow: 0 8px 24px rgba(30, 43, 23, 0.16),
              0 2px 6px rgba(30, 43, 23, 0.08);
  z-index: 3;
}

.hero__photo-outdoor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sun mark — decorative, top-right */
.hero__sun {
  position: absolute;
  top: 20px;
  right: -10px;
  width: 110px;
  height: 110px;
  color: var(--ember);
  opacity: 0.07;
  z-index: 1;
  pointer-events: none;
}

/* Wave divider between hero and next section */
.hero__wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 10;
  pointer-events: none;
}

.hero__wave-bottom svg {
  width: 100%;
  height: clamp(30px, 4vw, 60px);
  display: block;
}

/* ---- RESPONSIVE HERO ---- */
@media (max-width: 860px) {
  .hero {
    max-height: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 60px;
    padding-bottom: 110px;
  }

  .hero__text {
    padding: 0;
    padding-bottom: 8px;
  }

  .hero__photo {
    height: auto;
    padding: 0;
  }

  .hero__photo-main {
    height: 400px;
    margin-top: 0;
    margin-left: 0;
  }

  .hero__photo-outdoor {
    top: 0;
    right: 0;
    transform: translate(45%, -45%);
    width: 120px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: 46px;
  }

  .hero__photo-main {
    height: 300px;
  }

  .hero__photo-outdoor {
    display: block;
    top: 12px;
    right: 12px;
    transform: none;
    width: clamp(118px, 34vw, 150px);
    height: clamp(88px, 25vw, 112px);
    border-width: 2px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(30, 43, 23, 0.18);
  }
}

/* ============================================================
   02 CATEGORY EXPLORER
   Full-bleed 5-panel fan · Flex accordion hover
   ============================================================ */

.category-explorer {
  display: flex;
  width: 100%;
  height: clamp(400px, 42vw, 520px);
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* ---- Individual Panel ---- */
.cat-panel {
  position: relative;
  flex: 1 1 20%;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
}

/* Panel image — absolute fill */
.cat-panel__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Gradient overlay — dark forest green, not pure black */
.cat-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 25%,
    rgba(18, 35, 18, 0.25) 50%,
    rgba(18, 35, 18, 0.62) 100%
  );
  z-index: -1;
  pointer-events: none;
}

/* Panel content — positioned above overlay */
.cat-panel__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Category name */
.cat-panel__name {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

/* One-line descriptor */
.cat-panel__desc {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 260px;
}

/* CTA text with animated underline */
.cat-panel__cta {
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
}

/* Underline that slides in from left on hover */
.cat-panel__cta::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

.cat-panel__arrow {
  display: inline-block;
}

/* ---- Hover / Focus States ---- */
@media (prefers-reduced-motion: no-preference) {
  .cat-panel {
    transition: flex-basis 280ms ease-out;
  }

  .cat-panel__img {
    transition: transform 280ms ease-out;
  }

  .cat-panel::after {
    transition: background 280ms ease-out;
  }

  .cat-panel__cta::before {
    transition: width 280ms ease-out;
  }

  .cat-panel__arrow {
    transition: transform 200ms ease-out;
  }
}

.cat-panel:hover,
.cat-panel:focus-visible {
  flex-basis: 28%;
}

.cat-panel:hover .cat-panel__img,
.cat-panel:focus-visible .cat-panel__img {
  transform: scale(1.05);
}

.cat-panel:hover::after,
.cat-panel:focus-visible::after {
  background: linear-gradient(
    to bottom,
    transparent 25%,
    rgba(18, 35, 18, 0.18) 50%,
    rgba(18, 35, 18, 0.45) 100%
  );
}

.cat-panel:hover .cat-panel__cta::before,
.cat-panel:focus-visible .cat-panel__cta::before {
  width: 100%;
}

.cat-panel:hover .cat-panel__arrow,
.cat-panel:focus-visible .cat-panel__arrow {
  transform: translateX(3px);
}

/* Active/pressed state — brief darkening */
.cat-panel:active::after {
  background: linear-gradient(
    to bottom,
    transparent 25%,
    rgba(18, 35, 18, 0.30) 50%,
    rgba(18, 35, 18, 0.70) 100%
  );
}

/* Thin separator between panels */
.cat-panel + .cat-panel {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---- Responsive: Mobile ---- */
@media (max-width: 768px) {
  .category-explorer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .cat-panel {
    height: 200px;
    flex: none;
    padding: 20px 18px;
  }

  /* Disable hover-expand on touch / small screens */
  .cat-panel:hover,
  .cat-panel:focus-visible {
    flex-basis: auto;
  }

  /* Last panel spans full width */
  .cat-panel:last-child {
    grid-column: 1 / -1;
  }

  .cat-panel__name {
    font-size: 20px;
  }

  .cat-panel__desc {
    font-size: 12px;
  }

  .cat-panel__cta {
    font-size: 12px;
  }

  /* Adjust gradient for shorter panels */
  .cat-panel::after {
    background: linear-gradient(
      to bottom,
      transparent 10%,
      rgba(18, 35, 18, 0.55) 70%,
      rgba(18, 35, 18, 0.72) 100%
    );
  }

  .cat-panel + .cat-panel {
    border-left: none;
  }
}

@media (max-width: 480px) {
  .cat-panel {
    height: 180px;
    padding: 16px 14px;
  }

  .cat-panel__name {
    font-size: 18px;
  }
}

/* ============================================================
   02b TODAY'S PICKS
   Three curated item cards · Chalkboard specials-board treatment
   ============================================================ */

.daily-edit {
  background: #1F1B17;
  padding: var(--section-pad-v) 0;
  position: relative;
  overflow: hidden;
}

/* Subtle chalk-dust texture */
.daily-edit::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
  pointer-events: none;
  z-index: 0;
}

.daily-edit__chalk-marks {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.daily-edit__chalk-marks span {
  position: absolute;
  display: block;
  opacity: 0.22;
}

.daily-edit__chalk-marks span:nth-child(1) {
  top: 16%;
  left: 7%;
  width: 44px;
  height: 2px;
  background: #8AAFCF;
  --chalk-rotate: -12deg;
  transform: rotate(var(--chalk-rotate));
}

.daily-edit__chalk-marks span:nth-child(2) {
  top: 20%;
  right: 14%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E8C547;
}

.daily-edit__chalk-marks span:nth-child(3) {
  top: 38%;
  left: 3%;
  width: 10px;
  height: 10px;
  border: 2px solid #A3BE8C;
  border-radius: 50%;
}

.daily-edit__chalk-marks span:nth-child(4) {
  top: 12%;
  right: 34%;
  width: 18px;
  height: 18px;
  border-left: 2px solid #E8917A;
  border-bottom: 2px solid #E8917A;
  --chalk-rotate: -25deg;
  transform: rotate(var(--chalk-rotate));
}

.daily-edit__chalk-marks span:nth-child(5) {
  bottom: 20%;
  left: 12%;
  width: 8px;
  height: 8px;
  background: #E8C547;
  --chalk-rotate: 45deg;
  transform: rotate(var(--chalk-rotate));
}

.daily-edit__chalk-marks span:nth-child(6) {
  bottom: 15%;
  right: 9%;
  width: 54px;
  height: 2px;
  background: #A3BE8C;
  --chalk-rotate: 9deg;
  transform: rotate(var(--chalk-rotate));
}

.daily-edit__chalk-marks span:nth-child(7) {
  top: 58%;
  right: 3%;
  width: 14px;
  height: 14px;
  border-top: 2px solid #8AAFCF;
  border-right: 2px solid #8AAFCF;
  --chalk-rotate: 30deg;
  transform: rotate(var(--chalk-rotate));
}

.daily-edit__chalk-marks span:nth-child(8) {
  bottom: 33%;
  left: 42%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E8917A;
}

.daily-edit__chalk-marks span:nth-child(9) {
  top: 9%;
  left: 28%;
  width: 32px;
  height: 2px;
  background: #E8C547;
  --chalk-rotate: 18deg;
  transform: rotate(var(--chalk-rotate));
}

.daily-edit__chalk-marks span:nth-child(10) {
  bottom: 9%;
  right: 32%;
  width: 9px;
  height: 9px;
  border: 2px solid #E8917A;
  --chalk-rotate: 18deg;
  transform: rotate(var(--chalk-rotate));
}

.daily-edit > .container {
  position: relative;
  z-index: 1;
}

/* Thin top separator */
.daily-edit::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #E8C547;
  opacity: 0.28;
}

/* ---- Header ---- */
.daily-edit__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
  flex-wrap: wrap;
}

.daily-edit__heading-group {
  display: flex;
  flex-direction: column;
}

.daily-edit .eyebrow {
  color: #E8C547;
}

.daily-edit .eyebrow::before {
  background: #E8C547;
}

.daily-edit .section-heading {
  color: #fff;
  margin-bottom: 0;
}

.daily-edit .section-heading em {
  color: #E8C547;
  position: relative;
}

.daily-edit .section-heading em::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -8px;
  bottom: 0.04em;
  height: 3px;
  border-radius: 999px;
  background: #8AAFCF;
  opacity: 0.32;
  transform: rotate(-1.5deg);
}

.daily-edit__intro {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin-top: 8px;
}

.daily-edit__view-link {
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 500;
  color: #E8C547;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.daily-edit__view-link:hover {
  color: #fff;
}

/* ---- Card ---- */
.daily-edit__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--sh-rest);
  border: 1px solid var(--stone);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

@media (prefers-reduced-motion: no-preference) {
  .daily-edit__card {
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  }
}

.daily-edit__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(30, 43, 23, 0.12);
  border-color: var(--grove);
}

/* ---- Card image ---- */
.daily-edit__card-img {
  position: relative;
  height: 0;
  padding-bottom: 65%;  /* ~3:4.6 aspect, portrait-leaning */
  overflow: hidden;
  background: var(--field-dk);
}

.daily-edit__card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  .daily-edit__card-img img {
    transition: transform 350ms ease;
  }

  .daily-edit__card:hover .daily-edit__card-img img {
    transform: scale(1.04);
  }
}

/* ---- Card body ---- */
.daily-edit__card-body {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  position: relative;
}

/* Tag badge */
.daily-edit__badge {
  display: inline-block;
  width: fit-content;
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--ink-3);
  color: #fff;
  line-height: 1.3;
}

/* Name + price row */
.daily-edit__name-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.daily-edit__name {
  font-family: var(--ff-ui);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.25;
  margin: 0;
}

.daily-edit__price {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ember);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Description — 2-line clamp */
.daily-edit__desc {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--dust);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Hover arrow — bottom-right, appears on hover */
.daily-edit__arrow {
  position: absolute;
  bottom: 18px;
  right: 18px;
  font-family: var(--ff-ui);
  font-size: 16px;
  color: var(--ember);
  opacity: 0;
  transform: translateX(-6px);
}

@media (prefers-reduced-motion: no-preference) {
  .daily-edit__arrow {
    transition: opacity 200ms ease, transform 200ms ease;
  }
}

.daily-edit__card:hover .daily-edit__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .daily-edit .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .daily-edit .grid-3 {
    grid-template-columns: 1fr;
  }

  .daily-edit__chalk-marks span:nth-child(n+7) {
    display: none;
  }

  .daily-edit__card-img {
    padding-bottom: 55%;
  }
}

/* ============================================================
   03 OUR STORY
   ============================================================ */

.story {
  background: var(--field-dk);
  padding: var(--section-pad-v) 0;
}

.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story__content {
  position: relative;
}

.story__grass {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  height: 28px;
  align-items: flex-end;
}

.story__grass-blade {
  width: 2px;
  background: var(--grove);
  opacity: 0.35;
  border-radius: 2px;
  transform-origin: bottom center;
}

.story__grass-blade:nth-child(1) { height: 20px; }
.story__grass-blade:nth-child(2) { height: 28px; }
.story__grass-blade:nth-child(3) { height: 16px; }

.story__body {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--dust);
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 28px;
}

.story__quote {
  border-left: 3px solid var(--ember);
  padding: 16px 20px;
  background: rgba(201, 77, 32, 0.04);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.story__quote p {
  font-family: var(--ff-display);
  font-size: 19px;
  font-style: italic;
  color: var(--ink-2);
  line-height: 1.5;
}

.story__photos {
  position: relative;
  height: 500px;
}

.story__photo-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 80%;
  border-radius: var(--r-image);
  overflow: hidden;
}

.story__photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__photo-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 50%;
  border-radius: var(--r-image);
  overflow: hidden;
  border: 4px solid var(--field-dk);
  box-shadow: var(--sh-modal);
}

.story__photo-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 860px) {
  .story__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story__photos {
    height: 320px;
  }
}

/* ============================================================
   04 STAFF FAVORITES
   ============================================================ */

.staff {
  background: var(--field);
  padding: var(--section-pad-v) 0;
}

.staff__heading-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.staff__volleyball {
  width: 26px;
  height: 26px;
  color: var(--ember);
  opacity: 0.30;
  position: relative;
  top: 2px;
  flex-shrink: 0;
}

/* ============================================================
   04 WHAT THIS KITCHEN IS BUILT AROUND
   Five alternating pillar rows:
   Coffee · Breakfast · MediterrAsian · Smoothies · Full Menu
   ============================================================ */

.kitchen-built {
  background: var(--linen);
  padding: var(--section-pad-v) 0 0;
}

.kitchen-built__header {
  text-align: center;
  margin-bottom: 72px;
}

/* ---- Pillar Row — shared base ---- */

.pillar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

/* Even rows — text left, image right.
   direction: rtl flips column order visually.
   DOM order stays: image first, content second. */
.pillar-row--reverse {
  direction: rtl;
}

.pillar-row--reverse > * {
  direction: ltr;
}

/* ---- Image column ---- */

.pillar-img-wrap {
  position: relative;
  height: 420px;
}

.pillar-img-main {
  width: 90%;
  height: 100%;
  border-radius: var(--r-image);
  overflow: hidden;
  transform: rotate(-2deg);
  box-shadow: var(--sh-hover);
}

.pillar-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(2deg) scale(1.05);
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  .pillar-img-main img {
    transition: transform 0.35s ease;
  }

  .pillar-row:hover .pillar-img-main img {
    transform: rotate(2deg) scale(1.08);
  }
}

/* Coffee row variant — main image pushed right, detail circle left */
.pillar-img-wrap--coffee .pillar-img-main {
  width: 90%;
  height: 100%;
  margin-left: auto;
}

/* Secondary circular product shot — coffee row only */
.pillar-img-detail {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  bottom: 32px;
  left: 0;
  border: 4px solid var(--linen);
  box-shadow: var(--sh-modal);
  z-index: 2;
}

.pillar-img-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: none;
}

/* ---- Text column ---- */

.pillar-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar-content .section-heading {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 0;
}

.pillar-content .section-intro {
  font-size: 16px;
  margin: 0;
}

/* ---- CTA text link ---- */

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--ember);
  text-decoration: none;
  width: fit-content;
}

@media (prefers-reduced-motion: no-preference) {
  .pillar-link {
    transition: color var(--t-base);
  }
}

.pillar-link:hover {
  color: var(--ink-2);
}

.pillar-link::after {
  content: '→';
}

/* ---- Row 5 — Full-width variety panel ---- */
/* Sits outside .container, inside .kitchen-built */

.pillar-row--full {
  display: block;
  position: relative;
  height: clamp(400px, 42vw, 520px);
  overflow: hidden;
  margin-bottom: 0;
  margin-top: 0;
}

/* Three-photo horizontal strip — absolute fill */
.pillar-full-strip {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pillar-full-strip__photos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  height: 100%;
}

.pillar-full-strip__photo {
  overflow: hidden;
}

.pillar-full-strip__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark gradient overlay — heavier toward bottom where text lives */
.pillar-full-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 18, 9, 0.18) 0%,
    rgba(14, 18, 9, 0.60) 55%,
    rgba(14, 18, 9, 0.82) 100%
  );
  z-index: 1;
}

/* Text overlay — centered horizontally, anchored to lower third */
.pillar-full-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: clamp(36px, 5vw, 64px);
  padding-inline: clamp(20px, 10vw, 160px);
  gap: 16px;
  text-align: center;
}

.pillar-full-text .eyebrow {
  color: rgba(255, 255, 255, 0.65);
  justify-content: center;
  margin-bottom: 0;
}

.pillar-full-text .eyebrow::before {
  background: rgba(255, 255, 255, 0.45);
}

.pillar-full-text .section-heading {
  color: #fff;
  font-size: clamp(26px, 3.8vw, 46px);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  margin-bottom: 0;
}

.pillar-full-text .section-intro {
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  max-width: 640px;
  margin: 0;
}

/* ---- Responsive ---- */

@media (max-width: 860px) {
  .pillar-row {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }

  /* Disable rtl reversal on small screens — all rows stack image-top, text-bottom */
  .pillar-row--reverse {
    direction: ltr;
  }

  .pillar-img-wrap {
    height: 280px;
  }

  .pillar-img-detail {
    width: 120px;
    height: 120px;
    bottom: 16px;
    left: 8px;
  }

  .pillar-row--full {
    height: clamp(340px, 55vw, 460px);
  }
}

@keyframes mobile-crossfade {
  0% { opacity: 0; }
  8% { opacity: 1; }
  33.33% { opacity: 1; }
  41.33% { opacity: 0; }
  100% { opacity: 0; }
}

@media (max-width: 540px) {
  .pillar-img-wrap {
    height: 240px;
  }

  /* On mobile, crossfade the 3 photos */
  .pillar-full-strip__photos {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }

  .pillar-full-strip__photo {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: mobile-crossfade 15s infinite;
  }

  .pillar-full-strip__photo:nth-child(1) { animation-delay: 0s; }
  .pillar-full-strip__photo:nth-child(2) { animation-delay: 5s; }
  .pillar-full-strip__photo:nth-child(3) { animation-delay: 10s; }

  .pillar-row--full {
    height: auto;
    min-height: 400px;
  }

  .pillar-full-text {
    position: relative;
    padding-inline: clamp(20px, 5vw, 40px);
    padding-top: 64px;
    padding-bottom: 64px;
    justify-content: center;
    gap: 12px;
  }
}

/* ============================================================
   06 SIGNATURE DRINKS BAND
   Deep Forest dark section · Wave dividers top + bottom
   ============================================================ */

.drinks-band {
  background: var(--ink);
  position: relative;
}

.drinks-band__wave-top,
.drinks-band__wave-bottom {
  display: block;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.drinks-band__wave-top svg,
.drinks-band__wave-bottom svg {
  width: 100%;
  height: 60px;
  display: block;
}

.drinks-band__inner {
  padding: 60px 0 72px;
}

.drinks-band .eyebrow {
  color: var(--ember);
}

.drinks-band .eyebrow::before {
  background: var(--ember);
}

.drinks-band .section-heading {
  color: #fff;
  margin-bottom: 12px;
}

.drinks-band .section-intro {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

.drinks-band__header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(200px, 0.72fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
  margin-bottom: 32px;
}

.drinks-band__header-copy .section-intro {
  max-width: none;
}

.drinks-band__photos {
  position: relative;
  width: 100%;
  height: clamp(185px, 21vw, 255px);
  flex-shrink: 0;
}

.drinks-band__photo-menu {
  position: absolute;
  top: -6%;
  left: 0;
  width: 100%;
  height: 106%;
  border-radius: var(--r-image);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.drinks-band__photo-menu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.drinks-band__photo-drinks {
  position: absolute;
  bottom: -10%;
  right: -3%;
  width: 52%;
  height: 48%;
  border-radius: var(--r-image);
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.drinks-band__photo-drinks img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.drinks-band__actions {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 860px) {
  .drinks-band__header {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .drinks-band__header-copy {
    order: -1;
  }

  .drinks-band__photos {
    height: 220px;
    max-width: 360px;
    margin: 0 auto;
  }

  .drinks-band__photo-drinks {
    bottom: -8%;
    right: -3%;
    width: 50%;
    height: 44%;
  }
}

/* ============================================================
   08 REWARDS CTA BAND
   ============================================================ */

.rewards-cta {
  background: var(--ember-lt);
  padding: var(--sp-10) 0;
  text-align: center;
}

.rewards-cta .section-heading {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--ink-2);
  margin-bottom: 12px;
}

.rewards-cta .section-intro {
  margin: 0 auto 32px;
  color: #7A4030;
}

.rewards-cta .btn-grove {
  background: var(--grove);
  color: #fff;
  border: none;
  font-family: var(--ff-ui);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  min-height: 44px;
}

@media (prefers-reduced-motion: no-preference) {
  .rewards-cta .btn-grove {
    transition: background-color var(--t-base);
  }
}

.rewards-cta .btn-grove:hover {
  background: var(--ink-3);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__tagline {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 240px;
}

.footer__col-title {
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__col-title::before {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: var(--ember);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer__links a {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer__links a:hover {
  color: #fff;
}

.footer__info p {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 4px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  text-decoration: none;
}

.footer__social a:hover {
  border-color: var(--ember);
  color: var(--ember);
}

.footer__rewards-cta {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  background: #fff;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  text-decoration: none;
  margin-top: 12px;
}

.footer__rewards-cta:hover {
  background: var(--ember);
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copyright {
  font-family: var(--ff-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  font-weight: 300;
}

/* Summer motifs in footer */
.footer__palm {
  position: absolute;
  bottom: 60px;
  right: clamp(20px, 5vw, 60px);
  width: 38px;
  height: 38px;
  color: var(--grove);
  opacity: 0.20;
  pointer-events: none;
}

.footer__grass {
  position: absolute;
  bottom: 50px;
  left: clamp(20px, 5vw, 60px);
  display: flex;
  gap: 4px;
  align-items: flex-end;
  opacity: 0.28;
  pointer-events: none;
}

.footer__grass-blade {
  width: 2px;
  background: var(--grove);
  border-radius: 2px;
}

.footer__grass-blade:nth-child(1) { height: 24px; }
.footer__grass-blade:nth-child(2) { height: 32px; }
.footer__grass-blade:nth-child(3) { height: 20px; }

@media (max-width: 860px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 540px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__palm,
  .footer__grass {
    display: none;
  }
}

/* ============================================================
   VISIT US
   ============================================================ */

.visit__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.visit__address {
  font-family: var(--ff-body);
  font-size: 18px;
  margin: 12px 0 24px;
  line-height: 1.5;
  color: var(--body);
}

.visit__address strong {
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--ink-2);
  font-weight: 400;
  display: block;
  margin-bottom: 4px;
}

.visit__hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 24px;
  font-family: var(--ff-ui);
  font-size: 14px;
  margin-bottom: 20px;
}

.visit__hours dt {
  color: var(--dust);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
}

.visit__hours dd {
  color: var(--ink-2);
  margin: 0;
}

.visit__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}

.visit__contact a {
  color: var(--ember);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: var(--ff-body);
  font-size: 15px;
}

.visit__contact a:hover {
  color: var(--ink-2);
}

.visit__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.visit__photo img {
  width: 100%;
  border-radius: var(--r-image);
  box-shadow: var(--sh-hover);
  object-fit: cover;
  aspect-ratio: 6 / 5;
}

@media (max-width: 860px) {
  .visit__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   06 GOOGLE REVIEWS SECTION
   Carousel · Verified Badge · Leave a Review CTA
   ============================================================ */

/* ---- Aggregate Rating Display ---- */

.reviews-header {
  text-align: center;
}

.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.reviews-aggregate__stars {
  font-size: 20px;
  color: var(--ember);
  letter-spacing: 2px;
}

.reviews-aggregate__count {
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--dust);
}

.reviews-google-icon {
  flex-shrink: 0;
  position: relative;
  top: 1px;
}

/* ---- Carousel Container ---- */

.reviews-carousel {
  position: relative;
  margin-bottom: 28px;
}

.reviews-carousel__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 16px;

  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-carousel__track::-webkit-scrollbar {
  display: none;
}

/* Each card becomes a snap target */
.reviews-carousel__track .testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
  min-width: 0;
}

/* ---- Arrow Navigation (desktop only) ---- */

.reviews-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--z-above);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--stone);
  background: #fff;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--sh-rest);
}

@media (prefers-reduced-motion: no-preference) {
  .reviews-carousel__arrow {
    transition: background-color var(--t-base), color var(--t-base),
                border-color var(--t-base), box-shadow var(--t-base);
  }
}

.reviews-carousel__arrow:hover {
  background: var(--ink-2);
  color: #fff;
  border-color: var(--ink-2);
  box-shadow: var(--sh-hover);
}

.reviews-carousel__arrow--prev {
  left: -20px;
}

.reviews-carousel__arrow--next {
  right: -20px;
}

/* ---- Dot Indicators ---- */

.reviews-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.reviews-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--stone);
  cursor: pointer;
  padding: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .reviews-carousel__dot {
    transition: background-color var(--t-base), transform var(--t-base);
  }
}

.reviews-carousel__dot.active {
  background: var(--ember);
  transform: scale(1.3);
}

.reviews-carousel__dot:hover:not(.active) {
  background: var(--dust);
}

/* ---- Google Verified Badge ---- */

.reviews-google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 20px;
  background: rgba(66, 133, 244, 0.06);
  border: 1px solid rgba(66, 133, 244, 0.15);
  border-radius: var(--r-pill);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--dust);
}

.reviews-google-badge__sep {
  color: var(--stone);
}

.reviews-google-badge__link {
  color: #4285F4;
  text-decoration: none;
  font-weight: 600;
}

.reviews-google-badge__link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- Leave a Review CTA ---- */

.reviews-cta {
  margin-top: 56px;
  padding: 48px 0;
  background: var(--ember-lt);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 77, 32, 0.12);
}

/* Subtle grain overlay — same pattern as daily-edit */
.reviews-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
  pointer-events: none;
  z-index: 0;
}

.reviews-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.reviews-cta__icon {
  color: var(--ember);
  opacity: 0.55;
  margin-bottom: 4px;
}

.reviews-cta__heading {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.15;
  margin: 0;
}

.reviews-cta__text {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 300;
  color: #7A4030;
  line-height: 1.6;
  max-width: 460px;
  margin: 0 0 8px;
}

.reviews-cta__btn {
  font-size: 15px;
  padding: 14px 28px;
  gap: 10px;
}

.reviews-cta__btn svg {
  flex-shrink: 0;
}

/* ---- Responsive ---- */

@media (max-width: 960px) {
  .reviews-carousel__track .testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }

  .reviews-carousel__arrow--prev { left: -12px; }
  .reviews-carousel__arrow--next { right: -12px; }
}

@media (max-width: 640px) {
  .reviews-carousel__track .testimonial-card {
    flex: 0 0 calc(100% - 16px);
  }

  /* Hide arrow buttons on mobile — swipe is natural */
  .reviews-carousel__arrow {
    display: none;
  }

  .reviews-aggregate {
    margin-bottom: 28px;
  }

  .reviews-google-badge {
    flex-wrap: wrap;
    text-align: center;
    padding: 10px 16px;
    font-size: 11px;
    gap: 4px;
  }

  .reviews-google-badge__sep {
    display: none;
  }

  .reviews-google-badge__link {
    width: 100%;
    display: block;
    margin-top: 2px;
  }

  .reviews-cta {
    margin-top: 40px;
    padding: 36px 0;
  }

  .reviews-cta__heading {
    font-size: 26px;
  }

  .reviews-cta__text {
    font-size: 14px;
  }
}
