/* ═══════════════════════════════════════════════════════════════
   BOOZY BOURBON CHEFS — Full Website Stylesheet
   Bourbon & Food Aesthetic:
   Charred Oak #1a1410 | Amber #d4a017 | Copper #b87333 | Cream #f5efe0
   ═══════════════════════════════════════════════════════════════ */

:root {
  --oak: #1a1410;
  --oak-light: #2a1f18;
  --oak-deep: #0f0a06;
  --amber: #d4a017;
  --amber-light: #e8b83a;
  --amber-glow: rgba(212,160,23,.28);
  --copper: #b87333;
  --copper-light: #c89052;
  --cream: #f5efe0;
  --cream-dark: #e8dcc4;
  --white: #ffffff;
  --ink: #1a1410;
  --muted: #8a7a68;
  --line: rgba(26,20,16,.12);
  --bourbon: #8b4513;
  --gold: #d4a017;
  --shadow-card: 0 26px 80px rgba(26,20,16,.30), 0 0 0 1px rgba(255,255,255,.06);
  --shadow-sm: 0 4px 16px rgba(26,20,16,.15);
  --shadow-md: 0 12px 40px rgba(26,20,16,.22);
  --shadow-amber: 0 12px 40px rgba(212,160,23,.25);
  --radius: 16px;
  --radius-lg: 24px;
  --max-width: 1200px;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-script: "Tangerine", "Brush Script MT", cursive;
  --font-body: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(ellipse at top, var(--cream) 0%, #efe6d0 50%, #e0d4b8 100%);
  min-height: 100vh;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Editorial display serif for headlines */
h1, h2, h3, .hero-text h1, .section-title, .section-title-alt,
.card h3, .feature-card h3, .footer-brand h3, .cta-section h2,
.hero-eyebrow, .recipe-card h3, .cocktail-card h3, .product-card h3 {
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
  font-weight: 700;
}

.script-font {
  font-family: var(--font-script);
  font-weight: 700;
}

.section-subtitle, .hero-subtitle {
  font-family: var(--font-body);
}

a { color: var(--copper); text-decoration: none; transition: color .2s; }
a:hover { color: var(--amber); }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION BAR
   ═══════════════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--oak);
  box-shadow: 0 2px 20px rgba(26,20,16,.40);
  border-bottom: 3px solid var(--amber);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 70px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.navbar-brand-logo {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--amber);
  line-height: 1;
  text-shadow: 0 2px 8px rgba(212,160,23,.4);
}

.navbar-brand-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  white-space: nowrap;
  text-transform: uppercase;
}

.navbar-brand-text .brand-tag {
  font-size: 10px;
  color: var(--amber);
  display: block;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.navbar-links a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .2s ease;
  letter-spacing: .3px;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--amber);
  background: rgba(212,160,23,.12);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--oak-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-kitchen.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,10,6,.5) 0%, rgba(15,10,6,.3) 40%, rgba(15,10,6,.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  padding: 8px 20px;
  border: 1px solid rgba(212,160,23,.4);
  border-radius: 100px;
  margin-bottom: 24px;
  background: rgba(212,160,23,.08);
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}

.hero-text h1 .script-accent {
  font-family: var(--font-script);
  font-size: 1.3em;
  color: var(--amber);
  display: block;
  line-height: .9;
  text-shadow: 0 4px 20px rgba(212,160,23,.4);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,.9);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
  letter-spacing: .5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber) 0%, var(--copper) 100%);
  color: var(--oak-deep);
  box-shadow: 0 8px 24px rgba(212,160,23,.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212,160,23,.45);
  color: var(--oak-deep);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--amber);
  color: var(--amber);
}

.btn-dark {
  background: var(--oak);
  color: var(--cream);
}

.btn-dark:hover {
  background: var(--oak-light);
  color: var(--amber);
}

.btn-large {
  padding: 18px 40px;
  font-size: 17px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION LAYOUT
   ═══════════════════════════════════════════════════════════════ */
.section {
  padding: 80px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-dark {
  background: var(--oak);
  color: var(--cream);
  max-width: none;
  padding: 80px 24px;
}

.section-dark .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-cream {
  background: var(--cream);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--oak);
  text-align: center;
  margin-bottom: 12px;
}

.section-dark .section-title {
  color: var(--white);
}

.section-title .script-accent {
  font-family: var(--font-script);
  color: var(--amber);
  font-size: 1.2em;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.section-dark .section-subtitle {
  color: rgba(245,239,224,.65);
}

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}

.section-dark .section-eyebrow {
  color: var(--amber);
}

/* ═══════════════════════════════════════════════════════════════
   FEATURE GRID (Welcome / Philosophy)
   ═══════════════════════════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
  border: 1px solid var(--line);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-card .icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 1.4rem;
  color: var(--oak);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION (Jeff & Todd)
   ═══════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-image .image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15,10,6,.85);
  color: var(--amber);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--oak);
  margin-bottom: 8px;
}

.about-text .name-title {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--copper);
  margin-bottom: 20px;
  display: block;
}

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

.about-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.about-tag {
  background: var(--cream-dark);
  color: var(--oak);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--line);
}

/* ═══════════════════════════════════════════════════════════════
   RECIPE CARDS
   ═══════════════════════════════════════════════════════════════ */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.recipe-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
  border: 1px solid var(--line);
}

