/* ============================================================
   BLUE RIDGE INFUSIONS — style.css
   Mobile-first, pure CSS, no framework dependencies
============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --green-dark:    #3d6b52;
  --green-mid:     #5a8f6e;
  --green-light:   #7aaa85;
  --cream:         #f5f0e8;
  --parchment:     #ede6d6;
  --navy:          #12304a;
  --gold:          #c9a84c;
  --gold-dark:     #a8872e;
  --mist:          #6a8a9a;
  --white:         #ffffff;
  --text:          #2a2a2a;
  --text-light:    #555555;

  --font-heading:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Josefin Sans', Helvetica, Arial, sans-serif;

  --radius:        8px;
  --radius-lg:     16px;
  --shadow-card:   0 2px 16px rgba(18,48,74,0.08), 0 1px 4px rgba(18,48,74,0.05);
  --shadow-hover:  0 8px 32px rgba(18,48,74,0.14), 0 2px 8px rgba(18,48,74,0.08);

  --header-h:      72px;
  --transition:    0.25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 760px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 300; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 400; }
h4 { font-size: 1.25rem; font-weight: 500; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label-light { color: rgba(201,168,76,0.85); }

.section-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-top: 16px;
  max-width: 680px;
}
.section-intro.light { color: rgba(255,255,255,0.82); }

p { line-height: 1.7; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-cream { background: var(--cream); }
.section-parchment { background: var(--parchment); }
.section-green {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-light) 100%);
}
.section-green h2.light { color: var(--white); }

/* ---------- HEADER ---------- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#site-header.scrolled {
  background: rgba(61,107,82,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(18,48,74,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-svg { width: 80px; height: 20px; }
.logo-svg-footer { width: 80px; height: 20px; opacity: 0.8; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.logo-text em { font-style: italic; font-weight: 300; }

/* Nav */
#main-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}
#main-nav a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
}
#main-nav a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 22px;
  border-radius: 3px;
  transition: background var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  box-shadow: 0 4px 14px rgba(201,168,76,0.4);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-mid) 55%, var(--green-light) 100%);
  padding-top: var(--header-h);
  overflow: hidden;
}

/* Subtle texture overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 70% 40%, rgba(255,255,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(18,48,74,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(61,107,82,0.4) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
  max-width: 760px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 300;
  font-style: italic;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-content .btn + .btn { margin-left: 16px; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-hint span {
  display: block;
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 10px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollHint 2s ease infinite;
}
@keyframes scrollHint {
  0%   { top: 5px; opacity: 1; }
  80%  { top: 16px; opacity: 0; }
  100% { top: 5px; opacity: 0; }
}

/* ---------- ABOUT / PILLARS ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 56px;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.pillar-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.pillar-icon svg { width: 48px; height: 48px; }
.pillar-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.pillar-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- MENU ---------- */
.menu-category { margin-top: 64px; }
.menu-category:first-of-type { margin-top: 48px; }

.menu-category-header {
  border-bottom: 1.5px solid rgba(18,48,74,0.12);
  padding-bottom: 16px;
  margin-bottom: 32px;
}
.menu-category-header h3 {
  color: var(--navy);
  margin-bottom: 4px;
}
.menu-category-sub {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--mist);
  text-transform: uppercase;
}

/* Menu cards grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.menu-card-featured {
  border: 1.5px solid var(--gold);
}
.menu-card-signature {
  border: 1.5px solid var(--navy);
  background: linear-gradient(135deg, #fff 80%, #f0eeea 100%);
}

.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
  align-self: flex-start;
}
.badge-popular { background: var(--gold); color: var(--navy); }
.badge-signature { background: var(--navy); color: var(--white); }

.menu-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.menu-card-top h4 { color: var(--navy); flex: 1; }
.menu-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--green-dark);
  white-space: nowrap;
}

.menu-tagline {
  font-size: 0.82rem;
  color: var(--mist);
  font-style: italic;
  line-height: 1.4;
}
.menu-contents {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}
.menu-duration {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: auto;
  align-self: flex-start;
}

/* Quick Shots */
.shots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.shot-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: var(--shadow-card);
  border-left: 3px solid var(--gold);
  transition: transform var(--transition);
}
.shot-card:hover { transform: translateX(3px); }
.shot-name { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.shot-name em { font-style: italic; font-weight: 400; color: var(--mist); font-size: 0.82rem; }
.shot-desc { font-size: 0.78rem; color: var(--text-light); }
.shot-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-top: 4px;
}

/* Add-ons */
.addons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.addon-pill {
  background: var(--white);
  border: 1px solid rgba(18,48,74,0.15);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.82rem;
  color: var(--navy);
  transition: background var(--transition), border-color var(--transition);
}
.addon-pill:hover { background: var(--parchment); border-color: var(--gold); }
.addon-pill strong { color: var(--green-dark); }

/* Membership */
.membership-card {
  margin-top: 64px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 40px 36px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.membership-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.membership-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.membership-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.membership-text h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 10px; }
.membership-text p { color: rgba(255,255,255,0.82); font-size: 0.95rem; max-width: 480px; }
.membership-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.membership-price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.membership-price span {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}

/* ---------- BOOKING ---------- */
.booking-embed-placeholder {
  background: rgba(255,255,255,0.12);
  border: 1.5px dashed rgba(255,255,255,0.3);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  margin: 40px 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.contact-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background var(--transition);
}
.contact-option:hover { background: rgba(255,255,255,0.18); }
.contact-option svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.contact-option strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.contact-option span {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.5;
}

/* ---------- FAQ ---------- */
.faq-list { margin-top: 48px; }

.faq-item {
  border-bottom: 1px solid rgba(18,48,74,0.1);
}
.faq-item summary {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--green-dark); }

.faq-body {
  padding: 0 0 24px;
}
.faq-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ---------- FOOTER ---------- */
#footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 40px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  display: block;
  margin-top: 10px;
  margin-bottom: 6px;
}
.footer-brand-name em { font-style: italic; font-weight: 300; }
.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.footer-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 32px 0;
}
.footer-bottom {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 2;
}
.footer-copy { margin-top: 8px; }


/* ============================================================
   RESPONSIVE
============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .membership-inner { flex-direction: column; align-items: flex-start; }
  .membership-price-block { flex-direction: row; align-items: center; }
}

/* Mobile */
@media (max-width: 680px) {
  :root { --header-h: 60px; }

  /* Header */
  .nav-toggle { display: flex; }
  #main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(61,107,82,0.98);
    backdrop-filter: blur(8px);
    padding: 20px 24px 28px;
  }
  #main-nav.open { display: block; }
  #main-nav ul { flex-direction: column; gap: 0; align-items: flex-start; }
  #main-nav li { width: 100%; }
  #main-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
  }
  .nav-cta {
    display: inline-flex !important;
    margin-top: 12px;
    padding: 12px 28px !important;
    border-bottom: none !important;
  }

  /* Hero */
  .hero-content .btn + .btn { margin-left: 0; margin-top: 12px; }
  .hero-content { display: flex; flex-direction: column; align-items: flex-start; }
  .hero-content .btn { width: 100%; text-align: center; }

  /* Menu */
  .menu-grid { grid-template-columns: 1fr; }
  .shots-grid { grid-template-columns: 1fr; }

  /* Membership */
  .membership-card { padding: 28px 24px; }
  .membership-price-block { flex-direction: column; width: 100%; }
  .membership-price-block .btn { width: 100%; }

  /* Booking contact */
  .contact-options { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 400px) {
  .hero-content h1 { font-size: 2.2rem; }
  .section { padding: 64px 0; }
}
