/* ==========================================================================
   Fields Accounting Services
   Black, white, and a sliver of gold.

   Colour is scoped, not hardcoded. :root is the light base; any block with
   .invert flips the same tokens to the dark scope. Every component reads
   var(--fg) / var(--bg) / var(--line), so one class turns a whole section
   black without duplicating a single rule.

   Gold is an accent, not structure. Hairlines are neutral; gold is reserved
   for the diamond marks, the primary button, section labels and a few
   deliberate rules.
   ========================================================================== */

:root {
  --bg:        #FFFFFF;
  --surface:   #F4F2EE;
  --fg:        #0C0C0C;
  --fg-2:      #56534E;
  --line:      rgba(12, 12, 12, 0.15);
  --line-soft: rgba(12, 12, 12, 0.09);

  --gold:      #C9A063;   /* decorative — rules, marks, fills */
  --gold-txt:  #8A6A2F;   /* gold for small text: 5.1:1 on white */
  --on-gold:   #0C0C0C;   /* text sitting on a gold fill */

  --f-display: "Bodoni Moda", "Didot", Georgia, serif;
  --f-body: "Archivo", "Helvetica Neue", Arial, sans-serif;

  --t-xs:   clamp(0.70rem, 0.68rem + 0.10vw, 0.78rem);
  --t-sm:   clamp(0.82rem, 0.79rem + 0.14vw, 0.92rem);
  --t-base: clamp(1.00rem, 0.95rem + 0.22vw, 1.14rem);
  --t-lg:   clamp(1.30rem, 1.18rem + 0.55vw, 1.72rem);
  --t-xl:   clamp(1.85rem, 1.50rem + 1.60vw, 3.00rem);
  --t-2xl:  clamp(2.60rem, 1.90rem + 3.20vw, 5.20rem);
  --t-3xl:  clamp(3.20rem, 2.00rem + 5.60vw, 8.60rem);

  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --rail: 78px;
  --header-h: 84px;
}

/* dark scope — hero, ledger, photo plates, menu, footer */
.invert {
  --bg:        #0B0B0B;
  --surface:   #141414;
  --fg:        #F4F1EC;
  --fg-2:      #A8A29A;
  --line:      rgba(244, 241, 236, 0.18);
  --line-soft: rgba(244, 241, 236, 0.10);
  --gold-txt:  #C9A063;
  color: var(--fg);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-body);
  font-size: var(--t-base);
  font-weight: 380;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, canvas, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--gold); color: var(--on-gold); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--on-gold);
  padding: 0.75rem 1.25rem; font-weight: 600;
}
.skip:focus { left: 0; }

/* ---------- layout ---------- */
.shell { padding-inline: var(--gutter); }
.shell--rail { padding-left: calc(var(--gutter) + var(--rail)); }
@media (max-width: 900px) { .shell--rail { padding-left: var(--gutter); } }

.measure { max-width: 62ch; }
.measure-sm { max-width: 46ch; }

section { position: relative; }
.band { padding-block: clamp(5rem, 11vh + 3rem, 11rem); background: var(--bg); }
.band--tint { background: var(--surface); }

/* ---------- type ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 500;
  font-optical-sizing: auto;
  line-height: 0.94;
  letter-spacing: -0.018em;
  text-wrap: balance;
}
.display--hero { font-size: var(--t-3xl); font-weight: 400; }
.display--xl   { font-size: var(--t-2xl); }
.display--lg   { font-size: var(--t-xl); }
.display em { font-style: italic; font-weight: 400; }

.lede { font-size: var(--t-lg); line-height: 1.42; font-weight: 320; color: var(--fg-2); letter-spacing: -0.005em; }
.marker { font-size: var(--t-xs); letter-spacing: 0.02em; color: var(--fg-2); font-variant-numeric: tabular-nums; }
.marker b { color: var(--gold-txt); font-weight: 500; }

/* ---------- link + button ---------- */
.link {
  display: inline-block; text-decoration: none; padding-bottom: 0.15em;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 100% 1px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size 0.4s cubic-bezier(0.4, 0, 0.1, 1), color 0.3s;
}
.link:hover { color: var(--gold-txt); background-size: 0% 1px; }

