/* =============================================================================
   SAGAR STUDIO — main.css
   One stylesheet, no framework. Sections:
     01 Fonts            06 Buttons & links       11 Galleries, lightbox & films
     02 Design tokens    07 Header & navigation   12 Forms
     03 Reset & base     08 Heroes                13 Articles (prose)
     04 Typography       09 Page sections         14 Footer & floating actions
     05 Layout           10 Home modules          15 Motion, reduced motion, print
   To re-theme the whole site, edit the tokens in section 02.
   ========================================================================== */

/* 01 FONTS — self-hosted, latin subset, SIL Open Font License (see /assets/fonts) */
@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/instrument-serif-regular-latin.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/instrument-serif-italic-latin.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-variable-latin.woff2") format("woff2");
  font-weight: 200 800; font-style: normal; font-display: swap;
}
/* Metric-matched fallbacks reduce layout shift while web fonts load. */
@font-face { font-family: "Serif Fallback"; src: local("Georgia"), local("Times New Roman"); size-adjust: 92%; ascent-override: 95%; }
@font-face { font-family: "Sans Fallback"; src: local("Arial"), local("Helvetica"); size-adjust: 104%; ascent-override: 98%; }

/* 02 DESIGN TOKENS ======================================================== */
:root {
  /* Colour — dark "cinema" base with warm ivory and paper sections */
  --c-ink: #0e0c0a;
  --c-ink-2: #16120e;
  --c-ink-3: #221c16;
  --c-ivory: #efe8dc;         /* text on ink  (15:1) */
  --c-ivory-muted: #b5aa99;   /* secondary text on ink (8:1) */
  --c-line-dark: rgba(239, 232, 220, 0.14);
  --c-paper: #f4eee4;
  --c-paper-2: #ebe3d6;
  --c-text: #1c1713;          /* text on paper (15:1) */
  --c-text-muted: #5b5046;    /* secondary text on paper (7:1) */
  --c-line-light: rgba(28, 23, 19, 0.14);
  --c-gold: #d8ab62;          /* accents on ink only (9:1) */
  --c-gold-deep: #875a1c;     /* accents on paper (5.3:1) */
  --c-sindoor: #c4472f;
  --c-success: #2f7d4f;
  --c-error: #b3261e;
  --c-error-on-dark: #ff9b8f;

  /* Type */
  --f-display: "Instrument Serif", "Serif Fallback", Georgia, serif;
  --f-body: "Manrope", "Sans Fallback", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fs-xs: 0.78rem;
  --fs-sm: 0.9rem;
  --fs-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --fs-lead: clamp(1.1rem, 1rem + 0.45vw, 1.3rem);
  --fs-h3: clamp(1.35rem, 1.2rem + 0.6vw, 1.7rem);
  --fs-display-md: clamp(2rem, 1.5rem + 2.2vw, 3.2rem);
  --fs-display-lg: clamp(2.5rem, 1.7rem + 3.6vw, 4.8rem);
  --fs-display-xl: clamp(2.9rem, 1.8rem + 5vw, 6.4rem);
  --fs-display-hero: clamp(3.1rem, 1.6rem + 6.8vw, 8.6rem);
  --lh-tight: 1.02;
  --lh-body: 1.65;
  --tracking-caps: 0.2em;

  /* Space & layout */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem;
  --space-5: 1.5rem;  --space-6: 2rem;   --space-7: 3rem;    --space-8: 4.5rem;
  --space-section: clamp(4.5rem, 3rem + 7vw, 9.5rem);
  --container: 1320px;
  --container-narrow: 820px;
  --gutter: clamp(1.15rem, 0.6rem + 2.4vw, 3rem);
  --header-h: 76px;
  --radius: 2px;
  --radius-lg: 14px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 180ms;
  --dur: 420ms;
  --dur-slow: 1100ms;

  /* Film grain (tiny inline SVG noise, no request) */
  --grain: 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='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* 03 RESET & BASE ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--c-ink);
  color: var(--c-ivory);
  font-family: var(--f-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, picture, video, svg { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul[role="list"], ol[role="list"] { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
address { font-style: normal; }
::selection { background: var(--c-gold); color: var(--c-ink); }
[hidden] { display: none !important; }

:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.section--paper :focus-visible, .on-paper :focus-visible { outline-color: var(--c-gold-deep); }

.skip-link {
  position: absolute; left: var(--space-4); top: -100px; z-index: 1000;
  background: var(--c-gold); color: var(--c-ink); padding: var(--space-3) var(--space-5);
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: var(--space-4); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.icon { width: 1.1em; height: 1.1em; flex: none; }

/* 04 TYPOGRAPHY =========================================================== */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: var(--lh-tight);
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--c-gold); }
.section--paper .display em, .on-paper .display em { color: var(--c-gold-deep); }
.display--md { font-size: var(--fs-display-md); }
.display--lg { font-size: var(--fs-display-lg); }
.display--xl { font-size: var(--fs-display-xl); }
.eyebrow {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-4);
  display: flex; align-items: center; gap: var(--space-3);
}
.eyebrow::before { content: ""; width: 2.2rem; height: 1px; background: currentColor; opacity: 0.7; }
.section--paper .eyebrow, .on-paper .eyebrow { color: var(--c-gold-deep); }
.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--c-ivory-muted); max-width: 38em; text-wrap: pretty; }
.section--paper .lead { color: var(--c-text-muted); }
.muted { color: var(--c-ivory-muted); }
.section--paper .muted, .on-paper .muted { color: var(--c-text-muted); }
h3 { font-size: var(--fs-h3); font-family: var(--f-display); font-weight: 400; line-height: 1.15; }
p + p { margin-top: 1em; }

/* 05 LAYOUT =============================================================== */
.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: calc(var(--container-narrow) + var(--gutter) * 2); }
.section { padding-block: var(--space-section); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem); }
.section--paper { background: var(--c-paper); color: var(--c-text); }
.section--paper-2 { background: var(--c-paper-2); color: var(--c-text); }
.section--ink-2 { background: var(--c-ink-2); }
.section-head { display: grid; gap: var(--space-4); margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); max-width: 60rem; }
.section-head--split { max-width: none; grid-template-columns: 1fr; align-items: end; }
@media (min-width: 900px) { .section-head--split { grid-template-columns: 1.3fr 1fr; gap: var(--space-7); } }
.split { display: grid; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.2fr 1fr; }
  .split--wide-right { grid-template-columns: 1fr 1.2fr; }
}
.stack > * + * { margin-top: var(--space-5); }
.grain { position: relative; isolation: isolate; }
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background-image: var(--grain); opacity: 0.07; mix-blend-mode: overlay;
}

