/* The Barnsbury Group · styles
   01 tokens, fonts, page texture
   02 seal
   03 hero
   04 horn band
   05 section 01 · the studios
   06 section 02 · why we exist
   07 section 03 · the standard
   08 section 04 · territories
   09 section 05 · contact
   10 footer
   11 contact page
   12 motion
   13 responsive */

/* 01 · tokens, fonts, page texture */

:root {
  --paper: #F4EFE6;
  --paper-deep: #ECE5D6;
  --ink: #1B1B1A;
  --ink-soft: #3A3A37;
  --ink-mute: #7A786F;
  --rule: #C9C2B2;
  --ring: #2E2118;
  --mark: #ECE0BD;
  --accent: #B8893A;
  --wash: #EFE9DC;
  --hero-meta: #6E6B60;
  --font-serif: 'Lora', Georgia, serif;
  --font-sans: 'Inter Tight', Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --margin: clamp(28px, 7.5vw, 136px);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(rgba(60, 40, 20, .026) 1px, transparent 1px),
    radial-gradient(rgba(60, 40, 20, .017) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
a:hover { color: inherit; }

img { max-width: 100%; }

/* the drawn-rule link: 1px rule grows left to right */
.link-rule {
  position: relative;
  text-decoration: none;
}
.link-rule::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  opacity: .5;
  transition: right .55s var(--ease);
}
.link-rule:hover::after { right: 0; }

/* the travelling arrow */
.arrow {
  display: inline-block;
  transition: transform .5s var(--ease);
}
a:hover .arrow { transform: translate(6px, -6px); }

/* the filled walnut button */
.button {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: -.01em;
  text-transform: lowercase;
  padding: 12px 22px;
  background: var(--ring);
  color: var(--mark);
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

/* 02 · seal */

.seal {
  display: block;
  flex: none;
}
.seal svg {
  width: 100%;
  height: 100%;
  display: block;
}
a .seal { transition: transform .6s var(--ease); }
a:hover .seal { transform: rotate(6deg) scale(1.05); }

/* 03 · hero */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 4vw;
  align-items: stretch;
  min-height: 64vh;
  padding: clamp(64px, 9vh, 116px) 0 clamp(28px, 5vh, 64px);
}

/* the photograph's ghost: the same image faded right back across the
   whole hero, lagging the scroll, beneath the texture-carrying content */
.hero-ghost {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-ghost img {
  position: absolute;
  left: 0;
  top: -14%;
  width: 100%;
  height: 128%;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(.5) contrast(1.04);
  animation: ghost-in 2.4s ease .4s both;
  will-change: transform;
}

@keyframes ghost-in {
  from { opacity: 0; }
  to { opacity: .07; }
}

.crop {
  position: absolute;
  background: var(--rule);
}

.hero-copy {
  padding: 0 0 6vh var(--margin);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 34px;
  font-size: 12.5px;
  letter-spacing: -.005em;
  text-transform: lowercase;
  color: var(--hero-meta);
  margin-bottom: auto;
}

.hero-seal-band {
  display: flex;
  align-items: center;
  padding: 2vh 0 0;
}

.hero-seal {
  width: clamp(84px, 8vw, 124px);
  height: clamp(84px, 8vw, 124px);
  pointer-events: none;
  animation: seal-settle 1.9s var(--ease) .5s both;
}

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(34px, 3.9vw, 68px);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 3.2vh 0 0;
  max-width: 24ch;
  text-wrap: pretty;
}

.word {
  display: inline-block;
  animation: word-rise .9s var(--ease) both;
}

.hero-rule {
  width: 34px;
  height: 1px;
  background: var(--accent);
  margin: 26px 0 20px;
  animation: fade-in 1s .6s both;
}

.hero-lede {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.66;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0;
  animation: fade-in 1s .6s both;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
  animation: fade-in 1s .8s both;
}

.hero-contact-link {
  font-size: 13px;
  letter-spacing: -.01em;
  text-transform: lowercase;
  padding: 12px 4px;
  color: var(--ink);
}

.hero-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-bottom: 6vh;
}

.hero-photo {
  position: relative;
  flex: 1;
  min-height: 58vh;
  overflow: hidden;
  animation: photo-wipe 1.5s var(--ease) .25s both;
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(.9) contrast(1.03);
  animation: photo-settle 2.4s var(--ease) .25s both;
}

.hero-frame {
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(244, 239, 230, .5);
  pointer-events: none;
}

.hero-tick {
  position: absolute;
  left: 13px;
  top: 13px;
  background: var(--paper);
}

.hero-figure figcaption {
  padding: 14px var(--margin) 0 0;
  animation: fade-in 1.2s 1s both;
}

