/* ============================================================
   CADRU — renovări & amenajări · demo IMESSA
   Direction: „planșă de șantier” — drafting-paper off-white,
   graphite ink, construction-yellow accent, dimension-line
   (cotă) as the repeated signature device.
   ============================================================ */

:root {
  --paper: #f2efe8;
  --paper-2: #e9e4d8;
  --ink: #1d1f21;
  --ink-soft: #52544f;
  --line: #d3cdbe;
  --accent: #f2b90d;
  --accent-deep: #d9a406;
  --oxide: #b0562f;
  --graphite: #212529;
  --graphite-2: #292e33;
  --bp-line: #e8e6df;
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --wrap: 74rem;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}
.section-dark :focus-visible,
.site-foot :focus-visible {
  outline-color: var(--accent);
}

.skip-link {
  position: absolute;
  left: -100vw;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: .7rem 1.2rem;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
}
.wrap-narrow { max-width: 54rem; }
.nowrap { white-space: nowrap; }

/* ---------- Scroll reveals (guarded, no-JS safe) ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity .7s var(--ease-out) var(--d, 0s),
      transform .7s var(--ease-out) var(--d, 0s);
  }
  html.js .reveal.is-in,
  html.js.reveal-all .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  padding: .95rem 1.7rem;
  border: 2px solid var(--ink);
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out);
}
.btn-primary {
  background: var(--accent);
  box-shadow: 5px 5px 0 var(--ink);
}
.btn-ghost { background: transparent; }
.btn-dark {
  background: var(--ink);
  color: var(--accent);
  border-color: var(--ink);
  box-shadow: 5px 5px 0 rgba(29, 31, 33, .35);
}
.btn-small {
  padding: .5rem 1rem;
  font-size: .9rem;
  background: var(--accent);
  box-shadow: 3px 3px 0 var(--ink);
  white-space: nowrap;
}
@media (prefers-reduced-motion: no-preference) {
  .btn-primary:hover, .btn-small:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }
  .btn-dark:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 rgba(29, 31, 33, .35); }
  .btn-ghost:hover { transform: translate(0, -2px); }
}

/* ---------- Header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--ink);
}
.head-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: .7rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  margin-right: auto;
}
.brand-mark { width: 2.3rem; height: 2.3rem; flex: none; }
.brand-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: .18rem;
}
.brand-text small {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.site-nav {
  display: flex;
  gap: 1.6rem;
}
.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  padding-block: .3rem;
  border-bottom: 3px solid transparent;
}
.site-nav a:hover { border-bottom-color: var(--accent); }

@media (max-width: 800px) {
  .site-nav { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(2.5rem, 5vw, 4rem);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center top;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--paper) 96%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}
.eyebrow .tick {
  width: 2px;
  height: 1.1em;
  background: var(--accent);
  transform: skewX(-20deg);
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.4vw, 4.7rem);
  /* 1.04: leaves room for Romanian comma-below diacritics (Ț, Ș) between lines */
  line-height: 1.04;
  letter-spacing: .008em;
  text-transform: uppercase;
}
.display .mark {
  position: relative;
  color: var(--ink);
  padding-inline: .08em;
  background: linear-gradient(0deg, var(--accent) 0 .28em, transparent .28em);
}

.lead {
  max-width: 34rem;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--ink-soft);
  margin-top: 1.6rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.1rem;
}
.cta-note {
  margin-top: 1rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-soft);
}

/* hero plan drawing */
.hero-plan {
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 1.2rem 1.2rem .9rem;
  box-shadow: 8px 8px 0 rgba(29, 31, 33, .12);
}
.plan-caption {
  margin-top: .8rem;
  padding-top: .6rem;
  border-top: 1px solid var(--line);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.plan-lab, .plan-meta {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  fill: var(--ink-soft);
}
.plan-meta { font-size: 13px; fill: #8b8478; }
.plan-lab-oxide { fill: var(--oxide); font-size: 13px; }
.plan-dim { stroke: var(--accent-deep); stroke-width: 1.6; fill: none; }
.plan-dim-lab {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  fill: var(--accent-deep);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-plan { display: none; }
}

/* trust strip */
.trust-strip {
  list-style: none;
  padding: 0;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}
.trust-strip li {
  position: relative;
  padding: 1.2rem 1.4rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.trust-strip li + li { border-left: 2px solid var(--ink); }
.trust-strip li::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 2.4rem;
  height: 4px;
  background: var(--accent);
}
.trust-strip strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
}
.trust-strip span {
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-soft);
}
@media (max-width: 700px) {
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip li + li { border-left: 0; border-top: 2px solid var(--ink); }
}

/* technical divider — scale-ruler ticks, same drafting language as the cotă */
.hazard {
  height: 14px;
  border-top: 2px solid var(--ink);
  background:
    repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 96px),
    repeating-linear-gradient(90deg, var(--ink-soft) 0 1px, transparent 1px 12px);
  background-size: 100% 10px, 100% 6px;
  background-repeat: no-repeat;
}

