:root {
  --black: #030303;
  --ink: #080808;
  --ink-2: #0d0d0d;
  --ink-3: #141414;
  --white: #f7f4ed;
  --white-soft: rgba(247, 244, 237, .72);
  --white-faint: rgba(247, 244, 237, .48);
  --gold: #caa55d;
  --gold-bright: #e2c27f;
  --gold-deep: #8d6d36;
  --line: rgba(226, 194, 127, .22);
  --line-soft: rgba(255, 255, 255, .11);
  --shell: min(1240px, calc(100% - 96px));
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: Inter, Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --header-h: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.top-anchor { position: absolute; inset: 0 auto auto 0; width: 1px; height: 1px; pointer-events: none; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold); color: var(--black); }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 500;
  padding: 10px 16px;
  background: var(--gold-bright);
  color: var(--black);
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .09em;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.section-shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: clamp(95px, 11vw, 170px) 0; }
.eyebrow {
  margin: 0 0 22px;
  color: var(--gold-bright);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .24em;
  line-height: 1.3;
  text-transform: uppercase;
}
h1, h2, h3, h4, p { overflow-wrap: break-word; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled {
  background: rgba(3, 3, 3, .87);
  border-bottom: 1px solid rgba(226, 194, 127, .13);
  backdrop-filter: blur(18px);
}
.header-inner {
  position: relative;
  width: min(100% - 44px, 1480px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-toggle,
.menu-close {
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 0;
}
.menu-icon { display: grid; gap: 6px; width: 31px; }
.menu-icon i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: width .25s ease, background .25s ease;
}
.menu-icon i:nth-child(2) { width: 21px; }
.menu-toggle:hover .menu-icon i:nth-child(2),
.menu-toggle:focus-visible .menu-icon i:nth-child(2) { width: 31px; }
.menu-label {
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.header-brand {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  transform: translate(-50%, -50%);
  transition: opacity .35s ease, transform .35s ease;
}
.header-brand img { width: 100%; height: 74px; object-fit: contain; }
.js .site-header:not(.is-scrolled) .header-brand {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -42%);
}
.header-contact {
  position: relative;
  padding-bottom: 4px;
  color: var(--white);
  font-size: .69rem;
  font-weight: 750;
  letter-spacing: .17em;
  text-decoration: none;
  text-transform: uppercase;
}
.header-contact::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold-bright);
  transition: right .25s ease;
}
.header-contact:hover::after,
.header-contact:focus-visible::after { right: 0; }

/* Off-canvas menu */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(0, 0, 0, .68);
  opacity: 0;
  backdrop-filter: blur(4px);
  transition: opacity .35s ease;
}
body.menu-open .menu-backdrop { opacity: 1; }
.offcanvas {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 200;
  width: min(440px, 92vw);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 34px 42px 38px;
  overflow-y: auto;
  background:
    linear-gradient(rgba(202,165,93,.035), rgba(202,165,93,0) 45%),
    var(--ink);
  border-right: 1px solid var(--line);
  box-shadow: 24px 0 80px rgba(0,0,0,.5);
  transform: translateX(-105%);
  visibility: hidden;
  transition: transform .42s cubic-bezier(.75,0,.18,1), visibility .42s;
}
body.menu-open .offcanvas { transform: translateX(0); visibility: visible; }
.offcanvas-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line-soft);
}
.offcanvas-head > img { width: 290px; height: 108px; object-fit: contain; object-position: left center; }
.menu-close { position: relative; width: 44px; height: 44px; flex: 0 0 auto; }
.menu-close span {
  position: absolute;
  left: 9px;
  top: 21px;
  width: 27px;
  height: 1px;
  background: var(--white);
}
.menu-close span:first-child { transform: rotate(45deg); }
.menu-close span:last-child { transform: rotate(-45deg); }
.offcanvas-nav { display: grid; margin: auto 0; padding: 52px 0; }
.offcanvas-nav a {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  color: rgba(247,244,237,.77);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 5vh, 2.65rem);
  line-height: 1.15;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}
