/* ============================================================
   shared.css — Documentary Grid system
   White base · ink-navy structure · blue accent · Lato

   Breakpoints
     ≥1080px  desktop   full nav, two-column layouts
     700–1079 tablet    hamburger nav, two-column layouts kept
     <700px   phone     single column, tighter type scale
   ============================================================ */

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

/* ── Variables ── */
:root {
  --bg: #FFFFFF;          /* white base */
  --bg-band: #F4F6FA;     /* cool off-white panel */
  --ink: #15171C;         /* near-black, cool */
  --ink-mid: #414954;     /* darker slate — ~7.5:1 on white for readable body copy */
  --rule: #E3E7EE;        /* hairline */
  --navy: #2A4674;        /* deep navy-blue — structure, CTAs, footer */
  --navy-2: #3A5A8E;      /* lifted navy (hover) */
  --blue: #2C53C6;        /* accent — eyebrows, tags, links */
  --accent: #2C53C6;      /* alias kept for inline usages */
  --dark: #2A4674;
  --font: 'Lato', sans-serif;

  --nav-h: 72px;
  --gutter: 80px;         /* single horizontal rhythm for nav + every section */
  --site-max: 1560px;     /* stops the layout stretching thin on wide monitors */

  /* notch / home-indicator insets, 0 everywhere that has none */
  --safe-l: env(safe-area-inset-left, 0px);
  --safe-r: env(safe-area-inset-right, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
}

@media (max-width: 1079px) { :root { --nav-h: 64px; --gutter: 40px; } }
@media (max-width: 699px)  { :root { --nav-h: 56px; --gutter: 22px; } }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;  /* stop iOS inflating text in landscape */
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(42, 70, 116, 0.14);
  overflow-x: hidden;
}

@media (max-width: 1079px) { body { font-size: 17px; line-height: 1.62; } }
@media (max-width: 699px)  { body { font-size: 16px; line-height: 1.58; } }

/* keep the page from stretching thin on ultrawide displays */
#root { max-width: var(--site-max); margin: 0 auto; }

[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
/* blue on navy is invisible (1.4:1), so navy surfaces get a white ring */
nav#main-nav :focus-visible, .mobile-menu :focus-visible, .site-footer :focus-visible, #contact-footer :focus-visible,
.aside-card :focus-visible, .services-band.navy :focus-visible, .lightbox :focus-visible, .carousel :focus-visible { outline-color: #fff; }

/* "Skip to content": first thing in the tab order, visible only while focused */
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 500;
  padding: 12px 18px; background: var(--navy); color: #fff; border-radius: 3px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transform: translateY(-200%); transition: transform 0.15s;
}
.skip-link:focus { transform: translateY(0); outline-color: #fff; }
.skip-target { outline: none; }

a { color: inherit; }

/* honour the OS "reduce motion" setting */
@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;
  }
}

/* ── NAV ── */
nav#main-nav {
  position: fixed; top: 0; left: 0; right: 0;
  margin: 0 auto; max-width: var(--site-max);
  height: var(--nav-h);
  z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding-left: calc(var(--gutter) + var(--safe-l));
  padding-right: calc(var(--gutter) + var(--safe-r));
  /* Translucent, and still the button navy: rgba(13,45,97,.88) composited on
     white is exactly #2A4674. Over a photo it goes a shade darker, which reads
     as the see-through rather than as a different colour. */
  background: rgba(13, 45, 97, 0.88);
  color: #fff;
  transition: box-shadow 0.3s;
}
@supports ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  nav#main-nav { -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
}
nav#main-nav.scrolled { box-shadow: 0 1px 0 rgba(0,0,0,0.12), 0 8px 24px rgba(21,23,28,0.10); }
nav#main-nav.menu-open { background: var(--navy); -webkit-backdrop-filter: none; backdrop-filter: none; box-shadow: none; }

