/* ── Announcement Bar ── */
.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 20px;
  background: var(--sage);
  color: var(--green);
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  position: relative;
  z-index: 1001;
}
.announcement-bar p {
  margin: 0;
}
.announcement-bar strong {
  font-weight: 700;
}
.announcement-bar__cta {
  padding: 5px 16px;
  background: var(--green);
  color: var(--cream);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
  white-space: nowrap;
}
.announcement-bar__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.announcement-bar__close {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--green);
  font-size: 18px;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.2s;
  padding: 4px;
}
.announcement-bar__close:hover {
  opacity: 0.8;
}
@media (max-width: 600px) {
  .announcement-bar {
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 32px 8px 16px;
    font-size: 12px;
  }
}

/* ── Botanix Bar — Upgraded Design ── */

:root {
  --green: #013927;
  --green-light: #025f45;
  --sage: #cae6d5;
  --cream: #f5f0e8;
  --beige: #e8e0d4;
  --warm-white: #faf8f4;
  --dark: #0a1f16;
  --text-dark: #1a2e24;
  --text-muted: #5a6e62;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
.heading {
  font-family: 'IM Fell English', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: var(--green);
  margin-bottom: 24px;
}
.heading em {
  font-style: italic;
}
.heading--light { color: var(--cream); }
.heading--light em { color: var(--sage); }

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.5;
  margin-bottom: 12px;
}
.label--light { color: var(--sage); opacity: 0.4; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn--primary {
  background: var(--sage);
  color: var(--green);
}
.btn--primary:hover {
  background: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(1,57,39,0.2);
}

.btn--dark {
  background: var(--green);
  color: var(--cream);
}
.btn--dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(1,57,39,0.2);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(202,230,213,0.3);
}
.btn--ghost:hover {
  background: rgba(202,230,213,0.1);
  border-color: var(--sage);
  transform: translateY(-3px);
}

.btn--outline {
  background: transparent;
  color: var(--sage);
  border: 1.5px solid rgba(202,230,213,0.2);
}
.btn--outline:hover {
  background: rgba(202,230,213,0.08);
  border-color: var(--sage);
  transform: translateY(-3px);
}

.btn--lg { padding: 18px 44px; font-size: 14px; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.container--narrow { max-width: 800px; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: all 0.4s ease;
}
.nav--solid {
  background: rgba(1,57,39,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(202,230,213,0.06);
}
.nav--hidden { transform: translateY(-100%); }

.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--sage);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
  letter-spacing: 0.02em;
}
.nav__links a:hover { opacity: 1; }

.nav__cta {
  padding: 10px 24px !important;
  background: rgba(202,230,213,0.12) !important;
  border: 1px solid rgba(202,230,213,0.15) !important;
  border-radius: 100px !important;
  opacity: 1 !important;
  font-weight: 500 !important;
  transition: all 0.2s !important;
}
.nav__cta:hover {
  background: var(--sage) !important;
  color: var(--green) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__hamburger span {
  width: 24px; height: 1.5px;
  background: var(--sage);
  transition: all 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(1,57,39,0.7) 0%,
    rgba(1,57,39,0.5) 50%,
    rgba(1,57,39,0.8) 100%
  );
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 700px;
  padding: 0 32px;
}

.hero__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  opacity: 0.5;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}

.hero__title {
  font-family: 'IM Fell English', serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.15s both;
}
.hero__title em {
  font-style: italic;
  color: var(--sage);
}

.hero__sub {
  font-size: 16px;
  color: var(--sage);
  opacity: 0.7;
  margin-bottom: 36px;
  font-weight: 300;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.45s both;
}

.hero__badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 48px;
  animation: fadeUp 0.8s ease 0.6s both;
}
.hero__badges span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  opacity: 0.3;
  padding: 6px 14px;
  border: 1px solid rgba(202,230,213,0.08);
  border-radius: 100px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 0.8s ease 0.75s both;
}
.hero__scroll span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  opacity: 0.3;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--sage), transparent);
  opacity: 0.3;
  animation: scrollPulse 2s ease infinite;
}

/* ── Sections ── */
.section {
  padding: 120px 0;
}
.section--dark {
  background: var(--green);
}
.section--cream {
  background: var(--warm-white);
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}
.section__sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300;
}
.section--dark .section__sub {
  color: var(--sage);
  opacity: 0.5;
}

.section__cta {
  text-align: center;
  margin-top: 56px;
}

/* ── Split layout ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split__text p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* About stats */
.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(1,57,39,0.08);
}

