/* =========================================================
   LNR Media — design system
   Monochrome · modern-serif headlines · structured agency
   ========================================================= */

:root {
  /* Ink & paper */
  --ink:        #131315;
  --ink-soft:   #26262a;
  --grey-800:   #3a3a40;
  --grey-700:   #4a4a50;
  --grey-600:   #5c5c64;
  --grey-500:   #7b7b84;
  --grey-400:   #9a9aa2;
  --grey-300:   #c2c2c8;
  --grey-200:   #dcdce0;
  --grey-100:   #eaeaed;
  --paper:      #f4f4f3;
  --paper-2:    #ececeb;
  --white:      #ffffff;
  --black:      #000000;

  --line:       rgba(19, 19, 21, 0.13);
  --line-soft:  rgba(19, 19, 21, 0.07);
  --line-invert:rgba(255, 255, 255, 0.16);

  /* Type */
  --font-serif: "Newsreader", Georgia, "Times New Roman", serif;
  --font-sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Optional restrained accent (default = pure ink, monochrome) */
  --accent:     var(--ink);

  /* Rhythm */
  --gut:        clamp(20px, 4.5vw, 64px);   /* page side gutter */
  --section-y:  clamp(72px, 11vw, 160px);
  --maxw:       1480px;

  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
::selection { background: var(--ink); color: var(--paper); }

/* ---------- layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(48px, 7vw, 96px); }

/* inverted (ink) section */
.invert {
  background: var(--black);
  color: var(--paper);
}
.invert .eyebrow { color: var(--grey-400); }
.invert .eyebrow::before { background: var(--grey-500); }
.invert .rule { border-color: var(--line-invert); }
.invert .muted { color: var(--grey-400); }

/* ---------- type system ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-600);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--grey-400);
  display: inline-block;
}
.eyebrow--plain::before { display: none; }

.display {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.display em { font-style: italic; }

.h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.3vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  text-wrap: balance;
}
.h3 {
  font-family: var(--font-serif);
  font-weight: 450;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.lead {
  font-size: clamp(1.12rem, 1.5vw, 1.4rem);
  line-height: 1.55;
  color: var(--grey-800);
  max-width: 40ch;
  text-wrap: pretty;
}
.invert .lead { color: var(--grey-300); }
.muted { color: var(--grey-600); }
.serif-accent { font-family: var(--font-serif); font-style: italic; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--paper); --bd: var(--ink);
  display: inline-flex; align-items: center; gap: 0.6em;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--bd);
  padding: 0.95em 1.5em;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn .ico { width: 1.05em; height: 1.05em; transition: transform .3s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .ico { transform: translate(2px, -2px); }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--line); }
.btn--ghost:hover { --bg: var(--ink); --fg: var(--paper); --bd: var(--ink); }
.invert .btn { --bg: var(--paper); --fg: var(--ink); --bd: var(--paper); }
.invert .btn--ghost { --bg: transparent; --fg: var(--paper); --bd: var(--line-invert); }
.invert .btn--ghost:hover { --bg: var(--paper); --fg: var(--ink); --bd: var(--paper); }

.linkline {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-weight: 600; font-size: 0.95rem;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
  transition: gap .25s var(--ease), opacity .25s var(--ease);
}
.linkline:hover { gap: 0.95em; }
.invert .linkline { border-color: var(--paper); }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gut);
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--line);
  padding-block: 13px;
}
.brand {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: baseline; gap: 0.5ch;
}
.brand .mark {
  font-weight: 800; letter-spacing: -0.02em;
}
.brand .dot { color: var(--grey-500); font-weight: 800; }
.brand small {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--grey-500);
}
.brand-logo { height: 38px; width: auto; display: block; }
.brand-logo--lg { height: 58px; }
.nav.is-stuck .brand-logo { height: 34px; transition: height .4s var(--ease); }
.nav-links {
  display: flex; align-items: center; gap: clamp(18px, 2vw, 34px);
  list-style: none;
}
.nav-links a {
  font-size: 0.98rem; font-weight: 600; letter-spacing: 0.01em;
  color: var(--grey-700);
  position: relative; padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -1px;
  width: 0; height: 1px; background: var(--ink);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

@media (max-width: 940px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    padding: 8px; margin: -8px;
  }
  .nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
  .mobile-menu.is-open ~ .nav .nav-toggle span:nth-child(1),
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* mobile menu sheet */
.mobile-menu {
  position: fixed; inset: 0; z-index: 79;
  background: var(--paper);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gut);
  gap: 6px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 9vw, 3.2rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.mobile-menu .mm-meta { margin-top: 32px; display: flex; flex-direction: column; gap: 8px; font-size: 1rem; }
.mobile-menu .mm-meta a { font-family: var(--font-sans); font-size: 1.05rem; color: var(--grey-700); }

/* ---------- hero ---------- */
.hero { padding-top: clamp(130px, 18vh, 220px); padding-bottom: clamp(40px, 6vw, 80px); }
.hero-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.hero-head { flex: 1 1 480px; }
.hero .display {
  margin-top: 26px;
  max-width: 18ch;
  text-wrap: pretty;
  font-size: clamp(2.9rem, 6.3vw, 5.6rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.hero-aside {
  max-width: 34ch; padding-bottom: 6px;
  display: flex; flex-direction: column; gap: 26px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 40px;
  margin-top: clamp(36px, 5vw, 64px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  list-style: none;
}
@media (max-width: 760px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
}
.hero-meta li { display: flex; flex-direction: column; gap: 3px; }
.hero-meta dt, .hero-meta .k {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--grey-500);
}
.hero-meta .v { font-size: 0.98rem; font-weight: 600; color: var(--ink); }

/* showreel */
.reel {
  position: relative;
  margin-top: clamp(40px, 6vw, 80px);
  aspect-ratio: 16 / 8.1;
  overflow: hidden;
  background: var(--black);
  border-radius: 4px;
}
.reel image-slot, .reel .reel-media { position: absolute; inset: 0; width: 100%; height: 100%; touch-action: pan-y; }
.reel-media { object-fit: cover; }
.reel-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: clamp(20px, 3vw, 40px);
  background: linear-gradient(to top, rgba(0,0,0,.5), rgba(0,0,0,0) 55%);
  color: var(--white);
  pointer-events: none;
}
.reel-overlay .eyebrow { color: rgba(255,255,255,.8); }
.reel-overlay .eyebrow::before { background: rgba(255,255,255,.6); }
.reel-play {
  position: absolute; inset: 0; z-index: 3; margin: auto;
  width: clamp(72px, 8vw, 104px); height: clamp(72px, 8vw, 104px);
  display: grid; place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  color: var(--ink);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.reel-play:hover { transform: scale(1.08); background: var(--paper); }
.reel-play svg { width: 34%; height: 34%; margin-left: 8%; }

/* 3-up featured films */
.reel-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 30px);
  margin-top: clamp(40px, 6vw, 80px);
}
.reel-item { cursor: pointer; }
.reel-thumb {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  background: var(--black); border-radius: 4px;
}
.reel-thumb image-slot, .reel-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; touch-action: pan-y; }
.reel-thumb img { object-fit: cover; transition: transform .8s var(--ease); }
.reel-item:hover .reel-thumb img { transform: scale(1.045); }
.reel-item .reel-play {
  position: absolute; inset: 0; margin: auto;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: none; color: var(--black);
  filter: drop-shadow(0 1px 5px rgba(255,255,255,.55));
  transition: transform .3s var(--ease);
}
.reel-item:hover .reel-play { transform: scale(1.12); }
.reel-item .reel-play svg { width: 100%; height: 100%; margin-left: 0; }
.reel-cap { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 16px; }
.reel-title { font-family: var(--font-serif); font-size: clamp(1.1rem, 1.4vw, 1.4rem); line-height: 1.15; letter-spacing: -0.01em; }
.reel-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-500); flex-shrink: 0; }
@media (max-width: 760px) { .reel-row { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- logo / trust bar ---------- */
.trust { border-block: 1px solid var(--line); }
.trust .wrap { display: flex; flex-direction: column; align-items: center; text-align: center; gap: clamp(20px, 2.5vw, 32px); flex-wrap: wrap; padding-block: clamp(26px, 3.5vw, 44px); }
.trust-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--grey-500); line-height: 1.4; flex-shrink: 0;
}
.trust-logos {
  display: flex; align-items: center; justify-content: center; gap: clamp(28px, 4.5vw, 64px); flex-wrap: wrap;
}
.trust-logos img {
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
  mix-blend-mode: multiply;
  transition: opacity .3s var(--ease), filter .3s var(--ease);
}
.trust-logos img:hover { opacity: 1; filter: grayscale(0); }
.trust-logos .logo-galderma  { height: 24px; }
.trust-logos .logo-riveron   { height: 30px; }
.trust-logos .logo-oliva     { height: 40px; }
.trust-logos .logo-fofm      { height: 42px; }
.trust-logos .logo-portillos { height: 26px; }
@media (max-width: 520px) {
  .trust-logos { gap: 26px 34px; }
  .trust-logos img { opacity: 0.7; }
}

