/* ============================================================
   GERVASONI'S RESTAURANT — styles.css
   Heritage steakhouse · Modesto · Since 1975
   ============================================================ */

/* ---- Design tokens ---- */
:root {
  /* Palette: deep burgundy, parchment cream, charcoal, brass */
  --ink:        #1a1110;   /* near-black, warm */
  --ink-soft:   #3a2a25;
  --paper:      #f5ede0;   /* warm cream / parchment */
  --paper-2:    #ece1cd;   /* slightly deeper parchment */
  --paper-3:    #e2d4b8;
  --burgundy:   #6b1a1f;   /* deep ox-blood, matches the red booths */
  --burgundy-d: #4a1115;
  --brass:      #b88c3a;   /* antique gold */
  --brass-l:    #d6a851;
  --walnut:     #2e1a12;   /* deep wood */
  --rule:       rgba(26, 17, 16, 0.18);

  /* Type */
  --display: "Cormorant Garamond", "Hoefler Text", "Garamond", Georgia, serif;
  --body:    "Lora", Georgia, "Times New Roman", serif;

  /* Spacing rhythm */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --maxw: 1240px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding-block: var(--section-y); }

/* ============================================================
   Typography
   ============================================================ */
.eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin: 0 0 1rem;
}
.eyebrow--light { color: var(--brass-l); }

.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
  color: var(--ink);
}
.section-title--center { text-align: center; margin-inline: auto; }
.section-title--light  { color: var(--paper); }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}
.section-sub {
  font-size: 1.075rem;
  color: var(--ink-soft);
  margin: 0;
}

.link-underline {
  color: var(--burgundy);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color .18s ease;
}
.link-underline:hover { color: var(--burgundy-d); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.btn--solid {
  background: var(--burgundy);
  color: var(--paper);
}
.btn--solid:hover { background: var(--burgundy-d); }

.btn--outline {
  background: transparent;
  color: var(--paper);
  border-color: rgba(245, 237, 224, 0.55);
}
.btn--outline:hover {
  background: var(--paper);
  color: var(--burgundy);
  border-color: var(--paper);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn--gold {
  background: var(--brass);
  color: var(--walnut);
}
.btn--gold:hover { background: var(--brass-l); }

.btn--full { width: 100%; }
.btn--header { padding: 0.7rem 1.1rem; font-size: 0.74rem; }

/* ============================================================
   Top strip + Header
   ============================================================ */
.top-strip {
  background: var(--walnut);
  color: var(--paper-2);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-block: 0.65rem;
}
.top-strip__item { color: inherit; }
.top-strip__item:hover { color: var(--brass-l); }
.top-strip__divider { color: var(--brass); opacity: 0.7; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--rule);
  box-shadow: 0 6px 24px -16px rgba(26, 17, 16, 0.25);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--burgundy);
  color: var(--paper);
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 2px 8px -4px rgba(0,0,0,.3);
}
.brand__wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: -0.01em;
}
.brand__sub {
  margin-top: 4px;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav a {
  position: relative;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  padding: 0.25rem 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -3px;
  height: 1px;
  background: var(--burgundy);
  transition: right .25s ease;
}
.nav a:hover { color: var(--burgundy); }
.nav a:hover::after { right: 0; }

/* Mobile nav button */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem var(--gutter) 1.75rem;
  background: var(--paper);
  border-top: 1px solid var(--rule);
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a {
  padding: 0.85rem 0;
  font-family: var(--display);
  font-size: 1.35rem;
  border-bottom: 1px solid var(--rule);
}
.mobile-nav a:last-of-type { border-bottom: 0; }
.mobile-nav .btn { margin-top: 0.75rem; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--walnut);
}
.hero__image {
  position: absolute; inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(184, 140, 58, 0.22), transparent 70%),
    linear-gradient(180deg, #2a1812 0%, #1a0e0a 60%, #0f0807 100%);
  /* TO ADD A PHOTO: replace background-image with a layered url() to images/hero.jpg
     Example:
     background-image:
       linear-gradient(180deg, rgba(15,8,7,0.45) 0%, rgba(15,8,7,0.75) 100%),
       url("images/hero.jpg");
     background-size: cover;
     background-position: center;
  */
}
.hero__veil {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 80%, rgba(107, 26, 31, 0.35), transparent 50%),
    linear-gradient(180deg, rgba(15,8,7,0.15) 0%, rgba(15,8,7,0.55) 100%);
  pointer-events: none;
}
/* Subtle decorative grain */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 2;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  color: var(--paper);
  padding-block: clamp(4rem, 12vw, 7rem);
  max-width: 820px;
}
.hero .eyebrow {
  color: var(--brass-l);
}
.hero__title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(3.5rem, 12vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  color: var(--paper);
}
.hero__title span {
  display: inline-block;
  position: relative;
}
.hero__title span::after {
  content: "";
  display: block;
  width: 96px;
  height: 1px;
  margin-top: 1.5rem;
  background: var(--brass);
}
.hero__lede {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.55;
  color: rgba(245, 237, 224, 0.85);
  max-width: 580px;
  margin: 0 0 2rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 237, 224, 0.55);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--brass), transparent);
  animation: lineDrop 2.4s ease-in-out infinite;
}
@keyframes lineDrop {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50%      { transform: scaleY(0.4); transform-origin: top; }
}