.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.recipe-card .recipe-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.recipe-card .recipe-body {
  padding: 24px;
}

.recipe-card .recipe-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--copper);
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.recipe-card h3 {
  font-size: 1.3rem;
  color: var(--oak);
  margin-bottom: 10px;
}

.recipe-card p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.recipe-card .recipe-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.recipe-tag {
  background: var(--cream-dark);
  color: var(--oak);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   COCKTAIL CARDS
   ═══════════════════════════════════════════════════════════════ */
.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.cocktail-card {
  background: linear-gradient(160deg, var(--oak-light) 0%, var(--oak) 100%);
  border-radius: var(--radius);
  padding: 32px 28px;
  color: var(--cream);
  box-shadow: var(--shadow-md);
  transition: all .3s ease;
  border: 1px solid rgba(212,160,23,.15);
  position: relative;
  overflow: hidden;
}

.cocktail-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cocktail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,160,23,.4);
  box-shadow: 0 20px 50px rgba(26,20,16,.4);
}

.cocktail-card .cocktail-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.cocktail-card h3 {
  font-size: 1.4rem;
  color: var(--amber);
  margin-bottom: 8px;
}

.cocktail-card .cocktail-tagline {
  font-size: 14px;
  color: rgba(245,239,224,.6);
  margin-bottom: 16px;
  font-style: italic;
}

.cocktail-card .cocktail-ingredients {
  list-style: none;
  margin-bottom: 16px;
}

.cocktail-card .cocktail-ingredients li {
  padding: 4px 0;
  font-size: .95rem;
  color: rgba(245,239,224,.85);
  border-bottom: 1px solid rgba(212,160,23,.1);
}

.cocktail-card .cocktail-ingredients li::before {
  content: '• ';
  color: var(--amber);
}

.cocktail-card .cocktail-method {
  font-size: .9rem;
  color: rgba(245,239,224,.7);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   COOKBOOK SECTION
   ═══════════════════════════════════════════════════════════════ */
.cookbook-section {
  background: linear-gradient(135deg, var(--oak-deep) 0%, var(--oak) 100%);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.cookbook-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,160,23,.08) 0%, transparent 60%);
}

.cookbook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cookbook-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 40px rgba(212,160,23,.15);
  transform: rotate(-2deg);
  transition: transform .4s ease;
}

.cookbook-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.cookbook-image img {
  width: 100%;
  display: block;
}

.cookbook-text {
  color: var(--cream);
}

.cookbook-text .section-eyebrow {
  color: var(--amber);
}

.cookbook-text h2 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 20px;
}

.cookbook-text h2 .script-accent {
  font-family: var(--font-script);
  color: var(--amber);
  font-size: 1.3em;
}

.cookbook-text p {
  font-size: 1.15rem;
  color: rgba(245,239,224,.8);
  line-height: 1.8;
  margin-bottom: 20px;
}

.cookbook-features {
  list-style: none;
  margin: 28px 0;
}

.cookbook-features li {
  padding: 10px 0;
  color: rgba(245,239,224,.9);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookbook-features li::before {
  content: '✦';
  color: var(--amber);
  font-size: 1.2rem;
}

.cookbook-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 28px 0;
}

.cookbook-price .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber);
  font-family: var(--font-serif);
}

.cookbook-price .price-original {
  font-size: 1.2rem;
  color: rgba(245,239,224,.4);
  text-decoration: line-through;
}

.cookbook-price .price-tag {
  background: var(--amber);
  color: var(--oak-deep);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════════
   NEWSLETTER SECTION
   ═══════════════════════════════════════════════════════════════ */
.newsletter-section {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  padding: 80px 24px;
}

.newsletter-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: block;
}

.newsletter-inner h2 {
  font-size: 2.5rem;
  color: var(--oak);
  margin-bottom: 12px;
}

.newsletter-inner h2 .script-accent {
  font-family: var(--font-script);
  color: var(--copper);
  font-size: 1.2em;
}

.newsletter-inner p {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 16px 24px;
  border: 2px solid var(--line);
  border-radius: 100px;
  font-size: 16px;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--amber);
}

.newsletter-perks {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
}