.nav-name {
  font-weight: 900; font-size: 18px; letter-spacing: -0.01em;
  color: #fff; text-decoration: none;
  flex-shrink: 0; white-space: nowrap;
  display: flex; align-items: center; align-self: stretch;  /* full-height tap target */
}
.nav-center { display: flex; align-items: center; gap: 30px; list-style: none; position: relative; }
.nav-center li { position: relative; }
.nav-center a {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.78); text-decoration: none; white-space: nowrap;
  transition: color 0.2s; display: flex; align-items: center; gap: 5px; cursor: pointer;
  padding: 12px 0;
}
.nav-center a.active { color: #fff; text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }

/* Services dropdown. Opens on hover and keyboard focus (CSS) and on click/touch
   (the .open class from React). White panel under the navy bar, like the buttons
   in reverse. */
.nav-dd-btn {
  background: none; border: none; cursor: pointer; font-family: var(--font);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.78); white-space: nowrap; transition: color 0.2s;
  display: flex; align-items: center; gap: 7px; padding: 12px 0;
}
.nav-dd-btn svg { transition: transform 0.18s; margin-top: 1px; }
.nav-dd-btn.active { color: #fff; text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }
.has-dropdown.open .nav-dd-btn, .has-dropdown:focus-within .nav-dd-btn { color: #fff; }
.has-dropdown.open .nav-dd-btn svg, .has-dropdown:focus-within .nav-dd-btn svg { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: calc(100% - 4px); left: -22px; list-style: none;
  background: var(--bg); border: 1px solid var(--rule);
  box-shadow: 0 10px 36px rgba(27,42,74,0.14);
  min-width: 240px; padding: 8px 0;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s; z-index: 300;
}
.has-dropdown.open .nav-dropdown, .has-dropdown:focus-within .nav-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown a {
  display: block; padding: 11px 22px;
  font-size: 14px; font-weight: 400; letter-spacing: 0.01em; text-transform: none;
  color: var(--ink-mid); text-decoration: none; transition: color 0.15s, background 0.15s;
}
.nav-dropdown a.active { color: var(--navy); background: var(--bg-band); font-weight: 700; }

.nav-right { display: flex; align-items: center; gap: 24px; }

/* ── LANGUAGE TOGGLE ── */
.lang-toggle { display: flex; align-items: center; gap: 2px; }
.lang-toggle button {
  background: none; border: none; cursor: pointer; font-family: var(--font);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7); padding: 12px 6px; transition: color 0.18s;
}
.lang-toggle button.active { color: #fff; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; }
.lang-sep { color: rgba(255,255,255,0.3); font-size: 12px; }

.nav-socials { display: flex; align-items: center; gap: 2px; list-style: none; margin-right: -10px; }
.nav-socials a, .cfb-socials a, .cf-socials a, .mobile-socials a, .sf-socials a, .also-row a {
  color: var(--ink-mid); display: flex; align-items: center; justify-content: center;
  transition: color 0.2s; text-decoration: none;
  padding: 13px 11px;   /* 18px icon → 40×44 hit area */
}

.nav-hamburger {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer; background: none; border: none;
  width: 44px; height: 44px; margin-right: -11px;  /* 44px target, unchanged optics */
}
.nav-socials a, .mobile-socials a { color: rgba(255,255,255,0.78); }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: transform 0.22s, opacity 0.22s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ──
   Rendered as a sibling of <nav>, not a child: nesting it inside the fixed,
   z-indexed nav trapped it in the nav's stacking context, where it painted
   over the logo and the hamburger and left no way to close it. */
.mobile-menu {
  position: fixed; inset: 0;
  max-width: var(--site-max); margin: 0 auto;
  background: var(--navy); color: #fff; z-index: 190;
  display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + 24px) calc(var(--gutter) + var(--safe-r)) calc(40px + var(--safe-b)) calc(var(--gutter) + var(--safe-l));
  transform: translateX(100%);
  visibility: hidden;   /* keeps the links out of tab order + screen readers when shut */
  transition: transform 0.28s ease, visibility 0s linear 0.28s;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.28s ease, visibility 0s linear 0s;
}
.mobile-menu-links { list-style: none; }
.mobile-menu-links > li > a {
  display: block; font-size: 24px; font-weight: 900; color: rgba(255,255,255,0.82);
  text-decoration: none; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.14); transition: color 0.2s;
}
.mobile-menu-links > li > a.active { color: #fff; text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }
.mobile-menu-group { padding: 18px 0 8px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.mobile-menu-label { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 4px; }
.mobile-menu-sub { list-style: none; }
.mobile-menu-sub a { display: block; font-size: 22px; font-weight: 900; color: rgba(255,255,255,0.82); text-decoration: none; padding: 10px 0; transition: color 0.2s; }
.mobile-menu-sub a.active { color: #fff; text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }

.mobile-menu-foot { margin-top: auto; padding-top: 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mobile-socials { display: flex; gap: 6px; list-style: none; margin-left: -11px; }
.mobile-menu-foot .lang-toggle { gap: 4px; }
.mobile-menu-foot .lang-toggle button { font-size: 13px; padding: 12px 10px; }

/* ── IMAGE PLACEHOLDERS ── */
.img-ph {
  background: #E7EBF2; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 14px;
}
.img-ph::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-55deg, transparent 0 16px, rgba(27,42,74,0.05) 16px 18px);
}
.img-ph span {
  font-family: 'Courier New', monospace; font-size: 11px;
  color: rgba(27,42,74,0.55); letter-spacing: 0.04em; position: relative; z-index: 1;
}

/* ── LABELS / LINKS / BUTTONS ── */
.section-label, .page-hero-label, .sub-label {
  font-size: 15px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); display: block;
}
.section-label { margin-bottom: 16px; }
.sub-label { color: var(--ink-mid); letter-spacing: 0.14em; margin-bottom: 18px; }

.text-link {
  font-size: 14px; font-weight: 700; color: var(--navy); white-space: nowrap;
  text-decoration: none; border-bottom: 2px solid var(--navy);
  padding-bottom: 2px; display: inline-block;
  transition: opacity 0.2s;
}

.primary-cta {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 15px 30px; background: var(--navy); color: #fff;
  font-family: var(--font); font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  min-height: 48px; transition: background 0.2s;
}

/* ── PAGE HERO (service / about / prints) ── */
.page-hero { padding: calc(var(--nav-h) + 56px) var(--gutter) 56px; border-bottom: 1px solid var(--rule); }
.breadcrumb { font-size: 13px; color: var(--ink-mid); margin-bottom: 24px; display: flex; align-items: center; gap: 8px; }
.breadcrumb a { text-decoration: none; }
.page-hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: end; }
.page-hero h1 {
  font-size: clamp(34px, 5vw, 68px); font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.03; text-wrap: balance;
}
.page-hero-image { height: 360px; border-radius: 3px; }

/* ── SERVICE BODY: content column + sticky aside ── */
.service-body { display: grid; grid-template-columns: 1fr 350px; padding: 64px var(--gutter) 88px; gap: 64px; align-items: start; }
.service-intro { font-size: 20px; line-height: 1.7; font-weight: 300; color: var(--ink-mid); text-wrap: pretty; margin-bottom: 52px; max-width: 640px; }

.work-list { list-style: none; border-top: 1px solid var(--rule); margin-bottom: 56px; }
.work-item {
  padding: 22px 0; border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: baseline;
  transition: padding-left 0.15s;
}
.work-item-title { font-size: 18px; font-weight: 900; letter-spacing: -0.01em; }
.work-item-sub { font-size: 14.5px; color: var(--ink-mid); margin-top: 4px; }
.work-item-date { font-size: 13px; color: var(--ink-mid); white-space: nowrap; font-variant-numeric: tabular-nums; }