/* ---------- Sections, eyebrows, dimension-line device ---------- */
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section-alt { background: var(--paper-2); }

.sec-head { max-width: 46rem; margin-inline: auto; text-align: center; }
.sec-head-left { margin-inline: 0; text-align: left; }

.dim-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.3rem;
}
.dim-eyebrow-left { justify-content: flex-start; }
.dim-lab { white-space: nowrap; }
.dim-rule {
  position: relative;
  flex: 1;
  max-width: 7rem;
  height: 2px;
  background: var(--accent-deep);
}
.dim-rule::before, .dim-rule::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 12px;
  background: var(--accent-deep);
  transform: translateY(-50%) rotate(20deg);
}
.dim-rule::before { left: 0; }
.dim-rule::after { right: 0; }

.sec-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: .01em;
  text-transform: uppercase;
  text-wrap: balance;
}
.sec-sub {
  margin-top: 1.1rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.section-dark {
  background: var(--graphite);
  color: var(--bp-line);
}
.section-dark .sec-sub { color: #a8adb2; }
.section-dark .dim-eyebrow { color: #a8adb2; }
.section-dark .dim-rule,
.section-dark .dim-rule::before,
.section-dark .dim-rule::after { background: var(--accent); }

/* ---------- Servicii ---------- */
.svc-list {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 2px solid var(--ink);
}
.svc {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 5fr) minmax(0, 2fr);
  gap: 1.5rem clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding-block: clamp(1.6rem, 3.5vw, 2.4rem);
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.svc::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  height: 4px;
  width: 0;
  background: var(--accent);
  transition: width .45s var(--ease-out);
}
.svc:hover::before { width: 6rem; }

.svc-name { display: flex; align-items: baseline; gap: 1rem; }
.svc-num {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent-deep);
  font-variant-numeric: tabular-nums;
  border: 1.5px solid var(--accent-deep);
  padding: .15rem .45rem;
  flex: none;
}
.svc-name h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: .015em;
  text-transform: uppercase;
}

.svc-includes {
  list-style: none;
  padding: 0;
  display: grid;
  gap: .45rem;
  font-size: .95rem;
  color: var(--ink-soft);
}
.svc-includes li {
  position: relative;
  padding-left: 1.4rem;
}
.svc-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: .8rem;
  height: 2px;
  background: var(--accent-deep);
  transform: skewX(-30deg);
}

.svc-price {
  justify-self: end;
  text-align: right;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.price-from {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.price-val {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}
.price-unit {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
}

.svc-note {
  margin-top: 1.6rem;
  font-size: .88rem;
  color: var(--ink-soft);
  max-width: 46rem;
}

@media (max-width: 860px) {
  .svc { grid-template-columns: 1fr; gap: 1rem; }
  .svc-price {
    justify-self: start;
    text-align: left;
    flex-direction: row;
    align-items: baseline;
    gap: .6rem;
  }
}

/* ---------- Din plan, în lucrare (interactive wipe) ---------- */
.scene-block {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  max-width: 62rem;
  margin-inline: auto;
}

.scene-stage {
  --split: 60%;
  position: relative;
  aspect-ratio: 16 / 9;
  border: 2px solid var(--bp-line);
  overflow: hidden;
  cursor: ew-resize;
  touch-action: pan-y;
  background: #191c1f;
}
.scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.scene-bp {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}
.scene-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  margin-left: -1px;
  background: var(--accent);
  pointer-events: none;
}
.divider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border: 2px solid var(--ink);
  transform: translate(-50%, -50%) rotate(45deg);
}
.divider-read {
  position: absolute;
  bottom: 10px;
  left: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  background: var(--accent);
  padding: .1rem .4rem;
  white-space: nowrap;
}

.bp-room {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 3px;
  fill: #e8e6df;
}
.bp-dim {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  fill: #f2b90d;
  font-variant-numeric: tabular-nums;
}
.bp-meta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  fill: #7d858c;
}
@media (max-width: 520px) {
  .bp-dim, .bp-meta { display: none; }
  .bp-room { font-size: 30px; }
}

/* slider control styled as a dimension line */
.scene-ctl {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 1.4rem;
}
/* dimension-line end ticks around the slider */
.scene-ctl::before, .scene-ctl::after {
  content: "";
  flex: none;
  width: 2px;
  height: 16px;
  background: var(--accent);
  transform: skewX(-20deg);
}
.scene-ctl::before { order: 1; }
#wipe { order: 2; }
.scene-ctl::after { order: 3; }
.scene-end { order: 0; }
.scene-end-r { order: 4; }
.scene-end {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #a8adb2;
  line-height: 1.35;
  flex: none;
}
.scene-end-r { text-align: right; }