.newsletter-perks span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   VIDEO SECTION
   ═══════════════════════════════════════════════════════════════ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
  background: var(--white);
  border: 1px solid var(--line);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 177.78%; /* 9:16 aspect ratio for short-form */
  background: var(--oak);
  overflow: hidden;
}

.video-embed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-embed .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,10,6,.35);
  transition: background .3s;
}

.video-embed .play-overlay .play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--oak-deep);
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}

.video-card:hover .play-overlay {
  background: rgba(15,10,6,.5);
}

.video-card .video-info {
  padding: 16px 20px;
}

.video-card .video-platform {
  font-size: 12px;
  color: var(--copper);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.video-card h4 {
  font-size: 1rem;
  color: var(--oak);
  font-weight: 600;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════
   E-COMMERCE / SHOP
   ═══════════════════════════════════════════════════════════════ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  background: var(--cream-dark);
}

.product-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--oak-deep);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.product-card h3 {
  font-size: 1.2rem;
  color: var(--oak);
  margin-bottom: 8px;
}

.product-card .product-desc {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.product-card .product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-card .product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--copper);
  font-family: var(--font-serif);
}

.product-card .btn-add {
  background: var(--oak);
  color: var(--cream);
  border: none;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-card .btn-add:hover {
  background: var(--amber);
  color: var(--oak-deep);
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--oak) 0%, var(--oak-deep) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,160,23,.1) 0%, transparent 60%);
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section h2 .script-accent {
  font-family: var(--font-script);
  color: var(--amber);
  font-size: 1.2em;
}

.cta-section p {
  font-size: 1.2rem;
  color: rgba(245,239,224,.75);
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--oak-deep);
  color: rgba(245,239,224,.6);
  padding: 60px 24px 30px;
  border-top: 3px solid var(--amber);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand h3 .script-accent {
  font-family: var(--font-script);
  color: var(--amber);
  font-size: 1.2em;
}

.footer-brand p {
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212,160,23,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 18px;
  transition: all .2s;
}

.footer-social a:hover {
  background: var(--amber);
  color: var(--oak-deep);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: rgba(245,239,224,.6);
  font-size: .95rem;
  transition: color .2s;
}

.footer-col ul a:hover {
  color: var(--amber);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(212,160,23,.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(245,239,224,.4);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(245,239,224,.5);
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HEADER (sub-pages)
   ═══════════════════════════════════════════════════════════════ */
.page-header {
  background: linear-gradient(135deg, var(--oak) 0%, var(--oak-deep) 100%);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(212,160,23,.1) 0%, transparent 60%);
}

.page-header h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-header h1 .script-accent {
  font-family: var(--font-script);
  color: var(--amber);
  font-size: 1.2em;
}

.page-header p {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  color: rgba(245,239,224,.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  font-size: 14px;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--copper);
}

.breadcrumbs span {
  margin: 0 8px;
}

/* ═══════════════════════════════════════════════════════════════
   RECIPE DETAIL
   ═══════════════════════════════════════════════════════════════ */
.recipe-detail {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.recipe-detail .recipe-hero {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
}

.recipe-detail h1 {
  font-size: 2.5rem;
  color: var(--oak);
  margin-bottom: 12px;
}

.recipe-detail .recipe-info {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 24px 0;
  flex-wrap: wrap;
}

.recipe-detail .recipe-info .info-item {
  display: flex;
  flex-direction: column;
}

.recipe-detail .recipe-info .info-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--copper);
  font-weight: 600;
}

.recipe-detail .recipe-info .info-value {
  font-size: 1.1rem;
  color: var(--oak);
  font-weight: 600;
}

.recipe-detail h2 {
  font-size: 1.6rem;
  color: var(--oak);
  margin: 32px 0 16px;
}

.recipe-detail .ingredient-list,
.recipe-detail .step-list {
  list-style: none;
  margin-bottom: 24px;
}

.recipe-detail .ingredient-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--ink);
}

.recipe-detail .ingredient-list li::before {
  content: '✦';
  color: var(--amber);
}

.recipe-detail .step-list {
  counter-reset: step;
}

.recipe-detail .step-list li {
  padding: 16px 0 16px 48px;
  position: relative;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.7;
  border-bottom: 1px solid var(--line);
}

.recipe-detail .step-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--oak-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-serif);
}

.recipe-detail .pro-tip {
  background: var(--cream-dark);
  border-left: 4px solid var(--amber);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
}

.recipe-detail .pro-tip strong {
  color: var(--copper);
  font-family: var(--font-script);
  font-size: 1.4rem;
}

/* ═══════════════════════════════════════════════════════════════
   NEWSLETTER SAMPLE
   ═══════════════════════════════════════════════════════════════ */
.newsletter-sample {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.newsletter-issue {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.newsletter-issue .issue-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--amber);
  margin-bottom: 32px;
}

.newsletter-issue .issue-header .issue-number {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--copper);
  font-weight: 600;
}

