/* =====================================================================
   Croxley Partners — Private holdings, investment & advisory
   Stylesheet: "private office ledger" system.
   Display: Fraunces · Body: Hanken Grotesk · Mono: IBM Plex Mono
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --navy: #0c1a2b;
  --navy-deep: #081320;
  --navy-soft: #16263a;
  --brass: #b6985a;
  --brass-bright: #d4b978;
  --brass-dim: rgba(182, 152, 90, 0.35);
  --ivory: #f6f1e7;
  --paper: #fbf8f2;
  --ink: #1a2230;
  --ink-soft: #5a6271;
  --ink-faint: #8a909c;
  --rule: #e6decd;
  --rule-soft: #efe9da;
  --rule-navy: rgba(214, 180, 120, 0.22);
  --whatsapp: #25d366;
  --whatsapp-deep: #1da851;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  /* Metrics */
  --container: 1180px;
  --container-narrow: 880px;
  --radius: 4px;
  --radius-lg: 10px;
  --header-h: 74px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.7, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 2px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--navy);
  font-variation-settings: "opsz" 96;
}
h1 { font-size: clamp(2.55rem, 6vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(1.95rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.25rem, 1.7vw, 1.55rem); font-weight: 500; }
p { color: var(--ink-soft); }
p + p { margin-top: 1.1rem; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}
.eyebrow--soft { color: var(--ink-faint); }
.eyebrow--ivory { color: var(--brass-bright); }

.lede {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.2rem, 1.7vw, 1.45rem);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.mono { font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.01em; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section--tight { padding: clamp(3rem, 5vw, 4.25rem) 0; }
.section--navy { background: var(--navy); color: #cdd4df; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #f4efe3; }
.section--navy p { color: #aab3c0; }
.section--ivory { background: var(--ivory); }
.section--paper { background: var(--paper); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 4vw, 3.75rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 0.85rem; }
.section-head p { margin-top: 1.1rem; font-size: 1.1rem; }

.rule { height: 1px; border: 0; background: var(--rule); }
.section--navy .rule { background: var(--rule-navy); }

.target { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ---------- Header / masthead ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 242, 0.86);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 8px 30px -18px rgba(12, 26, 43, 0.28); }
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Brand / seal */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__seal {
  width: 40px; height: 40px; flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid var(--brass);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--brass-bright);
  background: var(--navy);
  letter-spacing: 0.02em;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand__sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 2px;
}

/* Primary nav */
.nav { display: flex; align-items: center; gap: 1.85rem; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--brass);
  transition: width 0.28s var(--ease);
}
.nav__link:hover { color: var(--navy); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--navy); }
.nav__phone {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.nav__phone strong { color: var(--navy); font-weight: 500; }
.nav__actions { display: flex; align-items: center; gap: 0.85rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  background: var(--paper);
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 1.6px;
  background: var(--navy);
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%, -6px); }
.nav-toggle span::after { transform: translate(-50%, 6px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translate(-50%, 0) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  padding: 0.82rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s var(--ease), transform 0.22s var(--ease),
              box-shadow 0.22s var(--ease);
  text-align: center;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn__ico { width: 1.05em; height: 1.05em; flex: 0 0 auto; }

.btn--primary { background: var(--navy); color: #f4efe3; }
.btn--primary:hover { background: var(--navy-deep); box-shadow: 0 10px 24px -14px rgba(12,26,43,.7); }
.btn--brass { background: var(--brass); color: var(--navy); }
.btn--brass:hover { background: var(--brass-bright); }
.btn--ghost { background: transparent; border-color: var(--rule); color: var(--navy); }
.btn--ghost:hover { border-color: var(--brass); color: var(--navy); background: var(--ivory); }
.btn--light { background: #f4efe3; color: var(--navy); }
.btn--light:hover { background: #fff; }
.btn--outline-light { border-color: var(--rule-navy); color: #f4efe3; }
.btn--outline-light:hover { border-color: var(--brass-bright); color: #fff; background: rgba(255,255,255,.04); }

.btn--whatsapp { background: var(--whatsapp); color: #053d1f; font-weight: 600; }
.btn--whatsapp:hover { background: var(--whatsapp-deep); color: #fff; }
.btn--whatsapp svg { width: 1.15em; height: 1.15em; }

.btn--lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 600; font-size: 0.92rem; color: var(--navy);
  border-bottom: 1px solid var(--brass-dim);
  padding-bottom: 2px;
  transition: gap 0.22s var(--ease), border-color 0.22s var(--ease);
}
.link-arrow::after { content: "→"; transition: transform 0.22s var(--ease); }
.link-arrow:hover { gap: 0.65rem; border-color: var(--brass); }
.section--navy .link-arrow { color: var(--brass-bright); border-color: var(--rule-navy); }
.section--navy .link-arrow:hover { border-color: var(--brass-bright); }

/* ---------- Hero (deed-style) ---------- */
.hero {
  background: var(--navy);
  color: #cdd4df;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 88% -10%, rgba(182,152,90,0.16), transparent 55%),
    radial-gradient(80% 70% at -10% 110%, rgba(182,152,90,0.07), transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__lead .eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; }
.hero__lead .eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--brass); display: inline-block;
}
.hero h1 { color: #f7f2e7; margin-top: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--brass-bright); font-weight: 400; }
.hero__sub {
  margin-top: 1.6rem; max-width: 38ch;
  color: #b6bdca; font-size: 1.12rem; line-height: 1.6;
}
.hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero__meta {
  margin-top: 2.5rem;
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.4rem;
  border-top: 1px solid var(--rule-navy);
  padding-top: 1.6rem;
}
.hero__meta-item .mono { color: var(--ink-faint); }
.hero__meta-item strong { display: block; color: #f4efe3; font-weight: 500; font-size: 1.05rem; margin-top: 2px; }

/* Deed / instrument panel */
.deed {
  background: linear-gradient(180deg, var(--navy-soft), var(--navy-deep));
  border: 1px solid var(--rule-navy);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.3rem);
  position: relative;
  box-shadow: 0 40px 80px -50px rgba(0,0,0,0.8);
}
.deed::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid var(--rule-navy);
  border-radius: calc(var(--radius-lg) - 3px);
  pointer-events: none;
}
.deed__head {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--rule-navy);
  padding-bottom: 1rem; margin-bottom: 1.2rem;
  position: relative;
}
.deed__title { font-family: var(--font-display); color: #f4efe3; font-size: 1.05rem; letter-spacing: 0.01em; }
.deed__seal {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--brass);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  color: var(--brass-bright);
}
.deed__list { position: relative; }
.deed__row {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 1rem;
  padding: 0.78rem 0;
  border-bottom: 1px dashed var(--rule-navy);
  align-items: baseline;
}
.deed__row:last-child { border-bottom: 0; }
.deed__k { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.deed__v { color: #e6e2d6; font-size: 0.98rem; }
.deed__v em { color: var(--brass-bright); font-style: normal; font-family: var(--font-display); }
.deed__foot { margin-top: 1.3rem; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; color: var(--ink-faint); text-transform: uppercase; }

/* ---------- Trust strip ---------- */
.trust {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.trust__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.2rem 2rem;
  padding: 1.5rem 0;
}
.trust__item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: var(--ink-soft); }
.trust__item strong { color: var(--navy); font-weight: 600; }
.trust__ico { width: 18px; height: 18px; color: var(--brass); flex: 0 0 auto; }

/* ---------- Register list (capabilities) ---------- */
.register { border-top: 1px solid var(--rule); }
.register__row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1.1fr) minmax(0, 1.4fr) 44px;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(1.6rem, 3vw, 2.2rem) 0;
  border-bottom: 1px solid var(--rule);
  transition: background 0.25s var(--ease);
}
.register__row:hover { background: var(--ivory); }
.register__index { font-family: var(--font-mono); font-size: 0.82rem; color: var(--brass); letter-spacing: 0.06em; padding-top: 0.35rem; }
.register__title { font-family: var(--font-display); color: var(--navy); font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 500; line-height: 1.15; }
.register__title a { background-image: linear-gradient(var(--brass-dim), var(--brass-dim)); background-size: 0 1.5px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size 0.3s var(--ease); }
.register__title a:hover { background-size: 100% 1.5px; }
.register__desc { color: var(--ink-soft); font-size: 1rem; }
.register__go { color: var(--brass); font-size: 1.3rem; padding-top: 0.3rem; text-align: right; transition: transform 0.25s var(--ease); }
.register__row:hover .register__go { transform: translateX(4px); }

/* ---------- Card grid ---------- */
.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  height: 100%;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -32px rgba(12,26,43,0.35); border-color: var(--brass-dim); }
.card__ico {
  width: 46px; height: 46px; border-radius: var(--radius);
  display: grid; place-items: center;
  background: var(--navy); color: var(--brass-bright);
  margin-bottom: 1.2rem;
}
.card__ico svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.98rem; }
.card__more { margin-top: auto; padding-top: 1.2rem; }

/* Sectors chip grid */
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  font-size: 0.85rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.chip:hover { border-color: var(--brass); color: var(--navy); }
.chip__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }

/* ---------- Feature / two-col ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--narrow-gap { gap: clamp(2.5rem, 5vw, 4.5rem); }
.split__media {
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: var(--ivory);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.split__media svg { width: 100%; height: 100%; }

/* ---------- Steps / process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.step {
  border-top: 1px solid var(--rule-navy);
  padding-top: 1.3rem;
  position: relative;
}
.step__num {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em;
  color: var(--brass-bright); text-transform: uppercase;
}
.step__title { font-family: var(--font-display); color: #f4efe3; font-size: 1.15rem; margin: 0.55rem 0 0.5rem; }
.step p { font-size: 0.9rem; color: #aab3c0; line-height: 1.55; }

/* ---------- Principles ---------- */
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: var(--radius-lg); overflow: hidden; }
.principle { background: var(--paper); padding: clamp(1.6rem, 3vw, 2.4rem); }
.principle__k { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); }
.principle h3 { margin: 0.7rem 0 0.5rem; }
.principle p { font-size: 0.98rem; }