.stat__number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--green);
  line-height: 1;
}
.stat__label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* About images */
.about__image-stack {
  position: relative;
  height: 500px;
}
.about__img {
  position: absolute;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.about__img--1 {
  width: 280px; height: 360px;
  top: 0; left: 20px;
  z-index: 2;
}
.about__img--2 {
  width: 240px; height: 320px;
  bottom: 0; right: 0;
  z-index: 1;
}

/* ── Marquee ── */
.marquee {
  background: var(--green);
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid rgba(202,230,213,0.06);
  border-bottom: 1px solid rgba(202,230,213,0.06);
}

.marquee__track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.marquee__track span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--sage);
  opacity: 0.6;
  font-style: italic;
  flex-shrink: 0;
}

.marquee__dot {
  width: 4px !important;
  height: 4px;
  background: var(--sage) !important;
  border-radius: 50%;
  opacity: 0.15 !important;
  align-self: center;
  font-size: 0 !important;
}

/* ── Packages ── */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pkg {
  background: rgba(202,230,213,0.04);
  border: 1px solid rgba(202,230,213,0.08);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pkg:hover {
  transform: translateY(-6px);
  border-color: rgba(202,230,213,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.pkg--featured {
  border-color: rgba(202,230,213,0.2);
  background: rgba(202,230,213,0.08);
  position: relative;
}

.pkg__badge {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  opacity: 0.4;
  margin-bottom: 16px;
}

.pkg__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}

.pkg__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 24px;
}

.pkg__list {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.pkg__list li {
  font-size: 13px;
  color: var(--sage);
  opacity: 0.55;
  padding: 6px 0;
  border-bottom: 1px solid rgba(202,230,213,0.04);
  padding-left: 16px;
  position: relative;
}
.pkg__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.3;
}

.packages__note {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  font-style: italic;
  color: var(--sage);
  opacity: 0.25;
}

/* ── Drink Cards ── */
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.drink-card {
  text-align: center;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.drink-card:hover {
  transform: translateY(-8px);
}

.drink-card__img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream);
  margin-bottom: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.drink-card:hover .drink-card__img {
  box-shadow: 0 16px 50px rgba(0,0,0,0.1);
}
.drink-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drink-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--green);
}

/* ── Add-ons ── */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.addon-group__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(202,230,213,0.06);
}

.addon-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(202,230,213,0.04);
  font-size: 13px;
  color: var(--sage);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.addon-item:hover { opacity: 1; }
.addon-item span:last-child {
  font-weight: 500;
  white-space: nowrap;
}

.addons__note {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  color: var(--sage);
  opacity: 0.2;
  font-style: italic;
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq {
  border-bottom: 1px solid rgba(1,57,39,0.06);
}

.faq__q {
  width: 100%;
  padding: 22px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--green);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: color 0.2s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--green-light); }

.faq__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(1,57,39,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  position: relative;
}
.faq__icon::before {
  content: '+';
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--green);
  opacity: 0.4;
  transition: transform 0.3s;
}

.faq[open] .faq__icon {
  background: var(--green);
  border-color: var(--green);
}
.faq[open] .faq__icon::before {
  content: '\2212';
  color: var(--cream);
  opacity: 1;
}

.faq__a {
  padding: 0 0 22px;
  animation: faqOpen 0.3s ease;
}
.faq__a p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
}

/* ── CTA Section ── */
.cta-section {
  background: var(--green);
  padding: 120px 0;
  text-align: center;
}
.cta__title {
  font-family: 'IM Fell English', serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta__sub {
  font-size: 16px;
  color: var(--sage);
  opacity: 0.5;
  margin-bottom: 40px;
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  padding: 80px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.footer__tagline {
  font-size: 13px;
  color: var(--sage);
  opacity: 0.3;
  line-height: 1.6;
}
.footer__col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  opacity: 0.3;
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--sage);
  opacity: 0.5;
  text-decoration: none;
  margin-bottom: 8px;
  transition: opacity 0.2s;
}
.footer__col a:hover { opacity: 1; }
.footer__col p {
  font-size: 14px;
  color: var(--sage);
  opacity: 0.5;
}
.footer__small {
  font-size: 11px !important;
  margin-top: 8px;
  opacity: 0.25 !important;
}
.footer__bottom {
  border-top: 1px solid rgba(202,230,213,0.06);
  padding-top: 24px;
}
.footer__bottom p {
  font-size: 12px;
  color: var(--sage);
  opacity: 0.2;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.1; transform: scaleY(0.6); }
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.pkg.reveal:nth-child(2) { transition-delay: 0.1s; }
.pkg.reveal:nth-child(3) { transition-delay: 0.2s; }