.newsletter-issue .issue-header h2 {
  font-size: 2rem;
  color: var(--oak);
  margin: 8px 0;
}

.newsletter-issue .issue-header h2 .script-accent {
  font-family: var(--font-script);
  color: var(--amber);
  font-size: 1.2em;
}

.newsletter-issue .issue-header .issue-date {
  font-size: 14px;
  color: var(--muted);
}

.newsletter-issue h3 {
  font-size: 1.4rem;
  color: var(--oak);
  margin: 28px 0 12px;
}

.newsletter-issue p {
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.newsletter-issue .featured-recipe {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
  border: 1px solid var(--line);
}

.newsletter-issue .quote-block {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--oak);
  text-align: center;
  padding: 24px;
  border-left: 4px solid var(--amber);
  margin: 24px 0;
  background: var(--cream-dark);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.faq-question {
  padding: 24px 28px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--oak);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .2s;
  list-style: none;
}

.faq-question:hover {
  background: var(--cream);
}

.faq-question .faq-toggle {
  color: var(--amber);
  font-size: 1.5rem;
  transition: transform .3s;
}

.faq-item.open .faq-question .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.contact-info h2 {
  font-size: 2rem;
  color: var(--oak);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-info .contact-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--copper);
  flex-shrink: 0;
}

.contact-info .contact-item .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.contact-info .contact-item .value {
  font-size: 1.1rem;
  color: var(--oak);
  font-weight: 600;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--oak);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--line);
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--white);
}

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

/* ═══════════════════════════════════════════════════════════════
   DIGITAL BUSINESS CARD PAGE
   ═══════════════════════════════════════════════════════════════ */
.card-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at top, var(--oak-deep) 0%, #0a0604 100%);
  padding: 40px 20px;
}

.digital-card {
  max-width: 420px;
  width: 100%;
  background: linear-gradient(160deg, var(--oak-light) 0%, var(--oak) 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(212,160,23,.2);
  border: 1px solid rgba(212,160,23,.25);
}

.digital-card .card-header {
  background: linear-gradient(135deg, var(--oak) 0%, var(--oak-deep) 100%);
  padding: 40px 30px 30px;
  text-align: center;
  position: relative;
  border-bottom: 3px solid var(--amber);
}

.digital-card .card-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(212,160,23,.15) 0%, transparent 60%);
}

.digital-card .card-logo {
  font-family: var(--font-script);
  font-size: 36px;
  color: var(--amber);
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 12px rgba(212,160,23,.4);
  margin-bottom: 4px;
}

.digital-card .card-brand {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(245,239,224,.5);
  position: relative;
  z-index: 1;
}

.digital-card .card-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--amber);
  margin: -70px auto 20px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}

.digital-card .card-body {
  padding: 0 30px 30px;
  text-align: center;
}

.digital-card .card-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 4px;
}

.digital-card .card-title {
  font-size: 14px;
  color: var(--amber);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.digital-card .card-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.digital-card .card-action {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(245,239,224,.08);
  border-radius: 14px;
  text-decoration: none;
  color: var(--cream);
  font-size: 15px;
  font-weight: 500;
  transition: all .2s;
  border: 1px solid rgba(212,160,23,.1);
}

.digital-card .card-action:hover {
  background: rgba(212,160,23,.15);
  border-color: rgba(212,160,23,.3);
  transform: translateX(4px);
}

.digital-card .card-action .action-icon {
  font-size: 22px;
  color: var(--amber);
  width: 24px;
  text-align: center;
}

.digital-card .card-action .action-label {
  flex: 1;
  text-align: left;
}

.digital-card .card-action .action-arrow {
  color: rgba(245,239,224,.3);
  font-size: 14px;
}

.digital-card .card-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(212,160,23,.15);
}

.digital-card .card-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212,160,23,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 20px;
  transition: all .2s;
}

.digital-card .card-social a:hover {
  background: var(--amber);
  color: var(--oak-deep);
  transform: translateY(-3px);
}

.digital-card .card-save-vcard {
  display: block;
  text-align: center;
  margin-top: 20px;
  padding: 14px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--copper) 100%);
  color: var(--oak-deep);
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all .2s;
  letter-spacing: .5px;
}

.digital-card .card-save-vcard:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,160,23,.4);
}

.digital-card .card-footer {
  text-align: center;
  padding: 16px;
  font-size: 11px;
  color: rgba(245,239,224,.3);
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════════
   AI CHAT WIDGET
   ═══════════════════════════════════════════════════════════════ */
.chat-launcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: linear-gradient(135deg, var(--amber) 0%, var(--copper) 100%);
  color: var(--oak-deep);
  border: none;
  border-radius: 100px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 40px rgba(212,160,23,.4), 0 0 0 4px rgba(212,160,23,.1);
  transition: all .3s ease;
  font-family: var(--font-body);
  letter-spacing: .5px;
  animation: pulse-amber 3s ease-in-out infinite;
}