/* ---------- section header ---------- */
.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.sec-head .sec-head-l { flex: 1 1 440px; display: flex; flex-direction: column; gap: 20px; }
.sec-head .sec-head-r { flex: 0 1 400px; max-width: 400px; padding-bottom: 6px; font-size: clamp(1.15rem, 1.4vw, 1.35rem); line-height: 1.5; color: var(--grey-700); }
.invert .sec-head .sec-head-r { color: var(--grey-300); }

/* ---------- work grid ---------- */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 34px; }
.filter {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em;
  padding: 0.5em 1.05em; border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--grey-600);
  transition: all .22s var(--ease);
}
.filter:hover { color: var(--ink); border-color: var(--grey-400); }
.filter.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 1.6vw, 26px);
}
.work-card {
  position: relative; grid-column: span 6;
  cursor: pointer;
  background: var(--black);
  overflow: hidden;
  border-radius: 4px;
  transition: opacity .4s var(--ease), filter .4s var(--ease);
}
.work-card.span-4 { grid-column: span 4; }
.work-card.span-8 { grid-column: span 8; }
.work-card.span-12 { grid-column: span 12; }
.work-thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.work-card.tall .work-thumb { aspect-ratio: 4 / 5; }
.work-card.wide .work-thumb { aspect-ratio: 16 / 7; }
.work-thumb image-slot, .work-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; touch-action: pan-y; }
.work-thumb img { object-fit: cover; transition: transform .8s var(--ease); }
.work-card:hover .work-thumb img { transform: scale(1.045); }
.work-meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(16px, 1.8vw, 26px);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,0) 70%);
}
.work-meta .wtitle { font-family: var(--font-serif); font-size: clamp(1.15rem, 1.7vw, 1.55rem); line-height: 1.08; letter-spacing: -0.01em; }
.work-meta .wclient { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,.72); margin-top: 6px; }
.work-tag {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4em 0.7em; border: 1px solid rgba(255,255,255,.4); border-radius: 999px;
  flex-shrink: 0; backdrop-filter: blur(4px);
}
.work-play {
  position: absolute; top: clamp(14px, 1.6vw, 22px); right: clamp(14px, 1.6vw, 22px); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  color: var(--ink);
  opacity: 0; transform: scale(.85);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.work-card:hover .work-play { opacity: 1; transform: scale(1); }
@media (hover: none) { .work-play { opacity: 1; transform: none; } }
.work-play svg { width: 36%; height: 36%; margin-left: 8%; }
.work-card.is-hidden { display: none; }

@media (max-width: 760px) {
  .work-card, .work-card.span-4, .work-card.span-8, .work-card.span-12 { grid-column: span 12; }
}

/* ---------- services ---------- */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-invert);
  border-left: 1px solid var(--line-invert);
}
.svc {
  padding: clamp(32px, 3vw, 52px) clamp(26px, 2.4vw, 44px);
  border-bottom: 1px solid var(--line-invert);
  border-right: 1px solid var(--line-invert);
  display: flex; flex-direction: column; gap: 18px;
  transition: background .3s var(--ease);
}
.svc:hover { background: rgba(255,255,255,.04); }
.svc .svc-num { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; color: var(--grey-500); }
.svc h3 { color: var(--paper); font-size: clamp(1.6rem, 1.9vw, 2.15rem); }
.svc p { color: var(--grey-400); font-size: clamp(1.02rem, 1.1vw, 1.12rem); line-height: 1.55; }
.svc ul { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 16px; }
.svc ul li { font-size: 0.8rem; color: var(--grey-300); border: 1px solid var(--line-invert); border-radius: 999px; padding: 0.4em 0.8em; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- approach ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(28px, 3vw, 56px); }
.step { display: flex; flex-direction: column; gap: 14px; }
.step .step-n {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1;
  color: var(--grey-300); border-top: 2px solid var(--ink); padding-top: 14px;
}
.step h3 { letter-spacing: -0.01em; }
.step p { color: var(--grey-700); font-size: 1rem; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 0.62fr 1.38fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.about-portrait { aspect-ratio: 4/5; max-width: 320px; border-radius: 4px; overflow: hidden; background: var(--paper-2); }
.about-portrait image-slot { width: 100%; height: 100%; }
.about-copy { display: flex; flex-direction: column; gap: 22px; }
.about-copy p { color: var(--grey-800); }
.signature { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; color: var(--ink); }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } .about-portrait { max-width: 300px; } }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)); gap: 2px; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--paper); padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; gap: 8px; }
.stat .num { font-family: var(--font-serif); font-size: clamp(2.4rem, 4.5vw, 3.6rem); line-height: 1; letter-spacing: -0.02em; }
.stat .lbl { font-size: 0.82rem; color: var(--grey-600); max-width: 18ch; }