.offcanvas-nav a span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.offcanvas-nav a:hover,
.offcanvas-nav a:focus-visible,
.offcanvas-nav a.active { color: var(--gold-bright); transform: translateX(5px); }
.offcanvas-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  color: var(--white-faint);
  font-size: .76rem;
  line-height: 1.6;
}
.offcanvas-footer a { color: var(--gold-bright); text-decoration: none; }
.offcanvas-footer address { margin: 0; font-style: normal; text-align: right; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
}
.hero-video,
.hero-shade,
.hero-grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video {
  object-fit: contain;
  object-position: center;
  background: var(--black);
  pointer-events: none;
}
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-start-playback-button { display: none !important; -webkit-appearance: none; }
.hero-shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.46) 0%, rgba(0,0,0,.10) 20%, rgba(0,0,0,.04) 58%, rgba(0,0,0,.48) 100%),
    rgba(0,0,0,.18);
}
.hero-grid {
  display: none;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 70%);
}
.hero-content {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 30px;
  width: min(880px, calc(100% - 280px));
  text-align: center;
  transform: translateX(-50%);
}
 .hero-seo-title {
  position: absolute;
  z-index: 3;
  top: 32px;
  left: 50%;
  width: min(900px, calc(100% - 180px));
  margin: 0;
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(.72rem, .8vw, .88rem);
  font-weight: 750;
  letter-spacing: .2em;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0,0,0,.9);
  text-transform: uppercase;
  transform: translateX(-50%);
}
.hero-seo-title span { white-space: nowrap; }
.hero-intro {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(247,244,237,.9);
  font-size: clamp(1.03rem, 1.08vw, 1.16rem);
  line-height: 1.55;
  text-shadow: 0 2px 18px rgba(0,0,0,.95);
}

.hero-intro,
.hero-actions { opacity: 1 !important; transform: none !important; visibility: visible; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 13px; margin-top: 18px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid transparent;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--black); }
.button-gold:hover,
.button-gold:focus-visible { background: var(--gold-bright); }
.button-line { border-color: rgba(255,255,255,.36); color: var(--white); }
.button-line:hover,
.button-line:focus-visible { border-color: var(--gold-bright); color: var(--gold-bright); }
.hero-address {
  position: absolute;
  z-index: 3;
  right: max(48px, calc((100vw - 1240px) / 2));
  bottom: 44px;
  display: flex;
  gap: 20px;
  color: rgba(247,244,237,.58);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-address span + span { padding-left: 20px; border-left: 1px solid rgba(255,255,255,.24); }
.scroll-indicator {
  position: absolute;
  z-index: 4;
  left: 24px;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(247,244,237,.55);
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left center;
}
.scroll-indicator span { width: 45px; height: 1px; background: var(--gold); }

/* History */
.history {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(202,165,93,.11), transparent 26%),
    var(--ink);
}
.history::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, var(--line), transparent);
}
.history-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(60px, 10vw, 155px);
  align-items: start;
}
.section-heading h2,
.services-intro h2,
.process-heading h2,
.contact-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.75rem, 5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -.052em;
  line-height: .95;
}
.history-copy { max-width: 700px; }
.history-copy p { margin: 0 0 24px; color: var(--white-soft); font-size: 1.06rem; }
.history-copy .lead {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.45;
}
.founder-card {
  display: grid;
  gap: 20px;
  align-content: start;
  justify-items: center;
  max-width: 360px;
}
.founder-portrait {
  width: min(100%, 290px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(226, 194, 127, .34);
  box-shadow: 0 0 0 10px rgba(202, 165, 93, .08);
  background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.05), rgba(255,255,255,.01));
}
.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.founder-copy {
  text-align: center;
}
.founder-title {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .22em;
  line-height: 1.3;
  text-transform: uppercase;
}
.founder-copy blockquote {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-style: italic;
  line-height: 1.45;
}
.founder-bio {
  grid-column: 2;
  max-width: 700px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.founder-bio p {
  margin: 0 0 20px;
  color: var(--white-soft);
  font-size: 1.06rem;
  line-height: 1.72;
}
.founder-bio p:last-child {
  margin-bottom: 0;
}

/* Services */
.services { background: var(--ink-2); }
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .26;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(#000, transparent 75%);
}
.services-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: end;
  margin-bottom: clamp(95px, 11vw, 150px);
}
.services-intro > p {
  margin: 0 0 8px;
  color: var(--white-soft);
  font-size: 1.09rem;
}
.service-group {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, .52fr) minmax(0, 1.48fr);
  gap: clamp(50px, 8vw, 120px);
  padding: 68px 0 96px;
  border-top: 1px solid var(--line);
}
.service-group:last-child { padding-bottom: 0; }
.service-group-heading {
  position: sticky;
  top: calc(var(--header-h) + 34px);
  align-self: start;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
}
.service-group-heading > div { min-width: 0; }
.service-group-heading > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.1rem;
}
.service-group-heading p {
  margin: 0 0 10px;
  color: var(--white-faint);
  font-size: .65rem;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.service-group-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 1.9vw, 2rem);
  font-weight: 400;
  max-width: 100%;
  letter-spacing: -.03em;
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.service-list { border-top: 1px solid var(--line-soft); }
.service-list details { border-bottom: 1px solid var(--line-soft); }
.service-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 19px 0;
  cursor: pointer;
  list-style: none;
  transition: color .25s ease;
}
.service-list summary::-webkit-details-marker { display: none; }
.service-list summary > span {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: .92rem;
}
.service-list h4 {
  margin: 0;
  color: rgba(247,244,237,.88);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
  font-weight: 400;
  line-height: 1.22;
}
.service-list summary i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(226,194,127,.26);
  border-radius: 50%;
}
.service-list summary i::before,
.service-list summary i::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 13px;
  width: 10px;
  height: 1px;
  background: var(--gold-bright);
  transition: transform .25s ease;
}
.service-list summary i::after { transform: rotate(90deg); }
.service-list details[open] summary i::after { transform: rotate(0deg); }
.service-list summary:hover h4,
.service-list summary:focus-visible h4,
.service-list details[open] summary h4 { color: var(--gold-bright); }
.service-list summary:focus-visible { outline: 1px solid var(--gold); outline-offset: 6px; }
.service-body {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 34px;
  gap: 18px;
  padding: 0 0 34px;
}
.service-body p {
  grid-column: 2;
  max-width: 760px;
  margin: 0;
  color: var(--white-soft);
  font-size: 1.06rem;
}