/* ---------- Pull quote ---------- */
.pullquote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.32;
  color: #f4efe3;
  letter-spacing: -0.01em;
  max-width: 22ch;
}
.pullquote::before { content: "“"; color: var(--brass); }
.pullquote::after { content: "”"; color: var(--brass); }
.pullquote-attr { margin-top: 1.5rem; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }

/* ---------- Figures ---------- */
.figures { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: var(--radius-lg); overflow: hidden; }
.figure { background: var(--ivory); padding: clamp(1.6rem, 3vw, 2.2rem); }
.figure__n { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 500; color: var(--navy); line-height: 1; }
.figure__n span { color: var(--brass); }
.figure__l { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.7rem; }

/* ---------- FAQ accordion ---------- */
.faq { border-top: 1px solid var(--rule); }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  padding: clamp(1.2rem, 2.4vw, 1.6rem) 0;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
}
.faq__q:hover { color: #000; }
.faq__icon {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  position: relative;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 11px; height: 1.5px; background: var(--navy);
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[data-open="true"] .faq__icon { background: var(--navy); border-color: var(--navy); transform: rotate(180deg); }
.faq__item[data-open="true"] .faq__icon::before,
.faq__item[data-open="true"] .faq__icon::after { background: var(--brass-bright); }
.faq__item[data-open="true"] .faq__icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.faq__a-inner { padding: 0 0 clamp(1.2rem, 2.4vw, 1.6rem); max-width: 70ch; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  color: #cdd4df;
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 140% at 100% 0%, rgba(182,152,90,0.16), transparent 50%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #f7f2e7; max-width: 18ch; }
.cta-band p { color: #b6bdca; margin-top: 1rem; max-width: 48ch; }
.cta-band__actions { display: flex; flex-direction: column; gap: 0.8rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-card { border: 1px solid var(--rule); border-radius: var(--radius-lg); background: var(--ivory); padding: clamp(1.6rem, 3vw, 2.2rem); }
.contact-block { padding: 1.1rem 0; border-bottom: 1px solid var(--rule); }
.contact-block:first-child { padding-top: 0; }
.contact-block:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-block .eyebrow { display: block; margin-bottom: 0.45rem; }
.contact-block a { color: var(--navy); font-weight: 500; border-bottom: 1px solid var(--brass-dim); transition: border-color 0.2s var(--ease); }
.contact-block a:hover { border-color: var(--brass); }
.contact-block .mono { color: var(--ink); }

.form { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.45rem; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(182,152,90,0.16);
}
.form__note { font-size: 0.82rem; color: var(--ink-faint); margin-top: 0.8rem; }

/* Map / area band */
.area {
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ivory);
}
.area__svg { width: 100%; height: 260px; display: block; }
.area__body { padding: 1.4rem 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; align-items: center; justify-content: space-between; border-top: 1px solid var(--rule); }
.area__cities { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; }
.area__city { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.9rem; color: var(--ink); }
.area__city::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }

/* ---------- Page hero (inner pages) ---------- */
.pagehero {
  background: var(--navy);
  color: #cdd4df;
  position: relative;
  overflow: hidden;
}
.pagehero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(110% 90% at 90% -20%, rgba(182,152,90,0.15), transparent 55%);
}
.pagehero__inner { position: relative; padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.4rem, 4vw, 3.4rem); max-width: 760px; }
.pagehero h1 { color: #f7f2e7; margin-top: 1.2rem; }
.pagehero h1 em { font-style: italic; color: var(--brass-bright); font-weight: 400; }
.pagehero p { color: #b6bdca; margin-top: 1.3rem; font-size: 1.12rem; max-width: 60ch; }

.breadcrumb { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.08em; color: var(--ink-faint); display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.breadcrumb a { color: var(--brass-bright); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: 0.5; }

/* ---------- Service detail sections ---------- */
.svc {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2.4rem, 5vw, 3.5rem) 0;
  border-top: 1px solid var(--rule);
}
.svc:first-of-type { border-top: 0; }
.svc__head { position: sticky; top: calc(var(--header-h) + 16px); align-self: start; }
.svc__index { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; color: var(--brass); }
.svc__title { font-family: var(--font-display); font-size: clamp(1.5rem, 2.4vw, 2rem); color: var(--navy); margin-top: 0.6rem; line-height: 1.1; }
.svc__lede { color: var(--ink); margin-top: 1rem; font-size: 1.04rem; }
.svc__body h3 { font-size: 1.05rem; margin: 1.8rem 0 0.8rem; color: var(--navy); font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }
.svc__body h3:first-child { margin-top: 0; }
.svc__body ul { list-style: none; }
.svc__list li { position: relative; padding-left: 1.6rem; margin-bottom: 0.55rem; color: var(--ink-soft); }
.svc__list li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 7px; height: 1px; background: var(--brass);
}
.svc__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 0.5rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #97a0ae; padding: clamp(3.5rem, 6vw, 5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(1.8rem, 4vw, 3rem); padding-bottom: 3rem; border-bottom: 1px solid var(--rule-navy); }
.footer-brand .brand__name { color: #f4efe3; }
.footer-brand p { color: #8b94a3; margin-top: 1rem; max-width: 34ch; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-bright); margin-bottom: 1.1rem; font-weight: 500; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col a { color: #b6bdca; font-size: 0.94rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--brass-bright); }
.footer-contact .mono { color: #cdd4df; display: block; margin-bottom: 0.4rem; }
.footer-contact a { border-bottom: 1px solid transparent; }
.footer-contact a:hover { border-color: var(--brass-dim); }
.footer-affil { margin-top: 0.9rem; padding-top: 0.9rem; border-top: 1px solid var(--rule-navy); font-size: 0.86rem; color: #8b94a3; }
.footer-affil a { color: var(--brass-bright); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.6rem; font-size: 0.82rem; color: #6f7886; }
.footer-bottom a { color: #97a0ae; }
.footer-bottom a:hover { color: var(--brass-bright); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  :root { --header-h: 66px; }
  .nav__links, .nav__phone { display: none; }
  .nav-toggle { display: block; }
  .nav { gap: 0.8rem; }

  /* Mobile nav panel */
  .mobile-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--paper);
    padding: 1.5rem;
    transform: translateY(-100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
    z-index: 40;
    border-top: 1px solid var(--rule);
  }
  .mobile-nav[data-open="true"] { transform: translateY(0); }
  .mobile-nav__links { display: flex; flex-direction: column; }
  .mobile-nav__link {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--navy);
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--rule);
    display: flex; align-items: center; justify-content: space-between;
  }
  .mobile-nav__link::after { content: "→"; color: var(--brass); font-size: 1.1rem; }
  .mobile-nav__foot { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.8rem; }
  .mobile-nav__phone { font-family: var(--font-mono); color: var(--ink-soft); }
  .mobile-nav__phone strong { color: var(--navy); font-size: 1.1rem; display: block; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__deed { order: 2; }
  .split { grid-template-columns: 1fr; }
  .split__media { max-width: 520px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band__actions { flex-direction: row; flex-wrap: wrap; }
  .svc { grid-template-columns: 1fr; }
  .svc__head { position: static; }
  .register__row { grid-template-columns: 44px 1fr; }
  .register__desc, .register__go { grid-column: 2; }
  .register__go { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .figures { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .svc__cols { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero__meta { gap: 1.2rem; }
  .cta-band__actions { flex-direction: column; }
  .cta-band__actions .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
