/* ============================================
   PROJETO AÇAÍ — EXACT SITE MATCH
   Faithful recreation of projetoacai.com
   ============================================ */

:root {
  --cream:       #F9F5EA;
  --purple:      #7B4597;
  --teal:        #1C99B9;
  --banana:      #EAB64F;
  --palm:        #59873C;
  --mango:       #FF502C;
  --blueberry:   #1C0310;
  --white:       #ffffff;

  --font-display: 'Baloo 2', 'Comic Sans MS', cursive;
  --font-body:    'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;

  --container: 1200px;
  --pad: 1.5rem;
  --radius-frame: 20px;
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--blueberry);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: opacity 0.2s; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}
h1 { font-size: clamp(1.8rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
p { font-size: 1rem; line-height: 1.7; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }

/* ============================================
   NAVIGATION — Logo centered, links each side
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(28,3,16,0.08);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.75rem var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-logo {
  display: flex;
  justify-content: center;
}
.nav-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}
.nav-left a,
.nav-right a:not(.btn-order) {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--blueberry);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s;
}
.nav-left a:hover,
.nav-right a:not(.btn-order):hover,
.nav-left a.active,
.nav-right a.active {
  color: var(--teal);
}
.btn-order {
  background: var(--teal);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.btn-order:hover {
  background: #167d70;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  background: none;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--blueberry);
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--purple);
  z-index: 200;
  transition: right 0.3s ease;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  color: white;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  text-transform: uppercase;
}
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 150;
  opacity: 0; visibility: hidden;
  transition: all 0.3s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* ============================================
   HERO — Full width food photo, text overlay
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: clamp(320px, 55vw, 520px);
  object-fit: cover;
  display: block;
}
.hero video {
  width: 100%;
  height: clamp(320px, 55vw, 520px);
  object-fit: cover;
  display: block;
}
.hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.hero-text h1 {
  color: white;
  text-align: center;
  font-size: clamp(1.6rem, 5vw, 4rem);
  text-shadow: 2px 2px 12px rgba(0,0,0,0.4);
  max-width: 800px;
  line-height: 1.1;
}

/* ============================================
   TRUST BAR — Purple strip
   ============================================ */
.trust-bar {
  background: var(--purple);
  padding: 0.875rem 1rem;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.trust-bar-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  flex-shrink: 0;
}
.trust-bar p {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-contact {
  color: var(--purple) !important;
  font-weight: 700 !important;
}

/* ============================================
   TRUST ICONS — 3 column on cream
   ============================================ */
.trust-icons {
  background: var(--cream);
  padding: 2.5rem 0;
}
.trust-icons .container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-icon-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 200px;
}
.trust-icon-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}
.trust-icon-item p {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blueberry);
  line-height: 1.4;
}

/* ============================================
   EATING HEALTHY SPLIT — photo left, card right
   ============================================ */
.eating-healthy {
  background: var(--cream);
  padding: 3rem 0;
}
.eating-healthy .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.eating-photo {
  border-radius: var(--radius-frame);
  overflow: hidden;
  border: 3px solid var(--purple);
}
.eating-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.eating-card {
  background: var(--palm);
  border-radius: var(--radius-frame);
  padding: 2.5rem;
}
.eating-card h2 {
  color: var(--banana);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}