/* Process */
.process {
  background:
    linear-gradient(115deg, rgba(202,165,93,.08), transparent 42%),
    var(--black);
}
.process-heading { display: grid; grid-template-columns: .48fr 1fr; gap: 40px; align-items: start; }
.process-heading .eyebrow { margin-top: 14px; }
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 100px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-list li {
  position: relative;
  min-height: 280px;
  padding: 34px 28px 30px;
  border-right: 1px solid var(--line);
}
.process-list li:last-child { border-right: 0; }
.process-list li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 27px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 7px rgba(202,165,93,.12);
}
.process-list span { color: var(--gold); font-family: var(--serif); }
.process-list strong {
  display: block;
  margin-top: 70px;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
}
.process-list p { margin: 13px 0 0; color: var(--white-soft); font-size: 1.02rem; }

/* Contact */
.contact { overflow: hidden; background: var(--ink-3); }
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(202,165,93,.12), transparent 35%);
}
.contact-mark {
  position: absolute;
  right: -7vw;
  top: 50%;
  width: min(54vw, 720px);
  opacity: .08;
  transform: translateY(-50%);
}
.contact-mark img { width: 100%; }
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .72fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
}
.contact-heading h2 { max-width: 850px; }
.contact-details { display: grid; gap: 46px; }
.contact-item { padding-top: 20px; border-top: 1px solid var(--line); }
.contact-item > span {
  display: block;
  margin-bottom: 15px;
  color: var(--gold-bright);
  font-size: .64rem;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.contact-item address {
  margin: 0 0 15px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.3vw, 2.15rem);
  font-style: normal;
  line-height: 1.25;
}
.contact-item a { color: var(--white-faint); font-size: .78rem; text-decoration-color: var(--gold); text-underline-offset: 5px; }
.contact-item .contact-email,
.contact-phones a {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  text-decoration: none;
  transition: color .2s ease;
}
.contact-phones { display: grid; gap: 8px; justify-items: start; }
.contact-item .contact-email:hover,
.contact-item .contact-email:focus-visible,
.contact-phones a:hover,
.contact-phones a:focus-visible { color: var(--gold-bright); }

