:root {
  --void: #04060a;
  --ink: #0a1018;
  --navy: #0c1a2e;
  --navy-deep: #071221;
  --fog: #d8d2c6;
  --fog-dim: rgba(216, 210, 198, 0.68);
  --paper: #efeae0;
  --paper-deep: #e4ddd0;
  --gold: #d4b56a;
  --gold-bright: #e8c878;
  --gold-deep: #9a7d3f;
  --line: rgba(212, 181, 106, 0.35);
  --line-soft: rgba(216, 210, 198, 0.14);
  --font-display: "Newsreader", "Georgia", serif;
  --font-body: "IBM Plex Sans", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 9.5rem;
  --rail: clamp(1.25rem, 4vw, 3.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--fog);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

::selection {
  background: var(--gold);
  color: var(--void);
}

.container {
  width: min(1180px, calc(100% - (var(--rail) * 2)));
  margin-inline: auto;
}

.container-narrow {
  width: min(720px, calc(100% - (var(--rail) * 2)));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition:
    height 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s,
    backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(4, 6, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line-soft);
}

body.header-compact {
  --header-h: 5rem;
}

.brand img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  transition: width 0.35s var(--ease), height 0.35s var(--ease);
}

body.header-compact .brand img {
  width: 64px;
  height: 64px;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, calc(100% - (var(--rail) * 2)));
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(216, 210, 198, 0.7);
  transition: color 0.25s;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--gold-bright);
}

.nav-cta {
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--void) !important;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.3rem;
  height: 1px;
  background: var(--gold);
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  inset-inline: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--void);
}

.btn-gold:hover {
  background: var(--gold-bright);
}

.btn-ghost {
  border: 1px solid rgba(216, 210, 198, 0.4);
  color: var(--fog);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  transform: scale(1.06);
  animation: heroDrift 22s var(--ease) forwards;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      105deg,
      rgba(7, 18, 33, 0.94) 0%,
      rgba(7, 18, 33, 0.78) 38%,
      rgba(4, 6, 10, 0.45) 62%,
      rgba(4, 6, 10, 0.55) 100%
    ),
    linear-gradient(
      0deg,
      rgba(4, 6, 10, 0.88) 0%,
      transparent 38%
    );
}

.hero-inner {
  padding: calc(var(--header-h) + 2.5rem) 0 4.25rem;
  max-width: 38rem;
}

.hero-brand {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3.2rem, 9vw, 6.2rem);
  line-height: 0.88;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: riseIn 1.1s var(--ease) 0.1s forwards;
}

.hero-brand span {
  display: block;
  margin-top: 0.08em;
  font-size: 0.52em;
  letter-spacing: 0.28em;
  font-weight: 500;
  color: var(--gold-bright);
  opacity: 0.9;
}

.hero h1 {
  margin: 0 0 1rem;
  max-width: 18ch;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.65rem, 2.9vw, 2.25rem);
  font-style: normal;
  line-height: 1.25;
  color: var(--paper);
  opacity: 0;
  animation: riseIn 1.1s var(--ease) 0.28s forwards;
}

.hero-lead {
  margin: 0 0 2.1rem;
  max-width: 32rem;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.7;
  color: rgba(232, 226, 214, 0.88);
  opacity: 0;
  animation: riseIn 1.1s var(--ease) 0.42s forwards;
}

.hero .btn-row {
  opacity: 0;
  animation: riseIn 1.1s var(--ease) 0.55s forwards;
}

@keyframes heroDrift {
  to { transform: scale(1); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(1.4rem); }
  to { opacity: 1; transform: none; }
}

/* ——— Sections ——— */
.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  position: relative;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-ink {
  background: var(--ink);
}

.section-texture {
  isolation: isolate;
  overflow: hidden;
}

.section-texture-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.section-texture-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.section-texture::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(4, 6, 10, 0.92), rgba(12, 26, 46, 0.9));
}