.eating-card .sub {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.eating-card ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}
.eating-card ul li {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.btn-green {
  display: inline-block;
  background: var(--teal);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  transition: background 0.2s;
}
.btn-green:hover { background: #167d70; }

/* ============================================
   BOWLS FAVORITAS — Purple carousel section
   ============================================ */
.bowls-section {
  background: var(--purple);
  padding: 3rem 0;
  overflow: hidden;
}
.bowls-section .section-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: var(--banana);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.carousel-wrap {
  position: relative;
}
.bowl-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.4s ease;
  padding: 0 1rem;
}
.bowl-card {
  flex: 0 0 240px;
  text-align: center;
}
.bowl-card .bowl-img-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid rgba(255,255,255,0.3);
}
.bowl-card .bowl-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bowl-card h4 {
  color: white;
  font-size: 1rem;
  text-transform: none;
  margin-bottom: 0.4rem;
}
.bowl-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  padding: 0 0.5rem;
}
.bowl-card .bowl-link {
  color: var(--banana);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: underline;
}
.carousel-arrow-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.carousel-arrow {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.carousel-arrow:hover { opacity: 1; }
.btn-see-all {
  display: block;
  width: fit-content;
  margin: 1.5rem auto 0;
  background: var(--teal);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding: 0.65rem 2rem;
  border-radius: 999px;
}
.btn-see-all:hover { background: #167d70; }

/* ============================================
   MORE THAN AÇAÍ — 3 food photos on cream
   ============================================ */
.more-section {
  background: var(--cream);
  padding: 3rem 0;
}
.more-section h2 {
  color: var(--purple);
  text-align: center;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 2rem;
}
.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.food-card {
  position: relative;
  border-radius: var(--radius-frame);
  overflow: hidden;
}
.food-card.frame-orange { border: 3px solid var(--mango); }
.food-card.frame-green  { border: 3px solid var(--palm); }
.food-card.frame-teal   { border: 3px solid var(--teal); }
.food-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.food-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(28,3,16,0.65);
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}
.more-section .btn-row {
  text-align: center;
  margin-top: 1.5rem;
}
.btn-teal-outline {
  display: inline-block;
  border: 2px solid var(--teal);
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  padding: 0.6rem 1.75rem;
  border-radius: 999px;
  transition: all 0.2s;
}
.btn-teal-outline:hover {
  background: var(--teal);
  color: white;
}

/* ============================================
   HOMEMADE GOODIES — Teal section
   ============================================ */
.goodies-section {
  background: var(--teal);
  padding: 3rem 0;
}
.goodies-section h2 {
  color: var(--banana);
  text-align: center;
  margin-bottom: 0.5rem;
}
.goodies-section .sub {
  color: white;
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.product-item img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 0.75rem;
}
.product-item h4 {
  color: white;
  font-size: 0.875rem;
  text-transform: none;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.product-item .price {
  color: var(--banana);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.75rem;
}
.btn-buy {
  background: white;
  color: var(--teal);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 1.25rem;
  border-radius: 999px;
  transition: all 0.2s;
}
.btn-buy:hover { background: var(--cream); }

/* ============================================
   BLOG SECTION — cream background
   ============================================ */
.blog-section {
  background: var(--cream);
  padding: 3rem 0;
}
.blog-section h2 {
  color: var(--teal);
  text-align: center;
  margin-bottom: 2rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: white;
  border-radius: var(--radius-frame);
  overflow: hidden;
  border: 2px solid rgba(28,3,16,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(28,3,16,0.1);
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-card-body {
  padding: 1.25rem;
}
.blog-tag {
  display: inline-block;
  background: rgba(28,153,137,0.1);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}
.blog-card-body h3 {
  font-size: 1rem;
  text-transform: none;
  font-weight: 700;
  color: var(--blueberry);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.blog-card-body p {
  font-size: 0.85rem;
  color: rgba(28,3,16,0.6);
  margin-bottom: 0.75rem;
}
.blog-card-body .read-more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
}
.blog-more-row {
  text-align: center;
  margin-top: 2rem;
}

/* ============================================
   FOOTER — Purple
   ============================================ */
.site-footer {
  background: var(--purple);
  padding: 2.5rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 2rem;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer-social span {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 0.25rem;
}
.footer-social a {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  transition: color 0.2s;
}
.footer-social a:hover { color: white; }
.footer-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}
.footer-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
}
.footer-nav a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 1.5rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  font-size: 0.75rem;
}

/* ============================================
   STICKY ORDER BUTTON
   ============================================ */
.sticky-order {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  background: var(--teal);
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(28,153,137,0.4);
  transition: all 0.2s;
}
.sticky-order:hover {
  background: #167d70;
  transform: translateY(-2px);
}

/* ============================================
   PAGE HERO — interior pages
   ============================================ */
.page-hero {
  background: var(--cream);
  padding: 3rem 0 2rem;
  text-align: center;
}
.page-hero h1 {
  color: var(--teal);
  font-size: clamp(2rem, 6vw, 4rem);
}
.page-hero p {
  color: rgba(28,3,16,0.65);
  max-width: 500px;
  margin: 0.75rem auto 0;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-origin {
  background: var(--cream);
  padding: 3.5rem 0;
}
.about-origin .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-origin h1 {
  color: var(--teal);
  text-align: left;
  font-size: clamp(1.6rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.about-origin .intro {
  color: var(--teal);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.about-origin p {
  color: var(--blueberry);
  margin-bottom: 0.75rem;
}
.about-photo {
  border: 3px solid var(--purple);
  border-radius: var(--radius-frame);
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-wave-text {
  background: var(--cream);
  padding: 2rem 0;
  text-align: center;
}
.about-wave-text h2 {
  color: var(--teal);
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.about-surfer {
  background: var(--cream);
  padding: 0 0 3rem;
}
.about-surfer .frame {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border: 3px solid var(--mango);
  border-radius: var(--radius-frame);
  overflow: hidden;
}
.about-surfer img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
}
.brazilian-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  background: var(--banana);
  color: var(--blueberry);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: rotate(-3deg);
}

.about-story {
  background: var(--cream);
  padding: 3rem 0;
}
.about-story .container {
  max-width: 760px;
}
.about-story h2 {
  color: var(--teal);
  margin-bottom: 1.5rem;
  text-align: center;
}
.about-story-trust {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-frame);
}
.story-trust-item {
  text-align: center;
}
.story-trust-item .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  display: block;
}
.story-trust-item p {
  font-size: 0.8rem;
  color: rgba(28,3,16,0.6);
  max-width: 140px;
}

.about-mission {
  background: var(--palm);
  padding: 3rem 0;
  text-align: center;
}
.about-mission h2 {
  color: white;
  margin-bottom: 1rem;
}
.about-mission p {
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ============================================
   LOCATIONS PAGE
   ============================================ */
.hours-section {
  background: var(--cream);
  padding: 2.5rem 0;
}
.hours-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}
.hours-block h3 {
  color: var(--teal);
  text-transform: none;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.hours-block p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--blueberry);
}
.hours-illustration img {
  width: 140px;
  margin: 0 auto;
}

.come-visit {
  background: var(--cream);
  padding: 2rem 0 3rem;
  text-align: center;
}
.come-visit h2 {
  color: var(--teal);
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 0.5rem;
}
.come-visit .sub {
  color: var(--blueberry);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.branch-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 760px;
  margin: 0 auto;
}
.branch-item {
  text-align: center;
}
.branch-frame {
  border-radius: var(--radius-frame);
  overflow: hidden;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.branch-frame.frame-orange { border: 3px solid var(--mango); }
.branch-frame.frame-purple { border: 3px solid var(--purple); }
.branch-frame.frame-teal   { border: 3px solid var(--teal); }
.branch-frame img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
}
.branch-item h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blueberry);
  text-transform: none;
  margin-bottom: 0.15rem;
}
.branch-item p {
  color: rgba(28,3,16,0.55);
  font-size: 0.875rem;
}
.branch-item a.phone {
  color: var(--teal);
  font-size: 0.875rem;
}

.start-journey {
  background: var(--teal);
  padding: 3rem;
  border-radius: var(--radius-frame);
  max-width: 700px;
  margin: 2rem auto 0;
  text-align: center;
}
.start-journey h3 {
  color: var(--banana);
  margin-bottom: 0.75rem;
}
.start-journey p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.btn-white-pill {
  display: inline-block;
  background: white;
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding: 0.65rem 2rem;
  border-radius: 999px;
}

/* ============================================
   CONTACT PAGE — same as current
   ============================================ */
.contact-page {
  background: var(--cream);
  padding: 3rem 0 5rem;
}
.contact-page h1 {
  color: var(--teal);
  text-align: center;
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 0.5rem;
}
.contact-page .sub {
  text-align: center;
  color: rgba(28,3,16,0.65);
  margin-bottom: 3rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.contact-illustration img {
  max-width: 280px;
  margin: 0 auto;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blueberry);
  display: block;
  margin-bottom: 0.3rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(28,3,16,0.15);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: white;
  color: var(--blueberry);
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  background: var(--teal);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
}
.btn-submit:hover { background: #167d70; }

/* ============================================
   MENU PAGE
   ============================================ */
.menu-sticky-nav {
  background: white;
  position: sticky;
  top: 84px;
  z-index: 50;
  border-bottom: 1px solid rgba(28,3,16,0.08);
  box-shadow: 0 2px 8px rgba(28,3,16,0.05);
}
.menu-nav-scroll {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  padding: 0.6rem var(--pad);
  scrollbar-width: none;
}
.menu-nav-scroll::-webkit-scrollbar { display: none; }
.menu-tab {
  flex: 0 0 auto;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.825rem;
  color: rgba(28,3,16,0.55);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.menu-tab:hover,
.menu-tab.active {
  background: var(--purple);
  color: white;
}
.menu-content {
  background: var(--cream);
  padding: 2rem 0 4rem;
}
.menu-category {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(28,3,16,0.06);
}
.menu-category:last-child { border-bottom: none; }
.menu-category-title {
  color: var(--teal);
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}
.menu-category-sub {
  color: rgba(28,3,16,0.5);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(28,3,16,0.05);
  gap: 1rem;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blueberry);
  margin-bottom: 0.2rem;
}
.menu-item-desc {
  font-size: 0.825rem;
  color: rgba(28,3,16,0.55);
}
.menu-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--purple);
  white-space: nowrap;
}
.new-badge {
  display: inline-block;
  background: var(--mango);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* ============================================
   LOYALTY PAGE
   ============================================ */
.loyalty-hero {
  background: var(--banana);
  padding: 3.5rem 0;
}
.loyalty-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.loyalty-hero h1 {
  color: var(--blueberry);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.loyalty-hero p {
  color: rgba(28,3,16,0.75);
  margin-bottom: 1.5rem;
}
.btn-purple {
  display: inline-block;
  background: var(--purple);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  transition: background 0.2s;
}
.btn-purple:hover { background: #652f7e; }
.loyalty-card-img {
  text-align: center;
}
.loyalty-card-img img {
  max-width: 280px;
  margin: 0 auto;
  filter: drop-shadow(0 12px 30px rgba(28,3,16,0.2));
}

.loyalty-steps {
  background: var(--cream);
  padding: 3rem 0;
}
.loyalty-steps h2 {
  color: var(--teal);
  text-align: center;
  margin-bottom: 2.5rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--radius-frame);
  border: 2px solid rgba(28,3,16,0.06);
}
.step-num {
  width: 48px;
  height: 48px;
  background: var(--purple);
  color: white;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step-item h4 {
  text-transform: none;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--blueberry);
}
.step-item p {
  font-size: 0.875rem;
  color: rgba(28,3,16,0.6);
}

/* ============================================
   404
   ============================================ */
.not-found {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background: var(--cream);
}
.not-found .big-num {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 12rem);
  color: var(--purple);
  line-height: 1;
  margin-bottom: 1rem;
}
.not-found h2 {
  color: var(--blueberry);
  margin-bottom: 0.75rem;
}
.not-found p {
  color: rgba(28,3,16,0.6);
  max-width: 380px;
  margin: 0 auto 2rem;
}

/* ============================================
   BLOG POST
   ============================================ */
.post-hero {
  background: var(--blueberry);
  padding: 3rem 0;
}
.post-hero h1 {
  color: white;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  max-width: 760px;
  text-transform: none;
}
.post-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.post-excerpt {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-top: 0.75rem;
  font-size: 1.05rem;
}
.post-content {
  background: var(--cream);
  padding: 3rem 0;
}
.post-content .inner {
  max-width: 720px;
  margin: 0 auto;
}
.post-content h2 { color: var(--teal); margin: 2rem 0 0.75rem; }
.post-content h3 { color: var(--purple); margin: 1.5rem 0 0.6rem; }
.post-content p  { margin-bottom: 1.25rem; }
.post-content ul, .post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.post-content li { margin-bottom: 0.4rem; }
.post-content img {
  width: 100%;
  border-radius: var(--radius-frame);
  margin: 1.5rem 0;
  border: 2px solid rgba(28,3,16,0.08);
}
.post-content a { color: var(--teal); text-decoration: underline; }

/* ============================================
   LOCATION DETAIL PAGES
   ============================================ */
.loc-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--teal);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.loc-back:hover { opacity: 0.75; }