.btn {
  display: inline-flex; align-items: center; gap: 0.9em;
  padding: 1.05em 2.1em;
  font-size: var(--t-sm); font-weight: 500; letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid var(--gold);
  color: var(--fg);
  position: relative; overflow: hidden; isolation: isolate;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--gold);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.1, 1);
}
.btn:hover { color: var(--on-gold); }
.btn:hover::after { transform: scaleY(1); }
.btn--solid { background: var(--gold); color: var(--on-gold); border-color: var(--gold); }
.btn--solid::after { background: var(--fg); }
.btn--solid:hover { color: var(--bg); }
.btn__mark { width: 8px; height: 8px; border: 1px solid currentColor; transform: rotate(45deg); flex: none; }

/* ==========================================================================
   Header — dark scope over the hero, light once it sticks
   ========================================================================== */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: var(--gutter);
  transition: height 0.4s ease, background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease;
  border-bottom: 1px solid transparent;
  color: var(--fg);
}
.hdr.is-stuck {
  --bg: #FFFFFF;
  --fg: #0C0C0C;
  --fg-2: #56534E;
  --line: rgba(12, 12, 12, 0.15);
  --gold-txt: #8A6A2F;
  height: 66px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--line);
  color: var(--fg);
}

.brand { display: flex; align-items: center; text-decoration: none; }

/* The mark is white + gold, so it needs a genuine dark colourway for the
   white sticky header — no filter can turn white into black selectively.
   Only one of the four variants is ever displayed, so only one downloads. */
.brand__logo { width: auto; transition: height 0.4s ease; }
.brand__logo--wide { height: clamp(26px, 2.2vw, 31px); }
.brand__logo--mark { height: clamp(34px, 3.4vw, 42px); }
.is-stuck .brand__logo--wide { height: clamp(24px, 2.0vw, 28px); }
.is-stuck .brand__logo--mark { height: clamp(30px, 3.0vw, 36px); }

.brand__logo--dark { display: none; }
.is-stuck .brand__logo--light { display: none; }
.is-stuck .brand__logo--dark  { display: block; }

/* wide lockup on roomy headers, monogram once space runs out */
.brand__logo--mark { display: none; }
.is-stuck .brand__logo--mark.brand__logo--dark { display: none; }
@media (max-width: 760px) {
  .brand__logo--wide { display: none !important; }
  .brand__logo--mark.brand__logo--light { display: block; }
  .is-stuck .brand__logo--mark.brand__logo--light { display: none; }
  .is-stuck .brand__logo--mark.brand__logo--dark { display: block; }
}

.brand--stacked img { width: clamp(100px, 9vw, 128px); height: auto; }

.hdr__actions { display: flex; align-items: center; gap: clamp(0.8rem, 2vw, 1.75rem); }
.hdr__tel { font-size: var(--t-sm); text-decoration: none; letter-spacing: 0.03em; }
.hdr__tel:hover { color: var(--gold-txt); }
@media (max-width: 760px) { .hdr__tel { display: none; } }
.hdr .btn { padding: 0.72em 1.5em; }
@media (max-width: 520px) { .hdr .btn { display: none; } }

