/* ==========================================================================
   Barry Neal Floor & Home
   Design tokens recovered from the Figma Sites build (visual-design V1 / V5).
   ========================================================================== */

/* ---------- Fonts (self-hosted, extracted from the original build) -------- */

@font-face {
  font-family: "Libre Baskerville";
  src: url("../fonts/libre-baskerville-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/work-sans-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
/* NOTE: the original build shipped "Work Sans Medium" and "Work Sans Regular"
   as byte-identical files — the medium weight was never actually embedded.
   Both map to the same face here so the site matches the current design.
   Drop a real Work Sans 500 woff2 in /assets/fonts/ and change the src below
   to get the weight contrast the design intended. */
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/work-sans-400.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/space-grotesk-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}

/* ---------- Tokens ------------------------------------------------------- */

:root {
  /* colour */
  --gold:        #9C855E;
  --gold-dark:   #99794D;
  --gold-wash:   rgba(156, 133, 94, 0.10);
  --gold-line:   rgba(156, 133, 94, 0.35);
  --ink:         #05080B;
  --ink-2:       #080808;
  --btn-ink:     #151515;
  --cream:       #F5F5F2;
  --light:       #E6E6E6;
  --w-75:        rgba(255, 255, 255, 0.75);
  --w-60:        rgba(255, 255, 255, 0.60);
  --w-12:        rgba(255, 255, 255, 0.12);
  --w-06:        rgba(255, 255, 255, 0.06);

  /* type */
  --display: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --ui:      "Work Sans", system-ui, -apple-system, sans-serif;
  --body:    "Inter", system-ui, -apple-system, sans-serif;
  --numeric: "Space Grotesk", ui-monospace, monospace;

  /* scale */
  --t-hero:    clamp(2.375rem, 1.05rem + 5.3vw, 4.5rem);   /* 38 → 72px */
  --t-section: clamp(1.9rem,  0.95rem + 3.8vw, 3.75rem);   /* 30 → 60px */
  --t-card:    clamp(1.25rem, 1.05rem + 0.8vw, 1.5rem);    /* 20 → 24px */
  --t-lede:    clamp(1.0625rem, 0.95rem + 0.5vw, 1.5rem);  /* 17 → 24px */
  --t-body:    clamp(1rem, 0.95rem + 0.25vw, 1.125rem);    /* 16 → 18px */

  /* layout */
  --shell: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --band: clamp(4.5rem, 9vw, 9rem);
  --header-h: 84px;
}

/* ---------- Reset -------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--t-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, picture { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure { margin: 0; }
a { color: inherit; }
button { font: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem;
  font-family: var(--ui); text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- Shared type -------------------------------------------------- */

.eyebrow {
  font-family: var(--ui);
  font-weight: 500;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: .875rem;
}
.eyebrow::after {
  content: "";
  flex: 1;
  max-width: 4.5rem;
  height: 1px;
  background: var(--gold-line);
}
.eyebrow-light { color: var(--gold); }

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-section);
  line-height: 1.14;
  letter-spacing: -0.045em;
  color: var(--ink);
  text-wrap: balance;
}
.section-title em {
  display: block;
  font-style: normal;
  color: var(--gold-dark);
}
.section-title-light { color: #fff; }
.section-title-light em { color: var(--gold); }

/* ---------- Buttons ------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ui);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.03em;
  line-height: 1.5;
  padding: .9375rem 1.75rem;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--cream); color: var(--btn-ink); }
.btn-primary:hover { background: #fff; }

.btn-ghost { background: transparent; color: #fff; border-color: var(--w-60); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-solid { background: var(--gold); color: var(--btn-ink); }
.btn-solid:hover { background: var(--gold-dark); color: #fff; }

/* ---------- Header ------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color .35s ease, box-shadow .35s ease, height .35s ease;
}
.site-header.is-stuck {
  background: rgba(5, 8, 11, .93);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--w-12);
  height: 68px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo img { width: 200px; height: auto; }

.nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}
.nav a {
  font-family: var(--ui);
  font-weight: 500;
  font-size: .9375rem;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  padding: .375rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.nav a:hover, .nav a.is-active { border-bottom-color: var(--gold); color: var(--gold); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block; height: 1.5px; background: #fff; border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero --------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-block: calc(var(--header-h) + 2rem) clamp(3rem, 7vw, 6rem);
  overflow: hidden;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; }
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.02);
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(5,8,11,.86) 0%, rgba(5,8,11,.45) 42%, rgba(5,8,11,.30) 100%),
    linear-gradient(to right, rgba(5,8,11,.55) 0%, rgba(5,8,11,0) 65%);
}

.hero-inner { position: relative; max-width: 62rem; }

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-hero);
  line-height: 1.13;
  letter-spacing: -0.045em;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 4px 18px rgba(0,0,0,.45);
}
.hero-lede {
  margin-top: 1.5rem;
  max-width: 46rem;
  font-size: var(--t-lede);
  line-height: 1.45;
  color: var(--light);
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero-actions {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
}

/* ---------- Who we are --------------------------------------------------- */

.legacy {
  position: relative;
  padding-block: var(--band);
  background: var(--cream);
  overflow: hidden;
}
.legacy-mark {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(38rem, 48%);
  height: auto;
  opacity: .28;
  pointer-events: none;
  /* the source mark is white; invert it to sit on the cream ground */
  filter: invert(1) brightness(.55) sepia(.35) saturate(1.6) hue-rotate(-8deg);
}
.legacy-inner { position: relative; }
.legacy-copy { max-width: 44rem; }
.legacy-copy p {
  margin-top: 1.5rem;
  font-size: var(--t-lede);
  line-height: 1.6;
  color: var(--ink-2);
  letter-spacing: -0.012em;
}

.values {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1px;
  background: var(--gold-line);
  border: 1px solid var(--gold-line);
}
.values li {
  background: var(--cream);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: background-color .3s ease;
}
.values li:hover { background: var(--gold-wash); }
.values h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.values p {
  margin-top: .625rem;
  font-size: .9375rem;
  line-height: 1.55;
  color: rgba(8,8,8,.7);
}

/* ---------- Who we partner with ------------------------------------------ */

.partners {
  position: relative;
  padding-block: var(--band);
  background: var(--ink);
  overflow: hidden;
}
.partners-bg { position: absolute; inset: 0; }
.partners-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .22;
  filter: grayscale(.35);
}
.partners::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,8,11,.75), rgba(5,8,11,.92));
}
.partners-inner { position: relative; z-index: 1; }
.partners-head { max-width: 46rem; }
.partners-lede {
  margin-top: 1.25rem;
  font-family: var(--ui);
  font-size: var(--t-lede);
  line-height: 1.45;
  color: var(--w-75);
  letter-spacing: -0.02em;
}