input[type="range"]#wipe {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  min-width: 0;
  height: 30px;
  background: transparent;
  cursor: ew-resize;
}
#wipe::-webkit-slider-runnable-track {
  height: 2px;
  background: var(--accent);
}
#wipe::-moz-range-track {
  height: 2px;
  background: var(--accent);
}
#wipe::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -8px;
  background: var(--accent);
  border: 2px solid var(--graphite);
  border-radius: 0;
  transform: rotate(45deg);
  box-shadow: 0 0 0 2px var(--accent);
}
#wipe::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: var(--accent);
  border: 2px solid var(--graphite);
  border-radius: 0;
  transform: rotate(45deg);
  box-shadow: 0 0 0 2px var(--accent);
}
#wipe:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.scene-hint {
  margin-top: .7rem;
  text-align: center;
  font-size: .82rem;
  color: #8d9299;
}

/* ---------- Cum lucrăm ---------- */
.proc-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.proc-grid .sec-head { position: sticky; top: 6rem; }
.btn-proc { margin-top: 1.8rem; }

.stages {
  list-style: none;
  padding: 0;
  counter-reset: stage;
  border-left: 2px solid var(--ink);
}
.stage {
  position: relative;
  padding: 0 0 clamp(2rem, 4vw, 2.8rem) clamp(1.6rem, 3.5vw, 2.6rem);
}
.stage:last-child { padding-bottom: 0; }
.stage-mark {
  position: absolute;
  left: -9px;
  top: .35rem;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 14px solid var(--accent);
  filter: drop-shadow(0 1.5px 0 var(--ink));
}
.stage-num {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-variant-numeric: tabular-nums;
}
.stage h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  letter-spacing: .015em;
  text-transform: uppercase;
  margin-top: .3rem;
}
.stage > p:not(.stage-num):not(.stage-doc) {
  margin-top: .55rem;
  color: var(--ink-soft);
  font-size: .98rem;
  max-width: 34rem;
}
.stage-doc {
  margin-top: .9rem;
  font-size: .9rem;
  max-width: 34rem;
  border: 1.5px solid var(--ink);
  border-left: 6px solid var(--accent);
  background: var(--paper);
  padding: .65rem .9rem;
}
.stage-doc strong { letter-spacing: .02em; }

@media (max-width: 900px) {
  .proc-grid { grid-template-columns: 1fr; }
  .proc-grid .sec-head { position: static; }
}

/* ---------- FAQ ---------- */
.faq {
  margin-top: clamp(2.2rem, 5vw, 3.5rem);
  border-top: 2px solid var(--ink);
}
.faq details { border-bottom: 2px solid var(--ink); }
.faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  padding: 1.2rem .2rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: color-mix(in srgb, var(--accent) 12%, transparent); }
.faq-x {
  position: relative;
  flex: none;
  width: 1.1rem;
  height: 1.1rem;
}
.faq-x::before, .faq-x::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-deep);
  transform: translateY(-50%);
  transition: transform .3s var(--ease-out);
}
.faq-x::after { transform: translateY(-50%) rotate(90deg); }
.faq details[open] .faq-x::after { transform: translateY(-50%) rotate(0deg); }
.faq-a {
  padding: 0 .2rem 1.4rem;
  max-width: 44rem;
  color: var(--ink-soft);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--accent);
  border-block: 3px solid var(--ink);
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 5.4vw, 4rem);
  line-height: 1.06;
  letter-spacing: .01em;
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 34rem;
}
.cta-side { display: flex; flex-direction: column; gap: .7rem; }
.cta-side .btn-dark { font-size: 1.25rem; padding: 1.05rem 2.2rem; }
.cta-note-dark {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: #5d4a06;
}

/* ---------- Footer ---------- */
.site-foot {
  background: var(--graphite);
  color: #c9cdd1;
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr);
  gap: 2.5rem;
  padding-bottom: 2.8rem;
}
.foot-brand .brand-mark { width: 2.4rem; height: 2.4rem; }
.foot-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--bp-line);
  margin-top: .9rem;
}
.foot-tag { font-size: .92rem; max-width: 22rem; margin-top: .4rem; }
.foot-nav { display: grid; gap: .55rem; align-content: start; }
.foot-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  width: fit-content;
  border-bottom: 2px solid transparent;
}
.foot-nav a:hover { border-bottom-color: var(--accent); }
.foot-contact { display: grid; gap: .45rem; align-content: start; font-size: .95rem; }
.foot-contact a { font-weight: 700; color: var(--accent); text-decoration: none; }
.foot-contact a:hover { text-decoration: underline; }
.foot-dim { color: #8d9299; font-size: .85rem; }

.foot-legal {
  border-top: 1px solid #3a4046;
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 2rem;
  justify-content: space-between;
  font-size: .85rem;
  color: #8d9299;
}
.foot-legal a { color: var(--accent); }

@media (max-width: 800px) {
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Small screens ---------- */
@media (max-width: 560px) {
  .eyebrow .tick { display: none; }
}
@media (max-width: 480px) {
  .hero-cta .btn { flex: 1 1 100%; }
  .cta-side { width: 100%; }
  .cta-side .btn-dark { width: 100%; }
  .scene-end { display: none; }
}