.burger {
  width: 46px; height: 46px;
  display: grid; place-content: center; gap: 6px;
  border: 1px solid var(--line);
  transition: border-color 0.3s;
}
.burger:hover { border-color: var(--gold); }
.burger span {
  display: block; width: 20px; height: 1px; background: currentColor;
  transition: transform 0.4s cubic-bezier(0.6, 0, 0.2, 1), opacity 0.25s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ==========================================================================
   Overlay menu — stays black, the one full takeover
   ========================================================================== */
.menu {
  position: fixed; inset: 0; z-index: 55;
  background: #0B0B0B;
  display: grid; grid-template-columns: 1.35fr 1fr; align-items: center;
  padding: calc(var(--header-h) + 3rem) var(--gutter) 3rem;
  clip-path: inset(0 0 100% 0);
  visibility: hidden; gap: 3rem;
}
.menu.is-open { visibility: visible; }
.menu__list { display: grid; gap: clamp(0.1rem, 1vh, 0.6rem); }
.menu__item { overflow: hidden; }
.menu__link {
  font-family: var(--f-display);
  font-size: clamp(2rem, 6.5vw, 4.6rem);
  font-weight: 400; line-height: 1.1;
  text-decoration: none;
  display: flex; align-items: baseline; gap: 1.1rem;
  transform: translateY(105%);
  transition: color 0.3s;
}
.menu__link:hover { color: var(--gold); }
.menu__link i {
  font-style: normal; font-family: var(--f-body);
  font-size: 0.68rem; letter-spacing: 0.16em;
  color: var(--gold); font-variant-numeric: tabular-nums;
}
.menu__aside { border-left: 1px solid var(--line); padding-left: clamp(1.5rem, 3vw, 3rem); align-self: center; }
.menu__logo { width: clamp(110px, 11vw, 148px); height: auto; margin-bottom: 2rem; }
@media (max-width: 900px) { .menu__logo { display: none; } }
.menu__aside dt { font-size: var(--t-xs); color: var(--gold); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.35rem; }
.menu__aside dd { margin: 0 0 1.6rem; font-size: var(--t-base); }
.menu__aside a { text-decoration: none; }
.menu__aside a:hover { color: var(--gold); }
@media (max-width: 900px) {
  .menu { grid-template-columns: 1fr; align-content: center; }
  .menu__aside { border-left: 0; border-top: 1px solid var(--line); padding: 1.75rem 0 0; }
}

/* ==========================================================================
   Sticky side rail — crosses black and white, so it uses a mid neutral
   that holds on both, with gold only for the current section
   ========================================================================== */
.rail {
  position: fixed; left: 0; top: 0; z-index: 50;
  width: var(--rail); height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem;
  border-right: 1px solid rgba(140, 140, 140, 0.24);
  pointer-events: none;
}
.rail__inner { display: grid; gap: 1.4rem; pointer-events: auto; }
.rail__dot { display: grid; place-items: center; width: 34px; height: 34px; position: relative; }
.rail__dot::before {
  content: ""; width: 5px; height: 5px;
  border: 1px solid #8C8C8C; transform: rotate(45deg);
  transition: background-color 0.35s, border-color 0.35s, transform 0.45s;
}
.rail__dot:hover::before { border-color: var(--gold); transform: rotate(45deg) scale(1.5); }
.rail__dot[aria-current="true"]::before { background: var(--gold); border-color: var(--gold); transform: rotate(45deg) scale(1.5); }
.rail__dot span {
  position: absolute; left: 100%; white-space: nowrap;
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #FFFFFF; background: #0C0C0C;
  opacity: 0; transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none; padding: 0.35rem 0.65rem;
}
.rail__dot:hover span, .rail__dot:focus-visible span { opacity: 1; transform: translateX(0); }
.rail__meta {
  position: absolute; bottom: 2rem;
  writing-mode: vertical-rl;
  font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: #8C8C8C;
}
@media (max-width: 900px) { .rail { display: none; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: #0B0B0B; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media video,
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform-origin: 58% 46%; will-change: transform; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1; will-change: opacity;
  background:
    radial-gradient(125% 95% at 6% 80%, rgba(0,0,0,0.93) 0%, rgba(0,0,0,0.70) 36%, rgba(0,0,0,0.18) 66%, rgba(0,0,0,0) 80%),
    linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.14) 30%, rgba(0,0,0,0.50) 78%, rgba(0,0,0,0.68) 100%),
    linear-gradient(96deg, rgba(0,0,0,0.74) 0%, rgba(0,0,0,0.44) 40%, rgba(0,0,0,0.12) 74%, rgba(0,0,0,0) 100%);
}
.hero__body { padding-bottom: clamp(3.5rem, 9vh, 7rem); width: 100%; }
.hero__eyebrow {
  display: flex; align-items: center; gap: 0.9rem;
  font-size: var(--t-sm); letter-spacing: 0.01em;
  color: var(--gold); margin-bottom: clamp(1.25rem, 3vh, 2.25rem);
}
.hero__eyebrow::before { content: ""; width: clamp(28px, 6vw, 76px); height: 1px; background: var(--gold); }
.hero h1 { max-width: 15ch; }
.hero__line { display: block; overflow: hidden; }
.hero__line > span { display: block; }
.hero__foot {
  margin-top: clamp(2rem, 5vh, 3.25rem);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem 2.5rem;
  border-top: 1px solid var(--line); padding-top: 1.75rem;
}
.hero__foot p { max-width: 34ch; color: var(--fg-2); font-size: var(--t-sm); }