/* ============================================================
   Story
   ============================================================ */
.story {
  background: var(--paper);
  position: relative;
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.story__image {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.18), transparent 50%),
    repeating-linear-gradient(
      45deg,
      rgba(46, 26, 18, 0.06) 0,
      rgba(46, 26, 18, 0.06) 2px,
      transparent 2px,
      transparent 6px
    ),
    linear-gradient(160deg, #2e1a12 0%, #6b1a1f 100%);
  /* TO ADD A PHOTO: background-image: url("images/story.jpg"); background-size: cover; background-position: center; */
  box-shadow:
    0 1px 0 var(--paper-3) inset,
    0 30px 60px -30px rgba(26, 17, 16, 0.45),
    0 0 0 1px var(--paper-3);
  position: relative;
}
.story__image::after {
  content: "EST. 1975";
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--brass);
  color: var(--walnut);
  padding: 0.8rem 1.2rem;
  font-family: var(--body);
  font-weight: 600;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  box-shadow: 0 8px 24px -10px rgba(0,0,0,0.4);
}

.story__copy p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 0 1.15rem;
}
.story__copy em { color: var(--burgundy); font-style: italic; }

.story__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.story__meta-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.story__meta-value {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--ink);
}

/* ============================================================
   Menu / Specialties
   ============================================================ */
