/* ============================================================
   Michaela K Bellisario — Editorial Design System
   Palette: cream / ink / Ruby Woo red
   ============================================================ */

:root {
  --cream: #FAF6F0;
  --cream-dark: #F1EAE0;
  --ink: #16130F;
  --ink-soft: #4A443C;
  --red: #C41E3A;          /* Ruby Woo */
  --red-dark: #9E1730;
  --gold: #B9975B;
  --white: #FFFFFF;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1200px;
  --radius: 6px;
  --shadow: 0 20px 60px rgba(22, 19, 15, 0.12);
  --transition: 0.35s cubic-bezier(0.25, 0.8, 0.35, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ---------- Language toggle ---------- */
html[data-lang="it"] .en { display: none !important; }
html[data-lang="en"] .it { display: none !important; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
p  { color: var(--ink-soft); }

a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.section-title { margin-bottom: 0.75rem; }
.section-sub { max-width: 640px; margin: 0 auto 3rem; text-align: center; }

/* ---------- Layout ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
.section-alt { background: var(--white); }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn:hover { background: var(--ink); color: var(--cream); }
.btn-red { background: var(--red); border-color: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.btn-light { border-color: var(--cream); color: var(--cream); }
.btn-light:hover { background: var(--cream); color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(22, 19, 15, 0.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(22, 19, 15, 0.08); }

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas:
    "lang logo cta"
    "nav  nav  nav";
  align-items: center;
  column-gap: 24px;
}

.logo { grid-area: logo; justify-self: center; }

/* children of .header-actions become grid items */
.header-actions { display: contents; }
.header-actions .nav-cta { grid-area: cta; justify-self: end; }
.lang-switch { grid-area: lang; justify-self: start; }
.nav-toggle { grid-area: cta; justify-self: end; }

.logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.logo span { color: var(--red); }
.logo:hover { color: var(--ink); }

/* Script logo image (white bg blends into cream header) */
.logo-img {
  height: 58px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.main-nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 13px 0;
  margin-top: 12px;
  border-top: 1px solid rgba(22, 19, 15, 0.08);
}
.main-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a:hover, .main-nav a.active { color: var(--ink); }

.nav-cta {
  border: 1.5px solid var(--ink);
  color: var(--ink) !important;
  padding: 9px 20px !important;
  border-radius: 100px;
  white-space: nowrap;
  transition: all var(--transition);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--ink); color: var(--cream) !important; }

/* Language switch */
.lang-switch {
  display: flex;
  border: 1.5px solid rgba(22,19,15,0.2);
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-switch button {
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all var(--transition);
}
.lang-switch button.active { background: var(--ink); color: var(--cream); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: 180px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow-mobile { display: none; }
.hero h1 { margin: 0.5rem 0 1.5rem; }
.hero h1 em { font-style: italic; color: var(--red); }
.hero-lead { font-size: 1.15rem; max-width: 520px; margin-bottom: 2.2rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 200px 200px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; }

/* Polaroid variant: show the photo uncropped, no arch mask, slight tilt */
.hero-portrait.polaroid {
  aspect-ratio: auto;
  border-radius: 8px;
  transform: rotate(1.5deg);
}
.hero-portrait.polaroid img {
  height: auto;
  object-fit: contain;
  display: block;
}

/* ---------- Placeholder styling ---------- */
.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%; height: 100%;
  background: linear-gradient(150deg, var(--cream-dark) 0%, #E4D9C8 100%);
  color: var(--ink-soft);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
.placeholder svg { opacity: 0.4; }

/* ---------- Announcement ribbon ---------- */
.ribbon {
  background: var(--ink);
  color: var(--cream);
  padding: 12px 24px;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.ribbon a { color: var(--gold); font-weight: 600; }
.ribbon a:hover { color: var(--cream); }

/* ---------- Coming soon teaser ---------- */
.coming-soon {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.coming-soon .eyebrow { color: var(--gold); }
.coming-soon h2, .coming-soon h3 { color: var(--cream); }
.coming-soon p { color: rgba(250, 246, 240, 0.75); }

.cs-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.book-cover {
  aspect-ratio: 2 / 3;
  max-width: 340px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  transform: rotate(-2deg);
  transition: transform var(--transition);
}
.book-cover:hover { transform: rotate(0deg) scale(1.02); }
.book-cover img { width: 100%; height: 100%; object-fit: cover; }

/* Countdown */
.countdown { display: flex; gap: 20px; margin: 2rem 0; flex-wrap: wrap; }
.countdown-unit {
  text-align: center;
  min-width: 78px;
  padding: 16px 12px;
  border: 1px solid rgba(250,246,240,0.2);
  border-radius: var(--radius);
}
.countdown-unit strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold);
}
.countdown-unit small {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.6);
}

/* ---------- Newsletter / MailerLite ---------- */
.newsletter-box {
  background: var(--white);
  border: 1px solid rgba(22,19,15,0.08);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.coming-soon .newsletter-box,
.dark .newsletter-box {
  background: rgba(250,246,240,0.06);
  border-color: rgba(250,246,240,0.15);
  box-shadow: none;
}
.newsletter-form { display: flex; gap: 12px; margin-top: 1.2rem; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  font-family: var(--sans);
  font-size: 0.95rem;
  border: 1.5px solid rgba(22,19,15,0.15);
  border-radius: 100px;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input[type="email"]:focus { border-color: var(--red); }
.coming-soon .newsletter-form input[type="email"] {
  background: rgba(250,246,240,0.08);
  border-color: rgba(250,246,240,0.25);
  color: var(--cream);
}
.newsletter-note { font-size: 0.78rem; margin-top: 0.8rem; opacity: 0.65; }
.newsletter-success { display: none; margin-top: 1rem; color: var(--red); font-weight: 600; }
.coming-soon .newsletter-success { color: var(--gold); }

/* ---------- Featured book ---------- */
.featured-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 64px;
  align-items: start;
}
.book-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin: 1.6rem 0;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(22,19,15,0.1);
  border-bottom: 1px solid rgba(22,19,15,0.1);
}
.book-meta div small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
}
.book-meta div strong { font-size: 0.92rem; }

/* ---------- Audio player ---------- */
.audio-player {
  background: var(--ink);
  color: var(--cream);
  border-radius: 14px;
  padding: 32px;
  margin-top: 2rem;
}
.audio-player h3 { color: var(--cream); display: flex; align-items: center; gap: 12px; margin-bottom: 1.4rem; }
.audio-player h3 svg { color: var(--red); flex-shrink: 0; }

.audio-now {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 20px;
  margin-bottom: 8px;
}
.play-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.play-btn:hover { background: var(--red-dark); transform: scale(1.06); }
.audio-track-info { flex: 1; min-width: 0; }
.audio-track-title { font-weight: 600; font-size: 0.98rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.audio-time { font-size: 0.78rem; opacity: 0.6; font-variant-numeric: tabular-nums; }

.audio-progress {
  width: 100%;
  height: 5px;
  background: rgba(250,246,240,0.15);
  border-radius: 100px;
  cursor: pointer;
  margin-bottom: 20px;
  position: relative;
}
.audio-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--red);
  border-radius: 100px;
  transition: width 0.15s linear;
}

.chapter-list { list-style: none; }
.chapter-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition);
  border-top: 1px solid rgba(250,246,240,0.08);
}
.chapter-list li:hover { background: rgba(250,246,240,0.06); }
.chapter-list li.playing { background: rgba(196,30,58,0.18); }
.chapter-num {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  width: 28px;
  flex-shrink: 0;
  text-align: center;
}
.chapter-name { flex: 1; font-size: 0.92rem; }
.chapter-dur { font-size: 0.78rem; opacity: 0.55; font-variant-numeric: tabular-nums; }