.hero__shots {
  position: absolute; left: var(--gutter); bottom: clamp(1.5rem, 4vh, 2.5rem);
  display: flex; gap: 8px; z-index: 2;
}
.shell--rail .hero__shots { left: calc(var(--gutter) + var(--rail)); }
@media (max-width: 900px) { .shell--rail .hero__shots { left: var(--gutter); } }
.hero__shots i {
  display: block; width: clamp(26px, 4vw, 52px); height: 2px;
  background: rgba(244, 241, 236, 0.22);
  position: relative; overflow: hidden;
}
.hero__shots i::after { content: ""; position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.hero__shots i.is-on::after { transform: scaleX(1); transition: transform 0.5s linear; }

.scroll-cue {
  position: absolute; right: var(--gutter); bottom: clamp(2rem, 6vh, 3.5rem);
  writing-mode: vertical-rl;
  font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fg-2); display: flex; align-items: center; gap: 0.9rem;
}
.scroll-cue::after { content: ""; width: 1px; height: 52px; background: linear-gradient(var(--gold), transparent); }
@media (max-width: 620px) { .scroll-cue { display: none; } }

/* ==========================================================================
   Ledger band + engraved plate
   ========================================================================== */
.ledger { position: relative; background: #0B0B0B; overflow: hidden; }
#guilloche { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.42; }
.ledger__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); padding-block: clamp(2.5rem, 6vh, 4.25rem); }
.ledger__cell { padding: 0.5rem clamp(0.75rem, 2vw, 2rem); border-left: 1px solid var(--line-soft); }
.ledger__cell:first-child { border-left: 0; padding-left: 0; }
.ledger__fig {
  font-family: var(--f-display);
  font-size: clamp(2.1rem, 4.4vw, 3.9rem);
  font-weight: 400; line-height: 1;
  font-variant-numeric: tabular-nums; margin-bottom: 0.65rem;
}
.ledger__lbl { font-size: var(--t-xs); color: var(--fg-2); line-height: 1.45; letter-spacing: 0.04em; }
@media (max-width: 760px) {
  .ledger__grid { grid-template-columns: 1fr 1fr; gap: 2rem 0; }
  .ledger__cell:nth-child(3) { border-left: 0; padding-left: 0; }
}

/* ==========================================================================
   Section heading pattern
   ========================================================================== */
.head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.75rem, 6vh, 4.5rem);
}
.head p { color: var(--fg-2); }
.head > h2 { max-width: 18ch; }
@media (max-width: 860px) { .head { grid-template-columns: 1fr; align-items: start; } }

/* ==========================================================================
   About
   ========================================================================== */