.section-head {
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
  max-width: 34rem;
}

.section-head h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.section-light .section-head h2 {
  color: var(--ink);
}

.section-head p {
  margin: 0;
  color: rgba(232, 226, 214, 0.82);
  font-weight: 400;
}

.section-light .section-head p {
  color: rgba(10, 16, 24, 0.72);
}

.eyebrow {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.section-ink .eyebrow,
.section-texture .eyebrow {
  color: var(--gold);
}

/* ——— Services (editorial list + smooth stagger) ——— */
.service-list {
  border-top: 1px solid rgba(10, 16, 24, 0.14);
}

.service-item {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr) auto;
  gap: 1rem 1.5rem;
  align-items: baseline;
  padding: 1.65rem 0;
  border-bottom: 1px solid rgba(10, 16, 24, 0.14);
  opacity: 0;
  transform: translateY(1.75rem);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease),
    padding 0.4s var(--ease),
    background-color 0.4s var(--ease),
    border-color 0.4s ease;
  will-change: opacity, transform;
}

.service-item.is-visible {
  opacity: 1;
  transform: none;
}

.service-item:hover {
  padding-left: 0.65rem;
  padding-right: 0.35rem;
}

.service-item .num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold-deep);
  transition: color 0.35s ease, transform 0.45s var(--ease);
}

.service-item:hover .num {
  color: var(--gold);
  transform: translateX(4px);
}

.service-item h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 600;
  color: var(--ink);
  transition: color 0.35s ease;
}

.service-item:hover h3 {
  color: #1a1208;
}

.service-item p {
  margin: 0;
  max-width: 38rem;
  color: rgba(10, 16, 24, 0.7);
  font-weight: 400;
}

.service-item a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  white-space: nowrap;
  align-self: center;
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s ease, color 0.35s ease, transform 0.45s var(--ease);
}

.service-item:hover a {
  border-bottom-color: var(--gold-deep);
  color: var(--gold-deep);
  transform: translateX(4px);
}

.section-actions {
  margin-top: 2.25rem;
}

.section-light .btn-ghost {
  border-color: rgba(10, 16, 24, 0.25);
  color: var(--ink);
}

.section-light .btn-ghost:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}

/* ——— Why ——— */
.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.why-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  color: var(--gold);
}

.why-layout-light p {
  margin: 0;
  color: rgba(10, 16, 24, 0.72);
  font-weight: 400;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.trust-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--ink);
}

.trust-copy p {
  margin: 0 0 1rem;
  color: rgba(10, 16, 24, 0.72);
  font-weight: 400;
  max-width: 36rem;
}

.trust-copy p:last-child {
  margin-bottom: 0;
}

.trust-list {
  margin: 0;
  padding-top: 0.35rem;
}

.why-item {
  padding: 1.4rem 0 1.4rem 1.25rem;
  border-left: 1px solid var(--line);
}

.why-item h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--paper);
}

.why-item p {
  margin: 0;
  color: var(--fog-dim);
  font-weight: 400;
  font-size: 0.95rem;
}

/* ——— Process ——— */
.process {
  display: grid;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(10, 16, 24, 0.12);
  position: relative;
}

.process-step:last-child {
  border-bottom: 1px solid rgba(10, 16, 24, 0.12);
}

.process-label {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(154, 125, 63, 0.55);
  letter-spacing: -0.03em;
}

.process-step h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  color: var(--gold-deep);
}

.process-step p {
  margin: 0;
  max-width: 40rem;
  color: rgba(10, 16, 24, 0.72);
  font-weight: 400;
}

.section-ink .process-step {
  border-top-color: var(--line-soft);
}

.section-ink .process-step:last-child {
  border-bottom-color: var(--line-soft);
}

.section-ink .process-label {
  -webkit-text-stroke-color: rgba(212, 181, 106, 0.45);
}

.section-ink .process-step h3 {
  color: var(--gold);
}