/* ---------- Book grid ---------- */
.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 40px 32px;
}
.book-card { text-align: left; }
.book-card .cover {
  aspect-ratio: 2 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(22,19,15,0.15);
  margin-bottom: 18px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.book-card:hover .cover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(22,19,15,0.22);
}
.book-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.book-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.book-card .book-year { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); opacity: 0.7; }
.book-card p { font-size: 0.88rem; margin-top: 8px; }
.book-card .more-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Video embed ---------- */
.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Podcast ---------- */
.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.podcast-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.6rem; }
.podcast-badges a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid rgba(22,19,15,0.15);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  transition: all var(--transition);
}
.podcast-badges a:hover { border-color: var(--red); color: var(--red); }
.spreaker-embed { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.spreaker-embed iframe { display: block; width: 100%; border: 0; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius) 120px var(--radius) 120px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-facts { list-style: none; margin-top: 1.5rem; }
.about-facts li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(22,19,15,0.07);
}
.about-facts li::before {
  content: '';
  position: absolute;
  left: 4px; top: 20px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 170px 0 70px;
  text-align: center;
}
.page-hero p { max-width: 620px; margin: 1.2rem auto 0; font-size: 1.05rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-card {
  background: var(--white);
  border: 1px solid rgba(22,19,15,0.08);
  border-radius: 12px;
  padding: 40px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 14px;
  font-family: var(--sans);
  font-size: 0.95rem;
  border: 1.5px solid rgba(22,19,15,0.15);
  border-radius: 10px;
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--red); }