.partner-cards {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.partner-cards li {
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  background: var(--w-06);
  border: 1px solid var(--w-12);
  border-top: 2px solid var(--gold);
  transition: background-color .3s ease, transform .3s ease;
}
.partner-cards li:hover { background: rgba(156,133,94,.12); transform: translateY(-3px); }
.partner-cards h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-card);
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: #fff;
}
.partner-cards p {
  margin-top: .875rem;
  font-family: var(--ui);
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--w-75);
}

/* ---------- How we work -------------------------------------------------- */

.process { padding-block: var(--band); background: #fff; }
.process-head { max-width: 50rem; }
.process-lede {
  margin-top: 1.25rem;
  font-size: var(--t-lede);
  line-height: 1.55;
  color: rgba(8,8,8,.72);
}

.steps {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}
.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.step:nth-child(even) figure { order: 2; }
.step figure { overflow: hidden; background: var(--light); }
.step img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.3,1);
}
.step:hover img { transform: scale(1.03); }

.step-num {
  font-family: var(--numeric);
  font-weight: 500;
  font-size: .875rem;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: .75rem;
}
.step-body h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-card);
  line-height: 1.3;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.step-body p:last-child {
  margin-top: .875rem;
  color: rgba(8,8,8,.72);
  line-height: 1.6;
}

/* ---------- Design studio ------------------------------------------------ */

.studio {
  position: relative;
  padding-block: clamp(5.5rem, 11vw, 10rem);
  background: var(--ink);
  overflow: hidden;
}
.studio-bg { position: absolute; inset: 0; }
.studio-bg img { width: 100%; height: 100%; object-fit: cover; }
.studio::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(5,8,11,.9) 0%, rgba(5,8,11,.72) 45%, rgba(5,8,11,.35) 100%);
}
.studio-inner { position: relative; z-index: 1; max-width: 42rem; }
.studio-lede {
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  font-family: var(--ui);
  font-size: var(--t-lede);
  line-height: 1.5;
  color: var(--w-75);
}

/* ---------- Closer ------------------------------------------------------- */

.closer { padding-block: clamp(4rem, 8vw, 7rem); background: var(--cream); }
.closer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
.closer-copy {
  flex: 1 1 30rem;
  max-width: 46rem;
  font-family: var(--ui);
  font-size: var(--t-lede);
  line-height: 1.45;
  letter-spacing: -0.035em;
  color: var(--ink);
}

/* ---------- Contact ------------------------------------------------------ */

.contact { padding-block: var(--band); background: var(--ink); }
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 5rem);
}
.contact-lede {
  margin-top: 1.25rem;
  font-family: var(--ui);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--w-75);
}
.contact-details { margin-top: 2.5rem; display: grid; gap: 1.5rem; }
.contact-label {
  display: block;
  font-family: var(--ui);
  font-weight: 500;
  font-size: .6875rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .375rem;
}
.contact-details a {
  font-family: var(--ui);
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
  border-bottom: 1px solid transparent;
}
.contact-details a:hover { border-bottom-color: var(--gold); }

/* Space Grotesk on the phone number, as in the original design. Written with
   enough specificity to beat the `.contact-details a` / `.footer-contact a`
   rules above — the plain `.tel` class alone loses that fight. */
.tel,
.contact-details a.tel,
.footer-contact a.tel,
.notfound-contact a.tel {
  font-family: var(--numeric);
  font-weight: 500;
  letter-spacing: .01em;
}