.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 64px; margin-bottom: 48px; }
.faq-q { font-size: 18px; font-weight: 900; letter-spacing: -0.01em; margin-bottom: 9px; }
.faq-a { font-size: 16px; line-height: 1.7; color: var(--ink-mid); }

/* aside */
.service-aside { position: sticky; top: calc(var(--nav-h) + 32px); display: flex; flex-direction: column; gap: 24px; }
.aside-card { background: var(--navy); color: #fff; padding: 30px 28px; border-radius: 3px; }
.aside-card .lab { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.aside-card h3 { font-size: 27px; font-weight: 900; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 12px; }
.aside-card p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.72); margin-bottom: 18px; }
.aside-card a.mail { display: inline-block; font-size: 14px; font-weight: 700; color: #fff; border-bottom: 2px solid rgba(255,255,255,0.5); padding-bottom: 3px; }
.aside-photo { height: 260px; border-radius: 3px; }

/* ── NEWSLETTER STRIP ── */
.newsletter-strip {
  background: var(--bg-band); border-top: 1px solid var(--rule);
  padding: 64px var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.newsletter-form { display: flex; }
.nl-input { flex: 1; padding: 14px 16px; background: var(--bg); border: 1px solid var(--rule); border-right: none; color: var(--ink); font-family: var(--font); font-size: 16px; }
.nl-input:focus { border-color: var(--navy); }
.nl-btn { padding: 14px 26px; background: var(--navy); border: 1px solid var(--navy); color: #fff; font-family: var(--font); font-size: 13px; font-weight: 700; letter-spacing: 0.05em; cursor: pointer; transition: background 0.2s; white-space: nowrap; min-height: 48px; }
.nl-fine { font-size: 12px; color: var(--ink-mid); margin-top: 10px; }

/* ── CONTACT FOOTER (navy) ── */
#contact-footer { background: var(--navy); color: #fff; }
.contact-rule { border: none; border-top: 1px solid rgba(255,255,255,0.16); margin: 0 var(--gutter); }
.contact-footer-bar { padding: 20px var(--gutter); display: flex; align-items: center; justify-content: space-between; }
.cfb-copy { font-size: 13px; color: rgba(255,255,255,0.7); }
.cfb-socials { display: flex; gap: 4px; list-style: none; align-items: center; margin-left: -11px; }
.cfb-socials a { color: rgba(255,255,255,0.7); }

/* ============================================================
   v2 layouts — purpose-built pages
   ============================================================ */

/* ── SIMPLE TEXT HERO (practice pages, about, contact) ── */
.simple-hero { padding: calc(var(--nav-h) + 60px) var(--gutter) 40px; border-bottom: 1px solid var(--rule); text-align: left; }
.simple-hero.no-rule { border-bottom: none; padding-bottom: 8px; }
.simple-hero .back { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: var(--ink-mid); text-decoration: none; display: inline-flex; align-items: center; gap: 7px; margin-bottom: 26px; }
.simple-hero .lab { margin-bottom: 18px; }
.simple-hero h1 {
  font-size: clamp(30px, 4.6vw, 58px); font-weight: 900; letter-spacing: 0.01em; text-transform: uppercase;
  line-height: 1.06; text-wrap: balance; max-width: 22ch;
}
.simple-hero .intro {
  font-size: 20px; line-height: 1.7; font-weight: 300; color: var(--ink-mid);
  max-width: 900px; margin: 26px 0 0; text-wrap: pretty;
}
.simple-hero .intro + .intro { margin-top: 18px; }

/* ── PLAIN NOTE BLOCK (commissions / bookings) ── */
.note-block { padding: 56px var(--gutter) 96px; }
.note-inner { max-width: 720px; border-top: 1px solid var(--rule); padding-top: 40px; }
.note-inner .lab { margin-bottom: 20px; }
.note-inner p { font-size: 18.5px; line-height: 1.75; font-weight: 300; color: var(--ink-mid); margin-bottom: 18px; text-wrap: pretty; }
.note-inner p:last-child { margin-bottom: 0; }
.note-inner .mail-link { color: var(--navy); font-weight: 700; border-bottom: 2px solid var(--navy); padding-bottom: 1px; text-decoration: none; }

/* ── PHOTOGRAPHY GALLERY ── */
.gallery-wrap { padding: 48px var(--gutter) 16px; }
.gallery { column-count: min(3, var(--n, 3)); column-gap: 18px; }
.gallery .shot { break-inside: avoid; margin: 0 0 18px; display: block; border-radius: 3px; width: 100%; }
.gallery button.shot { padding: 0; border: none; background: none; cursor: zoom-in; }
.gallery button.shot img { width: 100%; height: auto; display: block; border-radius: 3px; }
.gallery .shot.img-ph { align-items: flex-end; }
.gallery img.shot { height: auto; object-fit: cover; }

.lightbox {
  position: fixed; inset: 0; background: rgba(21,23,28,0.94); z-index: 400;
  display: flex; align-items: center; justify-content: center;
  padding: calc(56px + var(--safe-b)) calc(24px + var(--safe-r)) calc(24px + var(--safe-b)) calc(24px + var(--safe-l));
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, visibility 0s linear 0.2s;
}
.lightbox.open { opacity: 1; visibility: visible; transition: opacity 0.2s, visibility 0s linear 0s; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 3px; }
.lightbox .lb-close {
  position: absolute; top: calc(8px + var(--safe-b)); right: calc(8px + var(--safe-r));
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; color: #fff; font-size: 30px; cursor: pointer; line-height: 1;
}

/* ── WRITING: BLOG INDEX ── */
.blog-filters { padding: 36px var(--gutter) 0; display: flex; gap: 10px; flex-wrap: wrap; }
.blog-filter {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mid); background: none; border: 1px solid var(--rule);
  padding: 12px 18px; border-radius: 100px; cursor: pointer; font-family: var(--font);
  min-height: 42px; transition: color 0.16s, border-color 0.16s, background 0.16s;
}
.blog-filter.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.post-list { padding: 12px var(--gutter) 64px; max-width: 880px; }
.post-row { display: block; text-decoration: none; color: inherit; padding: 30px 0; border-bottom: 1px solid var(--rule); }
.post-row:first-child { border-top: 1px solid var(--rule); }
.post-meta { display: flex; gap: 14px; align-items: center; margin-bottom: 12px; flex-wrap: wrap; }
.post-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); }
.post-date { font-size: 13.5px; color: var(--ink-mid); font-variant-numeric: tabular-nums; }
.post-title { font-size: clamp(25px, 2.9vw, 36px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 11px; transition: color 0.15s; text-wrap: balance; }
.post-stand { font-size: 18px; line-height: 1.6; font-weight: 300; color: var(--ink-mid); text-wrap: pretty; max-width: 640px; }

/* ── WRITING: ARTICLE / POST PAGE ── */
.article { max-width: 720px; margin: 0 auto; padding: calc(var(--nav-h) + 48px) var(--gutter) 32px; }
.article .back { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: var(--ink-mid); text-decoration: none; display: inline-flex; align-items: center; gap: 7px; margin-bottom: 30px; padding: 10px 0; }
.article-meta { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; flex-wrap: wrap; }
.article h1 { font-size: clamp(31px, 4.8vw, 58px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; text-wrap: balance; margin-bottom: 22px; }
.article-stand { font-size: 22px; line-height: 1.5; font-weight: 300; color: var(--ink-mid); margin-bottom: 36px; text-wrap: pretty; border-left: 3px solid var(--blue); padding-left: 20px; }
.article-body { border-top: 1px solid var(--rule); padding-top: 38px; }
.article-body p { font-size: 19px; line-height: 1.8; color: var(--ink); margin-bottom: 26px; text-wrap: pretty; }
.article-body p.placeholder { color: var(--ink-mid); font-style: italic; }
.article-body h2 { font-size: 26px; font-weight: 900; letter-spacing: -0.02em; margin: 44px 0 18px; }
.article-body blockquote { border-left: 3px solid var(--rule); padding-left: 22px; margin: 0 0 26px; font-size: 21px; line-height: 1.6; font-weight: 300; color: var(--ink); }
.comments-slot { max-width: 720px; margin: 0 auto; padding: 28px var(--gutter) 96px; }
.comments-slot .ph { border: 1px dashed var(--rule); border-radius: 4px; padding: 24px; font-family: 'Courier New', monospace; font-size: 13px; color: var(--ink-mid); line-height: 1.6; }

/* ── COMEDY ── */
.video-wrap { padding: 44px var(--gutter) 0; }
.video-frame { max-width: 1000px; aspect-ratio: 16/9; border-radius: 4px; overflow: hidden; background: #000; }
.video-frame iframe { width: 100%; height: 100%; border: none; }
.video-frame .play { width: 76px; height: 76px; border-radius: 50%; background: rgba(27,42,74,0.9); display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; margin: auto; }
.video-frame .play::after { content: ''; border-left: 22px solid #fff; border-top: 13px solid transparent; border-bottom: 13px solid transparent; margin-left: 6px; }
.dates-block { padding: 56px var(--gutter) 0; }
.dates-inner { max-width: 720px; border-top: 1px solid var(--rule); padding-top: 36px; }
.dates-inner .lab { margin-bottom: 18px; }
.dates-empty { font-size: 20px; line-height: 1.65; font-weight: 300; color: var(--ink-mid); text-wrap: pretty; }

/* ── ORGANISING: COVERAGE + ACTIONS ── */
.org-section { padding: 32px var(--gutter) 0; }
.org-inner { border-top: 1px solid var(--rule); padding-top: 20px; }
.org-section.no-rule { padding-top: 0; }
.org-section.no-rule .org-inner { border-top: none; padding-top: 0; }
.org-inner .lab { margin-bottom: 22px; }
.coverage-list { list-style: none; }
.coverage-item { padding: 20px 0; border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: baseline; text-decoration: none; color: inherit; transition: padding-left 0.15s; }
.coverage-item:first-child { border-top: 1px solid var(--rule); }
.coverage-head { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; }
.coverage-pub { font-size: 14px; color: var(--ink-mid); margin-top: 5px; }
.coverage-meta { font-size: 13px; color: var(--ink-mid); white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.actions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.actions-grid .shot { display: block; aspect-ratio: 4/3; border-radius: 3px; text-decoration: none; overflow: hidden; }
.actions-grid img.shot { width: 100%; height: 100%; object-fit: cover; display: block; }
.actions-grid .shot.lead { grid-column: 1 / -1; aspect-ratio: 3/2; }

/* ── CONTACT PAGE ── */
.contact-page { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; padding: 56px var(--gutter) 96px; align-items: start; }
.contact-detail .lab { margin-bottom: 18px; }
.contact-detail .big-mail {
  font-size: clamp(20px, 2.4vw, 30px); font-weight: 900; letter-spacing: -0.02em;
  color: var(--navy); display: inline-block; overflow-wrap: anywhere;
  text-decoration: underline; text-decoration-color: var(--rule);
  text-decoration-thickness: 2px; text-underline-offset: 7px;
  padding: 8px 0 10px; transition: text-decoration-color 0.18s;
}
.contact-detail .also { margin-top: 40px; }
.contact-detail .also-row { display: flex; gap: 4px; list-style: none; margin-top: 10px; margin-left: -11px; }
.contact-detail .also-row a { color: var(--ink-mid); }
.cform { display: flex; flex-direction: column; gap: 20px; }
.cform .field { display: flex; flex-direction: column; gap: 8px; }
.cform label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mid); }
.cform input, .cform textarea { background: var(--bg); border: 1px solid var(--rule); color: var(--ink); font-family: var(--font); font-size: 16px; font-weight: 300; padding: 14px 15px; border-radius: 2px; }
.cform input:focus, .cform textarea:focus { border-color: var(--navy); }
.cform textarea { min-height: 150px; resize: vertical; }
.cform select, .sf-form select {
  width: 100%; font-family: var(--font); font-size: 16px; font-weight: 300;
  border-radius: 2px; -webkit-appearance: none; appearance: none; cursor: pointer;
  padding-right: 42px;
  background-repeat: no-repeat; background-position: right 14px center; background-size: 14px;
}
.cform select {
  background-color: var(--bg); border: 1px solid var(--rule); color: var(--ink); padding: 14px 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23414954' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.cform select:focus { border-color: var(--navy); }
.cform select:invalid { color: rgba(65,73,84,0.8); }
.cform button { align-self: flex-start; }
.cform-sent { font-size: 19px; line-height: 1.6; color: var(--ink-mid); font-style: italic; }

/* ── CONTACT FORM: honeypot, challenge slot, failure state ── */

/* Bot bait. Off-screen rather than display:none, which many bots skip.
   aria-hidden + tabindex -1 keep it away from real people. */
.hp-field {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

.turnstile-slot:not(:empty) { margin: 2px 0 4px; }

.form-error { border-left: 3px solid #B4432F; padding-left: 18px; }
.form-error strong { display: block; font-size: 17px; font-weight: 900; letter-spacing: -0.01em; margin-bottom: 8px; }
.form-error p { font-size: 15.5px; line-height: 1.6; color: var(--ink-mid); margin-bottom: 18px; }
.form-error a { color: var(--navy); font-weight: 700; }
/* same block sitting on the navy footer */
.form-error.on-navy { border-left-color: #F0A090; }
.form-error.on-navy strong { color: #fff; }
.form-error.on-navy p { color: rgba(255,255,255,0.72); }
.form-error.on-navy a { color: #fff; }

.sf-send[disabled], .cform button[disabled] { opacity: 0.6; cursor: default; }

/* ── SITE FOOTER (navy) — brand + contact form, nav row, copyright ── */
.site-footer { background: var(--navy); color: #fff; margin-top: 8px; }
.sf-top { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; padding: 72px var(--gutter) 44px; align-items: start; }
.sf-top.no-form { grid-template-columns: 1fr; max-width: 520px; }
.sf-name { font-size: 21px; font-weight: 900; letter-spacing: -0.01em; color: #fff; text-decoration: none; display: inline-block; padding: 4px 0; }
.sf-tag { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.62); margin: 12px 0 18px; max-width: 340px; }
/* underline via text-decoration, not border-bottom, so the link can carry
   vertical padding for a 44px tap target without the rule drifting away */
.sf-mail {
  font-size: 15px; font-weight: 700; color: #fff; display: inline-block;
  text-decoration: underline; text-decoration-color: rgba(255,255,255,0.4);
  text-decoration-thickness: 2px; text-underline-offset: 5px;
  padding: 10px 0;
}
.sf-socials { display: flex; gap: 4px; list-style: none; margin-top: 20px; margin-left: -11px; }
.sf-socials a { color: rgba(255,255,255,0.72); }

/* contact form (right column) */
.sf-contact { max-width: 540px; }
.sf-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.sf-form { display: flex; flex-direction: column; gap: 14px; }
.sf-field { display: flex; flex-direction: column; gap: 6px; }
.sf-form label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.72); }
.sf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sf-form input, .sf-form textarea {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-family: var(--font);
  font-size: 16px;   /* below 16px iOS Safari zooms the page on focus and never zooms back */
  font-weight: 300; padding: 13px 14px;
  border-radius: 2px;  /* stops iOS rendering its own rounded inset style */
  -webkit-appearance: none; appearance: none;
  transition: border-color 0.18s, background 0.18s;
}
.sf-form input::placeholder, .sf-form textarea::placeholder { color: rgba(255,255,255,0.62); }
.sf-form input:focus, .sf-form textarea:focus { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.1); }
.sf-form textarea { min-height: 96px; resize: vertical; }
.sf-form select {
  background-color: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); color: #fff; padding: 13px 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  transition: border-color 0.18s, background-color 0.18s;
}
.sf-form select:focus { border-color: rgba(255,255,255,0.55); background-color: rgba(255,255,255,0.1); }
.sf-form select:invalid { color: rgba(255,255,255,0.62); }
.sf-form select option { color: var(--ink); background: #fff; }
.sf-send {
  align-self: flex-start; padding: 14px 28px; background: #fff; color: var(--navy);
  font-family: var(--font); font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer; min-height: 48px; transition: opacity 0.18s;
}
.sf-sent { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.78); font-style: italic; }

/* nav row + copyright bar */
.sf-nav { display: flex; flex-wrap: wrap; gap: 0 24px; padding: 8px var(--gutter) 26px; }
.sf-nav a { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.72); text-decoration: none; padding: 12px 0; }
.sf-bar { border-top: 1px solid rgba(255,255,255,0.14); margin: 0 var(--gutter); padding: 20px 0 calc(20px + var(--safe-b)); display: flex; align-items: center; justify-content: space-between; }
.sf-bar span { font-size: 13px; color: rgba(255,255,255,0.6); }
.sf-legal { display: flex; gap: 20px; }
.sf-legal a { color: rgba(255,255,255,0.72); text-decoration: none; }

/* ── LEGAL PAGES (privacy.html, terms.html) ── */
.legal-updated { font-size: 13px; color: var(--ink-mid); margin-top: 18px; }
.legal-body { padding: 8px var(--gutter) 88px; max-width: 760px; }
.legal-section { margin-top: 40px; }
.legal-section h2 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; margin-bottom: 14px; }
.legal-section p, .legal-section li { font-size: 17px; line-height: 1.75; color: var(--ink-mid); text-wrap: pretty; margin-bottom: 16px; }
.legal-section ul { padding-left: 22px; margin-bottom: 16px; }
.legal-section li { margin-bottom: 8px; }
.legal-section a { color: var(--blue); }
.legal-cross { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--rule); font-size: 15px; font-weight: 700; }
.legal-cross a { color: var(--blue); text-decoration: none; }

/* ============================================================
   HOVER — only where a real pointer exists.
   On touch, :hover latches after a tap and stays stuck.
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
  .nav-center a:hover { color: #fff; }
  .has-dropdown:hover .nav-dd-btn { color: #fff; }
  .has-dropdown:hover .nav-dd-btn svg { transform: rotate(180deg); }
  .has-dropdown:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
  .nav-dropdown a:hover { color: var(--navy); background: var(--bg-band); }
  .mobile-menu-sub a:hover { color: #fff; }
  .lang-toggle button:hover { color: #fff; }
  .nav-socials a:hover { color: #fff; }
  .mobile-menu-links > li > a:hover { color: #fff; }
  .mobile-socials a:hover { color: #fff; }
  .text-link:hover { opacity: 0.7; }
  .primary-cta:hover { background: var(--navy-2); }
  .breadcrumb a:hover { color: var(--navy); }
  .work-item:hover { padding-left: 8px; }
  .aside-card a.mail:hover { border-color: #fff; }
  .nl-btn:hover { background: var(--navy-2); border-color: var(--navy-2); }
  .cfb-socials a:hover { color: #fff; }
  .note-inner .mail-link:hover { opacity: 0.7; }
  .blog-filter:hover { border-color: var(--navy); color: var(--navy); }
  .blog-filter.active:hover { color: #fff; }
  .post-row:hover .post-title { color: var(--blue); }
  .article .back:hover { color: var(--navy); }
  .coverage-item:hover { padding-left: 8px; }
  .contact-detail .big-mail:hover { text-decoration-color: var(--navy); }
  .contact-detail .also-row a:hover { color: var(--navy); }
  .sf-mail:hover { text-decoration-color: #fff; }
  .sf-socials a:hover { color: #fff; }
  .sf-send:hover { opacity: 0.85; }
  .sf-nav a:hover { color: #fff; }
  .sf-legal a:hover { color: #fff; }
  .gallery .shot { cursor: zoom-in; }
  .carousel-arrow:hover { background: rgba(21,23,28,0.72); }
  .carousel-dot:hover::before { background: #fff; }
}

/* ============================================================
   TABLET — hamburger nav, two-column layouts kept
   ============================================================ */
@media (max-width: 1079px) {
  .nav-center { display: none; }
  .nav-socials { display: none; }
  .nav-right .lang-toggle { display: none; }   /* lives in the menu instead */
  .nav-hamburger { display: flex; }

  .page-hero { padding: calc(var(--nav-h) + 44px) var(--gutter) 44px; }
  .page-hero-image { height: 280px; }
  .service-body { grid-template-columns: 1fr 300px; padding: 52px var(--gutter) 72px; gap: 44px; }
  .newsletter-strip { padding: 52px var(--gutter); gap: 40px; }

  .simple-hero { padding: calc(var(--nav-h) + 40px) var(--gutter) 32px; }
  .note-block { padding: 48px var(--gutter) 72px; }
  .gallery-wrap { padding: 40px var(--gutter) 12px; }
  .gallery { column-count: min(2, var(--n, 2)); }
  .blog-filters { padding: 30px var(--gutter) 0; }
  .post-list { padding: 10px var(--gutter) 56px; }
  .video-wrap { padding: 36px var(--gutter) 0; }
  .dates-block, .org-section { padding: 36px var(--gutter) 0; }
  .contact-page { gap: 48px; padding: 48px var(--gutter) 72px; }
  .sf-top { gap: 48px; padding: 56px var(--gutter) 36px; }
}

/* ============================================================
   PHONE — single column, tighter type
   ============================================================ */
@media (max-width: 699px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .page-hero-image { display: none; }
  .service-body { grid-template-columns: 1fr; padding: 40px var(--gutter) 56px; gap: 36px; }
  .service-aside { position: static; }
  .newsletter-strip { grid-template-columns: 1fr; padding: 40px var(--gutter); gap: 28px; }
  .contact-rule { margin: 0 var(--gutter); }
  .contact-footer-bar { padding: 18px var(--gutter); flex-direction: column; gap: 10px; }
  .contact-upper { grid-template-columns: 1fr !important; gap: 40px !important; padding: 48px var(--gutter) 40px !important; }

  .simple-hero { padding: calc(var(--nav-h) + 28px) var(--gutter) 26px; }
  .note-block { padding: 36px var(--gutter) 52px; }
  .note-inner { padding-top: 32px; }
  .gallery-wrap { padding: 28px var(--gutter) 8px; }
  .gallery { column-count: 1; column-gap: 14px; }
  .gallery .shot { margin-bottom: 14px; }
  .blog-filters { padding: 24px var(--gutter) 0; gap: 8px; }
  .post-list { padding: 6px var(--gutter) 44px; }
  .post-row { padding: 24px 0; }
  .video-wrap { padding: 28px var(--gutter) 0; }
  .dates-block, .org-section { padding: 36px var(--gutter) 0; }
  .dates-inner, .org-inner { padding-top: 28px; }
  .actions-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-page { grid-template-columns: 1fr; gap: 36px; padding: 36px var(--gutter) 52px; }
  .contact-detail .also { margin-top: 32px; }
  .faq { grid-template-columns: 1fr; gap: 28px; }

  .article { padding: calc(var(--nav-h) + 32px) var(--gutter) 24px; }
  .article .back { margin-bottom: 22px; }
  .article-body { padding-top: 30px; }
  .comments-slot { padding: 22px var(--gutter) 64px; }

  .sf-top { grid-template-columns: 1fr; gap: 36px; padding: 44px var(--gutter) 28px; }
  .sf-top.no-form { max-width: none; }
  .sf-form-row { grid-template-columns: 1fr; }
  .sf-nav { padding: 0 var(--gutter) 20px; gap: 0 20px; }
  .sf-bar { margin: 0 var(--gutter); flex-direction: column; align-items: flex-start; gap: 6px; }
  .legal-body { padding-bottom: 56px; }
  .legal-section { margin-top: 32px; }
  .legal-section p, .legal-section li { font-size: 16px; line-height: 1.7; }

  /* type scale — the desktop sizes are ~20% too large at this width */
  .simple-hero .intro { font-size: 17px; line-height: 1.6; margin-top: 20px; }
  .service-intro { font-size: 17px; line-height: 1.62; margin-bottom: 40px; }
  .note-inner p { font-size: 16.5px; line-height: 1.68; }
  .dates-empty { font-size: 17px; line-height: 1.6; }
  .post-stand { font-size: 16px; line-height: 1.55; }
  .article-stand { font-size: 18px; line-height: 1.45; margin-bottom: 28px; padding-left: 16px; }
  .article-body p { font-size: 17px; line-height: 1.72; margin-bottom: 22px; }
  .article-body h2 { font-size: 22px; margin: 34px 0 14px; }
  .article-body blockquote { font-size: 18px; padding-left: 18px; }
  .coverage-head { font-size: 17px; }
  .section-label, .page-hero-label, .strip-label { font-size: 13px; letter-spacing: 0.12em; }
  .sf-tag { font-size: 14px; }
}

/* very narrow phones */
@media (max-width: 400px) {
  .actions-grid { grid-template-columns: 1fr; }
  .nav-name { font-size: 16.5px; }
  .mobile-menu-links > li > a { font-size: 22px; padding: 13px 0; }
  .mobile-menu-sub a { font-size: 20px; padding: 9px 0; }
}

/* ── SERVICE ADD-ONS: category grid · client logos · rate list ── */
.block-intro { font-size: 18px; line-height: 1.7; font-weight: 300; color: var(--ink-mid); max-width: 900px; margin-bottom: 22px; text-wrap: pretty; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cat-tile { display: block; text-decoration: none; color: inherit; }
.cat-tile .shot { aspect-ratio: 4/3; border-radius: 3px; margin-bottom: 12px; overflow: hidden; }
.cat-tile .shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-sub { font-size: 13.5px; color: var(--ink-mid); margin-top: 4px; text-align: center; }
.project-note { padding: 40px var(--gutter) 4px; }
.project-note .lab { margin-bottom: 14px; }
.project-note p { max-width: 680px; font-size: 19px; line-height: 1.75; font-weight: 300; color: var(--ink-mid); text-wrap: pretty; }
.project-note p.placeholder { font-style: italic; }
.project-note p + p { margin-top: 18px; }
@media (max-width: 699px) { .project-note { padding: 28px var(--gutter) 2px; } .project-note p { font-size: 17px; line-height: 1.62; } }
.cat-cap { font-size: 20px; font-weight: 900; letter-spacing: -0.01em; text-align: center; }
.logo-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px 40px; margin-top: 8px; align-items: center; }
.logo-row.press-logos { margin-top: 40px; }

/* ── HOME LOGO STRIPS ── */
.logo-strip { padding: 36px 0 8px; overflow: hidden; }
.logo-strip + .logo-strip { padding-top: 40px; padding-bottom: 44px; }
/* a strip under a practice-page heading: sits close to its label, clear of what follows */
.org-section + .logo-strip { padding-top: 10px; padding-bottom: 28px; }
.logo-strip + .org-section { padding-top: 12px; }
.strip-label { font-size: 15px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); padding: 0 var(--gutter); margin-bottom: 22px; }
.strip-label + .strip-note { margin: -14px 0 22px; padding: 0 var(--gutter); font-size: 15px; color: var(--ink-mid); }
.strip-viewport { display: flex; width: max-content; animation: strip-scroll 55s linear infinite; }
.strip-viewport:hover { animation-play-state: paused; }
.strip-track { display: flex; align-items: center; gap: 72px; list-style: none; padding: 0 36px; margin: 0; }
.strip-logo { --logo-h: 56px; flex: 0 0 auto; height: var(--logo-h); display: flex; align-items: center; }
.strip-logo img { height: 100%; width: auto; max-width: 220px; object-fit: contain; display: block; }
.strip-logo.press { --logo-h: 34px; }
.logo-strip.sparse .strip-track { min-width: min(100vw, var(--site-max)); justify-content: space-around; padding: 0; gap: 64px; }  /* the gap matters on a phone, where two wordmarks fill the width */
@keyframes strip-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .strip-viewport { animation: none; width: auto; flex-wrap: wrap; padding: 0 var(--gutter); }
  .strip-track { flex-wrap: wrap; gap: 32px 48px; padding: 0; }
  .strip-track[aria-hidden] { display: none; }
  .strip-logo.rep { display: none; }
}
@media (max-width: 699px) {
  .strip-logo { --logo-h: 40px; }
  .strip-logo.press { --logo-h: 26px; }
  .strip-track { gap: 44px; }
}
.press-logos .logo { min-height: 48px; }
.press-logos .logo img { max-height: 40px; }
.logo { display: flex; align-items: center; justify-content: center; min-height: 84px; }
.logo img { max-width: 100%; max-height: 84px; object-fit: contain; display: block; }
.logo-ph { aspect-ratio: 5/2; background: var(--bg-band); border: 1px solid var(--rule); border-radius: 3px; display: flex; align-items: center; justify-content: center; }
.logo-ph span { font-family: 'Courier New', monospace; font-size: 11px; color: var(--ink-mid); letter-spacing: 0.06em; }
.price-list { list-style: none; border-top: 1px solid var(--rule); margin: 0 0 22px; }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--rule); }
.price-k { font-size: 17px; font-weight: 400; color: var(--ink); }
.price-v { font-size: 16px; font-weight: 900; letter-spacing: -0.01em; color: var(--navy); white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-fine { font-size: 14.5px; line-height: 1.65; color: var(--ink-mid); font-weight: 300; margin-bottom: 22px; text-wrap: pretty; max-width: 640px; }
@media (max-width: 699px) {
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .logo-row { grid-template-columns: 1fr 1fr; gap: 34px 28px; }
  .logo { min-height: 70px; }
  .logo img { max-height: 66px; }
  .block-intro { font-size: 16.5px; line-height: 1.62; }
  .price-k { font-size: 16px; }
}
@media (max-width: 400px) {
  .cat-grid { grid-template-columns: 1fr; }
}

/* ── PHOTOGRAPHY CAROUSEL ── */
.carousel { position: relative; width: 100%; aspect-ratio: 16 / 10; border-radius: 3px; overflow: hidden; background: #E7EBF2; }
.carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s ease; }
.carousel-slide.active { opacity: 1; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(21,23,28,0.42); color: #fff; border: none; border-radius: 50%; font-size: 26px; line-height: 1; cursor: pointer; transition: background 0.18s; }
.carousel-arrow.prev { left: 16px; }
.carousel-arrow.next { right: 16px; }
.carousel-dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; gap: 0; }
.carousel-dot { width: 24px; height: 24px; padding: 0; border: none; border-radius: 50%; background: none; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.carousel-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.55); transition: background 0.18s, transform 0.18s; }
.carousel-dot.active::before { background: #fff; transform: scale(1.25); }
@media (max-width: 699px) { .carousel { aspect-ratio: 4 / 3; } .carousel-arrow { width: 44px; height: 44px; font-size: 22px; } }

.photo-credit { margin-top: 16px; font-size: 13px; font-weight: 300; color: var(--ink-mid); }

/* ── SECTION HEADS: blue category label + statement headline ── */
.section-head { margin-bottom: 28px; }
.section-head .lab { margin-bottom: 10px; }
.org-inner .section-head .lab { margin-bottom: 10px; }
.section-h { font-size: clamp(25px, 2.9vw, 38px); font-weight: 900; letter-spacing: -0.022em; line-height: 1.13; color: var(--ink); max-width: 20ch; text-wrap: balance; }

/* ── SERVICES: numbered rows on a band ── */
.services-band { padding: 52px var(--gutter) 60px; margin-top: 34px; background: var(--bg-band); }
.services-band .org-inner { border-top: none; padding-top: 0; }
.services { border-top: 1px solid var(--rule); }
.service-row { display: grid; grid-template-columns: 62px minmax(170px, 0.8fr) 1.7fr; gap: 0 32px; align-items: start; padding: 22px 0; border-bottom: 1px solid var(--rule); }
.service-n { font-size: 13px; font-weight: 900; letter-spacing: 0.1em; color: var(--blue); font-variant-numeric: tabular-nums; padding-top: 6px; }
.service-k { font-size: 20px; font-weight: 900; letter-spacing: -0.015em; line-height: 1.25; }
.service-v { font-size: 16.5px; line-height: 1.7; color: var(--ink-mid); text-wrap: pretty; }
.services .price-fine { margin-top: 18px; }
.service-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 32px; font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: var(--navy); padding: 15px 26px; border-radius: 3px; text-decoration: none; transition: background 0.18s; }
.service-cta:hover { background: var(--navy-2); }

/* band variants */
.services-band.wash { background: color-mix(in oklab, var(--blue) 6%, #fff); }
.services-band.wash .services, .services-band.wash .service-row { border-color: color-mix(in oklab, var(--blue) 20%, #fff); }
.services-band.navy { background: var(--navy); }
.services-band.navy .section-h, .services-band.navy .service-k { color: #fff; }
.services-band.navy .lab { color: #A9C6F7; }
.services-band.navy .service-n { color: #A9C6F7; }
.services-band.navy .service-v { color: rgba(255,255,255,0.78); }
.services-band.navy .services, .services-band.navy .service-row { border-color: rgba(255,255,255,0.2); }
.services-band.navy .service-cta { background: #fff; color: var(--navy); }
.services-band.navy .service-cta:hover { background: #E7EDF8; }

@media (max-width: 899px) {
  .service-row { grid-template-columns: 40px 1fr; gap: 6px 14px; padding: 18px 0; }
  .service-v { grid-column: 2; }
  .service-k { font-size: 18px; }
  .service-n { padding-top: 4px; font-size: 12px; }
  .services-band { padding: 36px var(--gutter) 44px; }
}