@keyframes pulse-amber {
  0%, 100% { box-shadow: 0 12px 40px rgba(212,160,23,.4), 0 0 0 4px rgba(212,160,23,.1); }
  50% { box-shadow: 0 12px 40px rgba(212,160,23,.5), 0 0 0 12px rgba(212,160,23,.05); }
}

.chat-launcher:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 50px rgba(212,160,23,.5);
}

.chat-launcher .launcher-icon {
  font-size: 22px;
}

.chat-launcher .launcher-badge {
  background: var(--oak-deep);
  color: var(--amber);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 1px;
}

.chat-widget {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 9999;
  width: 400px;
  max-width: calc(100vw - 48px);
  height: 600px;
  max-height: calc(100vh - 120px);
  background: var(--cream);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(26,20,16,.4), 0 0 0 1px rgba(212,160,23,.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: chatSlideUp .3s ease;
}

@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-widget.open {
  display: flex;
}

.chat-header {
  background: linear-gradient(135deg, var(--oak) 0%, var(--oak-deep) 100%);
  color: var(--white);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 2px solid var(--amber);
}

.chat-header .chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber) 0%, var(--copper) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.chat-header .chat-title-block {
  flex: 1;
}

.chat-header .chat-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.chat-header .chat-status {
  font-size: 12px;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-header .chat-status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
}

.chat-header .chat-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color .2s;
}

.chat-header .chat-close:hover {
  color: var(--amber);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--cream);
}

.chat-message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
  animation: msgFadeIn .3s ease;
}

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

.chat-message.bot {
  background: var(--white);
  color: var(--ink);
  border-bottom-left-radius: 4px;
  border: 1px solid var(--line);
  align-self: flex-start;
}

.chat-message.user {
  background: linear-gradient(135deg, var(--amber) 0%, var(--copper) 100%);
  color: var(--oak-deep);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  font-weight: 500;
}

.chat-message.bot strong {
  color: var(--oak);
}

.chat-message.bot .msg-tag {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
}

.chat-message .msg-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--copper) 100%);
  color: var(--oak-deep);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}

.chat-message .msg-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,160,23,.35);
}

.chat-typing {
  align-self: flex-start;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--line);
  display: flex;
  gap: 4px;
}

.chat-typing .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  animation: typingBounce 1.4s infinite ease-in-out;
}

.chat-typing .dot:nth-child(2) { animation-delay: .2s; }
.chat-typing .dot:nth-child(3) { animation-delay: .4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(.6); opacity: .5; }
  40% { transform: scale(1); opacity: 1; }
}

.chat-quick-replies {
  padding: 0 20px 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: var(--cream);
}

.chat-quick-reply {
  background: var(--white);
  border: 1px solid rgba(212,160,23,.3);
  color: var(--oak);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-body);
  font-weight: 500;
}

.chat-quick-reply:hover {
  background: var(--amber);
  color: var(--oak-deep);
  border-color: var(--amber);
}

.chat-input-area {
  padding: 14px 20px;
  display: flex;
  gap: 10px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.chat-input-area textarea {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--line);
  border-radius: 100px;
  font-size: 14px;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  resize: none;
  height: 44px;
  max-height: 100px;
  transition: border-color .2s;
}

.chat-input-area textarea:focus {
  outline: none;
  border-color: var(--amber);
}

.chat-input-area .chat-send {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber) 0%, var(--copper) 100%);
  border: none;
  color: var(--oak-deep);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}