/* Footer */
.site-footer { padding: 46px 0; background: var(--black); border-top: 1px solid var(--line-soft); }
.footer-inner {
  width: var(--shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 290px 1fr auto;
  gap: 36px;
  align-items: center;
}
.footer-inner img { width: 270px; height: 96px; object-fit: contain; object-position: left center; opacity: .8; }
.footer-inner p { margin: 0; color: var(--white-faint); font-size: .82rem; text-align: center; }
.footer-inner a { color: var(--white-faint); font-size: .72rem; font-weight: 750; letter-spacing: .11em; text-decoration: none; text-transform: uppercase; }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(25px); transition: opacity .75s ease, transform .75s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  :root { --shell: min(100% - 60px, 1000px); }
  .hero-content { left: 50%; }
  .hero-address { right: 48px; }
  .history-grid { gap: 60px; }
  .service-group { grid-template-columns: 250px 1fr; gap: 58px; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li:nth-child(2) { border-right: 0; }
  .process-list li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact-grid { grid-template-columns: 1fr .7fr; gap: 60px; }
}

@media (max-width: 440px) {
  :root { --shell: calc(100% - 40px); --header-h: 78px; }
  .header-inner { width: calc(100% - 30px); }
  .menu-label { display: none; }
  .header-brand { width: 205px; }
  .header-brand img { height: 60px; }
  .header-contact { font-size: .61rem; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0,0,0,.46) 0%, rgba(0,0,0,.06) 26%, rgba(0,0,0,.06) 65%, rgba(0,0,0,.54) 100%),
      rgba(0,0,0,.16);
  }
  .hero-content { left: 50%; bottom: 88px; width: calc(100% - 40px); }
  .hero-seo-title { top: 30px; width: calc(100% - 120px); font-size: .66rem; }
  .hero-intro { max-width: 620px; }
  .hero-address { left: 20px; right: auto; bottom: 28px; }
  .scroll-indicator { display: none; }
  .history::before { display: none; }
  .history-grid,
  .services-intro,
  .service-group,
  .process-heading,
  .contact-grid { grid-template-columns: 1fr; }
  .history-grid { gap: 46px; }
  .founder-card {
    max-width: 100%;
    justify-items: start;
  }
  .founder-portrait {
    width: min(78vw, 270px);
  }
  .founder-copy {
    text-align: left;
  }
  .founder-bio { grid-column: auto; }
  .services-intro { gap: 32px; }
  .service-group { gap: 35px; padding-top: 55px; }
  .service-group-heading { position: static; }
  .process-heading { gap: 18px; }
  .process-heading .eyebrow { margin-top: 0; }
  .process-list { margin-top: 65px; }
  .contact-grid { gap: 70px; }
  .contact-mark { width: 88vw; right: -35vw; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-inner img { object-position: center; }
  .footer-inner p { order: 3; }
}

@media (max-width: 440px) {
  .hero {
    height: 100vh;
    min-height: 100vh;
    height: 100svh;
    min-height: 100svh;
  }
  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center center;
  }
  .hero-shade {
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .hero-content {
    position: absolute;
    left: 50%;
    bottom: 88px;
    width: calc(100% - 40px);
    padding: 0;
    background: transparent;
    transform: translateX(-50%);
  }
  .hero-address {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 26px;
    width: calc(100% - 40px);
    justify-content: center;
    padding: 0;
    text-align: center;
    transform: translateX(-50%);
  }
  .hero-seo-title {
    top: 16px;
    right: 20px;
    left: auto;
    width: calc(100% - 110px);
    font-size: .66rem;
    letter-spacing: .12em;
    line-height: 1.45;
    text-align: right;
    transform: none;
  }
  .hero-seo-title .hero-title-line { display: block; white-space: nowrap; }
}

