@import url("fonts.css");

/* ------------------------------------------------------------------
   Ghidul Tău – Pas cu Pas
   Paleta vine din flyer: bleumarin adânc, nisip cald, crem și alb.
   ------------------------------------------------------------------ */

:root {
  --navy-900: #0b2540;
  --navy-800: #0f3255;
  --navy: #14406b;
  --navy-600: #1c5688;
  --sand: #c0a06a;
  --sand-600: #a8874f;
  --sand-100: #ece0c9;
  --cream: #faf5ec;
  --ice: #eaf1f8;
  --ink: #16222e;
  --muted: #56687a;
  --white: #ffffff;
  --line: rgba(20, 64, 107, 0.14);
  --line-soft: rgba(20, 64, 107, 0.08);

  --shadow-sm: 0 1px 2px rgba(11, 37, 64, 0.06), 0 2px 8px rgba(11, 37, 64, 0.05);
  --shadow-md: 0 2px 6px rgba(11, 37, 64, 0.07), 0 12px 32px rgba(11, 37, 64, 0.09);
  --shadow-lg: 0 8px 20px rgba(11, 37, 64, 0.1), 0 28px 60px rgba(11, 37, 64, 0.14);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-script: "Caveat", "Segoe Script", cursive;

  --wrap: 1140px;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--navy-900);
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); letter-spacing: -0.01em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy); }

:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 100;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip:focus { left: 0; }

/* ---------- brand mark ---------- */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: grid; line-height: 1; }
.brand__name {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-900);
}
.brand__script {
  font-family: var(--font-script);
  font-size: 1.45rem;
  color: var(--sand-600);
  margin-top: 0.1rem;
}

/* ---------- header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.5rem;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.6vw, 1.6rem);
}
.nav a {
  color: var(--navy-800);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav a:hover,
.nav a[aria-current="page"] { border-bottom-color: var(--sand); }
.nav .btn { border-bottom: 0; }

.nav__toggle {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--ice);
  border: 1px solid var(--line);
  color: var(--navy-900);
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 4.5rem 0 auto;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.25rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 1.05rem;
  }
  .nav .btn { margin-top: 0.9rem; justify-content: center; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn--primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--navy-800); color: #fff; box-shadow: var(--shadow-md); }

.btn--wa { background: #1fa855; color: #fff; box-shadow: var(--shadow-sm); }
.btn--wa:hover { background: #17904a; color: #fff; box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--navy-800); border-color: var(--line); }
.btn--ghost:hover { background: var(--ice); color: var(--navy-900); }

.btn--light { background: #fff; color: var(--navy-900); }
.btn--light:hover { background: var(--cream); color: var(--navy-900); }

.btn--outline-light { border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

.btn--lg { padding: 0.95rem 1.6rem; font-size: 1.03rem; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(192, 160, 106, 0.28) 0%, transparent 55%),
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 60%, #08203a 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 60px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.06), transparent);
  pointer-events: none;
}
.hero__skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: clamp(70px, 12vw, 130px);
  fill: rgba(236, 224, 201, 0.09);
  pointer-events: none;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

.hero__inner {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero h1 { color: #fff; }
.hero__eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-100);
  margin-bottom: 1.1rem;
}
.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 34em;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.9rem;
}
.hero__note {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--sand-100);
  margin-top: 1.9rem;
  max-width: 20ch;
  line-height: 1.35;
}

.hero__inner > * { min-width: 0; }

.signposts {
  display: grid;
  gap: 0.7rem;
  justify-items: end;
  min-width: 0;
}
.signpost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(180deg, #8a6a3f 0%, #6f5231 100%);
  color: #fff5e4;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 0.7rem 1.6rem 0.7rem 1.1rem;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
}
.signpost:nth-child(2) { margin-right: 1.6rem; }
.signpost:nth-child(3) { margin-right: 0.6rem; }
.signpost:nth-child(4) { margin-right: 2.4rem; }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .signposts {
    justify-items: start;
    order: -1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 100%;
  }
  .signpost { margin: 0 !important; }
}

.badges {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: clamp(1.6rem, 3vw, 2.2rem);
}
.badge { display: flex; gap: 0.9rem; align-items: flex-start; }
.badge__icon {
  width: 2.6rem;
  height: 2.6rem;
  flex: none;
  border-radius: 999px;
  background: rgba(236, 224, 201, 0.16);
  display: grid;
  place-items: center;
  color: var(--sand-100);
}
.badge__icon svg { width: 1.35rem; height: 1.35rem; }
.badge strong { display: block; color: #fff; font-size: 1rem; }
.badge span { color: rgba(255, 255, 255, 0.72); font-size: 0.93rem; line-height: 1.45; }

@media (max-width: 760px) {
  .badges { grid-template-columns: 1fr; gap: 1.1rem; }
}

/* ---------- sections ---------- */

