/* ==========================================================================
   SHARED COMPONENT SYSTEM
   --------------------------------------------------------------------------
   Brand-agnostic. Every colour, face and radius resolves from brand.css so
   this file can be reused verbatim across private-label brand sites.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Reset & document
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--brand-surface);
  color: var(--brand-ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

img { height: auto; }

/* --------------------------------------------------------------------------
   2. Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--display-weight-black);
  letter-spacing: var(--display-tracking);
  line-height: 1.08;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); text-transform: uppercase; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); text-transform: uppercase; }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); font-weight: var(--display-weight-semibold); text-transform: uppercase; letter-spacing: 0.01em; }
h4 { font-size: 1.0625rem; font-weight: var(--display-weight-semibold); text-transform: uppercase; letter-spacing: 0.08em; }

p { margin: 0 0 1.25em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

strong, b { font-weight: 700; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: var(--display-weight-semibold);
  letter-spacing: var(--eyebrow-tracking);
  text-transform: uppercase;
  color: var(--brand-primary);
  margin: 0 0 1.25rem;
  display: block;
}

.lede {
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  line-height: 1.6;
  font-weight: 300;
}

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* Small rotated square lifted from the wordmark's interlocking diamonds. */
.rule-diamond {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.75rem;
}
.rule-diamond::before,
.rule-diamond::after {
  content: "";
  height: 1px;
  flex: 1;
  background: currentColor;
  opacity: 0.28;
}
.rule-diamond span {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: currentColor;
  opacity: 0.7;
}
.text-center .rule-diamond { max-width: 9rem; margin-inline: auto; }

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: 76rem;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.wrap--narrow { max-width: 52rem; }
.wrap--wide { max-width: 88rem; }

.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.section--surface { background: var(--brand-surface); }
.section--paper { background: var(--brand-paper); }
.section--accent { background: var(--brand-accent); }
.section--accent-soft { background: var(--brand-accent-soft); }

.section--primary {
  background: var(--brand-primary);
  color: var(--brand-surface);
}
.section--primary .eyebrow { color: var(--brand-accent); }

.section--ink {
  background: var(--brand-ink);
  color: var(--brand-surface);
}
.section--ink .eyebrow { color: var(--brand-accent); }

main { flex: 1 0 auto; }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }

.stack > * + * { margin-top: 1.25rem; }

/* --------------------------------------------------------------------------
   4. Accessibility helpers
   -------------------------------------------------------------------------- */

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 200;
  background: var(--brand-primary);
  color: var(--brand-surface);
  padding: 0.85rem 1.35rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: var(--display-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--brand-primary);
  outline-offset: 3px;
}
.section--primary :where(a, button, input, select, textarea, summary):focus-visible,
.section--ink :where(a, button, input, select, textarea, summary):focus-visible,
.site-footer :where(a, button, input, select, textarea, summary):focus-visible {
  outline-color: var(--brand-accent);
}

/* --------------------------------------------------------------------------
   5. Buttons & links
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: var(--display-weight-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 2.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.btn--primary {
  background: var(--brand-primary);
  color: var(--brand-surface);
}
.btn--primary:hover { background: var(--brand-ink); }

.btn--inverse {
  background: var(--brand-surface);
  color: var(--brand-primary);
}
.btn--inverse:hover { background: var(--brand-paper); color: var(--brand-ink); }

.btn--outline {
  background: transparent;
  color: var(--brand-ink);
  border-color: currentColor;
}
.btn--outline:hover { background: var(--brand-ink); color: var(--brand-surface); }

/* Every dark-background context, not just the dark sections — an outline
   button left on the default ink colour disappears against a photo scrim. */
.section--primary .btn--outline,
.section--ink .btn--outline,
.hero .btn--outline,
.media-band .btn--outline,
.page-head .btn--outline { color: var(--brand-surface); }

.section--primary .btn--outline:hover,
.section--ink .btn--outline:hover,
.hero .btn--outline:hover,
.media-band .btn--outline:hover,
.page-head .btn--outline:hover { background: var(--brand-surface); color: var(--brand-ink); }