.loc-hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.loc-menu {
  background: white;
  padding: 4rem 0;
}
.loc-menu h2 {
  color: var(--teal);
  text-align: center;
  margin-bottom: 0.5rem;
}
.loc-menu-sub {
  text-align: center;
  color: rgba(28,3,16,0.55);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.loc-menu-list {
  max-width: 640px;
  margin: 0 auto;
}
.loc-menu-footer {
  text-align: center;
  margin-top: 2rem;
}

.loc-hours {
  background: var(--purple);
  padding: 3.5rem 0;
  text-align: center;
}
.loc-hours h2 {
  color: var(--banana);
  margin-bottom: 2rem;
}
.loc-hours-table {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-frame);
  padding: 1.5rem 2rem;
  max-width: 420px;
  margin: 0 auto;
}
.loc-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.loc-hours-row:last-child { border-bottom: none; }
.loc-hours-row .day {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}
.loc-hours-row .time {
  color: var(--banana);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.loc-map {
  background: var(--cream);
  padding: 4rem 0;
}
.loc-map h2 {
  color: var(--teal);
  text-align: center;
  margin-bottom: 1rem;
}
.loc-address {
  text-align: center;
  margin-bottom: 2rem;
}
.loc-address p {
  color: rgba(28,3,16,0.7);
  line-height: 1.9;
}
.loc-address a {
  color: var(--teal);
  font-weight: 600;
}
.loc-map-embed {
  border-radius: var(--radius-frame);
  overflow: hidden;
  border: 3px solid var(--teal);
  max-width: 900px;
  margin: 0 auto;
}
.loc-map-embed iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: none;
}

