/* ==========================================================================
   Unitedstudios — studioverhuur
   Club-creatievelingen look: cream, terracotta, Bricolage + Hanken.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Hanken+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap");

:root {
  --cream: #e5dbc8;
  --cream-soft: #efe7d8;
  --ink: #2a251e;
  --ink-soft: #4a4338;
  --muted: #756b5a;
  --accent: #bc5e3a;
  --accent-hot: #e8916b;
  --line: rgba(42, 37, 30, 0.16);
  --line-strong: rgba(42, 37, 30, 0.28);
  --wit: #fff;
  --busy: #5b6e9e;

  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --pad-x: clamp(20px, 4vw, 56px);
  --max: 1500px;
  --nav-h: 72px;
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--ink); color: var(--cream); }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
sup { font-size: 0.6em; }
ul { list-style: none; }

.container {
  width: min(var(--max), calc(100% - 2 * var(--pad-x)));
  margin-inline: auto;
}

/* Film grain */
.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Typography */
h1, h2, h3, .brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.6rem, 7.5vw, 6.5rem);
  font-weight: 700;
  max-width: 14ch;
}

h1 .accent,
h2 .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0.35em;
}

h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.lead {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 46ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.section {
  padding: clamp(48px, 7vw, 100px) 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.two-col-center { align-items: center; }

@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; }
}

/* Links & buttons */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.18s ease;
}

.arrow-link:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.15s ease;
}

.btn:active { transform: translateY(1px); }

.btn-ink {
  background: var(--ink);
  color: var(--cream);
}
.btn-ink:hover { background: var(--accent); color: var(--wit); }

.btn-accent {
  background: var(--accent);
  color: var(--wit);
}
.btn-accent:hover { background: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ---------- Nav ---------- */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px var(--pad-x);
  background: rgba(229, 219, 200, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.nav-links a:hover { opacity: 1; }

.nav-links .btn {
  opacity: 1;
}

.nav-links .btn-ink {
  background: var(--ink);
  color: var(--cream);
}

.nav-links .btn-ink:hover {
  background: var(--accent);
  color: var(--wit);
}

.nav-links .btn-accent {
  background: var(--accent);
  color: var(--wit);
}

.nav-links .btn-accent:hover {
  background: var(--ink);
  color: var(--cream);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: none;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--pad-x) 20px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 0;
    opacity: 1;
  }
  .nav-links .btn { width: fit-content; margin-top: 8px; }
}

/* ---------- Hero ---------- */

.hero {
  padding: calc(var(--nav-h) + clamp(36px, 6vw, 72px)) 0 0;
}

.hero-copy {
  padding: 0 var(--pad-x) clamp(28px, 4vw, 48px);
  max-width: var(--max);
  margin: 0 auto;
}

.hero-book {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 400px);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  margin-top: clamp(28px, 4vw, 48px);
}

.hero-book .agenda-panel {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}

.hero-book .hero-stats {
  margin-top: 22px;
}

.hero-book .legenda {
  margin-top: 20px;
}