.btn--small { padding: 0.7rem 1.4rem; font-size: 0.72rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: var(--display-weight-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brand-primary);
  padding-bottom: 0.35rem;
  border-bottom: 2px solid currentColor;
  transition: color .25s ease;
}
.link-arrow::after { content: "\2192"; transition: transform .25s ease; }
.link-arrow:hover { color: var(--brand-ink); }
.link-arrow:hover::after { transform: translateX(4px); }

.section--primary .link-arrow,
.section--ink .link-arrow { color: var(--brand-accent); }
.section--primary .link-arrow:hover,
.section--ink .link-arrow:hover { color: var(--brand-surface); }

/* --------------------------------------------------------------------------
   6. Header & navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-surface);
  border-bottom: 1px solid var(--brand-accent);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.1rem;
}

.site-logo { display: block; flex: none; }
.site-logo img { width: clamp(11rem, 22vw, 15rem); height: auto; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--brand-accent);
  color: var(--brand-ink);
  padding: 0.65rem 0.8rem;
  cursor: pointer;
  line-height: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.site-nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.6vw, 2.25rem); }

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.6vw, 2.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: var(--display-weight-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brand-ink);
  padding-block: 0.35rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .2s ease, border-color .2s ease;
}
.site-nav__link:hover { color: var(--brand-primary); }
.site-nav__link[aria-current="page"] {
  color: var(--brand-primary);
  border-bottom-color: var(--brand-primary);
}

@media (max-width: 60rem) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--brand-surface);
    border-bottom: 1px solid var(--brand-accent);
    padding: 0.5rem clamp(1.25rem, 5vw, 3rem) 2rem;
    box-shadow: 0 18px 30px -22px rgba(35, 24, 21, .5);
  }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__link {
    display: block;
    padding-block: 1rem;
    border-bottom: 1px solid var(--brand-surface-deep);
  }
  .site-nav__link[aria-current="page"] { border-bottom-color: var(--brand-primary); }
  .site-nav .btn { margin-top: 1.5rem; }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(30rem, 78vh, 46rem);
  background: var(--brand-accent);
  overflow: hidden;
  isolation: isolate;
}

.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Scrim. A flat base tint under the gradient guarantees a contrast floor
   wherever the underlying photograph happens to be bright. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      to top,
      rgba(35, 24, 21, .86) 0%,
      rgba(35, 24, 21, .62) 42%,
      rgba(35, 24, 21, .34) 76%,
      rgba(35, 24, 21, .46) 100%
    ),
    rgba(35, 24, 21, .16);
}

/* Narrow viewports stack the copy over the middle of the frame, where the
   bottom-weighted gradient is weakest — so flatten it out. */
@media (max-width: 48rem) {
  .hero::after {
    background:
      linear-gradient(to top, rgba(35, 24, 21, .88) 0%, rgba(35, 24, 21, .70) 60%, rgba(35, 24, 21, .62) 100%),
      rgba(35, 24, 21, .10);
  }
}

.hero__content {
  color: var(--brand-surface);
  padding-block: clamp(3rem, 8vw, 5.5rem);
  max-width: 44rem;
}
.hero__content .eyebrow { color: var(--brand-accent); }
.hero__content h1 { margin-bottom: 0.5em; }
.hero__content p { color: rgba(236, 231, 227, .92); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

/* Compact hero used on interior pages. */
.page-head {
  background: var(--brand-primary);
  color: var(--brand-surface);
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.page-head .eyebrow { color: var(--brand-accent); }
.page-head p { color: rgba(236, 231, 227, .9); }
.page-head h1 { font-size: clamp(2.1rem, 5vw, 3.75rem); }

/* --------------------------------------------------------------------------
   8. Media & editorial blocks
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}
.split__media img { width: 100%; }
.split--reverse .split__media { order: 2; }

@media (max-width: 48rem) {
  .split--reverse .split__media { order: 0; }
}

.media-band {
  position: relative;
  min-height: clamp(20rem, 46vw, 32rem);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.media-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.media-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(35, 24, 21, .80) 0%, rgba(35, 24, 21, .50) 55%, rgba(35, 24, 21, .14) 100%),
    rgba(35, 24, 21, .12);
}

/* The horizontal wipe leaves nothing under the copy once it spans the full
   width, so switch to a vertical scrim on narrow viewports. */
@media (max-width: 48rem) {
  .media-band::after {
    background:
      linear-gradient(to top, rgba(35, 24, 21, .86) 0%, rgba(35, 24, 21, .68) 70%, rgba(35, 24, 21, .58) 100%),
      rgba(35, 24, 21, .10);
  }
}
.media-band__content {
  color: var(--brand-surface);
  max-width: 38rem;
  padding-block: clamp(3rem, 7vw, 5rem);
}
.media-band__content .eyebrow { color: var(--brand-accent); }

figure { margin: 0; }

/* Normalises figures of mixed source aspect ratios into an even row —
   otherwise a portrait crop beside a panoramic one leaves a large void. */
.figure-even img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

figcaption {
  font-size: 0.85rem;
  color: color-mix(in srgb, currentColor 68%, transparent);
  margin-top: 0.85rem;
}

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */

.card {
  display: flex;
  flex-direction: column;
  background: var(--brand-paper);
  border: 1px solid var(--brand-surface-deep);
  height: 100%;
}

.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--brand-surface);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .7, .3, 1);
}
.card:hover .card__media img { transform: scale(1.04); }