.chat-input-area .chat-send:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(212,160,23,.4);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 968px) {
  .navbar-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--oak);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,.3);
    border-bottom: 3px solid var(--amber);
  }

  .navbar-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .about-grid,
  .cookbook-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cookbook-image {
    max-width: 400px;
    margin: 0 auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .section { padding: 60px 20px; }
  .hero { min-height: auto; }
  .hero-content { padding: 70px 20px 90px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 16px 24px; font-size: 16px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* Chat widget — full-width panel on mobile */
  .chat-widget { width: calc(100vw - 24px); right: 12px; bottom: 84px; left: 12px; max-width: none; }
  /* Chat launcher — compact circular FAB on mobile to avoid overlapping hero CTA buttons */
  .chat-launcher {
    bottom: 16px; right: 16px;
    padding: 0; width: 56px; height: 56px;
    border-radius: 50%; font-size: 0; gap: 0;
    display: flex; align-items: center; justify-content: center;
    animation: none;
  }
  .chat-launcher .launcher-icon { font-size: 26px; }
  .chat-launcher .launcher-badge { display: none; }
  .chat-launcher:hover { transform: scale(1.08); }
  /* Ensure CTA sections get breathing room above the floating button */
  .cta-section { padding-bottom: 90px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { width: 100%; }
  .recipe-grid, .cocktail-grid, .shop-grid, .video-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SUBPAGE STYLES — Added for BBC site pages
   ============================================ */

/* === Page Header Dark Variant === */
.page-header-dark { background: linear-gradient(135deg, #0f0a06 0%, #1a1410 100%); }

/* === Philosophy Section === */
.philosophy-section { padding: 4rem 0; }
.philosophy-section .feature-card { text-align: left; }

/* === About Page === */
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.about-grid.reverse { grid-template-columns: 1.5fr 1fr; }
.about-grid.reverse .about-image-wrap { order: 2; }
.about-grid.reverse .about-bio { order: 1; }
.about-image-wrap { position: relative; }
.about-photo {
  width: 100%; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.4);
  border: 3px solid var(--copper);
}
.about-photo-label {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: rgba(15,10,6,.92); border-radius: 8px; padding: 12px 16px;
  display: flex; flex-direction: column; gap: 2px;
}
.photo-name { color: var(--cream); font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; }
.photo-role { color: var(--amber); font-size: .85rem; font-weight: 500; letter-spacing: .5px; text-transform: uppercase; }
.bio-title { color: var(--copper); font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; letter-spacing: .5px; }
.about-bio p { margin-bottom: 1.2rem; line-height: 1.8; }

/* === Recipe Cards === */
.recipe-card-featured { grid-column: span 2; }
.recipe-card-featured .recipe-card-image { height: 320px; }
.recipe-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--amber); color: var(--oak); padding: 6px 16px;
  border-radius: 20px; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.recipe-meta { display: flex; gap: 1rem; margin-bottom: .75rem; }
.recipe-time { color: var(--copper); font-size: .85rem; font-weight: 600; }
.recipe-difficulty {
  background: rgba(184,115,51,.15); color: var(--copper);
  padding: 2px 10px; border-radius: 12px; font-size: .75rem; font-weight: 600;
}
.recipe-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }
.tag {
  background: rgba(212,160,23,.1); color: var(--amber);
  padding: 4px 12px; border-radius: 12px; font-size: .75rem; font-weight: 500;
}
.recipe-card-footer { padding: 0 24px 24px; }
.btn-small { padding: 8px 20px; font-size: .85rem; }

/* === Recipe Detail === */
.recipe-detail { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.recipe-detail-image img { width: 100%; border-radius: 12px; box-shadow: 0 16px 48px rgba(0,0,0,.3); position: sticky; top: 100px; }
.recipe-detail-content p { line-height: 1.8; margin-bottom: 1rem; }
.recipe-detail-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 1.5rem 0; padding: 1.5rem; background: rgba(0,0,0,.04); border-radius: 10px; border-left: 4px solid var(--amber); }
.recipe-detail-dark .recipe-detail-meta { background: rgba(245,239,224,.05); border-left-color: var(--amber); }
.meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-label { font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--copper); font-weight: 600; }
.meta-value { font-size: 1.1rem; font-weight: 700; color: var(--cream); }
.recipe-section-heading {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700;
  margin: 2rem 0 1rem; color: var(--amber);
}
.ingredient-list { list-style: none; padding: 0; }
.ingredient-list li {
  padding: 8px 0 8px 28px; position: relative; line-height: 1.6;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.ingredient-list li::before {
  content: "🥃"; position: absolute; left: 0; font-size: .9rem; opacity: .7;
}
.ingredient-list-dark li { color: var(--cream); border-bottom-color: rgba(245,239,224,.08); }
.instruction-list { list-style: none; padding: 0; counter-reset: step; }
.instruction-list li {
  padding: 1rem 0 1rem 3rem; position: relative; line-height: 1.7;
  counter-increment: step; border-bottom: 1px solid rgba(0,0,0,.06);
}
.instruction-list li::before {
  content: counter(step); position: absolute; left: 0; top: .8rem;
  width: 2rem; height: 2rem; background: var(--amber); color: var(--oak);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
}
.instruction-list-dark li { color: var(--cream); border-bottom-color: rgba(245,239,224,.08); }
.recipe-chef-note {
  margin-top: 2rem; padding: 1.5rem; background: rgba(212,160,23,.08);
  border-radius: 10px; border-left: 4px solid var(--amber); font-style: italic; line-height: 1.7;
}
.recipe-chef-note-dark { background: rgba(212,160,23,.06); }

/* === Dark Section Text Helpers === */
.lead-light { color: rgba(245,239,224,.85); }
.section-heading.light { color: var(--cream); }

/* === Cocktail Cards === */
.cocktail-card-featured .cocktail-card-image { height: 300px; overflow: hidden; border-radius: 12px 12px 0 0; }
.cocktail-card-featured .cocktail-card-image img { width: 100%; height: 100%; object-fit: cover; }

/* === Video Section === */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.video-card {
  background: var(--cream); border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.08); transition: transform .3s, box-shadow .3s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.15); }