/* 06 BUTTONS & LINKS ====================================================== */
.btn {
  --btn-bg: transparent; --btn-fg: currentColor; --btn-border: currentColor;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  min-height: 48px; padding: 0.8em 1.5em;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-border); border-radius: 999px;
  font-size: var(--fs-sm); font-weight: 700; letter-spacing: 0.04em;
  text-decoration: none; white-space: nowrap;
  transition: background-color var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast);
}
.btn .icon { transition: transform var(--dur) var(--ease-out); }
.btn:hover .icon[viewBox] { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn--gold { --btn-bg: var(--c-gold); --btn-fg: var(--c-ink); --btn-border: var(--c-gold); }
.btn--gold:hover { --btn-bg: #e6bd79; --btn-border: #e6bd79; }
.btn--line { --btn-fg: var(--c-ivory); --btn-border: rgba(239, 232, 220, 0.4); }
.btn--line:hover { --btn-border: var(--c-ivory); --btn-bg: rgba(239, 232, 220, 0.08); }
.section--paper .btn--line, .on-paper .btn--line { --btn-fg: var(--c-text); --btn-border: rgba(28, 23, 19, 0.35); }
.section--paper .btn--line:hover, .on-paper .btn--line:hover { --btn-bg: rgba(28, 23, 19, 0.06); --btn-border: var(--c-text); }
.btn--dark { --btn-bg: var(--c-ink); --btn-fg: var(--c-ivory); --btn-border: var(--c-ink); }
.btn--dark:hover { --btn-bg: var(--c-ink-3); }
.btn--whatsapp { --btn-bg: #1a7f45; --btn-fg: #fff; --btn-border: #1a7f45; }
.btn--whatsapp:hover { --btn-bg: #146a39; --btn-border: #146a39; }
.btn--text { --btn-border: transparent; padding-inline: 0.6em; }
.btn--text:hover { text-decoration: underline; }
.btn--sm { min-height: 40px; padding: 0.55em 1.15em; font-size: var(--fs-xs); }
.btn--lg { min-height: 56px; padding: 1em 1.9em; font-size: 0.95rem; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 700; font-size: var(--fs-sm); letter-spacing: 0.04em;
  text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.link-arrow:hover .icon { transform: translateX(3px); }
.link-arrow .icon { transition: transform var(--dur) var(--ease-out); }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }
@media (max-width: 420px) { .btn { white-space: normal; text-align: center; } }

/* 07 HEADER & NAVIGATION ================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(14, 12, 10, 0.92);
  border-bottom: 1px solid var(--c-line-dark);
  transition: background-color var(--dur), border-color var(--dur), transform var(--dur) var(--ease-out);
}
@supports (backdrop-filter: blur(1px)) {
  .site-header { background: rgba(14, 12, 10, 0.78); backdrop-filter: saturate(1.2) blur(14px); -webkit-backdrop-filter: saturate(1.2) blur(14px); }
}
.site-header--overlay { position: fixed; inset-inline: 0; background: transparent; border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.site-header--overlay.is-scrolled, .site-header.is-scrolled { background: rgba(14, 12, 10, 0.9); border-color: var(--c-line-dark); }
.site-header.is-hidden { transform: translateY(-100%); }
.site-header__inner { height: 100%; display: flex; align-items: center; gap: var(--space-5); }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--c-ivory); flex: none; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--c-gold); color: var(--c-gold);
  font-family: var(--f-display); font-size: 1.45rem; font-style: italic; line-height: 1; padding-bottom: 2px;
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--f-display); font-size: 1.6rem; letter-spacing: 0.01em; }
.brand__sub { font-size: 0.62rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--c-ivory-muted); margin-top: 0.2rem; }

.primary-nav { margin-left: auto; }
.primary-nav__list { display: flex; gap: clamp(0.9rem, 0.2rem + 1.2vw, 2rem); list-style: none; margin: 0; padding: 0; }
.primary-nav__item { position: relative; }
.primary-nav a {
  display: inline-block; padding: 0.5rem 0; font-size: var(--fs-sm); font-weight: 600;
  letter-spacing: 0.03em; text-decoration: none; color: var(--c-ivory);
  background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 1px;
  transition: background-size var(--dur) var(--ease-out), color var(--dur-fast);
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { background-size: 100% 1px; color: var(--c-gold); }
.subnav {
  position: absolute; left: -1.25rem; top: 100%; min-width: 250px;
  list-style: none; margin: 0; padding: 0.75rem 1.25rem;
  background: var(--c-ink-2); border: 1px solid var(--c-line-dark); border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--dur-fast), transform var(--dur) var(--ease-out), visibility var(--dur-fast);
}
.subnav a { display: block; padding: 0.45rem 0; background: none; }
.has-sub:hover .subnav, .has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: none; }

.site-header__actions { display: flex; align-items: center; gap: var(--space-4); }
.header-call { display: inline-flex; align-items: center; gap: 0.45rem; font-size: var(--fs-sm); font-weight: 600; text-decoration: none; color: var(--c-ivory); }
.header-call:hover { color: var(--c-gold); }

.nav-toggle {
  display: none; align-items: center; gap: 0.6rem; min-height: 44px; padding: 0 0.2rem;
  background: none; border: 0; color: var(--c-ivory); font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  display: block; width: 22px; height: 1.5px; background: currentColor; position: relative;
  transition: transform var(--dur) var(--ease-out), background-color var(--dur-fast);
}
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--c-ink); overflow-y: auto; overscroll-behavior: contain;
  padding-block: var(--space-6) calc(var(--space-8) + env(safe-area-inset-bottom));
  animation: menu-in var(--dur) var(--ease-out);
}
@keyframes menu-in { from { opacity: 0; transform: translateY(-12px); } }
.mobile-menu__primary { list-style: none; margin: 0; padding: 0; }
.mobile-menu__primary a {
  display: block; padding: 0.35rem 0; font-family: var(--f-display); font-size: clamp(2.1rem, 8vw, 3rem); line-height: 1.15; text-decoration: none;
}
.mobile-menu__primary a[aria-current="page"] { color: var(--c-gold); font-style: italic; }
.mobile-menu__label { margin-top: var(--space-6); font-size: var(--fs-xs); letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--c-gold); }
.mobile-menu__services { list-style: none; margin: var(--space-3) 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1rem; }
.mobile-menu__services a { display: block; padding: 0.4rem 0; color: var(--c-ivory-muted); text-decoration: none; font-size: var(--fs-sm); }
.mobile-menu__cta { display: grid; gap: var(--space-3); margin-top: var(--space-7); }
body.menu-open { overflow: hidden; }

@media (max-width: 1100px) {
  .header-call span { display: none; }
}
@media (max-width: 400px) {
  .site-header__inner, .site-header__actions { gap: var(--space-3); }
  .brand { gap: 0.5rem; }
  .brand__mark { width: 36px; height: 36px; font-size: 1.3rem; }
  .brand__name { font-size: 1.4rem; }
  .brand__sub { letter-spacing: 0.24em; }
  .nav-toggle { width: 44px; justify-content: center; }
  .nav-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
}
@media (max-width: 960px) {
  .js .primary-nav, .js .site-header__actions .btn { display: none; }
  .js .nav-toggle { display: inline-flex; }
  .js .site-header__actions { margin-left: auto; }
  .js .header-call { width: 44px; height: 44px; justify-content: center; border: 1px solid var(--c-line-dark); border-radius: 50%; }
  /* Without JavaScript: menu becomes a horizontally scrollable row under the logo. */
  .no-js .site-header { height: auto; position: relative; }
  .no-js .site-header__inner { flex-wrap: wrap; padding-block: var(--space-3); }
  .no-js .primary-nav { order: 3; width: 100%; overflow-x: auto; margin: 0; }
  .no-js .primary-nav__list { gap: 1.25rem; white-space: nowrap; }
  .no-js .subnav { display: none; }
  .no-js .site-header__actions { margin-left: auto; }
}

/* 08 HEROES ============================================================== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-block: calc(var(--header-h) + var(--space-7)) clamp(2.5rem, 2rem + 4vw, 6rem);
  overflow: hidden; isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media .frame, .hero__media picture { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 65% 40%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 12, 10, 0.92) 0%, rgba(14, 12, 10, 0.6) 38%, rgba(14, 12, 10, 0.08) 70%),
    linear-gradient(0deg, rgba(14, 12, 10, 0.95) 0%, rgba(14, 12, 10, 0) 45%);
}
/* Cinematic letterbox bars that open on load */
.hero__bar { position: absolute; left: 0; right: 0; height: 9vh; background: var(--c-ink); z-index: 1; transform-origin: top; }
.hero__bar--top { top: 0; }
.hero__bar--bottom { bottom: 0; transform-origin: bottom; }
.hero__content { position: relative; z-index: 3; max-width: 1000px; }
.hero__kicker {
  display: flex; align-items: center; gap: var(--space-3);
  font-family: var(--f-body); font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--tracking-caps);
  text-transform: uppercase; color: var(--c-gold); margin-bottom: var(--space-5);
}
.hero__kicker::before { content: ""; width: 2.2rem; height: 1px; background: currentColor; }
.hero__title {
  display: block; font-family: var(--f-display); font-weight: 400;
  font-size: var(--fs-display-hero); line-height: 0.96; letter-spacing: -0.025em;
}
.hero__title em { font-style: italic; color: var(--c-gold); }
.hero__line { display: block; }
.hero__lead { margin-top: var(--space-6); max-width: 36rem; font-size: var(--fs-lead); color: #d7cebf; }
.hero__actions { margin-top: var(--space-6); display: flex; flex-wrap: wrap; gap: var(--space-3); }
.hero__proof { margin-top: var(--space-5); font-size: var(--fs-sm); color: #d7cebf; letter-spacing: 0.02em; }
.hero__proof strong { color: var(--c-gold); font-weight: 700; }
.telugu__title { font-family: "Noto Sans Telugu", "Noto Serif Telugu", "Telugu Sangam MN", "Nirmala UI", "Gautami", var(--f-body); font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem); line-height: 1.45; font-weight: 700; }
.telugu__text { font-family: "Noto Sans Telugu", "Telugu Sangam MN", "Nirmala UI", "Gautami", var(--f-body); font-size: 1.08rem; line-height: 1.95; color: var(--c-text-muted); margin-top: var(--space-4); }
.hero__facts {
  margin-top: clamp(2rem, 1.5rem + 3vw, 4rem); padding-top: var(--space-5);
  border-top: 1px solid var(--c-line-dark);
  display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-7);
  list-style: none; padding-left: 0; font-size: var(--fs-sm); color: var(--c-ivory-muted);
}
.hero__facts strong { display: block; color: var(--c-ivory); font-weight: 600; }
.hero__scroll {
  position: absolute; right: var(--gutter); bottom: clamp(2.5rem, 2rem + 4vw, 6rem); z-index: 3;
  writing-mode: vertical-rl; font-size: var(--fs-xs); letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--c-ivory-muted); text-decoration: none; display: none; align-items: center; gap: 1rem;
}
.hero__scroll::after { content: ""; width: 1px; height: 64px; background: linear-gradient(var(--c-gold), transparent); }
@media (min-width: 1100px) { .hero__scroll { display: flex; } }
/* Short desktop/laptop screens: keep the headline and buttons above the fold. */
@media (min-width: 701px) and (max-height: 900px) {
  .hero { padding-top: calc(var(--header-h) + var(--space-5)); padding-bottom: var(--space-7); }
  .hero__title { font-size: min(var(--fs-display-hero), 10.5vh); }
  .hero__kicker { margin-bottom: var(--space-4); }
  .hero__lead { margin-top: var(--space-5); }
  .hero__actions { margin-top: var(--space-5); }
  .hero__facts { display: none; }
}
@media (max-width: 700px) {
  .hero { align-items: flex-end; }
  .hero__media img { object-position: 80% 30%; }
  .hero::before { background: linear-gradient(0deg, rgba(14, 12, 10, 0.97) 0%, rgba(14, 12, 10, 0.75) 45%, rgba(14, 12, 10, 0.15) 80%); }
  .hero { padding-bottom: calc(var(--space-6) + 58px); }
  .hero__title { font-size: clamp(2.6rem, 11.5vw, 3.4rem); }
  .hero__kicker { margin-bottom: var(--space-4); }
  .hero__lead { margin-top: var(--space-4); font-size: 1rem; }
  .hero__actions { margin-top: var(--space-5); flex-wrap: nowrap; gap: var(--space-2); }
  .hero__actions .btn { flex: 1 1 0; min-height: 50px; padding: 0.7em 0.9em; font-size: 0.85rem; }
  .hero__facts { display: none; }
  .hero__proof { margin-top: var(--space-4); font-size: 0.85rem; }
  .hero__bar { height: 5vh; }
}
@media (max-width: 700px) and (max-height: 620px) {
  .hero { padding-top: calc(var(--header-h) + var(--space-4)); }
  .hero__title { font-size: 2.25rem; }
  .hero__lead { font-size: 0.92rem; line-height: 1.5; }
}

.page-hero { padding-block: clamp(2rem, 1.5rem + 3vw, 4.5rem) clamp(3rem, 2rem + 4vw, 6rem); }
.page-hero__grid { display: grid; gap: clamp(2rem, 1rem + 3vw, 4rem); align-items: center; }
@media (min-width: 900px) { .page-hero__grid { grid-template-columns: 1.05fr 1fr; } .page-hero--plain .page-hero__grid { grid-template-columns: 1fr; max-width: 64rem; } }
.page-hero .lead { margin-top: var(--space-5); }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
.page-hero__frame { aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius); }
.page-hero__frame img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 899px) { .page-hero__frame { aspect-ratio: 4 / 3; } }