.card__body {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
}
.card__body h3 { margin: 0; }
.card__body p { font-size: 0.98rem; margin: 0; }
.card__body .link-arrow { margin-top: auto; align-self: flex-start; }

/* Plain informational panel, no image. */
.panel {
  background: var(--brand-paper);
  border: 1px solid var(--brand-surface-deep);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  height: 100%;
}
.panel h3 { color: var(--brand-primary); }
.panel h4 { color: var(--brand-primary); margin-bottom: 0.75rem; }
.panel p { font-size: 0.98rem; }

.section--primary .panel,
.section--ink .panel {
  background: transparent;
  border-color: rgba(236, 231, 227, .25);
}
.section--primary .panel h3,
.section--primary .panel h4,
.section--ink .panel h3,
.section--ink .panel h4 { color: var(--brand-accent); }

/* Numbered / value list used for support + care steps. */
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}
.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.98rem;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--brand-primary);
}
.section--primary .feature-list li::before,
.section--ink .feature-list li::before { background: var(--brand-accent); }

/* --------------------------------------------------------------------------
   10. Quotes
   -------------------------------------------------------------------------- */

.quote {
  background: var(--brand-paper);
  border: 1px solid var(--brand-surface-deep);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: 100%;
}
.quote__stars { color: var(--brand-primary); letter-spacing: 0.18em; font-size: 0.95rem; }
.quote blockquote { margin: 0; font-size: 1.05rem; line-height: 1.65; }
.quote figcaption {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: var(--display-weight-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-ink);
  opacity: .72;
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   11. Forms
   -------------------------------------------------------------------------- */

.form { display: grid; gap: 1.5rem; }

.form__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}

.field { display: grid; gap: 0.5rem; }

.field label {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: var(--display-weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field .hint {
  font-size: 0.85rem;
  opacity: .72;
}

.field .req { color: var(--brand-primary); }

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--brand-ink);
  background: var(--brand-paper);
  border: 1px solid var(--brand-accent);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color .2s ease;
}
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--brand-primary); }
.field textarea { min-height: 9rem; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--brand-primary) 50%), linear-gradient(135deg, var(--brand-primary) 50%, transparent 50%); background-position: right 1.15rem center, right 0.85rem center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 2.5rem; }

