/* PEP brand — matches cafe handout palette */
:root {
  --pep-green: #1f4d3a;
  --pep-green-dark: #163a2c;
  --pep-orange: #e86a1a;
  --pep-orange-light: #f4a261;
  --pep-cream: #faf6f0;
  --pep-peach: #fde8d8;
  --pep-yellow: #fff4d6;
  --pep-white: #ffffff;
  /* Flyer typography — see brand/identity/typography.md */
  --font-logo: "GFS Didot", "Didot", Georgia, serif;
  --font-display: "Bebas Neue", sans-serif;
  --font-script: "Segoe Script", cursive;
  --font-label: "Montserrat", system-ui, sans-serif;
  --font-stat: "Montserrat", system-ui, sans-serif;
  /* Legacy aliases */
  --font-serif: var(--font-logo);
  --font-sans: var(--font-label);
  --radius: 1.25rem;
  --shadow: 0 8px 32px rgba(31, 77, 58, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--pep-green);
  background: var(--pep-cream);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--pep-green);
  text-decoration: none;
}

a:hover {
  color: var(--pep-orange);
}

/* ——— Header ——— */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: flex-end;
  gap: 0.15rem;
  font-family: var(--font-logo);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--pep-green);
  letter-spacing: -0.02em;
}

.logo-leaves {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 0.55rem;
  margin-right: 0.1rem;
}

.logo-leaf {
  width: 10px;
  height: 14px;
  border: 2px solid var(--pep-green);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-35deg);
}

.logo-leaf--orange {
  border-color: var(--pep-orange);
  margin-left: 3px;
}

.logo--image img {
  display: block;
  height: clamp(2rem, 6vw, 2.75rem);
  width: auto;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a.active {
  color: var(--pep-orange);
  border-bottom: 2px solid var(--pep-orange);
  padding-bottom: 2px;
}

.nav-cta {
  background: var(--pep-green);
  color: var(--pep-white) !important;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
}

.nav-cta:hover {
  background: var(--pep-green-dark);
  color: var(--pep-white) !important;
}

/* ——— Hero (Revized-inspired, simplified) ——— */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(88vh, 780px);
  display: grid;
  grid-template-columns: 1fr;
  background: var(--pep-cream);
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
  }
}

.hero-content {
  padding: 2rem 1.5rem 3rem;
  max-width: 36rem;
  margin: 0 auto;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero-content {
    margin: 0;
    margin-left: max(1.5rem, calc((100vw - 72rem) / 2 + 1.5rem));
    padding-top: 3rem;
    align-self: center;
  }
}

.hero-eyebrow {
  margin: 0 0 0.5rem;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pep-orange);
}

.hero-display {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--pep-green);
  text-transform: uppercase;
}

.hero-script {
  margin: 0 0 1.75rem;
  max-width: 22rem;
  font-family: var(--font-script);
  font-size: clamp(1.25rem, 3.5vw, 1.65rem);
  color: var(--pep-orange);
  line-height: 1.3;
}

.benefit-bar {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}

.benefit-bar li {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pep-green);
  padding-right: 0.85rem;
  margin-right: 0.85rem;
  border-right: 1px solid rgba(31, 77, 58, 0.2);
}

.benefit-bar li:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.hero-cta {
  width: auto;
  display: inline-block;
  padding-left: 2rem;
  padding-right: 2rem;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--pep-cream);
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(90%, 380px);
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(242, 140, 40, 0.35) 0%,
    rgba(244, 162, 97, 0.12) 50%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-product {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 4 / 5;
  margin: 0 auto;
}

.hero-can,
.hero-glass,
.hero-citrus {
  position: absolute;
  height: auto;
  display: block;
  background: transparent;
  filter: drop-shadow(0 10px 24px rgba(31, 77, 58, 0.12));
}

.hero-can {
  left: 0;
  bottom: 0;
  width: 52%;
  z-index: 2;
}

.hero-glass {
  right: -2%;
  bottom: 8%;
  width: 48%;
  z-index: 3;
}

.hero-citrus {
  left: 50%;
  bottom: -2%;
  width: 75%;
  transform: translateX(-50%);
  z-index: 4;
  filter: drop-shadow(0 6px 16px rgba(31, 77, 58, 0.1));
}

@media (min-width: 900px) {
  .hero-visual {
    min-height: 100%;
    padding: 2rem;
  }

  .hero-product {
    width: min(100%, 400px);
  }

  .hero-can {
    width: 50%;
  }

  .hero-glass {
    width: 46%;
    right: 0;
    bottom: 10%;
  }

  .hero-citrus {
    width: 80%;
    bottom: 0;
  }
}

.tagline-script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--pep-orange);
  line-height: 1.25;
  margin: 0.5rem 0 1.5rem;
}

.stat-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--pep-white);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow);
  min-width: 8rem;
}

.stat-card strong {
  display: block;
  font-family: var(--font-stat);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--pep-orange);
  line-height: 1;
}

.stat-card span {
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--font-label);
}


.stat-card--compact .stat-icon {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.stat-card--compact strong:not(.stat-icon) {
  font-size: 2.5rem;
}

/* ——— Sections ——— */
.section {
  padding: 4rem 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  text-align: center;
  color: var(--pep-green);
}

.section-title--left {
  text-align: left;
}

.section-lead {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  opacity: 0.9;
}

.section--drinks {
  background: var(--pep-white);
  overflow: hidden;
}

.flavours-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.flavours-title {
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.flavours-title__line {
  display: block;
  font-family: var(--font-logo);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--pep-green);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.flavours-title__script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--pep-orange);
  line-height: 1;
}

.flavours-lead {
  margin-bottom: 0;
}