/* ---------- faq ---------- */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: clamp(20px, 2.4vw, 30px) 0;
  font-family: var(--font-serif); font-size: clamp(1.15rem, 1.8vw, 1.55rem); line-height: 1.2; letter-spacing: -0.01em;
}
.faq-q .pm { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--ink); transition: transform .3s var(--ease); }
.faq-q .pm::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-q .pm::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item.is-open .pm::after { transform: scaleY(0); }
.faq-a { overflow: hidden; height: 0; transition: height .4s var(--ease); }
.faq-a-inner { padding-bottom: clamp(20px, 2.4vw, 30px); color: var(--grey-700); max-width: 56ch; }
@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; } }

/* ---------- closing CTA ---------- */
.cta-big { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 30px; }
.cta-big .display { max-width: 16ch; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.cta-contacts { display: flex; gap: clamp(24px, 4vw, 56px); flex-wrap: wrap; justify-content: center; margin-top: 10px; }
.cta-contacts a { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.cta-contacts .k { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-500); }
.cta-contacts .v { font-family: var(--font-serif); font-size: clamp(1.3rem, 2.4vw, 2rem); transition: opacity .2s; }
.cta-contacts a:hover .v { opacity: .6; }

/* ---------- footer ---------- */
.footer { background: var(--black); color: var(--paper); padding-block: clamp(48px, 6vw, 84px) 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: clamp(40px, 5vw, 64px); border-bottom: 1px solid var(--line-invert); }
.footer .brand { color: var(--paper); font-size: 1.5rem; }
.footer-col h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--grey-300); font-size: 0.95rem; transition: color .2s; }
.footer-col a:hover { color: var(--paper); }
.footer-blurb { color: var(--grey-400); font-size: 0.95rem; max-width: 34ch; margin-top: 18px; line-height: 1.55; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 24px; font-size: 0.8rem; color: var(--grey-500); }
.footer-bottom .seo { max-width: 70ch; line-height: 1.5; }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer .brand { grid-column: 1 / -1; } }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(10,10,11,.94);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 60px);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-inner { width: 100%; max-width: 1180px; }
.lightbox-frame { position: relative; aspect-ratio: 16/9; background: #000; border-radius: 4px; overflow: hidden; }
.lightbox-frame iframe, .lightbox-frame .ph { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lightbox-cap { display: flex; justify-content: space-between; gap: 20px; margin-top: 16px; color: var(--paper); }
.lightbox-cap .lt { font-family: var(--font-serif); font-size: 1.3rem; }
.lightbox-cap .lc { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-400); }
.lightbox-close {
  position: absolute; top: clamp(14px, 3vw, 28px); right: clamp(14px, 3vw, 28px);
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-invert);
  color: var(--paper); display: grid; place-items: center;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.lightbox-close:hover { background: var(--paper); color: var(--ink); }
.lightbox-close svg { width: 18px; height: 18px; }

/* ---------- striped placeholder ---------- */
.ph-stripe {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 10px, rgba(255,255,255,0) 10px 20px),
    var(--ink-soft);
  display: grid; place-items: center;
}
.ph-stripe .ph-tag {
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey-400);
  border: 1px dashed var(--grey-600);
  padding: 0.6em 1em; border-radius: 4px;
  text-align: center;
}

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- contact page ---------- */
.contact-hero { padding-top: clamp(140px, 20vh, 240px); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: start; margin-top: clamp(40px, 5vw, 72px); }
.contact-rows { display: flex; flex-direction: column; }
.contact-row { display: flex; flex-direction: column; gap: 6px; padding: clamp(20px, 2.4vw, 30px) 0; border-top: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 1px solid var(--line); }
.contact-row .k { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-500); }
.contact-row .v { font-family: var(--font-serif); font-size: clamp(1.4rem, 2.6vw, 2.1rem); line-height: 1.1; transition: opacity .2s; }
.contact-row a.v:hover { opacity: .55; }
.contact-row .sub { font-size: 0.95rem; color: var(--grey-600); }
.form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-600); }
.field input, .field textarea, .field select {
  font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line);
  border-radius: 4px; padding: 0.85em 1em;
  transition: border-color .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--grey-500); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- photography gallery ---------- */