.loc-cta {
  background: var(--teal);
  padding: 4rem 0;
  text-align: center;
}
.loc-cta h2 {
  color: var(--banana);
  margin-bottom: 0.75rem;
}
.loc-cta p {
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  margin: 0 auto 2rem;
}
.loc-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-banana-pill {
  display: inline-block;
  background: var(--banana);
  color: var(--blueberry);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding: 0.65rem 2rem;
  border-radius: 999px;
  transition: background 0.2s;
}
.btn-banana-pill:hover { background: #d4a338; }

.loc-nearby {
  background: var(--cream);
  padding: 3.5rem 0;
}
.loc-nearby h2 {
  color: var(--teal);
  text-align: center;
  margin-bottom: 2rem;
}
.loc-nearby-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.loc-nearby-card {
  background: white;
  border-radius: var(--radius-frame);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 2px solid rgba(28,3,16,0.06);
  display: block;
  transition: border-color 0.2s, transform 0.2s;
}
.loc-nearby-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}
.loc-nearby-card h3 {
  color: var(--blueberry);
  font-size: 1rem;
  text-transform: none;
  margin-bottom: 0.4rem;
}
.loc-nearby-card p {
  color: rgba(28,3,16,0.55);
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}
.loc-nearby-card .view-link {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-left, .nav-right a:not(.btn-order):not(.hamburger) { display: none; }
  .nav-left { display: flex; }
  .nav-right { gap: 0.5rem; }
  .hamburger { display: flex; }
  .btn-order { display: none; }

  .eating-healthy .container,
  .about-origin .container,
  .loyalty-hero .container { grid-template-columns: 1fr; }

  .loc-nearby-grid { grid-template-columns: 1fr; }

  .hours-grid { grid-template-columns: 1fr 1fr; }
  .hours-illustration { display: none; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { display: none; }
  .footer-nav { align-items: center; }
  .footer-social { justify-content: center; }
}

@media (max-width: 640px) {
  .nav-left { display: none; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-logo { justify-content: flex-start; padding-left: 0.5rem; }

  .food-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hours-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-illustration { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.origin-section { padding: 3rem 0 2rem; }
.origin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.origin-copy h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 4.5vw, 3.8rem); color: var(--purple); text-transform: uppercase; line-height: 1.0; margin-bottom: 1rem; }
.origin-copy .teal-intro { font-size: 0.95rem; font-weight: 600; color: var(--purple); line-height: 1.7; margin-bottom: 0.9rem; }
.origin-copy p { font-size: 0.95rem; color: var(--purple); line-height: 1.8; margin-bottom: 0.9rem; }
.origin-photo img { width: 100%; border-radius: 16px; border: 6px solid var(--purple); display: block; aspect-ratio: 3/4; object-fit: cover; }

.wave-section { padding: 1rem 0 4rem; }
.wave-heading { text-align: center; padding: 0 var(--pad) 2rem; }
.wave-heading h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--mango); text-transform: uppercase; line-height: 1.1; max-width: 860px; margin: 0 auto; }
.surf-scene { max-width: 860px; margin: 0 auto; padding: 0 5rem 3rem 5rem; }
.surf-frame-wrap { position: relative; }
.surf-frame { border: 7px solid var(--mango); border-radius: 20px; overflow: hidden; line-height: 0; }
.surf-frame img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.surf-waves-deco { position: absolute; left: -55px; top: 50%; transform: translateY(-50%) rotate(6deg); width: 150px; z-index: 6; pointer-events: none; }
.surf-bway-sticker { position: absolute; right: -55px; top: 50%; transform: translateY(-50%) rotate(-6deg); width: 140px; z-index: 6; }

