/* ==========================================================================
   mugdhakalra.com — warm editorial design system
   ========================================================================== */

:root {
  --paper: #FAF6EF;
  --paper-deep: #F1EADD;
  --card: #FFFFFF;
  --ink: #262119;
  --ink-soft: #5F564A;
  --ink-faint: #8A8071;
  --accent: #A03E2D;
  --accent-deep: #7C2D21;
  --accent-wash: #F3E2DC;
  --line: #E5DCCB;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  --maxw: 1140px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(60, 44, 24, 0.10);
  --shadow-soft: 0 4px 16px rgba(60, 44, 24, 0.07);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-deep); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- typography ---------- */

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 560;
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 5.6vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }

p { margin: 0 0 1.1em; }

.lede { font-size: clamp(1.1rem, 1.7vw, 1.28rem); color: var(--ink-soft); line-height: 1.65; }

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.serif-i { font-family: var(--serif); font-style: italic; font-weight: 480; }

/* ---------- header ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.wordmark:hover { color: var(--accent); }

.site-nav { display: flex; gap: 1.9rem; align-items: center; }

.site-nav a {
  font-size: 0.92rem;
  font-weight: 530;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover { color: var(--ink); }

.site-nav a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--accent-deep); color: #fff; transform: translateY(-2px); }

.btn-ghost {
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- hero (home) ---------- */

.hero { padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero h1 { margin-bottom: 0.35em; }

.hero-tags {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  color: var(--accent);
  margin-bottom: 1.4rem;
}

.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.9rem; }

.hero-photo { position: relative; }

.hero-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: -18px -18px auto auto;
  width: 62%;
  height: 62%;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  opacity: 0.35;
  z-index: -1;
  transform: translate(14px, -14px);
}

/* ---------- credential strip ---------- */

.cred-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-deep); }

.cred-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2.5rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}

.cred {
  flex: 1 1 180px;
  min-width: 160px;
}

.cred strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.cred span { font-size: 0.83rem; color: var(--ink-faint); letter-spacing: 0.04em; text-transform: uppercase; }

/* ---------- sections ---------- */

.section { padding: clamp(3.2rem, 7vw, 5.8rem) 0; }
.section-deep { background: var(--paper-deep); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }

/* alternating feature rows */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.feature + .feature { margin-top: clamp(3rem, 6vw, 5rem); }

.feature img { border-radius: var(--radius); box-shadow: var(--shadow-soft); width: 100%; }

.feature.flip .feature-media { order: 2; }

.feature h3 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); }

/* ---------- pillar cards (home) ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.pillar {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow); color: var(--ink); }

.pillar img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }

.pillar-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }

.pillar-body h3 { margin-bottom: 0.4em; }

.pillar-body p { font-size: 0.96rem; color: var(--ink-soft); margin-bottom: 1rem; flex: 1; }

.pillar-more { font-size: 0.9rem; font-weight: 600; color: var(--accent); }

/* ---------- stats band ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 560;
  color: var(--accent);
  line-height: 1.1;
}

.stat span { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- video reel ---------- */

.reel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.video-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font: inherit;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.video-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }

.video-thumb img { width: 100%; height: 100%; object-fit: cover; }

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 20, 12, 0.35), transparent 45%);
}

.play-badge {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(250, 246, 239, 0.94);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 1;
}

.play-badge svg { margin-left: 3px; }

.video-card:hover .play-badge { transform: translate(-50%, -50%) scale(1.08); background: #fff; }

.video-meta { padding: 1rem 1.15rem 1.15rem; }

.video-meta h4 {
  margin: 0 0 0.35rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
}

.video-meta span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- video modal ---------- */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(24, 18, 12, 0.82);
  padding: 4vmin;
}

.video-modal.open { display: flex; }

.video-modal-inner {
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.video-modal-inner iframe { width: 100%; height: 100%; border: 0; display: block; }

.video-modal-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: 0;
  color: #FAF6EF;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}

/* ---------- typographic client wall ---------- */

.client-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 0.9rem;
}