.breadcrumbs { padding-top: var(--space-5); font-size: var(--fs-xs); color: var(--c-ivory-muted); letter-spacing: 0.04em; }
.breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.breadcrumbs li + li::before { content: "/"; margin-right: 0.4rem; opacity: 0.5; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--c-gold); text-decoration: underline; }

/* 09 PAGE SECTIONS ======================================================= */
.frame { display: block; position: relative; overflow: hidden; background: var(--c-ink-3); }
/* Make the <picture> fill its frame so object-fit: cover works for any photo orientation. */
.frame > picture { display: block; width: 100%; height: 100%; }
.frame--missing { aspect-ratio: 4 / 3; background: repeating-linear-gradient(45deg, var(--c-ink-3) 0 12px, var(--c-ink-2) 12px 24px); }
.ph-badge {
  position: absolute; left: 0.6rem; bottom: 0.6rem; z-index: 3;
  padding: 0.2rem 0.55rem; border-radius: 999px;
  background: rgba(14, 12, 10, 0.72); color: #e9e1d4;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; pointer-events: none;
}
@media (max-width: 640px) { .ph-badge { font-size: 0.58rem; padding: 0.15rem 0.45rem; left: 0.4rem; bottom: 0.4rem; } }
.hero .ph-badge { left: auto; right: var(--gutter); bottom: auto; top: calc(var(--header-h) + 10vh); }

/* Service cards */
.service-grid { display: grid; gap: clamp(1rem, 0.5rem + 1.5vw, 1.75rem); grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); }
.service-card__link { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.service-card__media { aspect-ratio: 4 / 5; border-radius: var(--radius); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out), filter var(--dur); filter: saturate(0.92); }
.service-card__link:hover img, .service-card__link:focus-visible img { transform: scale(1.045); filter: saturate(1.05); }
.service-card__body { display: flex; flex-direction: column; gap: 0.5rem; padding-top: var(--space-4); flex: 1; }
.service-card__title { font-family: var(--f-display); font-size: var(--fs-h3); font-weight: 400; line-height: 1.1; }
.service-card__summary { color: var(--c-ivory-muted); font-size: var(--fs-sm); }
.section--paper .service-card__summary { color: var(--c-text-muted); }
.service-card__more { margin-top: auto; padding-top: 0.5rem; display: inline-flex; align-items: center; gap: 0.4rem; font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-gold); }
.section--paper .service-card__more { color: var(--c-gold-deep); }
.service-card__more .icon { transition: transform var(--dur) var(--ease-out); }
.service-card__link:hover .service-card__more .icon { transform: translateX(4px); }

.chip-list { display: flex; flex-wrap: wrap; gap: 0.6rem; list-style: none; margin: var(--space-6) 0 0; padding: 0; }
.chip-list a {
  display: inline-flex; align-items: center; gap: 0.4rem; min-height: 44px; padding: 0.5rem 1.1rem;
  border: 1px solid var(--c-line-dark); border-radius: 999px; text-decoration: none; font-size: var(--fs-sm); font-weight: 600;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.chip-list a:hover { border-color: var(--c-gold); color: var(--c-gold); }
.section--paper .chip-list a { border-color: var(--c-line-light); }
.section--paper .chip-list a:hover { border-color: var(--c-gold-deep); color: var(--c-gold-deep); }

/* Feature list (what's included) */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; border-top: 1px solid var(--c-line-dark); }
.section--paper .feature-list, .section--paper .feature-list li { border-color: var(--c-line-light); }
.feature-list li { padding: var(--space-5) 0; border-bottom: 1px solid var(--c-line-dark); display: grid; gap: 0.35rem; }
@media (min-width: 700px) { .feature-list li { grid-template-columns: 14rem 1fr; gap: var(--space-6); } }
.feature-list strong { font-family: var(--f-display); font-weight: 400; font-size: 1.35rem; line-height: 1.2; }
.feature-list p { color: var(--c-ivory-muted); }
.section--paper .feature-list p { color: var(--c-text-muted); }

/* Two-column prose blocks inside service pages */
.prose-columns { display: grid; gap: var(--space-6); }
@media (min-width: 900px) { .prose-columns { grid-template-columns: 1fr 1fr; gap: var(--space-8); } }
.prose-columns h3 { margin-bottom: var(--space-3); }
.prose-columns p { color: var(--c-ivory-muted); }
.section--paper .prose-columns p { color: var(--c-text-muted); }

.quote-block { font-family: var(--f-display); font-size: var(--fs-display-md); line-height: 1.15; text-wrap: balance; max-width: 22em; }
.quote-block em { color: var(--c-gold); }
.section--paper .quote-block em { color: var(--c-gold-deep); }

/* Process */
.process__list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-5); grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); counter-reset: step; }
.process__step { padding-top: var(--space-5); border-top: 1px solid var(--c-line-dark); }
.section--paper .process__step { border-color: var(--c-line-light); }
.process__num { font-family: var(--f-display); font-style: italic; font-size: 2.4rem; line-height: 1; color: var(--c-gold); display: block; margin-bottom: var(--space-4); }
.section--paper .process__num { color: var(--c-gold-deep); }
.process__title { margin-bottom: var(--space-3); }
.process__step p { font-size: var(--fs-sm); color: var(--c-ivory-muted); }
.section--paper .process__step p { color: var(--c-text-muted); }

/* FAQ */
.faq-section .display { margin-bottom: var(--space-6); }
.faq-list { border-top: 1px solid var(--c-line-dark); }
.section--paper .faq-list, .section--paper .faq { border-color: var(--c-line-light); }
.faq { border-bottom: 1px solid var(--c-line-dark); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: var(--space-5);
  padding: var(--space-5) 0; font-size: 1.08rem; font-weight: 600; line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--c-gold); }