.acai-text-section { padding: 3rem 0 2rem; }
.acai-text-inner { max-width: 620px; margin: 0 auto; text-align: center; padding: 0 var(--pad); }
.acai-text-inner .intro { font-size: 0.95rem; color: var(--palm); line-height: 1.8; margin-bottom: 1.5rem; }
.acai-text-inner h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3.2vw, 2.4rem); color: var(--palm); text-transform: uppercase; line-height: 1.05; margin-bottom: 1.25rem; }
.acai-text-inner p { font-size: 0.95rem; color: var(--palm); line-height: 1.8; margin-bottom: 0.75rem; }
.acai-text-inner .highlight { font-size: 0.88rem; font-weight: 700; color: var(--palm); text-decoration: underline; text-underline-offset: 3px; display: block; margin-top: 1rem; }

.acai-story-section { padding: 2rem 0 4rem; }
.story-h { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.8rem); color: var(--teal); text-transform: uppercase; text-align: center; line-height: 1.0; margin-bottom: 1.25rem; }
.trust-row { display: flex; justify-content: center; gap: 0.25rem 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.trust-pill { font-size: 0.78rem; font-weight: 600; color: var(--teal); }
.story-body { max-width: 620px; margin: 0 auto; text-align: center; }
.story-body p { font-size: 0.95rem; color: var(--teal); line-height: 1.8; }
.big-quote { max-width: 660px; margin: 2rem auto; text-align: center; padding: 0 var(--pad); }
.big-quote p { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3.2vw, 2.4rem); color: var(--teal); text-transform: uppercase; line-height: 1.1; }

.oval-scene { position: relative; margin: 2.5rem auto; max-width: 860px; padding: 0 8rem; }
.oval-wrap { position: relative; }
.oval-photo { width: 100%; height: 420px; border-radius: 18px; overflow: hidden; border: 6px solid var(--mango); }
.oval-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.fromto-sticker { position: absolute; left: -77px; top: 50%; transform: translateY(-50%) rotate(-8deg); width: 110px; z-index: 10; }
.tree-illust { position: absolute; right: -133px; top: 50%; transform: translateY(-50%); width: 190px; z-index: 10; }