.section { padding-block: var(--section-y); }
.section--flush { padding-top: 0; }
.section--cream { background: var(--cream); }
.section--ice { background: var(--ice); }
.section--navy { background: var(--navy-900); color: rgba(255, 255, 255, 0.85); }
.section--navy h2, .section--navy h3 { color: #fff; }

.section__head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-600);
  margin-bottom: 0.7rem;
}
.section--navy .eyebrow { color: var(--sand-100); }
.section__lead { font-size: 1.1rem; color: var(--muted); }
.section--navy .section__lead { color: rgba(255, 255, 255, 0.75); }

/* ---------- service cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(192, 160, 106, 0.5);
}
.card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: var(--ice);
  color: var(--navy);
}
.card:nth-child(3n + 2) .card__icon { background: var(--sand-100); color: var(--sand-600); }
.card__icon svg { width: 1.5rem; height: 1.5rem; }
.card h3 { margin-bottom: 0.45rem; }
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.card__short { color: var(--muted); font-size: 0.97rem; margin-bottom: 1rem; }
.card ul {
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}
.card li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.card li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--sand);
}
.card__more {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-600);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.card__more::after { content: "→"; transition: transform 0.15s ease; }
.card:hover .card__more::after { transform: translateX(3px); }

/* ---------- steps ---------- */

.steps { display: grid; gap: 0; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1.25rem;
  padding-bottom: 2rem;
  position: relative;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  counter-increment: step;
  content: counter(step);
  grid-row: 1 / span 2;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--sand);
  color: var(--navy-900);
  font-weight: 800;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  z-index: 1;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.6rem;
  top: 3.25rem;
  bottom: 0.35rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--sand), rgba(192, 160, 106, 0.25));
}
.step h3 { margin-bottom: 0.25rem; padding-top: 0.55rem; }
.step p { color: var(--muted); }

@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
  .step { grid-template-columns: 1fr; padding-bottom: 0; }
  .step::before { grid-row: auto; margin-bottom: 1rem; }
  .step:not(:last-child)::after {
    left: 3.6rem;
    right: -1.5rem;
    top: 1.6rem;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(to right, var(--sand), rgba(192, 160, 106, 0.25));
  }
  .step h3 { padding-top: 0; }
}

/* ---------- about ---------- */

.about {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about__quote {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.about__quote::before {
  content: "";
  position: absolute;
  inset: auto -30% -45% auto;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(192, 160, 106, 0.35), transparent 65%);
}
.about__quote p {
  position: relative;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.about__quote span {
  position: relative;
  display: block;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--sand-100);
  text-transform: none;
  font-weight: 600;
}
@media (max-width: 860px) { .about { grid-template-columns: 1fr; } }

/* ---------- important / checks ---------- */

.checks { display: grid; gap: 0.9rem; margin: 0; padding: 0; list-style: none; }
.checks li { display: flex; gap: 0.85rem; align-items: flex-start; }
.checks svg { width: 1.4rem; height: 1.4rem; flex: none; color: var(--sand); margin-top: 0.15rem; }

.note-script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: var(--sand-100);
  margin-top: 2rem;
}
.section--cream .note-script { color: var(--sand-600); }

/* ---------- faq ---------- */