.section--paper .faq summary:hover { color: var(--c-gold-deep); }
.faq__icon { position: relative; width: 16px; height: 16px; flex: none; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; left: 0; top: 50%; width: 16px; height: 1.5px; background: currentColor; transition: transform var(--dur) var(--ease-out); }
.faq__icon::after { transform: rotate(90deg); }
.faq[open] .faq__icon::after { transform: rotate(0); }
.faq__answer { padding: 0 0 var(--space-5); color: var(--c-ivory-muted); max-width: 48em; }
.section--paper .faq__answer { color: var(--c-text-muted); }
.faq__answer a { color: var(--c-gold); }
.section--paper .faq__answer a { color: var(--c-gold-deep); }

/* Related links */
.related__list { display: grid; gap: 0; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); border-top: 1px solid var(--c-line-dark); }
.related__link { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: var(--space-5) var(--space-2) var(--space-5) 0; border-bottom: 1px solid var(--c-line-dark); text-decoration: none; font-family: var(--f-display); font-size: 1.4rem; }
.related__link:hover { color: var(--c-gold); }
.related__link .icon { transition: transform var(--dur) var(--ease-out); }
.related__link:hover .icon { transform: translateX(4px); }

/* CTA band */
.cta-band { background: var(--c-ink-2); border-top: 1px solid var(--c-line-dark); padding-block: clamp(4rem, 3rem + 5vw, 8rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: auto 50% 0 auto; width: 70vmax; height: 70vmax; transform: translate(50%, 60%); border-radius: 50%; background: radial-gradient(closest-side, rgba(216, 171, 98, 0.16), transparent); pointer-events: none; }
.cta-band__inner { position: relative; }
.cta-band .eyebrow { justify-content: center; }
.cta-band .eyebrow::before { display: none; }
.cta-band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-3); margin-top: var(--space-6); }

/* Reviews */
.reviews__list { display: grid; gap: var(--space-5); grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }
.review blockquote { margin: 0; padding: var(--space-6); border: 1px solid var(--c-line-dark); border-radius: var(--radius-lg); height: 100%; display: flex; flex-direction: column; gap: var(--space-4); }
.review p { font-family: var(--f-display); font-size: 1.3rem; line-height: 1.35; }
.review footer { margin-top: auto; font-size: var(--fs-sm); color: var(--c-ivory-muted); }
.reviews__more { margin-top: var(--space-6); }

/* Info cards (contact, areas) */
.card-grid { display: grid; gap: var(--space-5); grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); }
.info-card { padding: var(--space-6); border: 1px solid var(--c-line-dark); border-radius: var(--radius-lg); background: rgba(239, 232, 220, 0.02); display: flex; flex-direction: column; gap: var(--space-3); }
.section--paper .info-card { border-color: var(--c-line-light); background: rgba(255, 255, 255, 0.45); }
.info-card h3 { font-size: 1.55rem; }
.info-card p { color: var(--c-ivory-muted); font-size: var(--fs-sm); }
.section--paper .info-card p { color: var(--c-text-muted); }
.info-card__meta { font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-gold); }
.section--paper .info-card__meta { color: var(--c-gold-deep); }
.info-card .link-arrow { margin-top: auto; align-self: flex-start; }

@media (max-width: 600px) {
  .service-card__media { aspect-ratio: 3 / 2; }
  .area-list__row { grid-template-columns: 1fr; gap: 0.25rem; }
  .area-list__dist { text-align: left; }
  .section-head { margin-bottom: var(--space-6); }
}

/* Trust figures */
.stats { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: var(--space-5); border-top: 1px solid var(--c-line-dark); border-bottom: 1px solid var(--c-line-dark); padding-block: var(--space-6); }
.stats__item { display: grid; gap: 0.35rem; }
.stats__num { font-family: var(--f-display); font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.6rem); line-height: 1; color: var(--c-gold); }
.stats__label { font-size: var(--fs-sm); color: var(--c-ivory-muted); }
.section--paper .stats { border-color: var(--c-line-light); }
.section--paper .stats__num { color: var(--c-gold-deep); }
.section--paper .stats__label { color: var(--c-text-muted); }
@media (max-width: 600px) { .stats { grid-template-columns: 1fr 1fr; } }

/* 10 HOME MODULES ======================================================== */
/* Intro with overlapping images */
.intro__media { position: relative; padding-bottom: 18%; padding-right: 12%; }
.intro__media .frame:first-child { aspect-ratio: 4 / 5; }
.intro__media .frame:first-child img, .intro__media .frame:last-child img { width: 100%; height: 100%; object-fit: cover; }
.intro__media .frame:last-child { position: absolute; right: 0; bottom: 0; width: 48%; aspect-ratio: 1; border: 8px solid var(--c-paper); }
.intro__sign { margin-top: var(--space-6); font-family: var(--f-display); font-style: italic; font-size: 1.6rem; color: var(--c-gold-deep); }

/* Featured stories (portfolio proof) */
.stories { display: grid; gap: clamp(1rem, 0.5rem + 1.5vw, 2rem); }
@media (min-width: 900px) {
  .stories { grid-template-columns: 1.35fr 1fr; grid-template-rows: auto auto; }
  .stories .story:first-child { grid-row: span 2; }
  .stories .story:first-child .story__media { aspect-ratio: auto; height: 100%; min-height: 560px; }
}
.story { position: relative; }
.story__link { display: block; height: 100%; text-decoration: none; color: var(--c-ivory); position: relative; overflow: hidden; border-radius: var(--radius); }
.story__media { aspect-ratio: 16 / 10; height: 100%; }
.story__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease-out); }
.story__link:hover img, .story__link:focus-visible img { transform: scale(1.04); }
.story__caption { position: absolute; inset: auto 0 0 0; z-index: 2; padding: clamp(1.25rem, 1rem + 1.5vw, 2.25rem); background: linear-gradient(0deg, rgba(14, 12, 10, 0.9), rgba(14, 12, 10, 0)); display: grid; gap: 0.3rem; }
.story__meta { font-size: var(--fs-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-gold); font-weight: 700; }
.story__title { font-family: var(--f-display); font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.6rem); line-height: 1.05; font-weight: 400; }
.story .ph-badge { top: 0.6rem; bottom: auto; }

/* Chapters film strip (horizontal scroll-snap, no library) */
.chapters { overflow: hidden; }
.chapters__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: var(--space-5); margin-bottom: var(--space-7); }
.chapters__controls { display: flex; gap: var(--space-2); }
.chapters__btn {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--c-line-dark); color: var(--c-ivory);
  transition: border-color var(--dur-fast), background-color var(--dur-fast);
}
.chapters__btn:hover:not(:disabled) { border-color: var(--c-gold); background: rgba(216, 171, 98, 0.1); }
.chapters__btn:disabled { opacity: 0.35; cursor: default; }
.no-js .chapters__controls { display: none; }
.chapters__track {
  list-style: none; margin: 0; padding: 0 var(--gutter) var(--space-5);
  display: grid; grid-auto-flow: column; grid-auto-columns: min(78vw, 420px); gap: clamp(1rem, 0.5rem + 1.5vw, 2rem);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
  scrollbar-width: thin; scrollbar-color: var(--c-ink-3) transparent;
}
@media (min-width: 1400px) { .chapters__track { padding-left: calc((100vw - var(--container)) / 2); scroll-padding-inline: calc((100vw - var(--container)) / 2); } }
.chapter { scroll-snap-align: start; display: flex; flex-direction: column; gap: var(--space-4); }
.chapter .frame { aspect-ratio: 3 / 4; border-radius: var(--radius); }
.chapter .frame img { width: 100%; height: 100%; object-fit: cover; }
.chapter__num { font-family: var(--f-display); font-style: italic; color: var(--c-gold); font-size: 1.2rem; }
.chapter__title { font-family: var(--f-display); font-size: 1.9rem; line-height: 1.05; font-weight: 400; }
.chapter__telugu { font-size: var(--fs-sm); color: var(--c-ivory-muted); }
.chapter p { font-size: var(--fs-sm); color: var(--c-ivory-muted); }

/* Before / after comparison */
.compare { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 3 / 4; max-height: 82vh; margin-inline: auto; width: 100%; user-select: none; touch-action: pan-y; --pos: 50%; }
@media (min-width: 900px) { .compare { aspect-ratio: 4 / 5; } }
.compare .frame { position: absolute; inset: 0; }
.compare .frame img { width: 100%; height: 100%; object-fit: cover; }
.compare__after { clip-path: inset(0 0 0 var(--pos)); }
.compare__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: var(--c-ivory); transform: translateX(-1px); pointer-events: none; z-index: 3; }
.compare__handle::after {
  content: "◂ ▸"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; background: var(--c-ivory); color: var(--c-ink);
  display: grid; place-items: center; font-size: 0.8rem; letter-spacing: 0.1em; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.compare__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 4; margin: 0; }