.client-wall span {
  font-size: 0.86rem;
  font-weight: 560;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  white-space: nowrap;
}

/* ---------- flagship series cards ---------- */

.series-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.series-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.series-media {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: #1E1913;
  position: relative;
}

button.series-media { cursor: pointer; }

.series-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.series-media img.contain { object-fit: contain; }

.series-media .video-thumb { aspect-ratio: 16 / 9; }

button.series-media:hover .play-badge { transform: translate(-50%, -50%) scale(1.08); background: #fff; }

.series-card-body {
  padding: 1.5rem 1.7rem 1.7rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.series-card-body h3 { margin-bottom: 0.45em; font-size: clamp(1.3rem, 2.2vw, 1.6rem); }

.series-card-body p { color: var(--ink-soft); font-size: 0.98rem; }

.series-links { margin-top: auto; margin-bottom: 0; padding-top: 0.7rem; font-weight: 600; font-size: 0.93rem; }

.watch-link {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
}
.watch-link:hover { color: var(--accent-deep); }

.series-card.wide { grid-column: 1 / -1; }

@media (min-width: 761px) {
  .series-card.wide { flex-direction: row; align-items: stretch; }
  .series-card.wide .series-media { flex: 0 0 48%; }
  .series-card.wide .series-media .video-thumb { height: 100%; aspect-ratio: auto; }
  .series-card.wide .series-card-body { flex: 1; justify-content: center; }
}

@media (max-width: 760px) {
  .series-grid { grid-template-columns: 1fr; }
}

/* ---------- carousel ---------- */

.carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #1E1913;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  background: #1E1913;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: clamp(340px, 56vh, 600px);
  object-fit: contain;
  background: #1E1913;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(250, 246, 239, 0.9);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  z-index: 2;
  transition: background 0.15s ease;
}
.carousel-btn:hover { background: #fff; }
.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }

.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(250, 246, 239, 0.5);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, border-radius 0.2s ease;
}
.carousel-dot.active { background: #fff; width: 22px; border-radius: 4px; }

@media (max-width: 640px) {
  .carousel-slide img { height: clamp(320px, 66vh, 460px); }
  .carousel-btn { width: 38px; height: 38px; font-size: 1.3rem; }
}

/* ---------- quote block ---------- */

.pull-quote {
  border-left: 3px solid var(--accent);
  padding: 0.4rem 0 0.4rem 1.8rem;
  margin: 2.2rem 0;
}

.pull-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.pull-quote cite { font-style: normal; font-size: 0.9rem; color: var(--ink-faint); letter-spacing: 0.05em; }

/* ---------- page hero (interior) ---------- */

.page-hero { padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.2rem, 4vw, 3.4rem); }

.page-hero .lede { max-width: 780px; }

.page-hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.page-hero-split img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

/* ---------- timeline strip ---------- */

.newsrooms {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem 1rem;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 560;
  color: var(--ink);
}

.newsrooms .sep { color: var(--accent); font-size: 0.9em; }

.newsrooms .now { color: var(--accent); }

/* ---------- comic gallery ---------- */

.comic-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.comic-row img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: #fff;
}

/* ---------- award chips ---------- */

.award-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 0.9rem; }

.award-list li {
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  font-size: 1rem;
  color: var(--ink-soft);
}

.award-list li::before {
  content: "◆";
  color: var(--accent);
  font-size: 0.7rem;
  flex: 0 0 auto;
  position: relative;
  top: -2px;
}

.award-list strong { color: var(--ink); font-weight: 600; }

/* ---------- work cards ---------- */

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.work-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.work-card img { aspect-ratio: 16 / 8; object-fit: cover; width: 100%; }