/* form */
.form { display: grid; gap: 1.25rem; align-content: start; }
.field { display: grid; gap: .5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.field label {
  font-family: var(--ui);
  font-weight: 500;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--w-60);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--ui);
  font-size: 1rem;
  color: #fff;
  background: var(--w-06);
  border: 1px solid var(--w-12);
  border-radius: 2px;
  padding: .8125rem 1rem;
  transition: border-color .2s ease, background-color .2s ease;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 8rem; line-height: 1.55; }
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 14px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.field select option { color: var(--ink); background: #fff; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--gold-line); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(156,133,94,.10);
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #E4674F; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.turnstile:empty { display: none; }
.btn-submit { justify-self: start; margin-top: .5rem; }
.btn-submit[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

.form-status {
  font-family: var(--ui);
  font-size: .9375rem;
  line-height: 1.5;
  color: var(--w-75);
  min-height: 1.5rem;
}
.form-status.is-error { color: #F0917C; }
.form-status.is-ok { color: var(--gold); }

/* ---------- Footer ------------------------------------------------------- */

.site-footer {
  position: relative;
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--ink-2);
  overflow: hidden;
}
.footer-bg { position: absolute; inset: 0; }
.footer-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .14; }
.site-footer::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,.88), rgba(8,8,8,.97));
}

.footer-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.footer-logo { width: 240px; height: auto; }

.carpet-one {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  padding: .5rem;
  margin-left: -.5rem;
  border-radius: 2px;
  transition: background-color .25s ease;
}
.carpet-one:hover { background: var(--w-06); }
.carpet-one img {
  width: 56px; height: 56px;
  object-fit: contain;
  border-radius: 8px;
  flex: none;
}
.carpet-one span {
  font-family: var(--ui);
  font-size: 1rem;
  color: #fff;
  line-height: 1.35;
}
.carpet-one-hint {
  display: block;
  font-size: .8125rem;
  color: var(--gold);
}
.carpet-one:hover .carpet-one-hint { text-decoration: underline; }

.footer-nav ul { display: grid; gap: .75rem; }
.footer-nav a {
  font-family: var(--ui);
  font-weight: 500;
  font-size: 1rem;
  color: var(--w-75);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-nav a:hover { color: var(--gold); }

.footer-contact {
  font-style: normal;
  display: grid;
  gap: .75rem;
  align-content: start;
}
.footer-contact a {
  font-family: var(--ui);
  font-size: 1rem;
  color: var(--w-60);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-contact a:hover { color: #fff; }

.footer-legal {
  position: relative; z-index: 1;
  border-top: 1px solid var(--w-12);
  padding-block: 1.5rem;
}
.footer-legal p {
  font-family: var(--ui);
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
}

/* ---------- Scroll reveal ------------------------------------------------ */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive --------------------------------------------------- */

@media (max-width: 1024px) {
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }

  .nav-toggle { display: block; }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(5,8,11,.98);
    backdrop-filter: blur(12px);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }
  .nav.is-open { opacity: 1; pointer-events: auto; }
  .nav ul { flex-direction: column; gap: 1.75rem; text-align: center; }
  .nav a { font-size: 1.375rem; font-family: var(--display); }

  .site-header.is-stuck { height: 68px; }
  .logo img { width: 168px; }
  .logo { position: relative; z-index: 2; }
  .nav-toggle { position: relative; z-index: 2; }

  .step { grid-template-columns: 1fr; }
  .step:nth-child(even) figure { order: 0; }

  .legacy-mark { opacity: .16; right: -18%; width: 26rem; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }

  /* Touch targets: 44px minimum on anything finger-sized. */
  .footer-nav a,
  .footer-contact a,
  .contact-details a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .footer-nav ul { gap: 0; }
  .footer-contact { gap: 0; }
}

@media (max-width: 560px) {
  .hero { min-height: 92svh; }
  .hero-actions .btn { width: 100%; }
  .btn-submit { justify-self: stretch; width: 100%; }
}

/* ---------- Motion & print ----------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .partner-cards li:hover, .step:hover img { transform: none; }
}

@media print {
  .site-header, .hero-media, .nav-toggle, .form { display: none; }
  body { background: #fff; color: #000; }
}

/* ---------- 404 ---------------------------------------------------------- */

.notfound-body { background: var(--ink); }

.notfound {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding-block: clamp(3rem, 10vw, 7rem);
}
.notfound-inner { max-width: 42rem; }
.notfound-logo { width: 220px; height: auto; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.notfound-lede {
  margin-top: 1.25rem;
  font-family: var(--ui);
  font-size: var(--t-lede);
  line-height: 1.5;
  color: var(--w-75);
}
.notfound-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
}
.notfound-contact {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--w-12);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.notfound-contact a {
  font-family: var(--ui);
  font-size: 1rem;
  color: var(--w-60);
  text-decoration: none;
  transition: color .2s ease;
}
.notfound-contact a:hover { color: var(--gold); }

@media (max-width: 560px) {
  .notfound-actions .btn { width: 100%; }
}