.menu {
  background: var(--paper-2);
  position: relative;
}
.menu::before, .menu::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(180px, 30vw, 320px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.menu::before { top: 3rem; }
.menu::after  { bottom: 3rem; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.dish {
  background: var(--paper);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.dish:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -30px rgba(26, 17, 16, 0.35);
}
.dish__image {
  aspect-ratio: 4 / 3;
  /* Decorative placeholder; replace with photo when ready */
  background-color: var(--walnut);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
/* Distinct color-fields per dish so the placeholders read as deliberate, not broken */
.dish__image[data-dish="prime-rib"] { background-image: linear-gradient(135deg, #4a1115 0%, #6b1a1f 60%, #2e1a12 100%); }
.dish__image[data-dish="lamb"]      { background-image: linear-gradient(135deg, #2e1a12 0%, #6b1a1f 100%); }
.dish__image[data-dish="salmon"]    { background-image: linear-gradient(135deg, #5a2f24 0%, #b88c3a 100%); }
.dish__image[data-dish="marsala"]   { background-image: linear-gradient(135deg, #3a2a25 0%, #b88c3a 100%); }
.dish__image[data-dish="calamari"]  { background-image: linear-gradient(135deg, #2e1a12 0%, #b88c3a 100%); }
.dish__image[data-dish="filet-sole"]{ background-image: linear-gradient(135deg, #1a1110 0%, #6b1a1f 100%); }

/* TO REPLACE WITH PHOTOS: in a separate CSS rule (e.g. at the bottom of the file), do:
   .dish__image[data-dish="prime-rib"] { background-image: url("images/prime-rib.jpg"); }
   ...etc. */

.dish__image::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(184,140,58,0.15), transparent 65%);
  pointer-events: none;
}
.dish__body {
  padding: 1.6rem 1.6rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dish__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 0.6rem;
  line-height: 1.15;
  color: var(--ink);
}
.dish__desc {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
  flex: 1;
}
.dish__tag {
  align-self: flex-start;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--burgundy);
}

.menu__footnote {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  color: var(--ink-soft);
  font-style: italic;
  font-size: 1rem;
}

/* ============================================================
   Basque Night
   ============================================================ */
.basque {
  background:
    linear-gradient(180deg, rgba(15,8,7,0.55), rgba(15,8,7,0.85)),
    linear-gradient(135deg, #2e1a12 0%, #6b1a1f 60%, #1a0e0a 100%);
  /* TO ADD A PHOTO BACKGROUND:
     background:
       linear-gradient(180deg, rgba(15,8,7,0.55), rgba(15,8,7,0.85)),
       url("images/basque-bg.jpg") center/cover no-repeat;
  */
  color: var(--paper);
  padding-block: clamp(5rem, 10vw, 9rem);
  position: relative;
  overflow: hidden;
}
.basque::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  border: 1px solid rgba(184, 140, 58, 0.25);
  border-radius: 50%;
}
.basque::after {
  content: "";
  position: absolute;
  bottom: -180px; left: -180px;
  width: 480px; height: 480px;
  border: 1px solid rgba(184, 140, 58, 0.15);
  border-radius: 50%;
}

.basque__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}
.basque__copy p {
  color: rgba(245, 237, 224, 0.82);
  font-size: 1.075rem;
  margin: 0 0 1.1rem;
}
.basque__copy .btn { margin-top: 0.85rem; }
.basque__image {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 30% 30%, rgba(184,140,58,0.4), transparent 50%),
    linear-gradient(135deg, #1a0e0a 0%, #4a1115 100%);
  border: 1px solid rgba(184, 140, 58, 0.35);
  position: relative;
  /* TO ADD A PHOTO: background: url("images/basque.jpg") center/cover no-repeat; */
}
.basque__image::before {
  content: "Wed";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--brass);
  opacity: 0.45;
  letter-spacing: -0.02em;
}

/* ============================================================
   The Bar
   ============================================================ */
.bar {
  background: var(--paper);
}
.bar__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.bar__image {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(184, 140, 58, 0.25), transparent 60%),
    linear-gradient(160deg, #2e1a12 0%, #4a1115 50%, #1a0e0a 100%);
  /* TO ADD A PHOTO: background: url("images/bar.jpg") center/cover no-repeat; */
  position: relative;
  box-shadow:
    0 30px 60px -30px rgba(26, 17, 16, 0.45),
    0 0 0 1px var(--paper-3);
}
.bar__image::after {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(184, 140, 58, 0.35);
  pointer-events: none;
}

.bar__copy em { font-style: italic; color: var(--burgundy); }
.bar__copy > p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}
.bar__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid var(--rule);
}
.bar__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
}
.bar__list-name {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
}
.bar__list-note {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: right;
}

/* ============================================================
   Visit
   ============================================================ */
.visit {
  background: var(--paper-2);
  position: relative;
}
.visit__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.visit__card {
  background: var(--paper);
  padding: 2rem 1.8rem 2.2rem;
  border: 1px solid var(--rule);
  position: relative;
}
.visit__card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.55rem;
  margin: 0 0 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--rule);
}
.visit__card p, .visit__card address {
  margin: 0 0 0.75rem;
  font-style: normal;
  color: var(--ink-soft);
}
.visit__card a:not(.btn) { color: var(--burgundy); }
.visit__card a:not(.btn):hover { color: var(--burgundy-d); }
.visit__phone a {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}
.visit__card .btn { margin-top: 0.5rem; }

.hours {
  margin: 0;
  display: grid;
  gap: 0.55rem;
}
.hours > div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.hours dt {
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--ink);
  padding-top: 3px;
}
.hours dd { margin: 0; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--walnut);
  color: var(--paper-2);
  padding-block: clamp(3rem, 6vw, 5rem) 1.5rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.footer__brand { display: flex; align-items: center; gap: 1rem; }
.footer__mark {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--burgundy);
  color: var(--paper);
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
}
.footer__name {
  font-family: var(--display);
  font-size: 1.6rem;
  margin: 0;
  color: var(--paper);
}
.footer__sub {
  margin: 4px 0 0;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-l);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.footer__heading {
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-l);
  margin: 0 0 0.85rem;
}
.footer__cols p {
  margin: 0 0 0.35rem;
  color: rgba(245, 237, 224, 0.78);
  font-size: 0.98rem;
}
.footer__cols a { transition: color .18s ease; }
.footer__cols a:hover { color: var(--brass-l); }

.footer__rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,140,58,0.35), transparent);
  margin: 3rem 0 1.25rem;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(245, 237, 224, 0.55);
}
.footer__credit { font-style: italic; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .nav, .btn--header { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav:not([hidden]) { display: flex; }

  .story__grid,
  .basque__grid,
  .bar__grid {
    grid-template-columns: 1fr;
  }

  .story__image,
  .bar__image {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }
  .story__image::after { right: 12px; bottom: -16px; }
  .basque__image { max-width: 460px; margin: 0 auto; }

  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .top-strip { font-size: 0.7rem; }
  .top-strip__inner { padding-block: 0.55rem; }

  .brand__sub { display: none; }

  .hero { min-height: 80vh; }
  .hero__title span::after { width: 64px; margin-top: 1.1rem; }
  .hero__actions .btn { flex: 1 1 100%; }

  .story__meta { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .story__meta > div:nth-child(3) { grid-column: 1 / -1; }

  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }

  .bar__list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .bar__list-note { text-align: left; }
}

@media (max-width: 380px) {
  .footer__cols { grid-template-columns: 1fr; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Print
   ============================================================ */
@media print {
  .site-header, .top-strip, .hero__scroll, .nav-toggle, .mobile-nav { display: none; }
  body { background: white; color: black; }
}