.section-ink .process-step p {
  color: var(--fog-dim);
}

/* ——— CTA ——— */
.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.cta-band-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cta-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(7, 18, 33, 0.92) 0%, rgba(4, 6, 10, 0.72) 100%);
}

.cta-band h2 {
  margin: 0 0 1.75rem;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  color: var(--paper);
}

/* ——— Inner page hero ——— */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--header-h) + 4.5rem) 0 3.5rem;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    105deg,
    rgba(7, 18, 33, 0.94) 0%,
    rgba(7, 18, 33, 0.75) 45%,
    rgba(4, 6, 10, 0.55) 100%
  );
}

.page-hero h1 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 0.98;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.page-hero p {
  margin: 0;
  max-width: 34rem;
  color: var(--fog-dim);
  font-weight: 400;
}

/* ——— About split ——— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split-visual {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
}

.split-visual img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
}

.split-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(4, 6, 10, 0.35));
  pointer-events: none;
}

.split-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.12;
  color: var(--ink);
}

.split-copy p {
  margin: 0;
  color: rgba(10, 16, 24, 0.68);
  font-weight: 400;
}

.split-copy p + p {
  margin-top: 1rem;
}

.checklist {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.checklist li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--fog);
  font-weight: 400;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--gold);
}

.section-light .checklist li {
  color: var(--ink);
}

/* ——— Service details ——— */
.detail-block + .detail-block {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(10, 16, 24, 0.12);
}

.detail-block h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
}

.detail-block p {
  margin: 0 0 1rem;
  max-width: 46rem;
  color: rgba(10, 16, 24, 0.72);
  font-weight: 400;
}

.detail-list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  max-width: 40rem;
}

.detail-list li {
  position: relative;
  padding-left: 1.25rem;
  color: rgba(10, 16, 24, 0.78);
  font-weight: 400;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--gold-deep);
}

/* ——— Services page ——— */
.services-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 15rem) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.services-toc {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
  padding: 1.25rem 0;
}

.services-toc-label {
  margin: 0 0 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.services-toc-nav {
  display: grid;
  gap: 0.35rem;
}

.services-toc-nav a {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(10, 16, 24, 0.1);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(10, 16, 24, 0.58);
  transition: color 0.25s, padding-left 0.3s var(--ease);
}

.services-toc-nav a:hover {
  color: var(--ink);
  padding-left: 0.35rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 1.25rem 1.75rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(10, 16, 24, 0.12);
  scroll-margin-top: calc(var(--header-h) + 1.25rem);
}

.service-detail:first-child {
  padding-top: 0;
  border-top: 0;
}

.service-detail-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(154, 125, 63, 0.55);
}

.service-detail-body h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  line-height: 1.15;
  color: var(--ink);
}

.service-detail-body p {
  margin: 0 0 1rem;
  max-width: 42rem;
  color: rgba(10, 16, 24, 0.72);
  font-weight: 400;
}

.service-detail-body p:last-child {
  margin-bottom: 0;
}

/* ——— FAQ ——— */
.faq-list {
  border-top: 1px solid var(--line-soft);
}

.faq-item {
  border-bottom: 1px solid var(--line-soft);
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1.35rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--paper);
}

.faq-item button span:last-child {
  flex: none;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.35s var(--ease), background 0.25s;
}

.faq-item.is-open button span:last-child {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--void);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel > div {
  overflow: hidden;
}

.faq-panel p {
  margin: 0 0 1.35rem;
  max-width: 40rem;
  color: var(--fog-dim);
  font-weight: 400;
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-card h2 {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
}

.contact-lines {
  display: grid;
  gap: 1.4rem;
}

.contact-lines dt {
  margin-bottom: 0.3rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.contact-lines dd {
  margin: 0;
  color: var(--fog);
  font-weight: 400;
}

.contact-lines a:hover {
  color: var(--gold);
}

.contact-form-wrap {
  position: relative;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog-dim);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 0.95rem;
  border: 0;
  border-bottom: 1px solid rgba(212, 181, 106, 0.3);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  font: inherit;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.contact-form textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.form-check {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  color: rgba(232, 226, 214, 0.78) !important;
  line-height: 1.5;
}

.form-check input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--gold);
  border-bottom: 0;
  padding: 0;
}