.gallery-hero { padding-top: clamp(140px, 18vh, 220px); padding-bottom: clamp(20px, 3vw, 40px); }
.gallery-hero .display { max-width: 18ch; margin-top: 22px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.2vw, 18px);
  padding-bottom: var(--section-y);
}
.gallery-grid figure {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--ink);
  border-radius: 3px;
  cursor: zoom-in;
}
.gallery-grid img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), opacity .6s var(--ease);
}
.gallery-grid figure:hover img { transform: scale(1.05); }
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gallery-grid { grid-template-columns: 1fr; } }

/* image lightbox (gallery) */
.glb { position: fixed; inset: 0; z-index: 130; background: rgba(10,10,11,.95);
  display: grid; place-items: center; padding: clamp(16px, 4vw, 56px);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; }
.glb.is-open { opacity: 1; visibility: visible; }
.glb img { max-width: 100%; max-height: 86vh; width: auto; height: auto; border-radius: 3px; object-fit: contain; }
.glb-nav { position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line-invert);
  color: var(--paper); display: grid; place-items: center; transition: background .25s var(--ease), color .25s var(--ease); }
.glb-nav:hover { background: var(--paper); color: var(--ink); }
.glb-nav svg { width: 20px; height: 20px; }
.glb-prev { left: clamp(12px, 3vw, 30px); }
.glb-next { right: clamp(12px, 3vw, 30px); }
.glb-close { position: absolute; top: clamp(14px, 3vw, 28px); right: clamp(14px, 3vw, 28px);
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-invert);
  color: var(--paper); display: grid; place-items: center; transition: background .25s var(--ease), color .25s var(--ease); }
.glb-close:hover { background: var(--paper); color: var(--ink); }
.glb-close svg { width: 18px; height: 18px; }
.glb-count { position: absolute; bottom: clamp(16px, 3vw, 30px); left: 50%; transform: translateX(-50%);
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-400); }
@media (max-width: 600px) { .glb-nav { width: 42px; height: 42px; } }

/* ---------- misc ---------- */
/* image-slot defaults to 12px rounded corners; that mismatched the tile's
   own clip and showed black slivers in each corner. Square the slot frame
   so the parent tile's radius is the only rounding. */
image-slot::part(frame) { border-radius: 0 !important; }

.divider { height: 1px; background: var(--line); border: 0; }
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--ink); color: var(--paper); padding: 10px 16px; border-radius: 4px;
}
.skip-link:focus { left: 16px; }