.work-card img.img-contain { object-fit: contain; background: #1E1913; }

.work-card-body { padding: 1.6rem 1.7rem 1.8rem; flex: 1; display: flex; flex-direction: column; }

.work-card-body .tag {
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.work-card-body p { font-size: 0.98rem; color: var(--ink-soft); }

.work-card-body .links { margin-top: auto; padding-top: 0.6rem; display: flex; gap: 1.2rem; flex-wrap: wrap; font-size: 0.92rem; font-weight: 600; }

/* ---------- service cards ---------- */

.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.9rem;
}

.service h3 { font-size: 1.28rem; margin-bottom: 0.45em; }

.service p { font-size: 0.97rem; color: var(--ink-soft); margin: 0; }

.service .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.7rem;
}

/* ---------- book page ---------- */

.book-hero-cover { position: relative; display: flex; justify-content: center; }

.book-hero-cover img {
  max-width: 340px;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(60, 40, 20, 0.28);
  transform: rotate(1.5deg);
}

.badge-bestseller {
  display: inline-block;
  background: var(--accent-wash);
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.2rem;
}

.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.photo-row figure { margin: 0; }

.photo-row img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.photo-row figcaption { font-size: 0.85rem; color: var(--ink-faint); padding-top: 0.6rem; }

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-soft);
}

.field { margin-bottom: 1.2rem; }

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.15s ease;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field textarea { resize: vertical; min-height: 140px; }

.contact-aside h3 { margin-top: 2rem; }

.contact-links { list-style: none; padding: 0; margin: 0.8rem 0 0; display: grid; gap: 0.7rem; }

.contact-links a { font-weight: 600; }

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #FAF3EA;
  border-radius: var(--radius);
  padding: clamp(2.4rem, 5vw, 4rem);
  text-align: center;
}

.cta-band h2 { color: #fff; }

.cta-band p { color: rgba(255, 245, 235, 0.85); max-width: 560px; margin: 0 auto 1.8rem; }

.cta-band .btn-primary { background: #FAF6EF; color: var(--accent-deep); }
.cta-band .btn-primary:hover { background: #fff; color: var(--accent-deep); }

/* ---------- footer ---------- */

.site-foot {
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
  padding: 3rem 0 2.2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.foot-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}

.foot-brand .wordmark { font-size: 1.3rem; }

.foot-brand p { font-size: 0.92rem; color: var(--ink-faint); margin: 0.5rem 0 0; max-width: 320px; }

.foot-links { display: flex; gap: 3.5rem; flex-wrap: wrap; }

.foot-links h4 {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 0.8rem;
}

.foot-links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }

.foot-links a { color: var(--ink-soft); font-size: 0.93rem; }
.foot-links a:hover { color: var(--accent); }

.foot-base {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  color: var(--ink-faint);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.5rem 1.5rem;
  align-items: baseline;
}

.foot-base > span:first-child { text-align: left; }
.foot-base > span:nth-child(2) { text-align: center; }
.foot-base > span:last-child { text-align: right; }

@media (max-width: 640px) {
  .foot-base { grid-template-columns: 1fr; }
  .foot-base > span { text-align: left !important; }
}

/* ---------- reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .pillars, .reel, .comic-row, .photo-row { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
}

/* Nav collapses to a menu earlier than the layout, because the label set is wide */
@media (max-width: 1160px) {
  .site-nav {
    position: absolute;
    top: 74px;
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 0.6rem 0 1rem;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.7rem 24px; width: 100%; font-size: 1.05rem; }
  .site-nav a[aria-current="page"] { border-bottom-color: transparent; }
  .nav-toggle { display: block; }
}

@media (max-width: 760px) {
  .hero-grid, .feature, .page-hero-split, .contact-grid { grid-template-columns: 1fr; }
  .feature.flip .feature-media { order: 0; }
  .hero-photo { max-width: 440px; }
  .hero-photo::before { display: none; }
  .services, .work-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .pillars, .reel, .comic-row, .photo-row { grid-template-columns: 1fr; }
}