.compare__range:focus-visible + .compare__handle::after { outline: 2px solid var(--c-gold); outline-offset: 3px; }
.compare__label { position: absolute; top: var(--space-4); z-index: 3; padding: 0.25rem 0.7rem; border-radius: 999px; background: rgba(14, 12, 10, 0.7); font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.compare__label--before { left: var(--space-4); }
.compare__label--after { right: var(--space-4); }
.compare .ph-badge { bottom: var(--space-4); left: var(--space-4); }

/* Trust points */
.trust-grid { display: grid; gap: var(--space-5) var(--space-7); grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); list-style: none; margin: 0; padding: 0; }
.trust-grid li { padding-top: var(--space-5); border-top: 1px solid var(--c-line-light); }
.trust-grid h3 { margin-bottom: var(--space-2); }
.trust-grid p { color: var(--c-text-muted); font-size: var(--fs-sm); }

/* Area list */
.area-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--c-line-dark); }
.area-list li { border-bottom: 1px solid var(--c-line-dark); }
.area-list__row { display: grid; grid-template-columns: 1fr auto; gap: var(--space-2) var(--space-5); align-items: baseline; padding: var(--space-5) 0; text-decoration: none; }
.area-list__name { font-family: var(--f-display); font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.6rem); line-height: 1; }
.area-list__dist { font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-ivory-muted); text-align: right; }
.area-list__note { grid-column: 1 / -1; color: var(--c-ivory-muted); font-size: var(--fs-sm); max-width: 44em; }
a.area-list__row:hover .area-list__name { color: var(--c-gold); font-style: italic; }

/* Article cards */
.article-grid { display: grid; gap: clamp(1.5rem, 1rem + 2vw, 2.5rem); grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.article-card__link { display: flex; flex-direction: column; gap: var(--space-4); text-decoration: none; height: 100%; }
.article-card .frame { aspect-ratio: 3 / 2; border-radius: var(--radius); }
.article-card .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.article-card__link:hover img { transform: scale(1.04); }
.article-card__meta { font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--c-gold); }
.section--paper .article-card__meta { color: var(--c-gold-deep); }
.article-card__title { font-family: var(--f-display); font-size: 1.65rem; line-height: 1.12; font-weight: 400; }
.article-card__link:hover .article-card__title { text-decoration: underline; text-decoration-thickness: 1px; }
.article-card__excerpt { font-size: var(--fs-sm); color: var(--c-ivory-muted); }
.section--paper .article-card__excerpt { color: var(--c-text-muted); }

/* 11 GALLERIES, LIGHTBOX & FILMS ======================================= */
.gallery--masonry { columns: 3 280px; column-gap: clamp(0.6rem, 0.3rem + 1vw, 1.25rem); }
.gallery--masonry .gallery__item { break-inside: avoid; margin-bottom: clamp(0.6rem, 0.3rem + 1vw, 1.25rem); }
@media (max-width: 640px) { .gallery--masonry { columns: 2; column-gap: 0.5rem; } .gallery--masonry .gallery__item { margin-bottom: 0.5rem; } }
.gallery__item { position: relative; margin: 0; display: flex; flex-direction: column; }
.gallery__link { display: block; flex: 1; min-height: 0; border-radius: var(--radius); overflow: hidden; cursor: zoom-in; }
.gallery--strip .gallery__link .frame { height: 100%; }
.gallery__link img { width: 100%; height: auto; transition: transform 1.2s var(--ease-out), opacity var(--dur); }
.gallery--strip .gallery__link img { height: 100%; object-fit: cover; }
.gallery__link:hover img { transform: scale(1.03); }
.gallery__item figcaption { font-size: var(--fs-xs); color: var(--c-ivory-muted); padding-top: 0.5rem; }
.gallery--strip { display: grid; grid-auto-flow: column; grid-auto-columns: min(80vw, 520px); gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: var(--space-4); }
.gallery--strip .gallery__item { scroll-snap-align: start; }
.gallery--strip .gallery__link { aspect-ratio: 4 / 5; }

.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: var(--space-6); list-style: none; padding: 0; }
.filters a, .filters button {
  min-height: 44px; padding: 0.5rem 1.1rem; border-radius: 999px; border: 1px solid var(--c-line-dark);
  background: transparent; font-size: var(--fs-sm); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center;
}
.filters [aria-pressed="true"], .filters [aria-current="true"] { background: var(--c-ivory); color: var(--c-ink); border-color: var(--c-ivory); }

.portfolio-grid { display: grid; gap: clamp(1.25rem, 1rem + 1.5vw, 2.25rem); grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); }
.portfolio-grid .story__media { aspect-ratio: 4 / 5; }
.portfolio-empty { padding: var(--space-7); border: 1px dashed var(--c-line-dark); border-radius: var(--radius-lg); text-align: center; color: var(--c-ivory-muted); }

.lightbox {
  width: 100vw; height: 100vh; height: 100dvh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0;
  background: rgba(8, 7, 6, 0.97); color: var(--c-ivory);
}
.lightbox::backdrop { background: rgba(8, 7, 6, 0.9); }
.lightbox[open] { display: grid; grid-template-rows: auto 1fr auto; animation: lb-in var(--dur) var(--ease-out); }
@keyframes lb-in { from { opacity: 0; } }
.lightbox__top { display: flex; justify-content: space-between; align-items: center; padding: var(--space-4) var(--gutter); font-size: var(--fs-sm); color: var(--c-ivory-muted); }
.lightbox__stage { position: relative; display: grid; place-items: center; min-height: 0; padding: 0 clamp(0.5rem, 4vw, 5rem); }
.lightbox__img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; transition: opacity var(--dur); }
.lightbox__img.is-loading { opacity: 0.2; }
.lightbox__caption { padding: var(--space-4) var(--gutter) calc(var(--space-5) + env(safe-area-inset-bottom)); text-align: center; font-size: var(--fs-sm); color: var(--c-ivory-muted); min-height: 3.5rem; }
.lightbox__btn {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(239, 232, 220, 0.08); border: 1px solid var(--c-line-dark); color: var(--c-ivory);
}
.lightbox__btn:hover { background: rgba(239, 232, 220, 0.16); }
.lightbox__btn .icon { width: 22px; height: 22px; }
.lightbox__prev, .lightbox__next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; }
.lightbox__prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox__next { right: clamp(0.5rem, 2vw, 1.5rem); }
@media (max-width: 640px) { .lightbox__prev, .lightbox__next { top: auto; bottom: -3.8rem; transform: none; } }

/* Films: cinema stage, queue and film cards ------------------------------ */
.cinema { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(1.25rem, 1rem + 2vw, 3rem) clamp(2.5rem, 2rem + 3vw, 4.5rem); }
.cinema__ambient { position: absolute; inset: -5rem -6% auto; height: calc(100% + 5rem); z-index: -1; pointer-events: none; opacity: 0.4; transition: opacity var(--dur-slow) var(--ease-out); }
.cinema__ambient img { width: 100%; height: 100%; object-fit: cover; filter: blur(60px) saturate(1.6); transform: scale(1.15); transition: opacity var(--dur) var(--ease-out); }
.cinema__ambient img.is-fading { opacity: 0; }
.cinema::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: radial-gradient(120% 70% at 50% 30%, transparent 0, rgba(14, 12, 10, 0.55) 60%, var(--c-ink) 100%), linear-gradient(180deg, rgba(14, 12, 10, 0.2), var(--c-ink) 96%); }
.cinema__head { display: grid; gap: var(--space-3); max-width: 52rem; margin-bottom: clamp(1.5rem, 1rem + 2vw, 2.75rem); }
@media (min-width: 1000px) {
  .cinema__head { margin-inline: auto; grid-template-columns: auto minmax(0, 34rem); justify-content: space-between; column-gap: var(--space-7); align-items: end; }
  .cinema__head .eyebrow { grid-column: 1 / -1; }
  .cinema__head .lead { font-size: var(--fs-base); }
  .cinema__head h1 { font-size: var(--fs-display-md); }
  .cinema .cinema__stage { max-width: min(1120px, max(720px, calc((100vh - 350px) * 16 / 9))); }
  .cinema__head { max-width: min(1120px, max(720px, calc((100vh - 350px) * 16 / 9))); }
}
.cinema__stage { max-width: 1120px; margin-inline: auto; border-radius: var(--radius-lg); }
.cinema__stage:focus { outline: none; }
.cinema__stage:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 8px; }
.cinema__screen {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden; background: #000;
  box-shadow: 0 0 0 1px rgba(239, 232, 220, 0.12), 0 30px 90px -30px rgba(0, 0, 0, 0.9), 0 0 110px -30px rgba(216, 171, 98, 0.35);
}
.cinema__screen:fullscreen { border-radius: 0; aspect-ratio: auto; width: 100%; height: 100%; }
.cinema__poster, .cinema__screen iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.cinema__poster img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out), opacity var(--dur) var(--ease-out); }
.cinema__poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.45)); pointer-events: none; }
.cinema__poster:hover img { transform: scale(1.025); }
.cinema__screen.is-switching .cinema__poster img { opacity: 0.35; }
.cinema__poster:focus-visible { outline-offset: -4px; }
.cinema__play {
  position: absolute; left: 50%; top: 50%; z-index: 1; width: clamp(64px, 8vw, 96px); aspect-ratio: 1; translate: -50% -50%;
  border-radius: 50%; display: grid; place-items: center; color: var(--c-ivory);
  background: rgba(14, 12, 10, 0.4); border: 1px solid rgba(239, 232, 220, 0.55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast), scale var(--dur) var(--ease-out);
}
.cinema__play::before { content: ""; position: absolute; inset: -9px; border-radius: 50%; border: 1px solid rgba(216, 171, 98, 0.55); }
.cinema__play .icon { width: 34%; height: 34%; margin-left: 6%; }
.cinema__poster:hover .cinema__play, .cinema__poster:focus-visible .cinema__play { background: var(--c-gold); color: var(--c-ink); border-color: var(--c-gold); scale: 1.06; }