@media (max-width: 900px) {
  .hero-book { grid-template-columns: 1fr; }
  .hero-book .agenda-panel { position: static; }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 48px);
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-num--time {
  font-size: clamp(1.35rem, 2.6vw, 2.35rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 6px;
}

.contact-line {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}

.contact-line a {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.contact-line a:hover { color: var(--ink); }

.contact-sep { color: var(--muted); }

.hero-visual {
  width: 100%;
  max-height: min(72vh, 780px);
  overflow: hidden;
  margin-top: clamp(20px, 3vw, 40px);
}

.hero-visual img {
  width: 100%;
  height: min(72vh, 780px);
  object-fit: cover;
  object-position: center;
}

/* ---------- Features / specs ---------- */

.feature-list {
  border-top: 1px solid var(--line);
  margin-top: 8px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 500;
}

.feature-item .arrow {
  color: var(--accent);
  font-weight: 700;
  line-height: 1.4;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
  margin-top: clamp(36px, 5vw, 64px);
  padding-top: clamp(28px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

.spec-col .spec-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 4px 0 10px;
}

.spec-col p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.spec-col a { color: var(--accent); font-weight: 600; }

@media (max-width: 980px) {
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .specs-grid { grid-template-columns: 1fr; }
}

.locatie-box {
  margin-top: 28px;
  padding: 20px;
  background: var(--cream-soft);
  border-radius: var(--radius);
}

.locatie-box .label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.locatie-box .addr {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin-top: 6px;
}

.locatie-box .meta {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ---------- Gallery ---------- */

.impression-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 var(--pad-x);
  max-width: calc(var(--max) + 2 * var(--pad-x));
  margin: 0 auto;
}

.impression-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  cursor: zoom-in;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.impression-grid img:hover {
  transform: scale(1.015);
  filter: brightness(1.03);
}

.impression-grid img:nth-child(1),
.impression-grid img:nth-child(6),
.impression-grid img:nth-child(11) {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
  min-height: 280px;
}

@media (max-width: 900px) {
  .impression-grid { grid-template-columns: repeat(2, 1fr); }
  .impression-grid img:nth-child(n) {
    grid-row: auto;
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(42, 37, 30, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-height: 88vh;
  max-width: min(1100px, 94vw);
  border-radius: 6px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 0;
  background: transparent;
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  padding: 8px 14px;
}

.lightbox-close { top: 16px; right: 16px; }
.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }

/* ---------- Tarieven ---------- */

.tarieven-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

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

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

@media (max-width: 720px) {
  .price-cards { grid-template-columns: 1fr; }
}

.price-card {
  background: var(--cream-soft);
  border-radius: 10px;
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.price-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.price-card-featured {
  background: var(--ink);
  color: var(--cream);
}

.price-card-featured .price-duur,
.price-card-featured ul { color: rgba(229, 219, 200, 0.7); }

.price-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-hot);
  font-weight: 600;
  margin-bottom: 4px;
}

.price-duur {
  font-size: 0.9rem;
  color: var(--muted);
}

.price-bedrag {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 4px 0 10px;
}

.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  flex: 1;
}

.price-card li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-left: 0;
}

.price-card li::before {
  content: "→ ";
  color: var(--accent);
  font-weight: 700;
}

.price-card-featured li::before { color: var(--accent-hot); }

.price-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Apparatuur ---------- */

.apparatuur-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 var(--pad-x);
  max-width: calc(var(--max) + 2 * var(--pad-x));
  margin: clamp(28px, 4vw, 44px) auto 0;
}

@media (max-width: 900px) {
  .apparatuur-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .apparatuur-grid { grid-template-columns: 1fr; }
}

.apparatuur-tile {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 240px;
  background: var(--ink);
}

.apparatuur-tile img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.45s ease, opacity 0.3s ease;
}

.apparatuur-tile:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.apparatuur-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(42, 37, 30, 0.88));
  color: var(--cream);
}

.apparatuur-tile h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.apparatuur-tile p {
  font-size: 0.88rem;
  opacity: 0.8;
  line-height: 1.4;
}

.apparatuur-tile .arrow-link {
  color: var(--accent-hot);
  margin-top: 10px;
}

/* ---------- Reserveren / agenda ---------- */

.book-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  margin-top: clamp(28px, 4vw, 48px);
}

@media (max-width: 900px) {
  .book-panel { grid-template-columns: 1fr; }
}

.agenda-panel {
  background: var(--cream-soft);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 50px -28px rgba(42, 37, 30, 0.45);
}

.agenda-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: var(--ink);
  color: var(--cream);
}

.agenda-head h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

.agenda-head .tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

.agenda-body { padding: 20px; }

.agenda-sub {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.5;
}

.home-week {
  display: grid;
  gap: 8px;
}

