/* =========================================
   Doing Derby — Southern Lifestyle Brand
   ========================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --hunter:    #1a3a2a;
  --emerald:   #234233;
  --sage:      #5e7a6a;
  --gold:      #c9a96e;
  --gold-light:#dcc99a;
  --cream:     #faf5eb;
  --linen:     #f3ece0;
  --warm-white:#fffdf8;
  --burgundy:  #722f37;
  --charcoal:  #2c2c2c;
  --text:      #3a3a3a;
  --text-light:#6b6b6b;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', 'Georgia', serif;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--hunter); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--hunter);
}

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

/* --- Utility --- */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.section-label {
  font-family: 'Lora', serif;
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

/* ─── Top Bar ─── */
.top-bar {
  background: var(--hunter);
  color: var(--gold-light);
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 16px;
  font-family: 'Lora', serif;
}

/* ─── Header / Nav ─── */
.site-header {
  background: var(--warm-white);
  border-bottom: 1px solid var(--linen);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-group img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--hunter);
  letter-spacing: 1px;
}
.logo-tagline {
  display: block;
  font-family: 'Lora', serif;
  font-size: .65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: -2px;
}

/* Main nav */
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-family: 'Lora', serif;
  font-size: .85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color .25s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}
.main-nav a:hover { color: var(--hunter); }
.main-nav a:hover::after { width: 100%; }

/* Shop button in nav */
.nav-shop-btn {
  background: var(--hunter);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 600;
  transition: background .25s;
}
.nav-shop-btn:hover { background: var(--emerald); }
.nav-shop-btn::after { display: none !important; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--hunter);
  margin: 5px 0;
  border-radius: 2px;
  transition: .3s;
}

/* ─── Hero ─── */
.hero {
  background: linear-gradient(160deg, var(--hunter) 0%, #1e4d36 50%, var(--emerald) 100%);
  color: #fff;
  text-align: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
}
.hero .hero-sub {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
}
.hero p {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.8;
  opacity: .92;
  position: relative;
}
.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 28px;
  position: relative;
}

/* ─── Hero Banner ─── */
.hero-banner {
  width: 100%;
  padding: 0 24px;
  position: relative;
}
.hero-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 8px 0;
}
.hero-banner-left,
.hero-banner-right {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold);
  min-width: 80px;
}
.hero-banner-est {
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-style: italic;
  color: var(--gold-light);
}
.hero-banner-year {
  font-size: 1.3rem;
  letter-spacing: 4px;
  color: var(--gold);
}
.hero-banner-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.dd-monogram-svg {
  width: 120px;
  height: 102px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.25));
}
.hero-banner-name {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: none;
  margin: 0;
  line-height: 1;
}
.hero-banner-rule {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
  margin: 6px 0;
}
.hero-banner-rule--thin {
  height: 1px;
  opacity: .5;
}
.hero-banner-subtitle {
  font-family: 'Lora', serif;
  font-size: .82rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 10px 0;
}

/* Hero centered layout */
.hero-centered {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-centered .hero-bullets {
  list-style: none;
  margin: 28px 0 36px;
  padding: 0;
  columns: 2;
  column-gap: 56px;
  text-align: left;
}
.hero-centered .hero-bullets li {
  font-family: 'Lora', serif;
  font-size: .88rem;
  color: var(--gold);
  padding: 7px 0;
  padding-left: 26px;
  position: relative;
  break-inside: avoid;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.hero-centered .hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  background: url('images/dogwood-bullet-gold.svg') no-repeat center / contain;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: 'Lora', serif;
  font-size: .88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--hunter);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-hunter {
  background: var(--hunter);
  color: #fff;
}
.btn-hunter:hover { background: var(--emerald); transform: translateY(-1px); }
.btn-burgundy {
  background: var(--burgundy);
  color: #fff;
}
.btn-burgundy:hover { opacity: .9; transform: translateY(-1px); }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* Dogwood flower bullets — for use on light backgrounds */
.dogwood-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background: url('images/dogwood-bullet.svg') no-repeat center / contain;
}