.hero-figure figcaption div {
  border-top: 1px solid var(--rule);
  padding-top: 11px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* 04 · horn band · the full-bleed break between hero and the ledger */

.horn-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: clamp(56px, 8vh, 110px);
  min-height: clamp(200px, 32vh, 340px);
  display: flex;
  align-items: center;
  padding: clamp(28px, 4vh, 44px) var(--margin);
}

/* the letterhead device at band scale: the hairline runs from the
   statement to the page edge, crossing the horn field */
.horn-band { gap: 40px; }

.horn-band-rule {
  flex: 1;
  height: 1px;
  background: var(--rule);
  margin-right: calc(-1 * var(--margin));
}

/* positioned with margin, not transform: the reveal CSS owns the
   transform of section children and would cancel it */
.horn-bleed-band {
  right: -10vw;
  top: 43%;
  bottom: auto;
  width: clamp(560px, 64vw, 940px);
  margin-top: calc(clamp(560px, 64vw, 940px) * -0.105);
}

/* the peppered editorial figures */
.fig { margin: 0; }

.fig img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(.9) contrast(1.03);
}

.fig figcaption {
  border-top: 1px solid var(--rule);
  margin-top: 12px;
  padding-top: 11px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.fig-margin { margin-top: clamp(28px, 4vh, 44px); }

/* 05 · section 01 · the studios */

/* the spine: label track left, content right */
.spine {
  border-top: 1px solid var(--rule);
  padding: clamp(84px, 11vh, 148px) var(--margin);
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px 60px;
}

.spine-no {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--ink-mute);
}

.spine-name {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -.01em;
  text-transform: lowercase;
  color: var(--ink-mute);
  margin-top: 13px;
  line-height: 1.4;
}

.spine-fig {
  font-size: 12px;
  letter-spacing: -.005em;
  text-transform: lowercase;
  color: var(--ink-mute);
  margin-top: 7px;
}

/* the horn band's bottom edge meets the studios section without a rule */
.studios { border-top: 0; }

.studios-statement {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.34;
  color: var(--ink);
  margin: 0;
  max-width: 26ch;
  text-wrap: pretty;
}

.routing {
  grid-column: 1 / -1;
  margin-top: clamp(38px, 5vh, 64px);
}

.routing-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}

.routing-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-route {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--rule);
  background: none;
  padding: 12px 18px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .4s ease, background .4s ease, color .4s ease;
}

.chip-route:hover { border-color: var(--ink); }

.chip-route.is-open {
  background: var(--ring);
  border-color: var(--ring);
  color: var(--mark);
}

.routing-places {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px 30px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--accent);
  animation: fade-in .5s both;
}

.routing-places[hidden] { display: none; }

.routing-q {
  font-size: 12.5px;
  letter-spacing: -.005em;
  text-transform: lowercase;
  color: var(--ink-mute);
}

.routing-place {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
}

.tile-grid {
  grid-column: 1 / -1;
  margin-top: clamp(30px, 4vh, 50px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
  gap: clamp(16px, 1.8vw, 26px);
}

.tile {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 0 0 26px;
  text-decoration: none;
  color: inherit;
  transition: background .5s ease, border-color .5s ease;
}

.tile:hover { background: var(--wash); }

.tile-photo {
  display: block;
  position: relative;
  aspect-ratio: 15 / 8;
  overflow: hidden;
  background: #E4DECF;
}

.tile-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.02);
  transition: transform 1.1s var(--ease);
}

.tile:hover .tile-photo img { transform: scale(1.045); }

/* crop toward the top of the photograph, showing the window */
.tile-photo img.crop-high { object-position: center 24%; }

/* the letterhead device: seal on a line, hairline running to the margin */
.tile-seal-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 26px 0;
}

.tile-seal {
  width: 34px;
  height: 34px;
}

.tile-hairline {
  flex: 1;
  height: 1px;
  background: var(--rule);
  display: block;
}

.tile-name {
  display: block;
  padding: 18px 26px 0;
  font-weight: 500;
  letter-spacing: -.035em;
  text-transform: lowercase;
  font-size: 24px;
  line-height: 1.06;
}

