/* ===========================================================
   LEMON8 — stylesheet
   =========================================================== */

:root{
  --forest:       #16281F;
  --forest-2:     #1F3A2C;
  --forest-soft:  #3E5A49;
  --cream:        #FFFBF1;
  --sage:         #F1F6E8;
  --white:        #FFFFFF;
  --lime:         #5DA836;
  --lime-bright:  #8ED33E;
  --gold:         #F0B429;
  --gold-deep:    #E0980F;
  --gold-text:    #9C5F0A;
  --gold-light:   #FBE2A0;
  --lime-text:    #3F7A24;
  --ink:          #16281F;
  --ink-soft:     #4C5F53;
  --ink-faint:    #587060;
  --line:         rgba(22,40,31,0.10);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(22,40,31,0.07);
  --shadow-md: 0 10px 30px rgba(22,40,31,0.12);
  --shadow-lg: 0 20px 60px rgba(22,40,31,0.18);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", Roboto, sans-serif;

  --nav-h: 78px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body{
  margin:0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ margin:0; font-weight:700; letter-spacing:-0.02em; line-height:1.08; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input, select, textarea{ font-family:inherit; }

.section-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow{
  display:inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 14px;
}
.eyebrow-light{ color: var(--gold-light); }

h2{
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 20px;
  max-width: 760px;
}
h3{ font-size: 20px; margin-bottom: 8px; }

/* ===== reveal-on-scroll ===== */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view{ opacity:1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-gold{
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--forest);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-primary{
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover{ background: var(--forest-2); }

.btn-ghost{
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-small{ padding: 10px 22px; font-size: 14px; }
.btn-full{ width:100%; padding: 17px 30px; font-size: 16px; }

/* ===========================================================
   NAV
   =========================================================== */
.nav{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 500;
  height: var(--nav-h);
  display:flex;
  align-items:center;
  background: rgba(255,251,241,0);
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled{
  background: rgba(255,251,241,0.85);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner{
  width:100%;
  max-width: 1240px;
  margin:0 auto;
  padding: 0 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.nav-logo img{ height: 52px; width:auto; }
.nav-links{
  display:flex;
  align-items:center;
  gap: 34px;
  font-size: 15px;
  font-weight: 600;
  color: var(--forest);
}
.nav-links a:not(.btn){ opacity:0.85; transition: opacity .2s ease; }
.nav-links a:not(.btn):hover{ opacity:1; }

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding: 10px;
}
.nav-toggle span{
  width: 24px; height: 2.5px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* ===========================================================
   HERO
   =========================================================== */
.hero{
  position: relative;
  min-height: 100svh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
}
.hero-media{ position:absolute; inset:0; }
.hero-media img{
  width:100%; height:100%; object-fit:cover; object-position: center 30%;
}
.hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(15,26,20,0.72) 0%, rgba(15,26,20,0.30) 40%, rgba(15,26,20,0.55) 78%, rgba(15,26,20,0.85) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  color: var(--white);
  max-width: 760px;
  padding: 0 28px 100px;
  margin: 0 auto;
  width:100%;
  text-align:center;
}
.hero h1{
  font-size: clamp(36px, 6vw, 66px);
  color: var(--white);
}
.hero-sub{
  margin: 22px auto 32px;
  max-width: 540px;
  font-size: 18px;
  line-height:1.55;
  color: rgba(255,255,255,0.88);
}
.hero-cta{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}

/* ===========================================================
   VALUE STRIP
   =========================================================== */
.value-strip{
  background: var(--forest);
  color: var(--cream);
  padding: 22px 0;
}
.value-strip-inner{
  max-width:1180px;
  margin:0 auto;
  padding: 0 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 18px 30px;
}
.value-item{
  display:flex;
  align-items:center;
  gap:10px;
  font-size: 14.5px;
  font-weight: 600;
  opacity:0.95;
}
.value-icon{ width:20px; height:20px; flex-shrink:0; }

/* ===========================================================
   ABOUT
   =========================================================== */
.about{ padding: 120px 0; }
.about-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items:center;
}
.about-text p{
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height:1.7;
  margin-bottom: 16px;
}
.about-text p:last-child{ margin-bottom:0; }
.about-image img{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width:100%;
  aspect-ratio: 0.85;
  object-fit:cover;
}

/* ===========================================================
   FULL-BLEED BREAK SECTIONS
   =========================================================== */
.break{
  position:relative;
  min-height: 46vh;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 60px 28px;
}
.break-tall{ min-height: 62vh; }
.break-scrim{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(16,28,22,0.35) 0%, rgba(16,28,22,0.60) 100%);
}
.break-content{
  position:relative; z-index:2;
  color: var(--white);
  max-width: 720px;
}
.break-content h2{
  color: var(--white);
  margin: 0 auto;
}
.break-sub{
  display:block;
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin: 16px 0 26px;
}

/* ===========================================================
   FLAVOURS
   =========================================================== */
.flavours{ padding: 120px 0; background: var(--sage); }
.flavour-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.flavour-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.flavour-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.flavour-card img{
  width:100%; aspect-ratio: 1/1; object-fit:cover;
}
.flavour-card h3, .flavour-card p{ padding: 0 24px; }
.flavour-card h3{ margin-top:22px; }
.flavour-card p{
  padding-bottom:26px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height:1.6;
}

/* ===========================================================
   WHERE WE POUR
   =========================================================== */
.pour{ padding: 120px 0; }
.pour-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.pour-card{
  position:relative;
  border-radius: var(--radius-md);
  overflow:hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 0.78;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pour-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pour-card img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
}
.pour-card-body{
  position:absolute; left:0; right:0; bottom:0;
  padding: 20px 18px;
  background: linear-gradient(180deg, rgba(16,28,22,0) 0%, rgba(16,28,22,0.88) 78%);
  color: var(--white);
}
.pour-card-body h3{ color:#fff; margin-bottom:6px; font-size:18px; }
.pour-card-body p{ font-size: 13.5px; line-height:1.5; color: rgba(255,255,255,0.88); }
.pour-note{
  margin-top: 40px;
  text-align:center;
  color: var(--ink-soft);
  font-size: 15px;
}

/* ===========================================================
   HOW IT WORKS
   =========================================================== */
.how{ padding: 120px 0; background: var(--forest); color: var(--cream); }
.how .eyebrow{ color: var(--gold-light); }
.how h2{ color: var(--white); }
.how-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 54px;
}
.how-step{ text-align:left; }
.how-num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px; height:44px;
  border-radius:50%;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  color: var(--forest);
  font-weight:800;
  font-size:18px;
  margin-bottom: 18px;
}
.how-step h3{ color:#fff; }
.how-step p{ color: rgba(255,251,241,0.72); font-size:15px; line-height:1.6; }

/* ===========================================================
   QUOTE BAND
   =========================================================== */
.quote-band{
  position:relative;
  padding: 90px 28px;
  background-size:cover;
  background-position:center;
  display:flex; align-items:center; justify-content:center;
  text-align:center;
}
.quote-scrim{ position:absolute; inset:0; background: rgba(15,28,20,0.62); }
.quote-text{
  position:relative; z-index:2;
  max-width: 760px;
  color: #fff;
  font-size: clamp(19px, 2.4vw, 25px);
  font-style: italic;
  line-height:1.6;
}

/* ===========================================================
   BOOKING FORM
   =========================================================== */
.book{ padding: 120px 0; background: var(--sage); }
.book-inner{
  display:grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items:flex-start;
}
.book-intro h2{ margin-bottom:16px; }
.book-intro p{ color: var(--ink-soft); font-size:16px; line-height:1.65; }
.book-intro a{ color: var(--lime-text); font-weight:700; text-decoration: underline; }
.book-intro{ position:sticky; top: calc(var(--nav-h) + 30px); }

.booking-form{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-field-full{ grid-column: 1 / -1; }
.form-field label{
  display:block;
  font-size: 13.5px;
  font-weight:700;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea{
  width:100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--cream);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  outline:none;
  border-color: var(--lime);
  background: var(--white);
}
.form-field textarea{ resize: vertical; min-height: 90px; }

.radio-group{ display:flex; gap: 20px; flex-wrap:wrap; }
.radio-option{
  display:flex; align-items:center; gap:8px;
  font-size: 14.5px;
  font-weight:600;
  color: var(--ink-soft);
  cursor:pointer;
}
.radio-option input{ accent-color: var(--lime); width:16px; height:16px; }

.form-note{
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--ink-faint);
  text-align:center;
}

.form-success{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align:center;
  box-shadow: var(--shadow-md);
}
.form-success .value-icon{ width:52px; height:52px; margin: 0 auto 18px; }
.form-success h3{ font-size:24px; margin-bottom:10px; }
.form-success p{ color: var(--ink-soft); font-size:15.5px; }

/* ===========================================================
   FAQ
   =========================================================== */
.faq{ padding: 120px 0; }
.faq-list{ margin-top: 40px; max-width: 800px; }
.faq-list details{
  border-bottom: 1.5px solid var(--line);
  padding: 22px 0;
}
.faq-list summary{
  cursor:pointer;
  font-weight:700;
  font-size: 17px;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 20px;
}
.faq-list summary::-webkit-details-marker{ display:none; }
.faq-list summary::after{
  content:'+';
  font-size: 24px;
  font-weight:400;
  color: var(--gold-text);
  flex-shrink:0;
  transition: transform .25s ease;
}
.faq-list details[open] summary::after{ transform: rotate(45deg); }
.faq-list details p{
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height:1.65;
  max-width: 680px;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer{ background: var(--forest); color: var(--cream); padding: 80px 0 0; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,251,241,0.12);
}
.footer-brand img{ height:44px; width:auto; margin-bottom:16px; }
.footer-brand p{ color: rgba(255,251,241,0.65); font-size:14.5px; line-height:1.6; max-width:280px; }
.footer-links, .footer-contact{ display:flex; flex-direction:column; gap:12px; }
.footer h4{
  font-size: 13px;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.footer-links a, .footer-contact a{
  color: rgba(255,251,241,0.78);
  font-size: 14.5px;
  transition: color .2s ease;
}
.footer-links a:hover, .footer-contact a:hover{ color: #fff; }
.footer-area{ color: rgba(255,251,241,0.55); font-size:13.5px; margin-top:4px; }
.footer-bottom{
  max-width:1180px; margin:0 auto; padding: 26px 28px;
  font-size: 13px; color: rgba(255,251,241,0.5);
  text-align:center;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 980px){
  .nav-links{
    position:fixed;
    top: var(--nav-h);
    left:0; right:0;
    flex-direction:column;
    align-items:flex-start;
    gap: 4px;
    background: var(--cream);
    padding: 18px 28px 26px;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity:0;
    pointer-events:none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav-links.open{ opacity:1; transform:translateY(0); pointer-events:auto; }
  .nav-links a:not(.btn){ padding: 12px 0; width:100%; border-bottom: 1px solid var(--line); }
  .nav-links .btn{ margin-top: 14px; }
  .nav-toggle{ display:flex; }

  .about-grid{ grid-template-columns:1fr; gap: 40px; }
  .about-image{ order:-1; }
  .about-image img{ aspect-ratio: 1.3; }

  .flavour-grid{ grid-template-columns: 1fr; }
  .pour-grid{ grid-template-columns: 1fr 1fr; }
  .how-grid{ grid-template-columns: 1fr 1fr; }

  .book-inner{ grid-template-columns:1fr; gap: 36px; }
  .book-intro{ position:static; }
  .booking-form{ padding: 28px; }
}

@media (max-width: 640px){
  .section-inner{ padding: 0 20px; }
  .about, .flavours, .pour, .how, .book, .faq{ padding: 80px 0; }
  .pour-grid{ grid-template-columns: 1fr; }
  .how-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; gap: 16px; }
  .hero-cta{ flex-direction:column; width:100%; }
  .hero-cta .btn{ width:100%; }
  .value-strip-inner{ justify-content:center; text-align:center; }
  .footer-grid{ grid-template-columns:1fr; gap:32px; }
}