.drink-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.drink-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.drink-card.reveal:nth-child(4) { transition-delay: 0.24s; }
.drink-card.reveal:nth-child(5) { transition-delay: 0.32s; }
.drink-card.reveal:nth-child(6) { transition-delay: 0.4s; }

.stat.reveal:nth-child(2) { transition-delay: 0.1s; }
.stat.reveal:nth-child(3) { transition-delay: 0.2s; }

/* ── Mobile ── */
@media (max-width: 960px) {
  .container { padding: 0 28px; }
  .nav { padding: 0 24px; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .packages { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .drinks-grid { grid-template-columns: repeat(2, 1fr); }
  .addons-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about__image-stack { height: 350px; }
  .about__img--1 { width: 200px; height: 260px; }
  .about__img--2 { width: 180px; height: 240px; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(1,57,39,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 18px; opacity: 0.8; }
  .nav__hamburger { display: flex; }
  .section { padding: 80px 0; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__badges { flex-wrap: wrap; gap: 8px; }
  .drinks-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .split__visual { display: none; }
}

/* ══════════════════════════════════════
   SUB-PAGE STYLES
   ══════════════════════════════════════ */

/* ── Page Hero (sub-pages) ── */
.page-hero {
  background: var(--green);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero__title {
  font-family: 'IM Fell English', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 12px;
}
.page-hero__sub {
  font-size: 15px;
  color: var(--sage);
  opacity: 0.5;
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300;
}

/* ── About Page ── */
.about-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  text-align: center;
  padding: 32px 20px;
  background: rgba(1,57,39,0.03);
  border: 1px solid rgba(1,57,39,0.06);
  border-radius: 20px;
  transition: all 0.3s;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.process-step__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--green);
  opacity: 0.2;
  margin-bottom: 12px;
}
.process-step__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Packages Detail Page ── */
.pkg-detail {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid rgba(1,57,39,0.06);
}
.pkg-detail:last-child { border-bottom: none; }
.pkg-detail.reverse { direction: rtl; }
.pkg-detail.reverse > * { direction: ltr; }

.pkg-detail__img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.pkg-detail__name {
  font-family: 'IM Fell English', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 4px;
}
.pkg-detail__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--green);
  opacity: 0.6;
  margin-bottom: 16px;
}
.pkg-detail__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.pkg-detail__list {
  list-style: none;
  margin-bottom: 20px;
}
.pkg-detail__list li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0 5px 16px;
  position: relative;
  line-height: 1.5;
}
.pkg-detail__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.2;
}
.pkg-detail__note {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.6;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ── Drink Detail Cards ── */
.drink-detail {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid rgba(1,57,39,0.06);
}
.drink-detail:last-child { border-bottom: none; }
.drink-detail.reverse { direction: rtl; }
.drink-detail.reverse > * { direction: ltr; }

.drink-detail__img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.drink-detail__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 8px;
}
.drink-detail__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.drink-detail__section h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.4;
  margin-bottom: 6px;
}
.drink-detail__section p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ── FAQ Full Page ── */
.faq-category {
  margin-bottom: 48px;
}
.faq-category__title {
  font-family: 'IM Fell English', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(1,57,39,0.08);
}

/* ── Contact Form ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.5;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: rgba(1,57,39,0.03);
  border: 1px solid rgba(1,57,39,0.08);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23013927' stroke-width='1.5' fill='none' opacity='0.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.info-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}
.info-block { text-align: center; }
.info-block h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.35;
  margin-bottom: 4px;
}
.info-block p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ── Thank You ── */
.thankyou {
  text-align: center;
  padding: 60px 0;
}
.thankyou__icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.6;
}
.thankyou__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}

/* ── Service Charge / Misc Blocks ── */
.text-block {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.text-block p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.text-block strong {
  color: var(--green);
}

/* ── Sub-page responsive ── */
@media (max-width: 960px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-detail { grid-template-columns: 1fr; gap: 24px; }
  .pkg-detail.reverse { direction: ltr; }
  .drink-detail { grid-template-columns: 1fr; gap: 24px; }
  .drink-detail.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .page-hero { padding: 120px 0 60px; }
  .process-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .form-grid { grid-template-columns: 1fr; }
  .info-row { flex-direction: column; gap: 16px; }
}