.form-check a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-check a:hover {
  color: var(--gold-bright);
}

.form-status {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-soft);
  font-size: 0.92rem;
}

.form-status.is-success {
  border-color: rgba(212, 181, 106, 0.45);
  color: var(--gold-bright);
}

.form-status.is-error {
  border-color: rgba(200, 80, 80, 0.55);
  color: #f0b4b4;
}

.form-success {
  padding: 1.75rem;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
}

.form-success h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
}

.form-success p {
  margin: 0 0 1.25rem;
  color: rgba(232, 226, 214, 0.78);
}

.form-note {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(216, 210, 198, 0.45);
  font-weight: 400;
}

/* ——— Legal ——— */
.legal-content {
  color: var(--fog-dim);
  font-weight: 400;
}

.legal-content h2 {
  margin: 2.4rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  margin: 0 0 0.85rem;
}

/* ——— Footer ——— */
.site-footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--line-soft);
  background: #020307;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand-block {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
}

.footer-logo img {
  width: 130px;
  height: 130px;
  object-fit: contain;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(232, 226, 214, 0.82);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.55;
}

.site-footer a:hover {
  color: var(--gold-bright);
}

.footer-col h3 {
  margin: 0 0 0.95rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-col li {
  margin: 0;
  color: rgba(232, 226, 214, 0.82);
  font-size: 0.95rem;
}

.footer-col a {
  color: inherit;
  font-size: inherit;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 181, 106, 0.12);
  font-size: 0.85rem;
  color: rgba(232, 226, 214, 0.55);
}

.footer-bottom a {
  color: rgba(232, 226, 214, 0.55);
  font-size: inherit;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) and (min-width: 921px) {
  :root {
    --header-h: 7.25rem;
  }

  .brand img,
  .footer-logo img {
    width: 96px;
    height: 96px;
  }

  body.header-compact {
    --header-h: 4.75rem;
  }

  body.header-compact .brand img {
    width: 56px;
    height: 56px;
  }

  .nav {
    gap: 1.1rem;
  }
}

/* ——— Mobile ——— */
@media (max-width: 920px) {
  :root {
    --header-h: 5.25rem;
  }

  .brand img,
  .footer-logo img {
    width: 72px;
    height: 72px;
  }

  body.header-compact {
    --header-h: 4.25rem;
  }

  body.header-compact .brand img {
    width: 52px;
    height: 52px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem var(--rail) 1.25rem;
    background: rgba(4, 6, 10, 0.97);
    border-bottom: 1px solid var(--line-soft);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .nav-cta {
    margin-top: 0.85rem;
    text-align: center;
  }

  .service-item {
    grid-template-columns: 3rem 1fr;
  }

  .service-item a {
    grid-column: 2;
    justify-self: start;
  }

  .why-layout,
  .split,
  .contact-grid,
  .footer-grid,
  .services-layout,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .services-toc {
    position: static;
    padding: 0 0 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(10, 16, 24, 0.1);
  }

  .services-toc-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.85rem;
  }

  .services-toc-nav a {
    border-bottom: 0;
    padding: 0.35rem 0;
    font-size: 0.8rem;
  }

  .service-detail {
    grid-template-columns: 3.25rem 1fr;
    gap: 0.75rem 1rem;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .process-label {
    font-size: 2.6rem;
  }

  .split-visual,
  .split-visual img {
    min-height: 18rem;
  }

  .hero-inner {
    max-width: none;
  }

  .hero-media img {
    object-position: 65% center;
  }
}