.story-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding: 2rem 0 0; }
.story-split-left p { font-size: 0.9rem; color: var(--teal); line-height: 1.85; }
.story-split-right h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 2.8vw, 2rem); text-transform: uppercase; color: var(--teal); line-height: 1.1; }

.impact-section { background: var(--purple); padding: 5rem 0; }
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.impact-label { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--banana); margin-bottom: 1rem; }
.impact-grid h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; color: white; line-height: 1.05; margin-bottom: 1.5rem; }
.impact-grid p { font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 1rem; }
.impact-stats { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.impact-stat { background: rgba(255,255,255,0.12); border-radius: 14px; padding: 1.1rem 1.4rem; text-align: center; flex: 1; min-width: 90px; border: 1px solid rgba(255,255,255,0.2); }
.impact-stat-num { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--banana); line-height: 1; }
.impact-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.65); margin-top: 0.35rem; line-height: 1.4; }
.impact-illust { display: flex; justify-content: center; align-items: flex-end; gap: 1.5rem; }
.impact-illust img { width: 170px; filter: drop-shadow(4px 8px 12px rgba(0,0,0,0.3)); }
.impact-illust img.tall { width: 210px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-main { background: var(--cream); padding: 5rem 0 6rem; min-height: 75vh; }
.contact-top { text-align: center; margin-bottom: 3.5rem; }
.contact-top h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.5rem, 7vw, 5rem); text-transform: uppercase; color: var(--teal); line-height: 1; margin-bottom: 0.75rem; }
.contact-top p { font-size: 1rem; color: rgba(26,16,8,0.6); max-width: 400px; margin: 0 auto; line-height: 1.65; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-illust { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 1rem; gap: 0.5rem; }
.contact-illust img.chair { width: min(260px, 100%); }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: rgba(26,16,8,0.5); text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input,
.form-group textarea { width: 100%; padding: 0.875rem 0; background: transparent; border: none; border-bottom: 2px solid rgba(26,16,8,0.2); font-family: var(--font-body); font-size: 0.97rem; color: var(--blueberry); outline: none; transition: border-color 0.2s; border-radius: 0; }
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--teal); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(26,16,8,0.35); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-send { margin-top: 0.75rem; display: inline-block; background: var(--teal); color: white; font-family: var(--font-display); font-weight: 800; font-size: 1rem; text-transform: uppercase; padding: 0.9rem 2.5rem; border-radius: 999px; border: none; cursor: pointer; transition: background 0.2s; letter-spacing: 0.02em; }
.btn-send:hover { background: #18829d; }
.form-note { font-size: 0.8rem; color: rgba(26,16,8,0.4); margin-top: 0.75rem; }
#form-status { font-size: 0.875rem; margin-top: 0.5rem; display: none; }

/* ============================================
   LOYALTY PAGE
   ============================================ */
.loyalty-hero { background: var(--banana); padding: 5rem 0 4.5rem; }
.loyalty-hero .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-copy .hero-label { display: inline-block; font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--teal); margin-bottom: 1rem; }
.hero-copy h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--blueberry); text-transform: uppercase; line-height: 1.0; margin-bottom: 1.5rem; }
.hero-copy p { font-size: 1rem; color: rgba(26,16,8,0.8); line-height: 1.75; margin-bottom: 2rem; max-width: 480px; }
.btn-primary { display: inline-block; background: var(--teal); color: white; font-family: var(--font-display); font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.9rem 2rem; border-radius: 999px; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: #18829d; transform: translateY(-1px); }
.hero-card-wrap { display: flex; justify-content: center; align-items: center; }
.hero-card-wrap img { max-width: 300px; width: 100%; filter: drop-shadow(0 16px 40px rgba(26,16,8,0.25)); }

.how-section { background: var(--cream); padding: 5.5rem 0; }
.how-section .section-heading { text-align: center; margin-bottom: 3.5rem; }
.how-section .section-heading h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3.5vw, 2.8rem); text-transform: uppercase; color: var(--teal); line-height: 1.1; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.step-card { background: white; border-radius: var(--radius-frame); border: 2px solid rgba(26,16,8,0.08); padding: 2rem 1.75rem; }
.step-number { width: 44px; height: 44px; border-radius: 50%; background: var(--teal); color: white; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.step-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; text-transform: uppercase; color: var(--blueberry); margin-bottom: 0.75rem; }
.step-card p { font-size: 0.92rem; color: rgba(26,16,8,0.7); line-height: 1.7; }

.perks-section { background: var(--purple); padding: 5.5rem 0; }
.perks-heading { text-align: center; margin-bottom: 3rem; }
.perks-heading h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3.2rem); text-transform: uppercase; color: white; line-height: 1.05; }
.perks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.perk-card { background: white; border-radius: var(--radius-frame); padding: 1.75rem 1.5rem; }
.perk-icon { font-size: 2rem; margin-bottom: 0.85rem; line-height: 1; }
.perk-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; text-transform: uppercase; color: var(--blueberry); margin-bottom: 0.5rem; }
.perk-card p { font-size: 0.88rem; color: rgba(26,16,8,0.65); line-height: 1.65; }