@media (max-width: 440px) {
  :root { --shell: calc(100% - 32px); }
  .site-header.is-scrolled .header-brand { width: 175px; }
  .header-contact { display: none; }
  .header-brand { left: auto; right: 0; transform: translateY(-50%); }
  .js .site-header:not(.is-scrolled) .header-brand { transform: translateY(-42%); }
  .offcanvas { padding: 27px 24px 28px; }
  .offcanvas-head > img { width: 240px; height: 90px; }
  .offcanvas-nav a { grid-template-columns: 27px 1fr; gap: 10px; font-size: clamp(1.75rem, 9vw, 2.4rem); }
  .offcanvas-footer { grid-template-columns: 1fr; gap: 12px; }
  .offcanvas-footer address { text-align: left; }
  .hero-content { bottom: 88px; }
  .hero-seo-title { right: 16px; width: calc(100% - 92px); font-size: .64rem; }
  .hero-intro { font-size: 1rem; line-height: 1.5; }
  .hero-actions { margin-top: 16px; }
  .button { width: 100%; min-height: 48px; }
  .hero-address { display: grid; gap: 3px; font-size: .57rem; }
  .hero-address span + span { padding-left: 0; border-left: 0; }
  .section { padding: 88px 0; }
  .section-heading h2,
  .services-intro h2,
  .process-heading h2,
  .contact-heading h2 { font-size: clamp(2.35rem, 11vw, 3.6rem); }
  .history-copy .lead { font-size: 1.34rem; }
  .history-stat { display: grid; gap: 18px; }
  .history-stat strong { font-size: 6.8rem; }
  .service-group { padding-bottom: 72px; }
  .service-group-heading { grid-template-columns: 34px 1fr; }
  .service-group-heading h3 { font-size: 2rem; }
  .service-list summary { grid-template-columns: 32px minmax(0, 1fr) 30px; gap: 11px; min-height: 84px; }
  .service-list h4 { font-size: 1.18rem; }
  .service-body { grid-template-columns: 32px minmax(0, 1fr); gap: 11px; }
  .service-body p { grid-column: 2; font-size: 1.02rem; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-list li:last-child { border-bottom: 0; }
  .process-list strong { margin-top: 48px; }
  .contact-item .contact-email,
  .contact-phones a { font-size: 1.3rem; }
}


/* Mobile hero: full-screen video first, information below it */
@media (max-width: 440px) {
  .hero {
    height: auto;
    min-height: 0;
    padding-top: 100vh;
    padding-top: 100svh;
    overflow: hidden;
    background: var(--black);
  }

  .hero-video,
  .hero-shade,
  .hero-grid {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
  }

  .hero-video {
    object-fit: cover;
    object-position: center center;
  }

  .hero-content {
    position: relative;
    z-index: 5;
    scroll-margin-top: var(--header-h);
    left: auto;
    bottom: auto;
    width: 100%;
    padding: 46px 20px 24px;
    background: var(--black);
    text-align: center;
    transform: none;
  }

  .hero-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 46px;
    height: 1px;
    background: var(--gold);
    transform: translateX(-50%);
  }

  .hero-intro {
    max-width: 34rem;
    color: rgba(247,244,237,.9);
    font-size: 1.05rem;
    line-height: 1.62;
    text-shadow: none;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-address {
    position: relative;
    z-index: 5;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    display: grid;
    justify-content: center;
    gap: 4px;
    padding: 0 20px 42px;
    background: var(--black);
    color: rgba(247,244,237,.58);
    text-align: center;
    transform: none;
  }

  .hero-address span + span {
    padding-left: 0;
    border-left: 0;
  }

  .scroll-indicator {
    display: flex;
    top: calc(100vh - 54px);
    top: calc(100svh - 54px);
    bottom: auto;
    left: 50%;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    transform: translateX(-50%);
  }

  .scroll-indicator span {
    width: 11px;
    height: 11px;
    border-right: 1px solid var(--gold-bright);
    border-bottom: 1px solid var(--gold-bright);
    background: transparent;
    transform: rotate(45deg) translate(-2px, -2px);
    animation: mobile-scroll-cue 1.8s ease-in-out infinite;
  }
}

@keyframes mobile-scroll-cue {
  0%, 100% { opacity: .42; transform: rotate(45deg) translate(-2px, -2px); }
  50% { opacity: 1; transform: rotate(45deg) translate(3px, 3px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-video { display: none; }
  .hero { background: var(--black) url("../images/hero-poster.jpg") center / contain no-repeat; }
  .js .reveal { opacity: 1; transform: none; }
}


@media (max-width: 440px) and (prefers-reduced-motion: reduce) {
  .hero {
    background-color: var(--black);
    background-position: center top;
    background-size: auto 100vh;
    background-size: auto 100svh;
    background-repeat: no-repeat;
  }
}


/* Clients */
.clients {
  padding-top: clamp(72px, 7vw, 110px);
}
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-bottom: clamp(72px, 7vw, 110px);
}
.stat-item {
  padding: 18px 14px 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.stat-item strong {
  display: block;
  margin: 0 0 6px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: .01em;
}
.stat-item p {
  margin: 0;
  color: var(--white-soft);
  font-size: .9rem;
  line-height: 1.4;
}
.clients-heading {
  max-width: 760px;
  margin-bottom: 38px;
}
.clients-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 3.05rem);
  line-height: 1.08;
  font-weight: 500;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 26px 18px;
  align-items: end;
}
.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-height: auto;
  padding: 8px 6px;
  border: 0;
  background: transparent;
  text-decoration: none;
  text-align: center;
  box-shadow: none;
  transition: transform .22s ease, opacity .22s ease;
}
.client-card:nth-child(1),
.client-card:nth-child(2),
.client-card:nth-child(3) {
  grid-column: span 2;
}
.client-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.client-card:nth-child(5) {
  grid-column: 4 / span 2;
}
.client-card:hover,
.client-card:focus-visible {
  transform: translateY(-4px);
}
.client-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 106px;
}
.client-logo-wrap img {
  max-width: 92%;
  max-height: 86px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) saturate(.05) brightness(1.05) opacity(.72);
  transition: filter .25s ease, transform .25s ease, opacity .25s ease;
}
.client-logo-efantasy img {
  max-height: 92px;
}
.client-card:hover .client-logo-wrap img,
.client-card:focus-visible .client-logo-wrap img {
  filter: grayscale(0) saturate(1) brightness(1) opacity(1);
  transform: scale(1.045);
}
.client-card strong {
  color: var(--white-soft);
  font-size: .84rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: .03em;
  transition: color .25s ease;
}
.client-card:hover strong,
.client-card:focus-visible strong {
  color: var(--white);
}