.social-row { display: flex; gap: 14px; margin-top: 1.4rem; }
.social-row a {
  width: 46px; height: 46px;
  border: 1.5px solid rgba(22,19,15,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all var(--transition);
}
.social-row a:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-3px); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(250,246,240,0.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250,246,240,0.12);
}
.site-footer h4 { color: var(--cream); font-size: 1rem; margin-bottom: 1rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer .logo { color: var(--cream); font-size: 1.5rem; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { color: rgba(250,246,240,0.7); font-size: 0.92rem; }
.site-footer ul a:hover { color: var(--cream); }
.site-footer p { color: rgba(250,246,240,0.6); font-size: 0.92rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.82rem;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer .social-row a { border-color: rgba(250,246,240,0.25); color: var(--cream); }
.site-footer .social-row a:hover { background: var(--red); border-color: var(--red); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 2000;
  background: var(--ink);
  color: var(--cream);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.cookie-banner p {
  color: rgba(250,246,240,0.85);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner .btn { padding: 11px 26px; flex-shrink: 0; }
@media (max-width: 560px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; gap: 12px; }
}

/* ---------- Legal page ---------- */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(22,19,15,0.08);
}
.legal-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.legal-content p { margin-bottom: 1rem; font-size: 0.97rem; }
.legal-content .legal-updated {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* keep the polaroid tilt through the reveal animation */
.hero-portrait.polaroid.reveal { transform: translateY(28px) rotate(1.5deg); }
.hero-portrait.polaroid.reveal.visible { transform: translateY(0) rotate(1.5deg); }
.hero-portrait.polaroid.reveal.visible:hover { transform: rotate(0deg) scale(1.01); transition: transform var(--transition); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  section { padding: 72px 0; }
  .hero { padding: 150px 0 80px; }
  .cs-grid, .featured-grid, .about-grid, .podcast-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  /* mobile hero order: eyebrow → photo → headline/copy */
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-eyebrow-mobile { display: inline-block; order: 0; margin-bottom: 20px; }
  .hero-grid .hero-portrait { order: 1; max-width: 340px; margin: 0 auto 36px; }
  .hero-grid .hero-copy { order: 2; }
  .hero-eyebrow-desktop { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  /* header is a single short row here — pull content up */
  .hero { padding: 76px 0 56px; }
  .page-hero { padding: 80px 0 40px; }
  section[style*="padding-top:170px"] { padding-top: 80px !important; }
  .nav-toggle { display: flex; }
  .header-actions .nav-cta { display: none; }
  .header-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "lang logo toggle";
    padding: 10px 16px;
    column-gap: 10px;
  }
  .logo { min-width: 0; justify-self: center; }
  .logo-img {
    height: 38px;
    max-width: 46vw;
    object-fit: contain;
  }
  .lang-switch button { padding: 6px 10px; }
  .nav-toggle { grid-area: toggle; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-top: 0;
    border-top: none;
    padding: 12px 24px 24px;
    border-bottom: 1px solid rgba(22,19,15,0.1);
    box-shadow: 0 20px 40px rgba(22,19,15,0.12);
    transform: translateY(-130%);
    transition: transform var(--transition);
    visibility: hidden;
  }
  .main-nav.open { transform: translateY(0); visibility: visible; }
  .main-nav a { padding: 13px 0; width: 100%; font-size: 0.95rem; }
  .site-header { overflow: visible; }
}


@media (max-width: 560px) {
  body { font-size: 16px; }
  .logo-img { height: 32px; max-width: 44vw; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; }
  .countdown { gap: 12px; }
  .countdown-unit { min-width: 68px; padding: 12px 8px; }
  .footer-grid { grid-template-columns: 1fr; }
  .audio-player { padding: 22px; }
  .newsletter-box, .contact-card { padding: 28px 22px; }
}