.cinema__bar { display: grid; gap: var(--space-4) var(--space-6); padding-top: var(--space-5); }
@media (min-width: 900px) { .cinema__bar { grid-template-columns: minmax(0, 1fr) auto; align-items: start; } }
.cinema__info { min-width: 0; }
.cinema__kicker { display: flex; flex-wrap: wrap; align-items: center; gap: 0.2rem 0.45rem; margin-bottom: var(--space-2); font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-gold); }
.cinema__live { width: 8px; height: 8px; border-radius: 50%; background: var(--c-gold); }
.cinema__title { font-family: var(--f-display); font-weight: 400; font-size: clamp(1.45rem, 1.15rem + 1.3vw, 2.25rem); line-height: 1.15; text-wrap: balance; overflow-wrap: anywhere; }
.cinema__desc { margin-top: var(--space-3); max-width: 60em; font-size: var(--fs-sm); color: var(--c-ivory-muted); display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.cinema__side { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3) var(--space-4); }
@media (min-width: 900px) { .cinema__side { justify-content: flex-end; max-width: 27rem; } }
.cinema__controls { display: flex; align-items: center; gap: 0.25rem; padding: 0.25rem; border-radius: 999px; border: 1px solid var(--c-line-dark); background: rgba(22, 18, 14, 0.65); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.cinema__sep { width: 1px; height: 22px; margin-inline: 0.15rem; background: var(--c-line-dark); }
.icon-btn { width: 44px; height: 44px; border: 0; border-radius: 50%; display: grid; place-items: center; background: transparent; color: var(--c-ivory); transition: background var(--dur-fast), color var(--dur-fast); }
.icon-btn .icon { width: 20px; height: 20px; }
.icon-btn:hover { background: rgba(239, 232, 220, 0.1); }
.icon-btn--main { background: var(--c-ivory); color: var(--c-ink); }
.icon-btn--main:hover, .icon-btn[aria-pressed="true"] { background: var(--c-gold); color: var(--c-ink); }
.icon-btn:disabled { opacity: 0.35; cursor: default; background: transparent; }
@media (max-width: 380px) { .icon-btn { width: 40px; height: 40px; } .cinema__sep { display: none; } }
.switch { position: relative; display: inline-flex; align-items: center; gap: 0.6rem; min-height: 44px; font-size: var(--fs-xs); font-weight: 600; color: var(--c-ivory-muted); cursor: pointer; }
.switch input { position: absolute; left: 0; top: 50%; width: 40px; height: 24px; margin: 0; translate: 0 -50%; opacity: 0; cursor: pointer; }
.switch__track { position: relative; width: 40px; height: 24px; flex: none; border-radius: 999px; background: var(--c-ink-3); border: 1px solid rgba(239, 232, 220, 0.3); transition: background var(--dur-fast), border-color var(--dur-fast); }
.switch__track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: var(--c-ivory-muted); transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast); }
.switch input:checked + .switch__track { background: var(--c-gold); border-color: var(--c-gold); }
.switch input:checked + .switch__track::after { transform: translateX(16px); background: var(--c-ink); }
.switch input:focus-visible + .switch__track { outline: 2px solid var(--c-gold); outline-offset: 3px; }
.cinema__hint { display: none; margin-top: var(--space-4); font-size: var(--fs-xs); color: var(--c-ivory-muted); }
@media (hover: hover) and (pointer: fine) { .cinema__hint { display: block; } }
kbd { font-family: var(--f-body); font-size: 0.85em; font-weight: 700; padding: 0.05em 0.45em; border: 1px solid var(--c-line-dark); border-radius: 4px; background: var(--c-ink-3); color: var(--c-ivory); }
.cinema__empty { display: grid; gap: var(--space-4); justify-items: start; padding: var(--space-6); border: 1px dashed var(--c-line-dark); border-radius: var(--radius-lg); }