.about__grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; } }
.about__fig { position: relative; }
.about__fig img { width: 100%; max-height: min(74vh, 720px); object-fit: cover; object-position: 50% 24%; }
.about__fig figcaption {
  margin-top: 1rem; font-size: var(--t-xs); color: var(--fg-2);
  display: flex; justify-content: space-between; gap: 1rem;
  border-top: 1px solid var(--line); padding-top: 0.85rem;
}
.about__copy > p + p { margin-top: 1.25em; }
.about__copy p { color: var(--fg-2); }
.pull {
  margin: clamp(2rem, 5vh, 3rem) 0;
  padding-left: clamp(1.25rem, 3vw, 2.25rem);
  border-left: 2px solid var(--gold);
  font-family: var(--f-display);
  font-size: var(--t-lg); font-style: italic; font-weight: 400;
  line-height: 1.3; color: var(--fg);
}
.pull cite {
  display: block; margin-top: 1rem;
  font-family: var(--f-body); font-style: normal;
  font-size: var(--t-xs); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-txt);
}

/* ==========================================================================
   Full-bleed plates — always dark, crisp edges against the white bands
   ========================================================================== */
.plate {
  position: relative;
  min-height: clamp(460px, 78svh, 820px);
  display: flex; align-items: center;
  overflow: hidden; background: #0B0B0B; isolation: isolate;
}
.plate__media { position: absolute; inset: -7% 0; z-index: -2; will-change: transform; }
.plate__media img { width: 100%; height: 100%; object-fit: cover; }
.plate__scrim { position: absolute; inset: 0; z-index: -1; }
.plate--left .plate__scrim {
  background: linear-gradient(92deg, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.72) 30%, rgba(0,0,0,0.38) 56%, rgba(0,0,0,0.06) 100%);
}
.plate--center .plate__scrim { background: rgba(0, 0, 0, 0.54); }
.plate--right .plate__scrim {
  background: linear-gradient(268deg, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.62) 34%, rgba(0,0,0,0.22) 62%, rgba(0,0,0,0.02) 100%);
}
.plate--right .plate__media img { object-position: 30% center; }
.plate--right .plate__body { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.plate--right .plate__col { grid-column: 2; }
@media (max-width: 900px) {
  .plate--right .plate__body { grid-template-columns: 1fr; }
  .plate--right .plate__col { grid-column: 1; }
  .plate--right .plate__scrim { background: rgba(0, 0, 0, 0.74); }
}
.plate--split .plate__scrim {
  background: linear-gradient(268deg, rgba(0,0,0,0.93) 0%, rgba(0,0,0,0.82) 34%, rgba(0,0,0,0.46) 62%, rgba(0,0,0,0.08) 100%);
}
.plate--split .plate__media img { object-position: 34% center; }
.plate__body { width: 100%; position: relative; }
/* body copy on a plate sits over live photography, not flat black — the muted
   secondary tone loses it over bright window light, so brighten it here only */
.plate .lede,
.plate .plate__col > p,
.plate .marker { color: #E6E2DC; }
.plate--center .plate__body { text-align: center; }
.plate--center .display, .plate--center .lede { margin-inline: auto; }
.plate--split .plate__body { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.plate--split .plate__col { grid-column: 2; }
@media (max-width: 900px) {
  .plate--split .plate__body { grid-template-columns: 1fr; }
  .plate--split .plate__col { grid-column: 1; }
  .plate--split .plate__scrim { background: rgba(0, 0, 0, 0.74); }
}

.serve { columns: 2; column-gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2rem; }
.serve li {
  break-inside: avoid; padding: 0.7rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: var(--t-sm);
  display: flex; align-items: baseline; gap: 0.75rem;
}
.serve li::before { content: ""; width: 4px; height: 4px; background: var(--gold); transform: rotate(45deg); flex: none; }
@media (max-width: 560px) { .serve { columns: 1; } }

/* ==========================================================================
   Services — ledger rows
   ========================================================================== */
.svc { border-top: 1px solid var(--fg); }
.svc__row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 0.9fr;
  gap: clamp(1rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(1.75rem, 4vh, 2.9rem);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background-color 0.5s ease;
}
.svc__row:hover { background: rgba(201, 160, 99, 0.10); }
.svc__name { font-family: var(--f-display); font-size: var(--t-xl); font-weight: 400; line-height: 1.05; letter-spacing: -0.015em; }
.svc__desc { color: var(--fg-2); font-size: var(--t-sm); }
.svc__for { font-size: var(--t-xs); color: var(--fg-2); text-align: right; }
.svc__for b {
  display: block; color: var(--gold-txt); font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.62rem; margin-bottom: 0.4rem;
}
.svc__thumb {
  position: absolute; right: clamp(0px, 6vw, 120px); top: 50%;
  width: 260px; aspect-ratio: 4/3;
  transform: translate(0, -46%) scale(0.94);
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 3;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.30);
}
.svc__thumb img { width: 100%; height: 100%; object-fit: cover; }
@media (hover: hover) and (min-width: 1100px) {
  .svc__row:hover .svc__thumb { opacity: 1; transform: translate(0, -50%) scale(1); }
}
@media (max-width: 860px) {
  .svc__row { grid-template-columns: 1fr; gap: 0.75rem; }
  .svc__for { text-align: left; }
  .svc__thumb { display: none; }
}

/* ==========================================================================
   Book
   ========================================================================== */
.book__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
@media (max-width: 900px) { .book__grid { grid-template-columns: 1fr; } }
.book__fig { position: relative; }
.book__fig img { width: 100%; max-height: min(74vh, 720px); object-fit: cover; object-position: 50% 30%; }
.book__meta {
  display: flex; flex-wrap: wrap; gap: 1rem 2.25rem;
  margin: 1.75rem 0; padding-block: 1.25rem;
  border-block: 1px solid var(--line);
}
.book__meta div { font-size: var(--t-xs); color: var(--fg-2); }
.book__meta b {
  display: block; color: var(--fg);
  font-family: var(--f-display); font-size: var(--t-base);
  font-weight: 500; margin-top: 0.25rem;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.quote { background: var(--bg); padding: clamp(1.75rem, 3.5vw, 2.75rem); }
.quote blockquote { font-family: var(--f-display); font-size: var(--t-base); font-style: italic; line-height: 1.5; color: var(--fg); }
.quote figcaption { margin-top: 1.5rem; font-size: var(--t-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-txt); }
.placeholder-note {
  margin-top: 1.5rem; padding: 0.85rem 1.1rem;
  border: 1px dashed var(--gold);
  font-size: var(--t-xs); color: var(--fg-2);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { border-top: 1px solid var(--fg); max-width: 900px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem;
  padding-block: clamp(1.25rem, 3vh, 1.85rem);
  font-family: var(--f-display); font-size: var(--t-lg); font-weight: 400; line-height: 1.25;
  transition: color 0.3s;
}
.faq__q:hover { color: var(--gold-txt); }
.faq__sign { flex: none; width: 16px; height: 16px; position: relative; margin-top: 0.5em; }
.faq__sign::before, .faq__sign::after {
  content: ""; position: absolute; background: var(--gold);
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.1, 1);
}
.faq__sign::before { width: 16px; height: 1px; }
.faq__sign::after  { width: 1px; height: 16px; }
.faq__q[aria-expanded="true"] .faq__sign::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a { overflow: hidden; height: 0; }
.faq__a > div { padding-bottom: 1.85rem; color: var(--fg-2); }
.faq__a .measure { max-width: 60ch; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start; }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }
.contact__list { display: grid; gap: 1.6rem; margin-top: 2.25rem; }
.contact__list dt { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-txt); margin-bottom: 0.4rem; }
.contact__list dd { margin: 0; font-family: var(--f-display); font-size: var(--t-lg); font-weight: 400; }
.contact__list a { text-decoration: none; }
.contact__list a:hover { color: var(--gold-txt); }

.form { display: grid; gap: 1.5rem; }
.field { position: relative; }
.field label {
  position: absolute; left: 0; top: 0.85rem;
  font-size: var(--t-sm); color: var(--fg-2);
  pointer-events: none; transform-origin: left top;
  transition: transform 0.3s cubic-bezier(0.4,0,0.1,1), color 0.3s;
}
.field input, .field select, .field textarea {
  width: 100%; background: transparent;
  border: 0; border-bottom: 1px solid var(--line);
  color: var(--fg); font: inherit;
  padding: 0.85rem 0 0.7rem; border-radius: 0;
  transition: border-color 0.3s;
}
.field textarea { resize: vertical; min-height: 3.2rem; }
.field select option { background: var(--bg); color: var(--fg); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.field:focus-within label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label,
.field.is-filled label { transform: translateY(-1.35rem) scale(0.72); color: var(--gold-txt); }
.field input::placeholder, .field textarea::placeholder { color: transparent; }
.form__note { font-size: var(--t-xs); color: var(--fg-2); }
.form__status { font-size: var(--t-sm); color: var(--gold-txt); min-height: 1.4em; }

/* ==========================================================================
   Footer — black, anchors the page
   ========================================================================== */
.ftr { background: #0B0B0B; padding-block: clamp(3rem, 7vh, 5rem) 2rem; }
.ftr__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
@media (max-width: 860px) { .ftr__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ftr__top { grid-template-columns: 1fr; } }
.ftr h4 { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.15rem; }
.ftr li { margin-bottom: 0.7rem; font-size: var(--t-sm); }
.ftr a { text-decoration: none; color: var(--fg-2); }
.ftr a:hover { color: var(--gold); }
.ftr__blurb { color: var(--fg-2); font-size: var(--t-sm); margin-top: 1.25rem; max-width: 40ch; }
.ftr__base {
  margin-top: clamp(2.5rem, 6vh, 4rem); padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
  font-size: var(--t-xs); color: var(--fg-2);
}
.ftr__base a { color: var(--fg-2); }
.credit { display: inline-flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.credit img { width: 76px; height: auto; opacity: 0.62; transition: opacity 0.35s; }
.credit:hover img { opacity: 1; }

/* ==========================================================================
   Motion primitives
   ========================================================================== */
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal-line > span { display: block; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .plate__media { inset: 0 !important; transform: none !important; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}


/* ==========================================================================
   Preloader
   Black card over the whole page with the mark and a real progress bar.
   .is-ready fades it out; .preloading locks scroll underneath so the
   visitor cannot start halfway down while the hero is still buffering.
   ========================================================================== */
.preload {
  position: fixed; inset: 0; z-index: 200;
  background: #0B0B0B;
  display: grid; place-items: center;
  transition: opacity 0.7s ease 0.15s, visibility 0s linear 0.85s;
}
.preload.is-ready { opacity: 0; visibility: hidden; pointer-events: none; }
.preload__inner { width: min(320px, 68vw); text-align: center; }
.preload__logo {
  width: clamp(140px, 18vw, 190px); height: auto;
  margin: 0 auto clamp(2rem, 5vh, 3rem);
  opacity: 0; animation: preload-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s forwards;
}
@keyframes preload-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.preload__bar {
  height: 2px; width: 100%;
  background: rgba(244, 241, 236, 0.16);
  overflow: hidden;
}
.preload__bar i {
  display: block; height: 100%; width: 100%;
  background: #C9A063;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.3, 0.9, 0.3, 1);
}
.preload__meta {
  display: flex; justify-content: space-between;
  margin-top: 0.9rem;
  font-family: var(--f-body);
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #8C8478;
  font-variant-numeric: tabular-nums;
}
html.preloading, html.preloading body { overflow: hidden; height: 100%; }
.no-js .preload { display: none; }
@media (prefers-reduced-motion: reduce) {
  .preload__logo { animation: none; opacity: 1; }
  .preload { transition: opacity 0.25s linear, visibility 0s linear 0.25s; }
}