.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid { border-color: #9c3722; }

.form__note { font-size: 0.85rem; opacity: .75; max-width: 60ch; }

/* Honeypot — visually and semantically removed from the flow. */
.form__trap {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* A bordered <fieldset> notches its border around the rendered <legend>,
   leaving a broken rule either side that cannot be styled away reliably across
   browsers. Dropping the border sidesteps it completely, and a hairline under
   the legend reads as a cleaner section divider — consistent with the rule
   treatment used elsewhere on the site. */
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

fieldset + fieldset { margin-top: 1.5rem; }

legend {
  display: block;
  width: 100%;
  box-sizing: border-box;
  float: left; /* makes the legend lay out as a normal block, not a border notch */
  padding: 0 0 0.85rem;
  margin: 0 0 1.6rem;
  border-bottom: 1px solid var(--brand-accent);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: var(--display-weight-semibold);
  letter-spacing: var(--eyebrow-tracking);
  text-transform: uppercase;
  color: var(--brand-primary);
}

/* The step number, when a form is long enough to warrant sectioning. */
legend .step {
  color: var(--brand-ink);
  opacity: .45;
  margin-right: 0.5rem;
}

/* Long forms: keep the supporting column in view while the fields scroll. */
@media (min-width: 64rem) {
  .form-aside { position: sticky; top: 7.5rem; }
}

/* --------------------------------------------------------------------------
   12. Accordion (FAQ / warranty detail)
   -------------------------------------------------------------------------- */

.accordion { display: grid; gap: 0; border-top: 1px solid var(--brand-accent); }

.accordion details { border-bottom: 1px solid var(--brand-accent); }

.accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 1.35rem 2.5rem 1.35rem 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--display-weight-semibold);
  letter-spacing: 0.01em;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "";
  position: absolute;
  right: 0.6rem;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--brand-primary);
  border-bottom: 2px solid var(--brand-primary);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s ease;
}
.accordion details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.accordion details > *:not(summary) { padding-bottom: 1.5rem; }

/* --------------------------------------------------------------------------
   13. Tables (warranty coverage)
   -------------------------------------------------------------------------- */

.table-scroll { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--brand-paper);
  min-width: 34rem;
}

caption {
  text-align: left;
  font-size: 0.85rem;
  opacity: .75;
  padding-bottom: 0.75rem;
}

th, td {
  text-align: left;
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--brand-surface-deep);
  vertical-align: top;
}

thead th {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: var(--display-weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--brand-primary);
  color: var(--brand-surface);
  border-bottom: 0;
}

tbody tr:last-child th,
tbody tr:last-child td { border-bottom: 0; }

/* --------------------------------------------------------------------------
   14. Long-form legal copy
   -------------------------------------------------------------------------- */

.prose h2 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); margin-top: 2.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2rem; }
.prose ul, .prose ol { max-width: 68ch; padding-left: 1.35rem; }
.prose li { margin-bottom: 0.6rem; }
.prose a { color: var(--brand-primary); text-underline-offset: 3px; }
.prose a:hover { color: var(--brand-ink); }

.meta-note {
  font-size: 0.85rem;
  opacity: .7;
  border-left: 2px solid var(--brand-accent);
  padding-left: 1rem;
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--brand-ink);
  color: var(--brand-surface);
  padding-block: clamp(3rem, 7vw, 5rem) 2rem;
  margin-top: auto;
}

.site-footer a { color: rgba(236, 231, 227, .82); text-decoration: none; transition: color .2s ease; }
.site-footer a:hover { color: var(--brand-accent); }

/* Explicit breakpoints rather than auto-fit: the brand column's minimum plus
   one nav track overflows a 390px viewport if the browser is left to choose. */
.site-footer__top {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  padding-bottom: 3rem;
}

@media (min-width: 34rem) {
  .site-footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (min-width: 64rem) {
  .site-footer__top { grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr)); }
  .site-footer__brand { grid-column: auto; }
}

.site-footer__brand img { width: 15rem; margin-bottom: 1.5rem; }
.site-footer__brand p { font-size: 0.95rem; color: rgba(236, 231, 227, .72); max-width: 34ch; }

.footer-col h4 {
  color: var(--brand-accent);
  margin-bottom: 1.25rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; font-size: 0.95rem; }

.site-footer__contact { font-size: 0.95rem; display: grid; gap: 0.75rem; color: rgba(236, 231, 227, .82); }
.site-footer__contact strong { display: block; color: var(--brand-surface); font-weight: 700; }

.site-footer__bottom {
  border-top: 1px solid rgba(236, 231, 227, .18);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(236, 231, 227, .6);
}
.site-footer__bottom ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
}

/* --------------------------------------------------------------------------
   16. Print
   -------------------------------------------------------------------------- */

@media print {
  .site-header, .site-footer, .hero__actions, .nav-toggle, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1.5rem; }
}