.cinema.is-theater { background: #070605; }
.cinema.is-theater .cinema__head { display: none; }
.cinema.is-theater .cinema__ambient { opacity: 0.6; }
.cinema.is-theater .cinema__stage { --theater-w: min(calc(100vw - 2rem), calc((100vh - var(--header-h) - 2rem) * 16 / 9)); width: var(--theater-w); max-width: none; margin-inline: calc((100% - var(--theater-w)) / 2); }
@media (max-width: 700px) { .cinema.is-theater .cinema__stage { --theater-w: 100vw; } .cinema.is-theater .cinema__screen { border-radius: 0; } .cinema.is-theater .cinema__bar { padding-inline: var(--gutter); } }

.queue__head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: var(--space-3); margin-bottom: var(--space-5); }
.queue__count { color: var(--c-ivory-muted); font-size: var(--fs-sm); }
.queue__tools { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-4); margin-bottom: var(--space-6); }
.chips { display: flex; gap: 0.5rem; max-width: 100%; overflow-x: auto; scrollbar-width: none; padding: 3px; margin: -3px; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none; min-height: 44px; padding: 0.5rem 1.1rem; border-radius: 999px; border: 1px solid var(--c-line-dark); background: transparent;
  font-size: var(--fs-sm); font-weight: 600; white-space: nowrap; transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.chip:hover { border-color: rgba(239, 232, 220, 0.45); }
.chip[aria-pressed="true"] { background: var(--c-ivory); color: var(--c-ink); border-color: var(--c-ivory); }
.search-field { position: relative; display: flex; align-items: center; flex: 1 1 15rem; max-width: 22rem; }
.search-field .icon { position: absolute; left: 1rem; color: var(--c-ivory-muted); pointer-events: none; }
.search-field input { width: 100%; min-height: 44px; padding: 0.55rem 1rem 0.55rem 2.7rem; border-radius: 999px; border: 1px solid var(--c-line-dark); background: rgba(239, 232, 220, 0.04); color: var(--c-ivory); font-size: 1rem; }
.search-field input::placeholder { color: var(--c-ivory-muted); opacity: 1; }
.search-field input:focus { outline: none; border-color: var(--c-gold); box-shadow: 0 0 0 3px rgba(216, 171, 98, 0.22); }
.queue__empty { display: grid; gap: var(--space-4); justify-items: center; padding: var(--space-6); border: 1px dashed var(--c-line-dark); border-radius: var(--radius-lg); text-align: center; color: var(--c-ivory-muted); }
.queue__actions { margin-top: var(--space-7); }

.film-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1.25rem, 1rem + 1vw, 1.9rem) clamp(1rem, 0.8rem + 1vw, 1.75rem); grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); }
.film-card { position: relative; min-width: 0; }
.film-card__link { display: grid; gap: var(--space-3); color: inherit; text-decoration: none; border-radius: var(--radius-lg); }
.film-card__thumb { position: relative; display: block; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden; background: var(--c-ink-3); box-shadow: 0 0 0 1px var(--c-line-dark); transition: box-shadow var(--dur) var(--ease-out); }
.film-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.film-card__link:hover .film-card__thumb img { transform: scale(1.05); }
.film-card__link:hover .film-card__thumb { box-shadow: 0 0 0 1px rgba(216, 171, 98, 0.6), 0 18px 40px -18px rgba(216, 171, 98, 0.45); }
.film-card__badge { position: absolute; left: 0.6rem; top: 0.6rem; padding: 0.2rem 0.6rem; border-radius: 999px; background: rgba(14, 12, 10, 0.75); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-ivory); }
.film-card__play { position: absolute; right: 0.6rem; bottom: 0.6rem; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(14, 12, 10, 0.6); border: 1px solid rgba(239, 232, 220, 0.45); color: var(--c-ivory); transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast); }
.film-card__play .icon { width: 15px; height: 15px; margin-left: 2px; }
.film-card__link:hover .film-card__play { background: var(--c-gold); color: var(--c-ink); border-color: var(--c-gold); }
.film-card__body { min-width: 0; }
.film-card__title { font-family: var(--f-body); font-size: var(--fs-sm); font-weight: 600; line-height: 1.45; overflow-wrap: anywhere; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.film-card__link:hover .film-card__title { color: var(--c-gold); }
.film-card__meta { display: block; margin-top: 0.3rem; font-size: var(--fs-xs); color: var(--c-ivory-muted); }
.film-card__link[aria-current="true"] .film-card__thumb { box-shadow: 0 0 0 2px var(--c-gold), 0 0 34px -8px rgba(216, 171, 98, 0.6); }
.film-card__link[aria-current="true"] .film-card__thumb::after { content: "Now playing"; content: "Now playing" / ""; position: absolute; inset: auto auto 0.6rem 0.6rem; padding: 0.2rem 0.6rem; border-radius: 999px; background: var(--c-gold); color: var(--c-ink); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.film-card__link[aria-current="true"] .film-card__play { display: none; }
.film-teaser__head { margin-bottom: clamp(1.75rem, 1.25rem + 2vw, 3rem); }
.film-teaser__foot { margin-top: var(--space-6); }
@media (max-width: 699px) {
  .film-grid.film-grid--queue, .film-grid.film-grid--teaser {
    grid-auto-flow: column; grid-template-columns: none; grid-auto-columns: 80%; overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); margin-inline: calc(var(--gutter) * -1); padding: 2px var(--gutter) var(--space-3); scrollbar-width: none;
  }
  .film-grid--queue::-webkit-scrollbar, .film-grid--teaser::-webkit-scrollbar { display: none; }
  .film-grid--queue > .film-card, .film-grid--teaser > .film-card { scroll-snap-align: start; }
}

.toast {
  position: fixed; left: 50%; bottom: calc(var(--space-6) + env(safe-area-inset-bottom)); z-index: 95; max-width: calc(100vw - 2rem);
  padding: 0.7rem 1.25rem; border-radius: 999px; background: var(--c-ivory); color: var(--c-ink); font-size: var(--fs-sm); font-weight: 600;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.6); opacity: 0; translate: -50% 1rem; pointer-events: none; transition: opacity var(--dur-fast), translate var(--dur) var(--ease-out);
}
.toast:empty { display: none; }
.toast.is-visible { opacity: 1; translate: -50% 0; }
@media (max-width: 760px) { .toast { bottom: calc(76px + env(safe-area-inset-bottom)); } }

/* 12 FORMS =============================================================== */
.enquiry-form { display: grid; gap: var(--space-6); }
.form-grid { display: grid; gap: var(--space-5); }
@media (min-width: 700px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 0.45rem; align-content: start; }
.field--full { grid-column: 1 / -1; }
.field label, .field legend { font-size: var(--fs-sm); font-weight: 700; letter-spacing: 0.02em; }
.field__hint { font-weight: 500; color: var(--c-text-muted); }
.req { color: var(--c-sindoor); }
.field input:not([type="checkbox"]), .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 0.8rem 1rem;
  background: #fffdf9; color: var(--c-text);
  border: 1px solid rgba(28, 23, 19, 0.28); border-radius: 10px;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-gold-deep); box-shadow: 0 0 0 3px rgba(135, 90, 28, 0.22); }
.field [aria-invalid="true"] { border-color: var(--c-error); }
.field__error { color: var(--c-error); font-size: var(--fs-sm); font-weight: 600; }
.field--checks { border: 0; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.field--checks legend { margin-bottom: 0.6rem; width: 100%; }
.check { display: inline-flex; align-items: flex-start; gap: 0.6rem; font-weight: 500 !important; cursor: pointer; }
.field--checks .check { padding: 0.6rem 1rem; border: 1px solid rgba(28, 23, 19, 0.2); border-radius: 999px; min-height: 44px; align-items: center; background: rgba(255, 255, 255, 0.5); }
.field--checks .check:has(input:checked) { border-color: var(--c-gold-deep); background: rgba(135, 90, 28, 0.08); }
.check input { width: 20px; height: 20px; margin: 0.15rem 0 0; accent-color: var(--c-gold-deep); flex: none; }
.field--checks .check input { margin: 0; }
.field--consent .check span { font-size: var(--fs-sm); color: var(--c-text-muted); }
.field--consent a { color: var(--c-gold-deep); }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-4) var(--space-5); }
.form-submit__note { font-size: var(--fs-sm); color: var(--c-text-muted); flex-basis: 100%; }
@media (max-width: 600px) { .form-submit .btn { width: 100%; } }
.form-submit__note a { color: var(--c-gold-deep); font-weight: 700; }
.form-alert { padding: var(--space-4) var(--space-5); border-radius: 10px; border-left: 4px solid; }
.form-alert--error { background: #fbeae7; border-color: var(--c-error); color: #5c1510; }
.form-alert--error a { color: inherit; font-weight: 700; }
.enquiry-form [data-submit][aria-busy="true"] { opacity: 0.7; pointer-events: none; }

.contact-layout { display: grid; gap: clamp(2rem, 1rem + 4vw, 5rem); }
@media (min-width: 1000px) { .contact-layout { grid-template-columns: 1.5fr 1fr; align-items: start; } }
.contact-panel { padding: clamp(1.5rem, 1rem + 2vw, 3rem); background: var(--c-paper); color: var(--c-text); border-radius: var(--radius-lg); }
.contact-aside { display: grid; gap: var(--space-5); position: sticky; top: calc(var(--header-h) + 1.5rem); }
.contact-method { display: grid; grid-template-columns: auto 1fr; gap: 0.2rem var(--space-4); align-items: center; padding: var(--space-5); border: 1px solid var(--c-line-dark); border-radius: var(--radius-lg); text-decoration: none; transition: border-color var(--dur-fast), background-color var(--dur-fast); }
a.contact-method:hover { border-color: var(--c-gold); background: rgba(216, 171, 98, 0.06); }
.contact-method .icon { grid-row: span 2; width: 28px; height: 28px; color: var(--c-gold); }
.contact-method strong { font-size: 1.05rem; }
.contact-method span { font-size: var(--fs-sm); color: var(--c-ivory-muted); }
.map-card { display: block; position: relative; padding: var(--space-6); border-radius: var(--radius-lg); background: radial-gradient(circle at 30% 30%, #2a221a, var(--c-ink-2)); border: 1px solid var(--c-line-dark); text-decoration: none; overflow: hidden; }
.map-card::before { content: ""; position: absolute; inset: 0; opacity: 0.18; background-image: linear-gradient(var(--c-line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--c-line-dark) 1px, transparent 1px); background-size: 28px 28px; }
.map-card > * { position: relative; }
.map-card iframe { width: 100%; height: 320px; border: 0; border-radius: 10px; }

.thanks { min-height: 70vh; display: grid; align-items: center; }

/* 13 ARTICLES (PROSE) ==================================================== */
.article-hero { padding-block: clamp(2rem, 1.5rem + 3vw, 4rem) var(--space-6); }
.article-hero .display { max-width: 18em; }
.article-meta { display: flex; flex-wrap: wrap; gap: 0.4rem 1.25rem; margin-top: var(--space-5); font-size: var(--fs-sm); color: var(--c-ivory-muted); }
.article-cover { margin-bottom: clamp(2.5rem, 2rem + 3vw, 5rem); }
.article-cover .frame { aspect-ratio: 16 / 9; border-radius: var(--radius); max-height: 78vh; }
.article-cover .frame img { width: 100%; height: 100%; object-fit: cover; }
.article-cover figcaption { font-size: var(--fs-xs); color: var(--c-ivory-muted); margin-top: 0.6rem; }
.prose { font-size: 1.075rem; line-height: 1.75; color: #ddd4c5; }
.prose > * + * { margin-top: 1.25em; }
.prose h2 { font-family: var(--f-display); font-weight: 400; font-size: clamp(1.9rem, 1.5rem + 1.5vw, 2.6rem); line-height: 1.1; color: var(--c-ivory); margin-top: 2.2em; text-wrap: balance; }
.prose h3 { font-size: 1.5rem; color: var(--c-ivory); margin-top: 1.8em; }
.prose a { color: var(--c-gold); text-decoration-thickness: 1px; }
.prose a:hover { text-decoration-thickness: 2px; }
.prose strong { color: var(--c-ivory); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: 0.5em; }
.prose li::marker { color: var(--c-gold); }
.prose blockquote { border-left: 2px solid var(--c-gold); padding-left: var(--space-5); font-family: var(--f-display); font-size: 1.5rem; line-height: 1.35; color: var(--c-ivory); }
.prose table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); display: block; overflow-x: auto; }
.prose th, .prose td { text-align: left; padding: 0.8rem 1rem 0.8rem 0; border-bottom: 1px solid var(--c-line-dark); vertical-align: top; min-width: 9rem; }
.prose th { color: var(--c-ivory); font-weight: 700; }
.prose .callout { padding: var(--space-5) var(--space-6); background: var(--c-ink-2); border: 1px solid var(--c-line-dark); border-radius: var(--radius-lg); }
.prose .callout p { margin: 0; }
.prose figure .frame { border-radius: var(--radius); }
.prose figcaption { font-size: var(--fs-xs); color: var(--c-ivory-muted); margin-top: 0.5rem; }
.toc { padding: var(--space-5) var(--space-6); border: 1px solid var(--c-line-dark); border-radius: var(--radius-lg); font-size: var(--fs-sm); }
.toc h2 { font-family: var(--f-body) !important; font-size: var(--fs-xs) !important; letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--c-gold) !important; margin: 0 0 var(--space-3) !important; }
.toc ol { margin: 0; padding-left: 1.2em; }
.toc a { color: var(--c-ivory-muted); text-decoration: none; }
.toc a:hover { color: var(--c-gold); text-decoration: underline; }
.article-end { margin-top: var(--space-8); padding: var(--space-6); border-radius: var(--radius-lg); background: var(--c-paper); color: var(--c-text); display: grid; gap: var(--space-4); }
.article-end .display em { color: var(--c-gold-deep); }

/* 14 FOOTER & FLOATING ACTIONS ========================================== */
.site-footer { background: var(--c-ink); border-top: 1px solid var(--c-line-dark); padding-block: var(--space-8) var(--space-6); font-size: var(--fs-sm); }
.site-footer__grid { display: grid; gap: var(--space-7); grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
@media (min-width: 1100px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.site-footer__intro { margin-top: var(--space-5); color: var(--c-ivory-muted); max-width: 30em; }
.site-footer__title { font-family: var(--f-body); font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--c-gold); margin-bottom: var(--space-4); }
.site-footer__title--spaced { margin-top: var(--space-6); }
.site-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.25rem; }
.site-footer__links a { color: var(--c-ivory-muted); text-decoration: none; display: inline-block; padding: 0.3rem 0; }
.site-footer__links a:hover { color: var(--c-ivory); text-decoration: underline; }
.site-footer__links--inline { display: flex; flex-wrap: wrap; gap: 0.25rem 1rem; }
.nap { color: var(--c-ivory-muted); line-height: 1.8; }
.nap strong { color: var(--c-ivory); }
.nap a { color: var(--c-ivory); text-decoration: none; display: inline-block; padding-block: 0.25rem; }
.nap a:hover { text-decoration: underline; }
.site-footer__hours { color: var(--c-ivory-muted); margin: var(--space-4) 0; }
.social { list-style: none; margin: var(--space-5) 0 0; padding: 0; display: flex; gap: 0.6rem; }
.social a { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--c-line-dark); color: var(--c-ivory-muted); transition: color var(--dur-fast), border-color var(--dur-fast); }
.social a:hover { color: var(--c-gold); border-color: var(--c-gold); }
.site-footer__bottom { margin-top: var(--space-8); padding-top: var(--space-5); border-top: 1px solid var(--c-line-dark); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-3); color: var(--c-ivory-muted); font-size: var(--fs-xs); }
.site-footer__bottom a { color: var(--c-ivory-muted); display: inline-block; padding-block: 0.4rem; }