.locations-section { background: white; padding: 5rem 0; }
.locations-section .section-heading { text-align: center; margin-bottom: 1rem; }
.locations-section .section-heading h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.8rem); text-transform: uppercase; color: var(--blueberry); }
.section-sub { color: rgba(28,3,16,0.55); font-size: 0.95rem; text-align: center; margin-bottom: 2.5rem; }
.loyalty-locs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.loyalty-loc-card { display: block; background: var(--cream); border-radius: 16px; border: 2px solid rgba(28,3,16,0.08); padding: 1.75rem; transition: border-color 0.2s, transform 0.2s; }
.loyalty-loc-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.loyalty-loc-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 1rem; text-transform: uppercase; color: var(--blueberry); margin-bottom: 0.5rem; }
.loyalty-loc-card p { font-size: 0.85rem; color: rgba(28,3,16,0.55); line-height: 1.5; }

.final-cta { background: var(--teal); padding: 5.5rem 0; text-align: center; }
.final-cta h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3.2rem); text-transform: uppercase; color: white; line-height: 1.05; margin-bottom: 1rem; }
.final-cta p { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; }
.btn-banana-dark { display: inline-block; background: var(--banana); color: var(--blueberry); font-family: var(--font-display); font-weight: 800; font-size: 1rem; text-transform: uppercase; padding: 0.85rem 2.5rem; border-radius: 999px; border: 3px solid var(--blueberry); box-shadow: 4px 4px 0 var(--blueberry); transition: transform 0.15s, box-shadow 0.15s; }
.btn-banana-dark:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--blueberry); }

/* ============================================
   MENU PAGE
   ============================================ */
.menu-hero { background: var(--cream); padding: 3.5rem 0 0; text-align: center; }
.menu-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(3rem, 8vw, 6rem); text-transform: uppercase; color: var(--teal); line-height: 0.95; letter-spacing: -0.02em; }
.menu-hero p { margin: 1.25rem auto 2.5rem; font-size: 1.05rem; color: rgba(28,3,16,0.65); line-height: 1.6; max-width: 560px; }

.cat-nav-wrap { position: sticky; top: 62px; z-index: 90; background: var(--cream); border-bottom: 2px solid rgba(28,3,16,0.08); }
.cat-nav { display: flex; gap: 0.5rem; padding: 0.75rem 1.5rem; overflow-x: auto; scrollbar-width: none; max-width: 1160px; margin: 0 auto; }
.cat-nav::-webkit-scrollbar { display: none; }
.cat-pill { flex-shrink: 0; font-family: var(--font-body); font-weight: 600; font-size: 0.82rem; padding: 0.4rem 1rem; border-radius: 999px; border: 2px solid transparent; background: transparent; color: var(--blueberry); cursor: pointer; transition: all 0.18s; white-space: nowrap; }
.cat-pill:hover { border-color: var(--teal); color: var(--teal); }
.cat-pill.active { background: var(--teal); color: white; border-color: var(--teal); }

.menu-content { background: var(--cream); padding: 3rem 0 4rem; }
.menu-section { padding: 2.5rem 0 1.5rem; border-top: 2px solid rgba(28,3,16,0.07); }
.menu-section:first-child { border-top: none; }
.section-header { margin-bottom: 0.5rem; }
.section-header h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); text-transform: uppercase; color: var(--teal); line-height: 1.05; }
.section-size-note { font-size: 0.82rem; color: rgba(28,3,16,0.5); font-weight: 500; margin-top: 0.35rem; margin-bottom: 1.75rem; }

.card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; margin-bottom: 1.75rem; }
.card-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 700px; }
.card-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.menu-card { background: white; border-radius: 18px; border: 3px solid var(--blueberry); box-shadow: 6px 6px 0 var(--blueberry); overflow: hidden; display: flex; flex-direction: column; }
.menu-card-photo { aspect-ratio: 4/3; overflow: hidden; }
.menu-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.menu-card-photo-placeholder { width: 100%; height: 100%; background: rgba(28,153,185,0.08); display: flex; align-items: center; justify-content: center; }
.menu-card-photo-placeholder span { font-size: 2.5rem; }
.menu-card-body { padding: 1rem 1.1rem 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.3rem; }
.menu-card-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--blueberry); line-height: 1.2; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.menu-card-desc { font-size: 0.8rem; color: rgba(28,3,16,0.55); line-height: 1.5; }
.menu-card-price { font-weight: 700; font-size: 0.88rem; color: var(--teal); margin-top: auto; padding-top: 0.5rem; }