.home-day {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.home-day:hover {
  border-color: var(--line-strong);
  background: rgba(188, 94, 58, 0.07);
}

.home-day.is-today { border-color: var(--ink); }

.home-day-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  min-width: 7.5rem;
}

.home-day-free {
  font-size: 0.85rem;
  font-weight: 600;
  color: #3d6b45;
}

.home-day-free.is-vol { color: var(--accent); }

.home-busy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(91, 110, 158, 0.18);
  color: var(--ink-soft);
}

.home-busy.is-blok {
  background: rgba(42, 37, 30, 0.12);
}

.home-agenda-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.home-agenda-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.home-agenda-note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.home-agenda-note a:hover { text-decoration: underline; }

.legenda {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.legenda span { display: inline-flex; align-items: center; gap: 8px; }

.legenda-blok {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid var(--line-strong);
}

.legenda-vrij { background: var(--cream); }
.legenda-bezet { background: var(--busy); border-color: var(--busy); }

/* ---------- Toegang ---------- */

.toegang-visual {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--ink);
}

.toegang-visual > img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  opacity: 0.9;
}

.keypad-demo {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: min(220px, 70%);
  background: rgba(42, 37, 30, 0.92);
  color: var(--cream);
  border-radius: 12px;
  padding: 14px;
  backdrop-filter: blur(8px);
}

.keypad-display {
  text-align: center;
  padding: 10px 8px 14px;
  border-bottom: 1px solid rgba(229, 219, 200, 0.15);
  margin-bottom: 12px;
}

.keypad-display #keypadDots {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  letter-spacing: 0.35em;
  margin-bottom: 4px;
}

.keypad-status {
  font-size: 0.75rem;
  color: rgba(229, 219, 200, 0.65);
}

.keypad-display[data-state="success"] .keypad-status { color: #8fce9a; }
.keypad-display[data-state="error"] .keypad-status { color: var(--accent-hot); }

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

.keypad-grid button {
  padding: 10px 0;
  border: 0;
  border-radius: 8px;
  background: rgba(229, 219, 200, 0.1);
  color: var(--cream);
  font-weight: 600;
  transition: background 0.15s ease;
}

.keypad-grid button:hover { background: rgba(229, 219, 200, 0.2); }

.keypad-alt { background: rgba(188, 94, 58, 0.35) !important; }
.keypad-enter { background: var(--accent) !important; color: var(--wit) !important; }

/* ---------- FAQ ---------- */

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.accordion-chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  filter: invert(42%) sepia(42%) saturate(700%) hue-rotate(340deg) brightness(90%);
}

.accordion-trigger[aria-expanded="true"] .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  padding: 0 4px 8px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.accordion-foot {
  font-size: 0.88rem !important;
  color: var(--muted) !important;
  padding-bottom: 18px !important;
}

.accordion-foot a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(56px, 8vw, 110px) var(--pad-x) clamp(32px, 4vw, 48px);
}

.footer-cta {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 8vw, 7.5rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
  max-width: 14ch;
}

.footer-cta .accent {
  color: var(--accent);
  font-style: italic;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: clamp(40px, 6vw, 72px);
  padding-top: 40px;
  border-top: 1px solid rgba(229, 219, 200, 0.2);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(229, 219, 200, 0.5);
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-grid p,
.footer-menu a {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--cream);
  text-decoration: none;
}

.footer-menu li + li { margin-top: 4px; }

.footer-note {
  font-size: 0.82rem;
  color: rgba(229, 219, 200, 0.45);
}

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

.footer-bottom {
  max-width: var(--max);
  margin: 48px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(229, 219, 200, 0.5);
}

.footer-bottom .brand {
  font-size: 1.1rem;
  color: var(--cream);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-legal a {
  color: rgba(229, 219, 200, 0.5);
  text-decoration: none;
}

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

/* ---------- Motion ---------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
  .hero-copy h1 {
    animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .hero-book {
    animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
  }
  .hero-visual {
    animation: fade 1.1s ease 0.2s both;
  }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