.float-actions { position: fixed; right: max(1.25rem, env(safe-area-inset-right)); bottom: max(1.25rem, env(safe-area-inset-bottom)); z-index: 90; transition: opacity var(--dur), transform var(--dur) var(--ease-out); }
.float-actions__wa {
  display: inline-flex; align-items: center; gap: 0.6rem; height: 56px; padding: 0 1.1rem 0 1rem; border-radius: 999px;
  background: #1f8f4e; color: #fff; text-decoration: none; font-weight: 700; font-size: var(--fs-sm);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transition: transform var(--dur-fast), background-color var(--dur-fast);
}
.float-actions__wa:hover { background: #197a42; transform: translateY(-2px); }
.float-actions__wa .icon { width: 26px; height: 26px; }
.js .float-actions:not(.is-visible) { opacity: 0; transform: translateY(12px); pointer-events: none; }

.mobile-bar { display: none; }
@media (max-width: 760px) {
  .float-actions { display: none; }
  .mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    display: grid; grid-template-columns: 1fr 1fr 1.4fr;
    background: rgba(14, 12, 10, 0.96); border-top: 1px solid var(--c-line-dark);
    padding-bottom: env(safe-area-inset-bottom);
    transition: transform var(--dur) var(--ease-out);
  }
  .js .mobile-bar:not(.is-visible) { transform: translateY(110%); }
  .mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 0.45rem; min-height: 58px; font-size: var(--fs-sm); font-weight: 700; text-decoration: none; color: var(--c-ivory); }
  .mobile-bar a + a { border-left: 1px solid var(--c-line-dark); }
  .mobile-bar .icon { width: 20px; height: 20px; color: var(--c-gold); }
  .mobile-bar__primary { background: var(--c-gold); color: var(--c-ink) !important; }
  .site-footer { padding-bottom: calc(var(--space-6) + 64px); }
}

/* 15 MOTION, REDUCED MOTION, PRINT ====================================== */
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); transition-delay: var(--reveal-delay, 0ms); }
  .js [data-reveal].is-visible { opacity: 1; transform: none; }
  .hero__media img { animation: hero-zoom 2.8s var(--ease-out) both; }
  .hero__bar { animation: bar-open 1.4s var(--ease-in-out) 0.25s both; }
  .hero__kicker, .hero__line, .hero__lead, .hero__actions, .hero__proof, .hero__facts { animation: rise 1.1s var(--ease-out) both; }
  .hero__proof { animation-delay: 0.95s; }
  .hero__line:nth-child(1) { animation-delay: 0.35s; }
  .hero__line:nth-child(2) { animation-delay: 0.47s; }
  .hero__line:nth-child(3) { animation-delay: 0.59s; }
  .hero__kicker { animation-delay: 0.2s; }
  .hero__lead { animation-delay: 0.75s; }
  .hero__actions { animation-delay: 0.85s; }
  .hero__facts { animation-delay: 1s; }
  .cinema__play::before { animation: film-ring 2.6s var(--ease-out) infinite; }
  .cinema.is-playing .cinema__live { animation: film-live 1.6s ease-in-out infinite; }
}
@media (max-width: 700px) and (prefers-reduced-motion: no-preference) {
  .js [data-reveal] { transform: translateY(16px); transition-duration: 0.55s; }
  .hero__kicker, .hero__line, .hero__lead, .hero__actions { animation-duration: 0.7s; }
  .hero__kicker { animation-delay: 0.05s; }
  .hero__line:nth-child(1) { animation-delay: 0.1s; }
  .hero__line:nth-child(2) { animation-delay: 0.16s; }
  .hero__line:nth-child(3) { animation-delay: 0.22s; }
  .hero__lead { animation-delay: 0.3s; }
  .hero__actions { animation-delay: 0.36s; }
  .hero__bar { animation-duration: 0.9s; animation-delay: 0s; }
}
@keyframes hero-zoom { from { transform: scale(1.08); } }
@keyframes bar-open { to { transform: scaleY(0); } }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } }
@keyframes film-ring { 0% { opacity: 0.9; scale: 1; } 80%, 100% { opacity: 0; scale: 1.35; } }
@keyframes film-live { 50% { opacity: 0.25; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .hero__bar { display: none; }
}

@media print {
  .site-header, .mobile-menu, .float-actions, .mobile-bar, .cta-band, .chapters__controls, .hero__bar { display: none !important; }
  body { background: #fff; color: #000; }
  .section, .page-hero { padding-block: 1.5rem; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}