.faq { display: grid; gap: 0.75rem; max-width: 52rem; }
.faq details {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq details[open] { border-color: rgba(192, 160, 106, 0.5); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 3rem 1.05rem 1.3rem;
  font-weight: 700;
  color: var(--navy-900);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 1.3rem;
  top: 1.45rem;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid var(--sand-600);
  border-bottom: 2px solid var(--sand-600);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq p { padding: 0 1.3rem 1.25rem; color: var(--muted); }

/* ---------- contact ---------- */

.contact {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

.contact__list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 1rem; }
.contact__list a,
.contact__list span { display: flex; gap: 0.9rem; align-items: center; text-decoration: none; color: inherit; font-weight: 600; }
.contact__list span { font-weight: 500; color: rgba(255, 255, 255, 0.75); }
.contact__list svg { width: 1.25rem; height: 1.25rem; color: var(--sand); flex: none; }
.contact__list a:hover { color: var(--sand-100); }
.contact__cta { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

.form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-lg);
}
.form h3 { margin-bottom: 1.25rem; }
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 0.35rem;
}
.field .opt { font-weight: 500; color: var(--muted); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(28, 86, 136, 0.14);
  outline: none;
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field--row { grid-template-columns: 1fr; } }

.consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.9rem; color: var(--muted); margin: 1.1rem 0 1.4rem; }
.consent input { width: 1.15rem; height: 1.15rem; margin-top: 0.15rem; flex: none; accent-color: var(--navy); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__note { font-size: 0.85rem; color: var(--muted); margin-top: 1rem; }
.form__status {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  display: none;
}
.form__status[data-state="ok"] { display: block; background: #e7f6ec; color: #14602f; border: 1px solid #b7e0c4; }
.form__status[data-state="error"] { display: block; background: #fdeceb; color: #8f2820; border: 1px solid #f4c3bf; }
.form__status[data-state="sending"] { display: block; background: var(--ice); color: var(--navy-800); border: 1px solid var(--line); }

/* ---------- service page ---------- */

.pagehead {
  background:
    radial-gradient(110% 120% at 90% 0%, rgba(192, 160, 106, 0.25) 0%, transparent 55%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: #fff;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.pagehead h1 { color: #fff; margin-bottom: 0.6rem; }
.pagehead p { color: rgba(255, 255, 255, 0.8); max-width: 46rem; font-size: 1.08rem; }
.crumbs { font-size: 0.88rem; color: rgba(255, 255, 255, 0.65); margin-bottom: 1.2rem; }
.crumbs a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }

.layout {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) 20rem;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 940px) { .layout { grid-template-columns: 1fr; } }

.prose { max-width: 44rem; }
.prose h2 { margin-top: 2.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 0; list-style: none; display: grid; gap: 0.7rem; margin: 0 0 1.5rem; }
.prose ul li { position: relative; padding-left: 1.9rem; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.75rem;
  height: 0.4rem;
  border-left: 2px solid var(--sand);
  border-bottom: 2px solid var(--sand);
  transform: rotate(-45deg);
}
.lead { font-size: 1.12rem; color: var(--muted); }

.aside {
  position: sticky;
  top: 6rem;
  background: var(--cream);
  border: 1px solid var(--sand-100);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}
.aside h3 { font-size: 1.15rem; }
.aside p { color: var(--muted); font-size: 0.97rem; }
.aside .btn { width: 100%; justify-content: center; margin-top: 0.6rem; }
.aside__list { list-style: none; margin: 1.2rem 0 0; padding: 1.2rem 0 0; border-top: 1px solid var(--sand-100); display: grid; gap: 0.55rem; }
.aside__list a { text-decoration: none; color: var(--navy-800); font-weight: 600; font-size: 0.95rem; }
.aside__list a:hover { color: var(--sand-600); }
.aside__list a[aria-current="page"] { color: var(--sand-600); }

.disclaimer {
  background: var(--ice);
  border-left: 4px solid var(--sand);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  font-size: 0.95rem;
  color: var(--navy-800);
  margin-top: 2.5rem;
}

/* ---------- cta band ---------- */

.band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-900) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}
.band h2 { color: #fff; margin-bottom: 0.35rem; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.band p { color: rgba(255, 255, 255, 0.78); margin: 0; }
.band__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- footer ---------- */

.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  font-size: 0.95rem;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 760px) { .footer__top { grid-template-columns: 1fr; gap: 1.6rem; } }
.footer .brand__name { color: #fff; }
.footer .brand__script { color: var(--sand-100); }
.footer h4 {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__tagline { margin-top: 1rem; max-width: 28ch; color: rgba(255, 255, 255, 0.6); }
.footer__bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer__line {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sand-100);
}

/* ---------- utils ---------- */

.stack-sm > * + * { margin-top: 0.75rem; }
.center { text-align: center; }
.mt-lg { margin-top: clamp(2rem, 4vw, 3rem); }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