/* ─── Section Spacing ─── */
.section {
  padding: 80px 0;
}
.section--cream { background: var(--cream); }
.section--linen { background: var(--linen); }
.section--hunter { background: var(--hunter); color: #fff; }
.section--hunter h2,
.section--hunter h3 { color: #fff; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}
.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}
.section--hunter .section-header p { color: var(--gold-light); }

.gold-rule {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 20px;
  border: none;
}

/* ─── Guide Preview ─── */
.guide-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.guide-mockup {
  background: var(--hunter);
  border-radius: 8px;
  padding: 48px 36px;
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.15);
  position: relative;
}
.guide-mockup::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  opacity: .3;
  pointer-events: none;
}
.guide-mockup h3 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.guide-mockup-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
}
.guide-mockup .guide-subtitle {
  font-size: .88rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.guide-mockup p {
  font-size: .95rem;
  opacity: .85;
  line-height: 1.7;
}

.guide-content h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
.guide-content > p {
  margin-bottom: 20px;
  line-height: 1.85;
}

.toc-preview {
  list-style: none;
  margin: 24px 0 32px;
}
.toc-preview li {
  padding: 12px 0;
  border-bottom: 1px solid var(--linen);
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: .97rem;
}
.toc-preview li:last-child { border-bottom: none; }
.toc-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
  min-width: 28px;
}

/* ─── Content Topics Grid ─── */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.topic-card {
  background: var(--warm-white);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--linen);
  transition: transform .3s, box-shadow .3s;
}
.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.topic-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.topic-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.topic-card p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── Featured Product (Cinnamon Rolls) ─── */
.product-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.product-image-wrap {
  background: var(--linen);
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-image-placeholder {
  text-align: center;
  padding: 40px;
}
.product-image-placeholder .placeholder-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 12px;
}
.product-image-placeholder span {
  font-family: 'Lora', serif;
  font-size: .85rem;
  color: var(--sage);
  letter-spacing: 1px;
}
.product-info h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.product-info .product-tagline {
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.product-info p {
  margin-bottom: 18px;
  line-height: 1.85;
}
.product-details {
  list-style: none;
  margin: 20px 0 28px;
}
.product-details li {
  padding: 6px 0;
  font-size: .93rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-details li::before {
  content: '\2727';
  color: var(--gold);
  font-size: 1rem;
}

/* ─── Shop Grid ─── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.shop-card {
  background: var(--warm-white);
  border: 1px solid var(--linen);
  border-radius: 10px;
  padding: 32px 26px 28px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.08);
}
.shop-card--featured {
  background: var(--hunter);
  border-color: var(--hunter);
  color: #fff;
}
.shop-card--featured h3 { color: var(--gold); }
.shop-card--featured .shop-card-list li { color: rgba(255,255,255,.85); }
.shop-card--featured .shop-card-list li::before { color: var(--gold-light); }
.shop-card-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 14px;
}
.shop-card h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--hunter);
}
.shop-card-list {
  list-style: none;
  text-align: left;
  margin: 0 0 20px;
  padding: 0;
  flex: 1;
}
.shop-card-list li {
  font-size: .86rem;
  color: var(--text-light);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.shop-card-list li::before {
  content: '\2727';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .8rem;
}
.btn-sm {
  padding: 10px 24px;
  font-size: .8rem;
}

/* ─── Shopify Banner ─── */
.shopify-banner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.shopify-banner h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.shopify-banner p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 20px;
}
.shopify-features {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 0 0 28px;
  padding: 0;
}
.shopify-features li {
  font-family: 'Lora', serif;
  font-size: .85rem;
  color: var(--text);
  letter-spacing: .5px;
}
.shopify-features li::before {
  content: '\2713';
  color: var(--gold);
  margin-right: 8px;
  font-weight: 700;
}

/* ─── Bourbon & Lifestyle Section ─── */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.lifestyle-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 36px 28px;
  transition: background .3s;
}
.lifestyle-card:hover { background: rgba(255,255,255,.1); }
.lifestyle-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--gold);
}
.lifestyle-card p {
  font-size: .93rem;
  line-height: 1.75;
  opacity: .88;
}

/* ─── Testimonial / Pull Quote ─── */
.pull-quote {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 0;
}
.pull-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--hunter);
  line-height: 1.5;
  margin-bottom: 20px;
}
.pull-quote cite {
  font-family: 'Lora', serif;
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ─── Newsletter ─── */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--linen);
  border-radius: 4px;
  font-family: 'Lora', serif;
  font-size: .92rem;
  background: var(--warm-white);
  color: var(--text);
}
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
}

