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

:root {
  --forest: #1a3a2a;
  --forest-light: #2a5a3f;
  --forest-dark: #0f2419;
  --cream: #f5f2eb;
  --cream-light: #faf8f4;
  --cream-dark: #e8e4d9;
  --text: #1a1a18;
  --text-light: #4a4a44;
  --text-muted: #7a7a72;
  --white: #ffffff;
  --accent: #c8a45a;
  --accent-light: #d4b76e;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--cream-light);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--forest);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(26, 58, 42, 0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--forest);
  border-radius: 8px;
  position: relative;
  flex-shrink: 0;
}

.logo-mark::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 14px;
  background: var(--cream);
  border-radius: 50% 50% 2px 2px;
  opacity: 0.8;
}

.logo-text {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--forest);
  letter-spacing: -0.01em;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--forest);
  transition: width var(--transition);
}

.nav a:hover {
  color: var(--forest);
}

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--forest);
  transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 58, 42, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}

.btn--ghost:hover {
  background: var(--forest);
  color: var(--cream-light);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn--wide {
  width: 100%;
}

.btn--full {
  width: 100%;
}

/* ─── Section shared ─── */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 24px;
  color: var(--forest);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

/* ─── Hero ─── */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--cream-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 58, 42, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--forest);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(26, 58, 42, 0.15);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/7;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26, 58, 42, 0.1);
  border-color: var(--forest);
}

.stat-number {
  display: block;
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─── About ─── */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26, 58, 42, 0.12);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 7/8;
}

.about-content .section-heading {
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.about-icon {
  width: 22px;
  height: 22px;
  color: var(--forest);
  flex-shrink: 0;
}

/* ─── Products ─── */
.products {
  padding: 100px 0;
  background: var(--cream-light);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26, 58, 42, 0.12);
  border-color: transparent;
}

.product-image {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 28px 24px;
}

.product-info h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--forest);
}

.product-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Experience ─── */
.experience {
  padding: 100px 0;
  background: var(--forest);
}

.experience-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.experience .section-eyebrow {
  color: var(--accent-light);
}

.experience .section-heading {
  color: var(--cream);
  margin-bottom: 20px;
}

.experience-content > p {
  color: rgba(245, 242, 235, 0.7);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 40px;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.experience-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.experience-number {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}

.experience-item h4 {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 6px;
}

.experience-item p {
  font-size: 0.9rem;
  color: rgba(245, 242, 235, 0.6);
  line-height: 1.65;
}

.experience-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 7/8.5;
}

/* ─── Location ─── */
.location {
  padding: 100px 0;
  background: var(--cream-light);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.location-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.location-icon {
  width: 24px;
  height: 24px;
  color: var(--forest);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-detail h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.location-detail p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

.location-detail a {
  color: var(--forest);
  font-weight: 500;
  transition: color var(--transition);
}

.location-detail a:hover {
  color: var(--forest-light);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.95rem;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 12px 40px rgba(26, 58, 42, 0.1);
}

/* ─── Contact ─── */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-content .section-heading {
  margin-bottom: 20px;
}

.contact-content > p {
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
  padding: 16px 20px;
  background: var(--cream-light);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact-link:hover {
  background: var(--cream-dark);
  color: var(--forest);
}

.contact-link svg {
  width: 20px;
  height: 20px;
  color: var(--forest);
  flex-shrink: 0;
}

/* ─── Form ─── */
.contact-form-wrapper {
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--forest);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-success svg {
  width: 48px;
  height: 48px;
  color: var(--forest);
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--forest);
}

.form-success p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ─── Footer ─── */
.footer {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo-text {
  color: var(--cream);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(245, 242, 235, 0.6);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4,
.footer-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(245, 242, 235, 0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-info p {
  font-size: 0.9rem;
  color: rgba(245, 242, 235, 0.6);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-info a {
  color: var(--cream);
  transition: color var(--transition);
}

.footer-info a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 242, 235, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(245, 242, 235, 0.4);
}

.age-notice {
  font-size: 0.78rem !important;
  color: rgba(245, 242, 235, 0.3) !important;
}

/* ─── Age Gate ─── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 36, 25, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.hidden {
  display: none;
}

.age-gate-card {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.age-gate-content h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--forest);
}

.age-gate-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 32px;
}

.age-gate-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.age-gate-actions .btn {
  flex: 1;
}

/* ─── Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-card {
    gap: 40px;
  }

  .about-grid,
  .experience-card,
  .location-grid,
  .contact-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--cream-dark);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .nav a {
    font-size: 1.05rem;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-image {
    max-height: 400px;
  }

  .stat-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 20px 24px;
  }

  .about-grid,
  .experience-card,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image,
  .experience-image {
    aspect-ratio: 4/3;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .age-gate-actions {
    flex-direction: column;
  }

  .experience {
    padding: 80px 0;
  }

  .about,
  .products,
  .location,
  .contact {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .age-gate-card {
    padding: 32px 24px;
  }
}