.menu-list { border-top: 1px solid rgba(28,3,16,0.08); }
.menu-list.menu-list-inline { border-top: none; flex: 1; }
.menu-list-item { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; padding: 0.9rem 0; border-bottom: 1px solid rgba(28,3,16,0.07); }
.menu-list-item.menu-list-item-first { border-top: 1px solid rgba(28,3,16,0.08); }
.menu-list-left { flex: 1; }
.menu-list-name { font-weight: 600; font-size: 0.95rem; color: var(--blueberry); display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.menu-list-desc { font-size: 0.82rem; color: rgba(28,3,16,0.5); margin-top: 0.2rem; line-height: 1.5; }
.menu-list-price { font-weight: 700; font-size: 0.92rem; color: var(--teal); white-space: nowrap; padding-top: 0.1rem; flex-shrink: 0; }

.badge-new { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; background: var(--teal); color: white; padding: 0.15rem 0.5rem; border-radius: 999px; flex-shrink: 0; }

.featured-photo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: center; margin-bottom: 1.75rem; }
.featured-photo-row > img { width: 100%; border-radius: 18px; border: 3px solid var(--blueberry); box-shadow: 6px 6px 0 var(--blueberry); object-fit: cover; max-height: 280px; }

.takehome-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; margin-bottom: 1.75rem; }

.menu-cta-section { background: var(--purple); padding: 4.5rem 0; text-align: center; }
.menu-cta-section h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; color: white; line-height: 1.05; margin-bottom: 0.75rem; }
.menu-cta-section p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 2rem; }
.btn-banana { display: inline-block; background: var(--banana); color: var(--blueberry); font-family: var(--font-display); font-weight: 800; font-size: 1rem; text-transform: uppercase; padding: 0.85rem 2.5rem; border-radius: 999px; border: 3px solid var(--blueberry); box-shadow: 4px 4px 0 var(--blueberry); transition: transform 0.15s, box-shadow 0.15s; }
.btn-banana:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--blueberry); }

/* ============================================
   RESPONSIVE — INTERIOR PAGES
   ============================================ */
@media (max-width: 960px) {
  .origin-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .takehome-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .surf-scene { padding: 0 2rem 2rem; }
  .surf-bway-sticker { right: -36px; width: 100px; }
  .surf-waves-deco { left: -36px; width: 110px; }
  .story-split { grid-template-columns: 1fr; gap: 1.5rem; }
  .oval-scene { padding: 0 3.5rem; }
  .oval-photo { height: 240px; }
  .tree-illust { width: 120px; right: -80px; }
  .fromto-sticker { width: 80px; left: -52px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-illust { display: none; }

  .loyalty-hero .hero-grid { grid-template-columns: 1fr; }
  .hero-card-wrap { order: -1; text-align: center; }
  .hero-card-wrap img { margin: 0 auto; max-width: 300px; }
  .steps-grid { grid-template-columns: 1fr; }
  .loyalty-locs-grid { grid-template-columns: 1fr; }

  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid-2 { grid-template-columns: 1fr; max-width: 100%; }
  .takehome-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-photo-row { grid-template-columns: 1fr; }
  .cat-nav-wrap { top: 58px; }
}

@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr; }
  .impact-stats { gap: 1rem; }
}

/* ============================================
   LOCATION DETAIL — EXTRA SECTIONS
   ============================================ */

/* Featured bowls strip on location pages */
.loc-bowls {
  background: var(--purple);
  padding: 4rem 0;
}
.loc-bowls h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  color: var(--banana);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.05;
}
.loc-bowls-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.loc-bowl-card {
  background: white;
  border-radius: 18px;
  border: 3px solid var(--blueberry);
  box-shadow: 6px 6px 0 rgba(28,3,16,0.25);
  overflow: hidden;
}
.loc-bowl-card-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.loc-bowl-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.loc-bowl-card-body {
  padding: 0.9rem 1rem 1.1rem;
}
.loc-bowl-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--blueberry);
  margin-bottom: 0.3rem;
}
.loc-bowl-card-desc {
  font-size: 0.82rem;
  color: rgba(28,3,16,0.55);
  line-height: 1.5;
}
.loc-bowls-footer {
  text-align: center;
}

/* FAQ section on location pages */
.loc-faq {
  background: white;
  padding: 4rem 0 4.5rem;
}
.loc-faq h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase;
  color: var(--teal);
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.05;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.faq-item {
  background: var(--cream);
  border-radius: 14px;
  border: 2px solid rgba(28,3,16,0.08);
  padding: 1.5rem 1.75rem;
}
.faq-q {
  font-weight: 700;
  font-size: 1rem;
  color: var(--blueberry);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.faq-a {
  font-size: 0.92rem;
  color: rgba(28,3,16,0.65);
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 768px) {
  .loc-bowls-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .loc-bowls-grid { grid-template-columns: 1fr; }
  .faq-item { padding: 1.2rem 1.25rem; }
}