.video-thumbnail { position: relative; aspect-ratio: 9/16; overflow: hidden; }
.video-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60px; height: 60px; background: rgba(212,160,23,.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  color: var(--oak); transition: transform .3s;
}
.video-card:hover .video-play { transform: translate(-50%, -50%) scale(1.1); }
.video-platform {
  position: absolute; bottom: 12px; left: 12px;
  padding: 4px 12px; border-radius: 12px; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
}
.platform-reels { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.platform-tiktok { background: #000; color: #ff0050; }
.platform-shorts { background: #ff0000; color: white; }
.video-card-body { padding: 20px; }
.video-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; color: var(--oak); }
.video-desc { font-size: .9rem; color: #666; line-height: 1.6; margin-bottom: 1rem; }
.video-stats { display: flex; gap: 1rem; font-size: .85rem; color: var(--copper); }
.social-card { text-align: center; }
.social-card p { color: var(--cream); margin: .5rem 0 1rem; font-weight: 600; }

/* === Shop Page === */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2rem; }
.product-card {
  background: var(--cream); border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.08); transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.15); }
.product-image { position: relative; aspect-ratio: 1; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--copper); color: var(--cream); padding: 4px 12px;
  border-radius: 12px; font-size: .7rem; font-weight: 700; text-transform: uppercase;
}
.product-body { padding: 20px; display: flex; flex-direction: column; gap: .5rem; flex-grow: 1; }
.product-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--oak); }
.product-desc { font-size: .85rem; color: #666; line-height: 1.6; flex-grow: 1; }
.product-price { font-size: 1.4rem; font-weight: 700; color: var(--amber); margin: .5rem 0; }
.cookbook-section { padding: 4rem 0; }
.cookbook-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: center; }
.cookbook-image-wrap { text-align: center; }
.cookbook-cover-img {
  max-width: 100%; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.5);
  transform: rotate(-2deg);
}
.cookbook-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.cookbook-feature { color: var(--cream); font-size: .9rem; padding: 8px 0; }
.cookbook-price-row { display: flex; align-items: center; gap: 2rem; margin-top: 1.5rem; flex-wrap: wrap; }
.cookbook-price { display: flex; flex-direction: column; }
.price-amount { font-size: 2rem; font-weight: 800; color: var(--amber); }
.price-label { font-size: .85rem; color: rgba(245,239,224,.7); }
.gift-bundle {
  background: var(--cream); border-radius: 12px; padding: 2rem; max-width: 600px; margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
.gift-bundle-content h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--oak); margin-bottom: 1rem; }
.gift-bundle-content .ingredient-list { margin: 1rem 0 1.5rem; }
.bundle-price { display: flex; align-items: baseline; gap: 1rem; margin: 1rem 0 1.5rem; flex-wrap: wrap; }
.bundle-original { text-decoration: line-through; color: #999; font-size: 1.2rem; }
.bundle-sale { font-size: 2rem; font-weight: 800; color: var(--amber); }
.bundle-save { background: var(--copper); color: var(--cream); padding: 4px 12px; border-radius: 12px; font-size: .8rem; font-weight: 700; }
.btn-full { width: 100%; }

/* === Newsletter Page === */
.newsletter-signup-card {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 0;
  background: var(--cream); border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.1);
}
.newsletter-signup-content { padding: 3rem; }
.newsletter-signup-image img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
.newsletter-form-centered { max-width: 500px; margin: 0 auto; }
.newsletter-fineprint { font-size: .8rem; color: #999; margin-top: 1rem; }
.newsletter-sample {
  max-width: 700px; margin: 0 auto; background: white; border-radius: 12px;
  overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,.12);
}
.newsletter-sample-header {
  background: var(--oak); padding: 2rem; text-align: center;
  border-bottom: 3px solid var(--amber);
}
.newsletter-sample-brand .brand-script { font-size: 2.5rem; color: var(--amber); }
.newsletter-sample-brand .brand-sub { display: block; color: var(--cream); letter-spacing: 4px; font-size: .9rem; }
.newsletter-sample-meta { margin-top: 1rem; }
.newsletter-issue { color: rgba(245,239,224,.7); font-size: .85rem; }
.newsletter-sample-body { padding: 2.5rem; }
.newsletter-sample-title { font-family: var(--font-serif); font-size: 1.8rem; color: var(--oak); margin-bottom: 1rem; }
.newsletter-sample-greeting { font-weight: 600; color: var(--oak); font-size: 1.1rem; }
.newsletter-section { margin: 2rem 0; padding-bottom: 2rem; border-bottom: 1px solid rgba(0,0,0,.06); }
.newsletter-section:last-child { border-bottom: none; }
.newsletter-section-dark {
  background: var(--oak); padding: 2rem; border-radius: 10px; color: var(--cream);
  border-bottom: none; margin: 2rem -1rem;
}
.newsletter-section-heading { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--oak); margin-bottom: 1rem; }
.newsletter-section-heading.light { color: var(--cream); }
.newsletter-footer-note { margin-top: 2rem; padding-top: 2rem; border-top: 2px solid var(--amber); font-size: .9rem; }
.newsletter-footer-note a { color: var(--copper); }
.newsletter-unsub { font-size: .8rem; color: #999; margin-top: 1rem; }

/* === Contact Page === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info p { line-height: 1.8; margin-bottom: 1rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.contact-method { display: flex; align-items: center; gap: 1rem; }
.contact-icon { font-size: 1.8rem; width: 50px; height: 50px; background: rgba(212,160,23,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method h4 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--oak); margin-bottom: 4px; }
.contact-method p { color: #666; margin: 0; font-size: .95rem; }
.contact-form-wrap { background: var(--cream); border-radius: 12px; padding: 2rem; box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.contact-form-title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--oak); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.form-field label { font-size: .85rem; font-weight: 600; color: var(--oak); }
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 16px; border: 2px solid #ddd; border-radius: 8px;
  font-family: var(--font-body); font-size: .95rem; transition: border-color .3s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--amber);
}
.form-fineprint { font-size: .8rem; color: #999; margin-top: 1rem; }

/* === FAQ Page === */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-category { margin-bottom: 3rem; }
.faq-category-heading {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700;
  color: var(--amber); margin-bottom: 1.5rem; padding-bottom: .5rem;
  border-bottom: 2px solid rgba(212,160,23,.2);
}
.faq-item { border-bottom: 1px solid rgba(0,0,0,.08); }
.faq-question {
  width: 100%; text-align: left; padding: 1.25rem 0; background: none; border: none;
  cursor: pointer; font-family: var(--font-body); font-size: 1.05rem; font-weight: 600;
  color: var(--oak); display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-question:hover { color: var(--copper); }
.faq-toggle {
  font-size: 1.5rem; color: var(--amber); flex-shrink: 0;
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; }
.faq-answer-open { max-height: 500px; padding-bottom: 1.25rem; }
.faq-answer p { color: #555; line-height: 1.7; }

/* === Legal Pages === */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--oak); margin: 2rem 0 .75rem; }
.legal-content p { line-height: 1.8; margin-bottom: 1rem; color: #444; }
.legal-content ul { margin-bottom: 1rem; padding-left: 1.5rem; }
.legal-content li { line-height: 1.7; margin-bottom: .5rem; color: #444; }
.legal-content a { color: var(--copper); }

/* === Digital Business Card === */
.card-page {
  background: linear-gradient(135deg, #0f0a06 0%, #1a1410 40%, #2a1f18 100%);
  min-height: 100vh;
}
.card-page-wrapper {
  display: flex; align-items: center; justify-content: center;
  min-height: calc(100vh - 70px); padding: 2rem 1rem;
}
.card-photo-wrap { text-align: center; margin-top: -40px; padding: 0 2rem; }
.card-photo {
  width: 180px; height: 180px; border-radius: 50%; object-fit: cover;
  border: 5px solid var(--amber); box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.card-brand-tag { color: rgba(245,239,224,.6); font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; }
.card-company { color: var(--copper); font-weight: 600; margin: .25rem 0; }
.card-motto {
  font-family: var(--font-script); font-size: 1.6rem; color: var(--amber);
  margin: 1rem 0 1.5rem; line-height: 1.4;
}
.card-footer-brand { text-align: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(245,239,224,.1); }
.card-site-link { color: var(--amber); font-weight: 600; text-decoration: none; }
.card-share-note { color: rgba(245,239,224,.5); font-size: .8rem; margin-top: .5rem; }

/* === Responsive === */
@media (max-width: 968px) {
  .about-grid, .about-grid.reverse, .recipe-detail, .cookbook-grid,
  .newsletter-signup-card, .contact-grid { grid-template-columns: 1fr; }
  .about-grid.reverse .about-image-wrap { order: 0; }
  .recipe-card-featured { grid-column: span 1; }
  .cookbook-features { grid-template-columns: 1fr; }
  .newsletter-signup-image { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .recipe-detail-meta { flex-direction: column; gap: 1rem; }
  .cookbook-price-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .video-stats { flex-wrap: wrap; gap: .75rem; }
}

/* === Nav Toggle Active State === */
.nav-toggle-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle-active span:nth-child(2) { opacity: 0; }
.nav-toggle-active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* === Navbar Scrolled === */
.navbar-scrolled {
  background: rgba(15,10,6,.98);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}

/* === FAQ Answer Base === */
.faq-answer { padding: 0; }