.flavour-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 1.5rem 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  max-width: 72rem;
  margin: 0 auto;
}

.flavour-scroll::-webkit-scrollbar {
  height: 6px;
}

.flavour-scroll::-webkit-scrollbar-thumb {
  background: rgba(31, 77, 58, 0.2);
  border-radius: 3px;
}

.flavours-hint {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
  margin: 1rem 1.5rem 0;
}

.flavours-hint code {
  font-size: 0.75rem;
  background: var(--pep-cream);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.section--enjoy {
  background: var(--pep-cream);
}

.section--about {
  background: var(--pep-peach);
}

/* ——— Where to enjoy ——— */
.enjoy-grid {
  display: grid;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .enjoy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .enjoy-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.enjoy-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  background: var(--pep-white);
  border: 1px solid rgba(31, 77, 58, 0.08);
}

.enjoy-card__icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.enjoy-card h3 {
  margin: 0;
  font-family: var(--font-label);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ——— Flavours carousel ——— */
.flavour-card {
  flex: 0 0 min(200px, 42vw);
  scroll-snap-align: start;
  text-align: center;
  padding: 1.25rem 0.75rem 1.5rem;
  border-radius: var(--radius);
  background: var(--flavour-bg, var(--pep-cream));
  border: 1px solid rgba(31, 77, 58, 0.08);
}

.flavour-card--active {
  border-color: rgba(232, 106, 26, 0.35);
  box-shadow: 0 0 0 2px rgba(232, 106, 26, 0.15);
}

.flavour-card--soon {
  opacity: 0.65;
}

.flavour-card__badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pep-orange);
}

.flavour-card__can {
  width: min(100px, 85%);
  height: auto;
  min-height: 140px;
  object-fit: contain;
  margin: 0 auto 0.75rem;
}

.flavour-card__placeholder {
  width: 4rem;
  height: 6rem;
  margin: 0.5rem auto 1.25rem;
  border: 2px dashed rgba(31, 77, 58, 0.25);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(31, 77, 58, 0.3);
}

.flavour-card__name {
  margin: 0 0 0.5rem;
  font-family: var(--font-logo);
  font-size: 1.35rem;
}

.flavour-card__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  opacity: 0.9;
}

/* ——— About ——— */
.about-inner {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-inner {
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.about-founders img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.about-founders__caption {
  margin: 0.75rem 0 0;
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pep-orange);
  text-align: center;
}

.about-text .section-title {
  margin-bottom: 1.25rem;
}

.about-copy p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

.about-copy strong {
  color: var(--pep-green);
  font-weight: 600;
}

.about-tagline {
  margin-top: 1.5rem !important;
  font-size: 1.5rem !important;
}

/* ——— CTA band ——— */
.cta-band {
  background: var(--pep-green);
  color: var(--pep-white);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.cta-band__inner {
  max-width: 32rem;
  margin: 0 auto;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-band p {
  margin: 0 0 1.5rem;
  opacity: 0.92;
  font-size: 1.05rem;
}

.btn-primary--light {
  background: var(--pep-orange);
  color: var(--pep-white) !important;
}

.btn-primary--light:hover {
  background: var(--pep-orange-light);
  color: var(--pep-green-dark) !important;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .card-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-card {
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.info-card--cream {
  background: var(--pep-cream);
  border: 1px solid rgba(31, 77, 58, 0.08);
}

.info-card--yellow {
  background: var(--pep-yellow);
}

.info-card--peach {
  background: var(--pep-peach);
}

.info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 0 0 1rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.info-list li:last-child {
  margin-bottom: 0;
}

.info-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.serve-price {
  font-weight: 600;
  color: var(--pep-orange);
}

/* ——— Product details strip ——— */
.product-strip {
  background: var(--pep-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .product-strip {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.product-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.product-bullets li::before {
  content: "✓ ";
  color: var(--pep-orange);
  font-weight: 700;
}

/* ——— Inquiry form ——— */
.inquiry-section {
  background: var(--pep-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 32rem;
  margin: 0 auto;
}

.inquiry-section h3 {
  font-family: var(--font-serif);
  margin: 0 0 0.5rem;
}

.inquiry-section p {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(31, 77, 58, 0.2);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--pep-green);
  background: var(--pep-cream);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid var(--pep-orange);
  outline-offset: 0;
  border-color: transparent;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-primary {
  display: inline-block;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: var(--pep-green);
  color: white;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--pep-green-dark);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-message {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  display: none;
}

.form-message.visible {
  display: block;
}

.form-message.success {
  background: #d8f3dc;
  color: var(--pep-green-dark);
}

.form-message.error {
  background: #fde8d8;
  color: #9b2226;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--pep-green);
  color: white;
  text-align: center;
  padding: 1.25rem 1.5rem;
  margin-top: 3rem;
}

.site-footer .tagline-script {
  margin: 0;
  font-size: 1.5rem;
}

.site-footer .leaf-dot {
  display: inline-block;
  margin-left: 0.25rem;
}

/* ——— Venues page layout ——— */
.page-intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
}

.page-intro h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.75rem;
}

.page-intro p {
  margin: 0;
  font-size: 1.05rem;
  opacity: 0.9;
}

.venues-grid {
  display: grid;
  gap: 1.25rem;
  padding: 0 1.5rem 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .venues-grid--top {
    grid-template-columns: 1fr 1fr;
  }

  .venues-grid--bottom {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.pilot-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.coming-soon-badge {
  display: inline-block;
  background: rgba(31, 77, 58, 0.1);
  color: var(--pep-green);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* Mobile nav */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--pep-green);
}

@media (max-width: 640px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 1rem;
    flex-direction: column;
    background: white;
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-header {
    position: relative;
    flex-wrap: wrap;
  }
}
