/* =========================================================
   Cliq Build — main stylesheet
   Design idea: panels joined by orange joints, taken from the
   logo and the click-together wall system itself.
   ========================================================= */

@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}

@view-transition { navigation: auto; }

:root {
  /* Colour */
  --orange: #F07E13;        /* exact logo orange */
  --orange-dark: #C9650A;   /* hover on orange */
  --black: #000000;         /* logo panel black */
  --white: #FFFFFF;
  --concrete: #EBEBE8;      /* alternate section ground */
  --steel: #55595E;         /* secondary text on light */
  --on-dark: #D4D4D1;       /* body text on black */
  --rule: #CFCFCB;

  /* Structure */
  --joint: clamp(5px, 0.55vw, 8px);
  --wrap: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --header-h: 84px;
  --section: clamp(4rem, 9vw, 8rem);

  /* Type */
  --font: "Archivo", "Helvetica Neue", Arial, system-ui, sans-serif;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lede: clamp(1.125rem, 1.05rem + 0.35vw, 1.3125rem);
  --fs-h3: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --fs-h2: clamp(1.75rem, 1.3rem + 1.9vw, 2.75rem);
  --fs-h1: clamp(2.25rem, 1.4rem + 3.6vw, 4.25rem);
  --fs-hero: clamp(2rem, 4.3vw, 5.5rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 1rem); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
p, li, dd { text-wrap: pretty; }
ul[class], ol[class] { list-style: none; padding: 0; }

/* ---------- Type ---------- */
h1, h2, h3, .display {
  font-stretch: 125%;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.15; letter-spacing: 0; }
.lede { font-size: var(--fs-lede); line-height: 1.55; }
.prose > * + * { margin-top: 1.1em; }
.prose { max-width: 64ch; }
.muted { color: var(--steel); }

a { color: inherit; text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: 0.2em; }
a:hover { text-decoration-thickness: 3px; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.cta-band :focus-visible, .btn:focus-visible { outline-color: var(--black); }
.panel--dark :focus-visible, .section--dark :focus-visible, .site-footer :focus-visible { outline-color: var(--white); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 1rem; top: -100px; z-index: 100;
  background: var(--orange); color: var(--black); padding: 0.75rem 1rem; font-weight: 700;
}
.skip:focus { top: 1rem; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section--concrete { background: var(--concrete); }
.section--dark { background: var(--black); color: var(--on-dark); }
.section--dark h2, .section--dark h3 { color: var(--white); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head > * + * { margin-top: 1rem; }

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-text { grid-template-columns: 7fr 5fr; }
  .split--reverse > :first-child { order: 2; }
}

/* ---------- Panels & joints (the core motif) ---------- */
.joined {
  display: grid;
  gap: var(--joint);
  padding: var(--joint);
  background: var(--orange);
}
.panel { background: var(--white); position: relative; overflow: hidden; }
.panel--dark { background: var(--black); color: var(--on-dark); }
.panel--dark h1, .panel--dark h2, .panel--dark h3 { color: var(--white); }
.panel--concrete { background: var(--concrete); }
.panel > img, .panel__media img { width: 100%; height: 100%; object-fit: cover; }

.framed { padding: var(--joint); background: var(--orange); }
.framed img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.5rem;
  background: var(--orange);
  color: var(--black);
  border: 2px solid var(--orange);
  font-weight: 700;
  font-stretch: 112%;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn--ghost { background: transparent; color: currentColor; border-color: currentColor; }
.btn--ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.section:not(.section--dark) .btn--ghost:hover,
.panel:not(.panel--dark) .btn--ghost:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--black { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--black:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  border-bottom: 4px solid var(--orange);
}
.site-header__inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { display: block; flex: none; }
.brand img { width: 60px; height: 60px; }

.nav__menu { display: flex; align-items: center; gap: clamp(0.75rem, 2vw, 2rem); }
.nav__menu a:not(.btn) {
  display: block;
  padding-block: 0.5rem;
  font-weight: 600;
  font-stretch: 108%;
  text-decoration: none;
  box-shadow: inset 0 -3px 0 transparent;
  transition: box-shadow 0.15s ease;
}
.nav__menu a:not(.btn):hover { box-shadow: inset 0 -3px 0 var(--rule); }
.nav__menu a[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--orange); }
.nav__cta .btn { min-height: 2.9rem; padding: 0.6rem 1.15rem; }

.nav__toggle {
  display: none;
  width: 48px; height: 48px;
  background: var(--black); border: 0; padding: 0;
  position: relative;
}
.nav__toggle-bars,
.nav__toggle-bars::before,
.nav__toggle-bars::after {
  position: absolute; left: 13px; width: 22px; height: 3px; background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__toggle-bars { top: 22.5px; }
.nav__toggle-bars::before, .nav__toggle-bars::after { content: ""; left: 0; }
.nav__toggle-bars::before { top: -7px; }
.nav__toggle-bars::after { top: 7px; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars::before { transform: translateY(7px) rotate(45deg); background: var(--orange); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars::after { transform: translateY(-7px) rotate(-45deg); background: var(--orange); }

@media (max-width: 959px) {
  :root { --header-h: 72px; }
  .brand img { width: 52px; height: 52px; }
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed;
    inset: calc(var(--header-h) + 4px) 0 0 0;
    flex-direction: column; align-items: stretch; gap: var(--joint);
    padding: var(--joint);
    background: var(--orange);
    overflow-y: auto;
    visibility: hidden; opacity: 0;
    transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  }
  .nav__menu[data-open] { visibility: visible; opacity: 1; transition: opacity 0.2s ease; }
  .nav__menu li { background: var(--black); }
  .nav__menu a:not(.btn) {
    padding: 1.1rem var(--gutter);
    color: var(--white);
    font-size: clamp(1.4rem, 5vw, 2rem);
    font-stretch: 125%; font-weight: 800;
  }
  .nav__menu a[aria-current="page"] { box-shadow: inset 6px 0 0 var(--orange); }
  .nav__menu a:not(.btn):hover { box-shadow: inset 6px 0 0 var(--steel); }
  .nav__cta { background: var(--black); padding: 1.25rem var(--gutter) 2rem; flex: 1; }
  .nav__cta .btn { width: 100%; min-height: 3.5rem; font-size: 1.125rem; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Home hero ---------- */
.hero { padding: 0; }
.hero__grid {
  position: relative;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: clamp(600px, calc(100svh - var(--header-h) - 4px), 900px);
}
.hero__title, .hero__intro {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}
.hero__title h1 { font-size: var(--fs-hero); line-height: 1.02; }
.hero__title h1 span { display: block; }
.hero__title { padding-bottom: clamp(4.75rem, 6vw, 5.5rem); }
.hero__intro { justify-content: center; }
.hero__intro p { font-size: var(--fs-lede); max-width: 40ch; color: var(--on-dark); }
.hero__intro .btns { margin-top: 1.75rem; }
.hero__img { background: #26282B; }

/* the "BUILD" block from the logo, sitting on the joint intersection */
.hero__badge {
  position: absolute; left: 50%; top: 50%;
  translate: -50% -50%;
  z-index: 2;
  background: var(--black);
  color: var(--white);
  padding: 0.9rem 1.25rem;
  text-align: center;
  font-stretch: 125%; font-weight: 800;
  font-size: clamp(0.95rem, 0.8rem + 0.5vw, 1.2rem);
  line-height: 1.15;
  max-width: 15ch;
  box-shadow: 0 0 0 var(--joint) var(--black);
}

@media (prefers-reduced-motion: no-preference) {
  .hero__grid > .panel { animation: cliq 0.85s cubic-bezier(0.2, 0.9, 0.3, 1.12) var(--delay, 0s) both; }
  .hero__title { --dx: -2.5%; --dy: -3%; --delay: 0.05s; }
  .hero__img--a { --dx: 2.5%; --dy: -3%; --delay: 0.12s; }
  .hero__img--b { --dx: -2.5%; --dy: 3%; --delay: 0.19s; }
  .hero__intro { --dx: 2.5%; --dy: 3%; --delay: 0.26s; }
  .hero__badge { animation: badge 0.35s cubic-bezier(0.3, 1.6, 0.5, 1) 0.95s both; }
  @keyframes cliq { from { transform: translate(var(--dx), var(--dy)); opacity: 0; } }
  @keyframes badge { from { scale: 1.25; opacity: 0; } }
}

@media (max-width: 759px) {
  :root { --fs-hero: clamp(1.9rem, 9vw, 4rem); }
  .hero__grid { grid-template-columns: 1fr; grid-template-rows: none; height: auto; }
  .hero__title { order: 1; min-height: 16rem; padding-bottom: clamp(1.5rem, 4vw, 3.5rem); }
  .hero__badge { order: 2; position: static; translate: none; max-width: none; box-shadow: none; text-align: left; padding: 0.9rem clamp(1.5rem, 4vw, 3.5rem); }
  .hero__img--a { order: 3; aspect-ratio: 4 / 3; }
  .hero__intro { order: 4; }
  .hero__img--b { display: none; }
}

/* ---------- Inner page header ---------- */
.page-head { grid-template-columns: 6fr 5fr; min-height: clamp(340px, 46vh, 500px); }
.page-head__text { display: flex; flex-direction: column; justify-content: flex-end; gap: 1.25rem; padding: clamp(1.5rem, 4vw, 3.5rem); }
.page-head__text .lede { max-width: 46ch; color: var(--on-dark); }
@media (max-width: 759px) {
  .page-head { grid-template-columns: 1fr; }
  .page-head__img { aspect-ratio: 16 / 10; order: -1; }
}

/* ---------- Home: issues ---------- */
.issues { display: grid; gap: var(--joint); background: var(--orange); padding: var(--joint); }
.issue { background: var(--concrete); padding: clamp(1.25rem, 3vw, 2rem); }
.issue h3 { margin-bottom: 0.5rem; }
.issue p { color: var(--steel); }
.issue p strong { color: var(--black); font-weight: 700; }

/* ---------- Home: methods ---------- */
.methods { grid-template-columns: repeat(3, 1fr); }
.method { display: flex; flex-direction: column; }
.method img { aspect-ratio: 4 / 3; height: auto; }
.method__body { padding: clamp(1.25rem, 2.5vw, 2rem); }
.method__body p { margin-top: 0.6rem; color: var(--steel); }
@media (max-width: 899px) { .methods { grid-template-columns: 1fr; } }
@media (min-width: 600px) and (max-width: 899px) {
  .method { flex-direction: row; }
  .method img { width: 42%; aspect-ratio: auto; object-fit: cover; }
}

/* ---------- Spec sheet ---------- */
.spec { display: grid; gap: clamp(2rem, 5vw, 5rem); align-items: stretch; }
@media (min-width: 900px) { .spec { grid-template-columns: 5fr 7fr; } }
.spec__img { aspect-ratio: 4 / 5; }
@media (min-width: 900px) { .spec__img { aspect-ratio: auto; min-height: 30rem; } }
.spec__list { margin-top: 2rem; border-top: 3px solid var(--black); }
.spec__row {
  display: grid; grid-template-columns: minmax(8rem, 2fr) 5fr; gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--rule);
}
.spec__row dt { font-weight: 700; font-stretch: 112%; }
.spec__row dd { color: var(--steel); }
@media (max-width: 479px) { .spec__row { grid-template-columns: 1fr; gap: 0.15rem; } }

/* ---------- Regions ---------- */
.regions { grid-template-columns: repeat(4, 1fr); }
.region { padding: clamp(1.5rem, 3vw, 2.25rem); display: flex; flex-direction: column; gap: 0.6rem; }
.region .region__state { font-size: clamp(1.75rem, 3vw - 0.2rem, 2.75rem); color: var(--orange); line-height: 1; white-space: nowrap; }
.region h3 { margin-top: 0.75rem; }
.region p { color: var(--on-dark); font-size: var(--fs-sm); }
.region a { margin-top: auto; padding-top: 0.75rem; color: var(--white); font-weight: 600; font-size: var(--fs-sm); }
@media (max-width: 1023px) { .regions { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 519px) { .regions { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--orange); color: var(--black); padding-block: clamp(3.5rem, 7vw, 6rem); }
.cta-band__inner { display: grid; gap: 2rem; align-items: end; }
@media (min-width: 900px) { .cta-band__inner { grid-template-columns: 1fr auto; } }
.cta-band h2 { max-width: 20ch; }
.cta-band p { margin-top: 1rem; max-width: 56ch; font-size: var(--fs-lede); }

/* ---------- Media blocks ---------- */
.media-block { aspect-ratio: 6 / 5; }
.media-block img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Concept plans ---------- */
.plans { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1023px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) { .plans { grid-template-columns: 1fr; } }
.plan { display: flex; flex-direction: column; }
.plan__open {
  display: block; width: 100%; padding: 0; border: 0; background: var(--white);
  position: relative; aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--rule);
}
/* contain, so floor plan drawings are never cropped */
.plan__open img { width: 100%; height: 100%; object-fit: contain; transition: scale 0.3s ease; }
.plan__open:hover img { scale: 1.03; }
.plan__open-label {
  position: absolute; right: 0; bottom: 0;
  background: var(--black); color: var(--white);
  padding: 0.5rem 0.85rem; font-size: var(--fs-sm); font-weight: 600;
}
.plan__body { padding: clamp(1.25rem, 2.5vw, 1.75rem); display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.plan__body p { color: var(--steel); }
.plan__body a { margin-top: auto; padding-top: 0.5rem; font-weight: 600; }
.note { margin-top: 2rem; color: var(--steel); font-size: var(--fs-sm); max-width: 70ch; }

.lightbox {
  width: min(96vw, 1400px); max-height: 94vh; margin: auto;
  padding: 0; border: var(--joint) solid var(--orange);
  background: var(--black); color: var(--white);
}
.lightbox::backdrop { background: rgb(0 0 0 / 0.85); }
.lightbox__frame { display: grid; grid-template-rows: 1fr auto; max-height: calc(94vh - 2 * var(--joint)); }
.lightbox__frame img { width: 100%; height: 100%; max-height: calc(94vh - 6rem); object-fit: contain; background: var(--white); }
.lightbox__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.75rem 1rem; }
.lightbox__caption { font-weight: 700; font-stretch: 112%; }
.lightbox__controls { display: flex; gap: var(--joint); }
.lightbox__controls button {
  min-width: 3rem; min-height: 3rem; padding: 0.5rem 0.9rem;
  background: var(--white); color: var(--black); border: 0; font-weight: 700;
}
.lightbox__controls button:hover { background: var(--orange); }
@media (prefers-reduced-motion: no-preference) {
  .lightbox[open] { animation: lb-in 0.2s ease; }
  @keyframes lb-in { from { opacity: 0; scale: 0.98; } }
}

/* ---------- Team ---------- */
.team-group + .team-group { margin-top: clamp(4rem, 8vw, 7rem); }
.team-group > h2 { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.members { display: grid; gap: clamp(3rem, 6vw, 5rem); }
.member { display: grid; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 760px) { .member { grid-template-columns: 200px 1fr; } }
.member__photo { aspect-ratio: 1 / 1; width: 100%; max-width: 200px; }
@media (min-width: 760px) { .member__photo { position: sticky; top: calc(var(--header-h) + 2rem); } }
.member__region {
  display: inline-block; background: var(--orange); color: var(--black);
  padding: 0.2rem 0.6rem; font-weight: 700; font-stretch: 112%; font-size: var(--fs-sm);
  margin-bottom: 0.9rem;
}
.member h3 { font-size: var(--fs-h2); line-height: 1.04; }
.member__role { margin-top: 0.5rem; font-weight: 600; font-stretch: 108%; color: var(--steel); }
.member .prose { margin-top: 1.5rem; }
.member ul:not([class]) { padding-left: 1.2rem; }
.member ul:not([class]) li { padding-left: 0.25rem; }
.member ul:not([class]) li::marker { color: var(--orange); }
.member ul:not([class]) li + li { margin-top: 0.3rem; }

.jump { display: flex; flex-wrap: wrap; gap: 0.35rem 1.25rem; font-weight: 600; font-size: var(--fs-sm); }
.jump a { color: var(--white); }

/* ---------- About: values ---------- */
.values { grid-template-columns: repeat(3, 1fr); }
.value { padding: clamp(1.5rem, 3vw, 2.25rem); }
.value p { margin-top: 0.75rem; color: var(--steel); }
@media (max-width: 899px) { .values { grid-template-columns: 1fr; } }
.after-values { margin-top: clamp(2rem, 4vw, 3rem); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(2.5rem, 5vw, 5rem); }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 5fr 7fr; } }
.contact-info address { font-style: normal; font-size: var(--fs-lede); line-height: 1.5; margin-top: 1rem; }
.contact-info .btns { margin-top: 1.5rem; }
.map { margin-top: 2rem; aspect-ratio: 4 / 3; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.85) contrast(1.05); }

.form-panel { background: var(--concrete); padding: clamp(1.5rem, 4vw, 3rem); border-top: var(--joint) solid var(--orange); }
.form-panel h2 { margin-bottom: 0.5rem; }
.form { display: grid; gap: 1.25rem; margin-top: 2rem; }
.form__row { display: grid; gap: 1.25rem; }
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 0.4rem; }
.field label { font-weight: 600; font-stretch: 108%; }
.field .optional { font-weight: 400; color: var(--steel); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 0.9rem;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 0;
  font-size: 1rem;
  appearance: none;
}
.field textarea { min-height: 9rem; resize: vertical; }
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--black) 50%), linear-gradient(135deg, var(--black) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px; background-repeat: no-repeat;
  padding-right: 2.5rem;
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--orange); outline-offset: 0; }
.field [aria-invalid="true"] { border-color: #B3261E; }
.field__error { color: #B3261E; font-size: var(--fs-sm); font-weight: 600; }
.field__error:empty { display: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__status { padding: 1rem 1.25rem; font-weight: 600; }
.form__status:empty { display: none; }
.form__status[data-state="ok"] { background: var(--black); color: var(--white); border-left: 6px solid var(--orange); }
.form__status[data-state="error"] { background: #FBE9E7; color: #7A1A12; border-left: 6px solid #B3261E; }
.form button[type="submit"] { justify-self: start; }
.form button[aria-busy="true"] { opacity: 0.7; pointer-events: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: var(--on-dark); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.site-footer__grid { display: grid; gap: 2.5rem; }
@media (min-width: 800px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer img { width: 88px; height: 88px; }
.site-footer .tagline { margin-top: 1.25rem; color: var(--white); font-stretch: 125%; font-weight: 800; font-size: var(--fs-h3); line-height: 1.15; max-width: 18ch; }
.site-footer h2 { font-size: 1rem; font-stretch: 112%; color: var(--white); margin-bottom: 0.9rem; letter-spacing: 0; }
.site-footer ul li + li { margin-top: 0.4rem; }
.site-footer a { color: var(--on-dark); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; text-decoration-color: var(--orange); }
.site-footer address { font-style: normal; }
.site-footer__base {
  margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.5rem;
  border-top: var(--joint) solid var(--orange);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 2rem;
  font-size: var(--fs-sm);
}