/* ─── Footer ─── */
.site-footer {
  background: var(--hunter);
  color: rgba(255,255,255,.8);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-text { color: #fff; font-size: 1.4rem; }
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  opacity: .75;
  margin-top: 12px;
}
.footer-col h4 {
  font-family: 'Lora', serif;
  font-size: .78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .88rem;
  padding: 4px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  text-align: center;
  font-size: .8rem;
  opacity: .6;
}

/* ─── Inner Page Styles ─── */
.page-hero {
  background: linear-gradient(160deg, var(--hunter), var(--emerald));
  color: #fff;
  padding: 70px 24px 60px;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: 2.6rem; margin-bottom: 12px; }
.page-hero p { color: var(--gold-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.page-content {
  padding: 60px 0;
}
.page-content .container { max-width: 800px; }
.page-content h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
  margin-bottom: 18px;
  line-height: 1.85;
}
.page-content ul, .page-content ol {
  margin: 0 0 18px 24px;
}
.page-content li {
  padding: 4px 0;
  line-height: 1.8;
}

.breadcrumb {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* Guide chapter preview list (inner page) */
.chapter-list {
  list-style: none;
  counter-reset: chapter;
}
.chapter-list li {
  counter-increment: chapter;
  padding: 20px 0;
  border-bottom: 1px solid var(--linen);
}
.chapter-list li::before {
  content: 'Chapter ' counter(chapter);
  display: block;
  font-family: 'Lora', serif;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.chapter-list h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.chapter-list p {
  font-size: .92rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ─── Derby Tip Callout ─── */
.derby-tip {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 28px 32px;
  margin: 36px 0;
}
.derby-tip h4 {
  font-family: 'Lora', serif;
  font-size: .78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.derby-tip p {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0;
}

/* ─── Guide Epigraph ─── */
.guide-epigraph {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--hunter);
  line-height: 1.6;
  margin: 0;
}
.guide-subtitle-banner {
  padding: 40px 0;
}

/* ─── Photo Placeholders ─── */
.photo-feature {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.photo-placeholder {
  background: linear-gradient(135deg, var(--linen) 0%, var(--cream) 100%);
  border: 2px dashed var(--gold-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.photo-placeholder--wide {
  height: 320px;
  margin-bottom: 0;
}
.photo-placeholder--half {
  height: 240px;
}
.photo-placeholder-label {
  font-family: 'Lora', serif;
  font-size: .85rem;
  color: var(--sage);
  letter-spacing: 1px;
  font-style: italic;
  text-align: center;
  padding: 20px;
}
.photo-feature-inline {
  margin: 32px 0;
}
.photo-placeholder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .guide-preview,
  .product-spotlight { grid-template-columns: 1fr; gap: 40px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .shopify-features { flex-direction: column; gap: 8px; }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.4rem; }
  .hero-banner-name { font-size: 2.8rem; letter-spacing: 1px; }
  .dd-monogram-svg { width: 100px; height: 85px; }
  .hero-banner-content { gap: 18px; }
  .hero-banner-left, .hero-banner-right { min-width: 60px; }
  .hero-banner-year { font-size: 1.1rem; }
  .photo-placeholder-grid { grid-template-columns: 1fr; }
  .photo-placeholder--wide { height: 240px; }
}

@media (max-width: 640px) {
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--linen);
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .main-nav.active { display: flex; }
  .nav-toggle { display: block; position: absolute; right: 24px; }
  .guide-epigraph { font-size: 1.15rem; }
  .photo-placeholder--wide { height: 180px; }
  .photo-placeholder--half { height: 160px; }
  .topics-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0; }
  .hero h1 { font-size: 2rem; }
  .hero-banner-name { font-size: 2.2rem; letter-spacing: 0.5px; }
  .dd-monogram-svg { width: 80px; height: 68px; }
  .hero-banner-content { gap: 12px; flex-wrap: wrap; }
  .hero-banner-left, .hero-banner-right { min-width: auto; }
  .hero-banner-est { font-size: .8rem; }
  .hero-banner-year { font-size: .95rem; letter-spacing: 3px; }
  .hero-banner-subtitle { font-size: .72rem; letter-spacing: 2.5px; }
  .hero-centered .hero-bullets { columns: 1; }
  .hero-centered .hero-bullets li { font-size: .8rem; letter-spacing: 1px; }
  .hero-logo-group { flex-direction: column; text-align: center; gap: 10px; }
  .hero-buttons { justify-content: center; }
  .section { padding: 50px 0; }
  .newsletter-form { flex-direction: column; }
}