.tile-role {
  display: block;
  padding: 12px 26px 0;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.tile-domain {
  display: block;
  margin-top: auto;
  padding: 26px 26px 0;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .1em;
  color: var(--ink-mute);
}

.tile-blurb {
  display: block;
  padding: 16px 26px 0;
  font-family: var(--font-serif);
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.tile-panel {
  background: var(--ring);
  color: var(--mark);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.tile-panel-label {
  font-size: 12.5px;
  letter-spacing: -.005em;
  text-transform: lowercase;
}

.tile-panel-copy {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -.012em;
  text-wrap: pretty;
}

.advisory {
  grid-column: 1 / -1;
  margin-top: clamp(34px, 5vh, 58px);
  border-top: 1px solid var(--rule);
  padding-top: clamp(28px, 4vh, 44px);
}

.advisory-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 30px;
  border: 1px solid var(--rule);
  padding: 26px 28px;
  text-decoration: none;
  color: inherit;
  transition: background .45s ease;
}

.advisory-row:hover { background: #F6EFE9; }

.advisory-seal {
  width: 44px;
  height: 44px;
}

.advisory-id {
  display: block;
  flex: 1 1 240px;
  min-width: 0;
}

.advisory-name {
  display: block;
  font-weight: 500;
  letter-spacing: -.035em;
  text-transform: lowercase;
  font-size: 24px;
  line-height: 1.06;
}

.advisory-role {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6B1F2C;
  margin-top: 10px;
}

.advisory-blurb {
  flex: 1 1 320px;
  min-width: 0;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.advisory-domain {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .1em;
  color: var(--ink-mute);
  white-space: nowrap;
}

/* 06 · section 02 · why we exist · breaks the spine, label runs across */

.ledger-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.ledger-name {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -.01em;
  text-transform: lowercase;
  color: var(--ink-mute);
  line-height: 1.4;
}

.ledger-rule {
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* sections 02 and 03 share one statement style: identical size, leading,
   tracking and measure · a locked pair */
.statement {
  grid-column: 1 / -1;
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.2vw, 62px);
  line-height: 1.1;
  letter-spacing: -.028em;
  color: var(--ink);
  margin: clamp(26px, 4vh, 46px) 0 0;
  max-width: 20ch;
  text-wrap: pretty;
}

.statement-close { color: var(--accent); }

.why-body {
  font-family: var(--font-serif);
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
  max-width: none;
  text-wrap: pretty;
}

.why-media {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
  margin-top: clamp(34px, 5vh, 58px);
}

/* 07 · section 03 · the standard · mirrors 02 */

.standard {
  background: var(--paper-deep);
  grid-template-columns: minmax(0, 1fr) 190px;
}

/* the bleed device from the brand book: the horn does not stop at the seal.
   A flat tone-on-tone field cropped by the page edge, kept out of the copy —
   never a watermark behind text */
.horn-bleed {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.horn-bleed svg {
  display: block;
  width: 100%;
  height: auto;
  will-change: transform;
}

.standard,
.footer,
.contact-intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.horn-bleed-standard {
  left: min(-14vw, -180px);
  bottom: 11%;
  width: clamp(440px, 52vw, 760px);
}

.horn-bleed-footer {
  right: -9vw;
  bottom: -12px;
  width: clamp(380px, 46vw, 680px);
  opacity: .08;
}

.horn-bleed-contact {
  right: min(-12vw, -160px);
  bottom: 4%;
  width: clamp(400px, 46vw, 700px);
  opacity: .5;
}

.ledger-row-reverse {
  flex-direction: row-reverse;
  text-align: right;
}

.statement-right {
  justify-self: end;
  text-align: right;
}

/* spans both tracks; confined to track 1 it breaks to four lines */
.standard-body {
  grid-column: 1 / -1;
  justify-self: end;
  text-align: right;
  font-family: var(--font-serif);
  font-size: 18.5px;
  line-height: 1.78;
  color: var(--ink-soft);
  margin: clamp(34px, 5vh, 58px) 0 0;
  max-width: 66ch;
  text-wrap: pretty;
}

.trusted {
  grid-column: 1 / -1;
  margin-top: clamp(34px, 5vh, 54px);
  border-top: 1px solid var(--rule);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 42px;
  align-items: baseline;
  font-size: 14px;
  letter-spacing: -.01em;
  color: var(--ink);
}

.trusted-label { color: var(--ink-mute); }

.trusted-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

/* one engraved set: same stroke, same tone */
.trusted-mark {
  width: 26px;
  height: 20px;
  fill: none;
  stroke: var(--ink-mute);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 08 · section 04 · territories */

.territory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 34px 40px;
}

.territory {
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}

.territory-tag {
  font-size: 12.5px;
  letter-spacing: -.005em;
  text-transform: lowercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}

.territory-place {
  font-family: var(--font-serif);
  font-size: 29px;
  letter-spacing: -.022em;
  line-height: 1.08;
  color: var(--accent);
}

.territory-note {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-mute);
  margin-top: 8px;
  max-width: 24ch;
}

/* 09 · section 05 · contact */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px 52px;
  align-items: start;
}

.contact-h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.06;
  letter-spacing: -.024em;
  margin: 0 0 22px;
}

.contact-h2-em { color: var(--accent); }

.contact-lede {
  font-family: var(--font-serif);
  font-size: 18.5px;
  line-height: 1.76;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0;
  text-wrap: pretty;
}

.contact-action { margin-top: 30px; }

.contact-details {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  border-top: 1px solid var(--accent);
  padding-top: 26px;
}

.wa-glyph {
  display: inline-block;
  vertical-align: -2px;
  margin-right: 6px;
  fill: currentColor;
}

/* 10 · footer */

.footer {
  background: var(--ring);
  color: var(--mark);
  padding: clamp(56px, 7vh, 88px) var(--margin);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 34px 60px;
  align-items: start;
}

.footer-id {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-seal {
  width: 34px;
  height: 34px;
}

.footer-wordmark {
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: -.03em;
  font-size: 16px;
}

.footer-copy {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.7;
  margin: 18px 0 0;
  max-width: 46ch;
  text-wrap: pretty;
}

/* 11 · contact page */

.contact-intro {
  max-width: 1180px;
  margin: 0 auto;
  padding: 9vh 6vw 3vh;
}

.contact-eyebrow {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.contact-intro h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -.027em;
  margin: 26px 0 0;
  max-width: 15ch;
}

.contact-h1-em {
  font-style: italic;
  color: var(--accent);
}

.contact-intro-copy {
  font-family: var(--font-serif);
  font-size: 18.5px;
  line-height: 1.76;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 30px 0 0;
  text-wrap: pretty;
  animation: fade-in 1s .6s both;
}

.contact-hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 40px 0 0;
  transform-origin: left;
  animation: rule-draw 1.1s var(--ease) .6s both;
}

.contact-body {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 6vw 12vh;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 64px;
  align-items: start;
}

.enquiry {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* honeypot: hidden from people, present for the form parser */
.bot-field {
  position: absolute;
  left: -9999px;
  margin: 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.field-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.field input,
.field textarea {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 8px 0;
  outline: none;
}

.field input:focus,
.field textarea:focus { border-bottom-color: var(--ink); }

.field textarea { resize: vertical; }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 3px;
}

.chip {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: -.01em;
  padding: 7px 13px;
  cursor: pointer;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink-soft);
  transition: background .3s, color .3s, border-color .3s;
}

.chip.is-selected {
  background: var(--ring);
  border-color: var(--ring);
  color: var(--mark);
}

.form-submit { padding: 13px 26px; }

.contact-group-id {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.contact-group-seal {
  width: 46px;
  height: 46px;
}

.contact-group-name {
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: -.03em;
  font-size: 17px;
}

.contact-address {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.direct {
  margin-top: 40px;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}

.direct-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
}

.direct-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid #E0DACB;
  text-decoration: none;
  color: inherit;
}

.direct-seal {
  width: 26px;
  height: 26px;
}

.direct-name {
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: -.03em;
  font-size: 15px;
  flex: 1;
}

.direct-domain {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .1em;
  color: var(--ink-mute);
}

/* 12 · motion */

@keyframes word-rise {
  from { opacity: 0; transform: translateY(.42em); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes rule-draw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes photo-wipe {
  from { clip-path: inset(0 0 100% 0); }
  to { clip-path: inset(0 0 0 0); }
}

@keyframes photo-settle {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes seal-settle {
  from { opacity: 0; transform: rotate(-14deg) scale(.86); }
  to { opacity: 1; transform: rotate(0) scale(1); }
}

/* the scroll reveal: hidden only once JS has mounted, shown per section
   by an IntersectionObserver adding .in · a JS failure never hides content */
.js-rv section[data-rv] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.15s var(--ease), transform 1.15s var(--ease);
}
.js-rv section[data-rv].in > * {
  opacity: 1;
  transform: none;
}
.js-rv section[data-rv].in > *:nth-child(2) { transition-delay: .14s; }
.js-rv section[data-rv].in > *:nth-child(3) { transition-delay: .24s; }

/* 13 · responsive */

@media (max-width: 1120px) {
  .why-media { grid-template-columns: 1fr; }
  .why-media .fig { max-width: 210px; }
}

@media (max-width: 760px) {
  .horn-bleed { display: none; }
  .hero-ghost { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 20px;
    padding-top: 32px;
  }
  .hero-figure { padding-bottom: 0; }
  .hero-photo {
    flex: none;
    min-height: 0;
    height: 30vh;
  }
  .horn-band {
    min-height: 0;
    margin-top: 34px;
    padding: 40px var(--margin);
  }
  .horn-band-rule { display: none; }
  .why-media { grid-template-columns: 1fr; gap: 28px; }
  .spine {
    grid-template-columns: 1fr;
    padding-top: 44px;
    padding-bottom: 44px;
    gap: 20px;
  }
  #brands { padding-top: 34px; }
  .tile-photo { aspect-ratio: 15 / 8; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-delay: 0ms !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }
  html { scroll-behavior: auto; }
}