@media (max-width: 1100px) {
  .stats-strip {
    gap: 14px;
  }
  .clients-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px 14px;
  }
  .client-logo-wrap {
    min-height: 88px;
  }
  .client-logo-wrap img {
    max-height: 72px;
  }
  .client-logo-efantasy img {
    max-height: 78px;
  }
}

@media (max-width: 720px) {
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 32px;
  }
  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 12px;
  }
  .client-card:nth-child(1),
  .client-card:nth-child(2),
  .client-card:nth-child(3),
  .client-card:nth-child(4),
  .client-card:nth-child(5) {
    grid-column: auto;
  }
  .client-logo-wrap {
    min-height: 76px;
  }
  .client-logo-wrap img {
    max-height: 58px;
  }
  .client-logo-efantasy img {
    max-height: 64px;
  }
}

@media (max-width: 440px) {
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
    margin-bottom: 24px;
  }
  .stat-item {
    padding: 14px 8px 12px;
  }
  .stat-item strong {
    font-size: 1.55rem;
  }
  .stat-item p {
    font-size: .76rem;
  }
  .clients-heading {
    margin-bottom: 22px;
  }
  .clients-heading h2 {
    font-size: 1.8rem;
  }
  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 10px;
  }
  .client-card {
    gap: 8px;
    padding: 6px 4px;
  }
  .client-card:last-child {
    grid-column: 1 / -1;
    max-width: 180px;
    justify-self: center;
  }
  .client-logo-wrap {
    min-height: 68px;
  }
  .client-logo-wrap img {
    max-height: 50px;
  }
  .client-logo-efantasy img {
    max-height: 56px;
  }
  .client-card strong {
    font-size: .74rem;
  }
}
