/* =========================================================================
   RuizBuilt Remodeling LLC — site styles
   Brand: navy #01306F · red #F74040 · white #FFFFFF
   Display font: Cinzel (700/900)  ·  Text font: Mulish (400–800)
   ========================================================================= */

:root {
  --navy: #01306f;
  --navy-900: #001b44;
  --navy-700: #073a80;
  --navy-100: #e8eef7;
  --red: #f74040;
  --red-700: #d92d2d;
  --ink: #14213d;
  --muted: #5b6577;
  --paper: #f7f5f1;
  --paper-2: #efece5;
  --white: #ffffff;
  --line: #e2ddd3;

  --shadow-sm: 0 1px 2px rgba(1, 27, 68, .08), 0 2px 8px rgba(1, 27, 68, .06);
  --shadow-md: 0 10px 30px rgba(1, 27, 68, .12);
  --shadow-lg: 0 24px 60px rgba(1, 27, 68, .18);

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);

  --font-display: "Cinzel", Georgia, "Times New Roman", serif;
  --font-text: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; color: var(--navy); margin: 0 0 .5em; letter-spacing: .01em; }
h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 4px; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 120px); }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy); color: #dfe7f4; }
.section--navy h2, .section--navy h3 { color: #fff; }
.eyebrow {
  font-family: var(--font-text);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  color: var(--red-700);
  margin: 0 0 .9rem;
}
.section--navy .eyebrow { color: #ff8a8a; }
.section-head { max-width: 62ch; margin-bottom: clamp(28px, 5vw, 56px); }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section--navy .section-head p { color: #b9c6de; }
.center { text-align: center; margin-inline: auto; }

/* ---------- subtle photo washes ---------- */
/* A faint construction/remodel photo layered behind a section's colour.
   Plain opacity + a colour overlay (no blend modes / masks) so it renders
   identically in every browser. Keep it low so it reads as texture. */
.has-photo { position: relative; overflow: hidden; }
.has-photo > .container { position: relative; z-index: 3; }
.bg-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none; user-select: none;
}
.has-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.section--paper.has-photo .bg-photo { opacity: .10; }
.section--paper.has-photo::after { background: rgba(247, 245, 241, .82); }

.section.has-photo:not(.section--paper):not(.section--navy):not(.cta-band) .bg-photo { opacity: .07; }
.section.has-photo:not(.section--paper):not(.section--navy):not(.cta-band)::after { background: rgba(255, 255, 255, .88); }

.section--navy.has-photo .bg-photo { opacity: .28; }
.section--navy.has-photo::after {
  background: linear-gradient(150deg, rgba(1, 27, 68, .84) 0%, rgba(1, 48, 111, .78) 100%);
}

/* ---------- buttons ---------- */
.btn {
  --bg: var(--red);
  --fg: #fff;
  display: inline-flex; align-items: center; gap: .55em;
  padding: .95em 1.5em;
  background: var(--bg); color: var(--fg);
  font-weight: 800; font-size: .98rem; letter-spacing: .02em;
  border: 2px solid transparent; border-radius: 999px;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 6px 18px rgba(247, 64, 64, .28);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(247, 64, 64, .34); }
.btn:active { transform: translateY(0); }
.btn--navy { --bg: var(--navy); box-shadow: 0 6px 18px rgba(1, 48, 111, .3); }
.btn--navy:hover { box-shadow: 0 12px 26px rgba(1, 48, 111, .38); }
.btn--ghost {
  --bg: transparent; --fg: var(--navy);
  border-color: var(--navy); box-shadow: none;
}
.btn--ghost:hover { background: var(--navy); --fg: #fff; }
.btn--light { --bg: #fff; --fg: var(--navy); box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.btn--wa { --bg: #25d366; --fg: #05391b; box-shadow: 0 6px 18px rgba(37, 211, 102, .32); }
.btn--wa:hover { box-shadow: 0 12px 26px rgba(37, 211, 102, .4); }
.btn--lg { padding: 1.1em 1.9em; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand__type { display: none; }
.nav { display: none; }
.nav a {
  font-weight: 700; font-size: .95rem; color: var(--ink);
  padding: .4em 0; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--red); transition: right .2s ease;
}
.nav a:hover { text-decoration: none; }
.nav a:hover::after { right: 0; }
.header-cta { display: none; align-items: center; gap: 14px; }
.header-cta .tel { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.05rem; white-space: nowrap; }
.header-cta .tel span { display: block; font-family: var(--font-text); font-weight: 700; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: var(--navy); border: 0; border-radius: 10px;
  padding: 12px 11px; cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2.5px; background: #fff; border-radius: 2px; transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 14px var(--gutter) 26px;
  background: #fff;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 14px 4px; font-weight: 800; font-size: 1.05rem;
  border-bottom: 1px solid var(--line); color: var(--ink);
}
.mobile-nav a:hover { text-decoration: none; color: var(--navy); }
.mobile-nav .btn-row { margin-top: 18px; }
.mobile-nav .btn { flex: 1 1 100%; justify-content: center; }

@media (min-width: 600px) {
  .brand__type { display: block; line-height: 1; }
  .brand__type b { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.05rem; letter-spacing: .04em; }
  .brand__type i { font-style: normal; display: block; font-weight: 800; font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--red-700); margin-top: 3px; }
}
@media (min-width: 940px) {
  .nav { display: flex; gap: 30px; }
  .nav-toggle, .mobile-nav { display: none !important; }
  .header-cta { display: flex; }
}
@media (min-width: 1120px) {
  .header-cta .tel { font-size: 1.15rem; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy) 62%, var(--navy-700) 100%);
  color: #eaf0fb;
}
.hero__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none; opacity: .6;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(150deg, rgba(0, 18, 48, .88) 0%, rgba(1, 40, 92, .74) 50%, rgba(1, 48, 111, .58) 100%),
    radial-gradient(120% 80% at 12% 28%, rgba(0, 18, 48, .6) 0%, transparent 68%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(120% 90% at 78% 12%, #000 0%, transparent 72%);
  pointer-events: none;
}
.hero__roof {
  position: absolute; right: -70px; top: 20px; width: min(38vw, 460px);
  color: rgba(247, 64, 64, .22); pointer-events: none; z-index: 2;
}
.hero__inner {
  position: relative; z-index: 3;
  display: grid; gap: 40px;
  padding-block: clamp(56px, 10vw, 116px);
  grid-template-columns: 1fr;
}
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 .accent { color: var(--red); }
.hero__lead { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: #c6d2e8; max-width: 54ch; }
.hero .btn-row { margin-top: 30px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 12px 14px; margin-top: 34px; padding: 0; list-style: none; }
.hero__chips li {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  padding: 9px 15px; border-radius: 999px; font-weight: 700; font-size: .86rem; color: #eaf0fb;
}
.hero__chips svg { width: 16px; height: 16px; color: var(--red); flex: none; }

.hero__card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 34px);
  backdrop-filter: blur(4px);
}
.hero__card h2 { color: #fff; font-size: 1.35rem; margin-bottom: .2em; }
.hero__card p { color: #bccbe6; font-size: .96rem; }
.hero__card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.hero__card .fineprint { font-size: .8rem; color: #93a6c6; margin: 14px 0 0; }
.hero__card .divider { height: 1px; background: rgba(255,255,255,.14); margin: 18px 0; }

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.35fr .9fr; align-items: center; gap: 56px; }
}

/* ---------- logo strip / trust ---------- */
.trustbar { background: var(--navy-900); color: #cdd9ef; }
.trustbar .container {
  display: flex; flex-wrap: wrap; gap: 14px 34px; align-items: center; justify-content: center;
  padding-block: 20px; text-align: center;
}
.trustbar b { color: #fff; font-family: var(--font-display); }
.trustbar .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); display: inline-block; }

/* ---------- services ---------- */
.card-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.service {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #cfd8e8; }
.service:hover .service__media img { transform: scale(1.05); }
.service::before {
  content: ""; position: absolute; top: -26px; right: -26px; width: 60px; height: 60px;
  background: var(--red); transform: rotate(45deg); opacity: .16; z-index: 2;
}
.service__media {
  position: relative; margin: -30px -26px 22px; height: 168px; overflow: hidden;
  background: var(--navy-900);
}
.service__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.service__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(1, 27, 68, .12) 0%, rgba(1, 27, 68, 0) 35%, rgba(1, 27, 68, .18) 100%);
}
.service__icon {
  width: 54px; height: 54px; border-radius: 13px;
  display: grid; place-items: center; margin: -46px 0 16px; position: relative; z-index: 2;
  background: #fff; color: var(--navy);
  box-shadow: 0 6px 16px rgba(1, 27, 68, .16); border: 1px solid var(--line);
}
.service__icon svg { width: 28px; height: 28px; }
.service h3 { margin-bottom: .35em; }
.service p { color: var(--muted); font-size: .96rem; margin: 0; }
.service ul { margin: 14px 0 0; padding: 0; list-style: none; font-size: .9rem; color: var(--muted); }
.service ul li { padding-left: 18px; position: relative; margin-bottom: 4px; }
.service ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; background: var(--red); border-radius: 2px; }

/* ---------- split feature ---------- */
.split { display: grid; gap: clamp(30px, 5vw, 64px); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 1fr; } .split--rev > *:first-child { order: 2; } }
.feature-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 14px; }
.feature-list .fl-ico {
  flex: none; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: var(--red); color: #fff;
}
.feature-list .fl-ico svg { width: 22px; height: 22px; }
.feature-list h3 { font-size: 1.08rem; margin: 2px 0 4px; }
.feature-list p { margin: 0; color: var(--muted); font-size: .95rem; }
.section--navy .feature-list p { color: #b9c6de; }

.frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; isolation: isolate;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-900) 100%);
  aspect-ratio: 4 / 3; display: grid; place-items: center; padding: 30px;
  border: 1px solid rgba(255,255,255,.12);
}
.frame__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; opacity: .85; pointer-events: none;
}
.frame::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(150deg, rgba(1, 48, 111, .58) 0%, rgba(0, 27, 68, .72) 100%);
}
.frame__roof { position: relative; z-index: 2; width: 62%; color: rgba(247, 64, 64, .6); }
.frame__badge { z-index: 2; }
.frame__badge {
  position: absolute; left: 22px; bottom: 22px;
  background: #fff; color: var(--navy); border-radius: 12px;
  padding: 12px 16px; box-shadow: var(--shadow-md);
  font-family: var(--font-display); font-weight: 700; line-height: 1;
}
.frame__badge span { display: block; font-family: var(--font-text); font-weight: 800; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--red-700); margin-top: 5px; }

/* ---------- process ---------- */
.steps { counter-reset: step; display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; box-shadow: var(--shadow-sm); }
.step__n { font-family: var(--font-display); font-weight: 900; font-size: 2.6rem; color: var(--red); opacity: .28; line-height: 1; }
.step h3 { margin: 6px 0 .3em; }
.step p { margin: 0; color: var(--muted); font-size: .94rem; }

/* ---------- about ---------- */
.about-portrait {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 1/1; background: var(--navy-900); margin: 0;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 45% 42%; display: block; }
.about-portrait figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 20px 16px; color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; line-height: 1.2;
  background: linear-gradient(180deg, rgba(1, 27, 68, 0) 0%, rgba(0, 20, 52, .82) 100%);
}
.about-portrait figcaption span {
  display: block; margin-top: 4px; font-family: var(--font-text); font-weight: 800;
  font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: #ff9a9a;
}
.stat-row { display: flex; flex-wrap: wrap; gap: 28px 40px; margin-top: 26px; }
.stat b { font-family: var(--font-display); font-weight: 900; font-size: 2rem; color: var(--navy); display: block; line-height: 1; }
.stat span { font-size: .85rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ---------- gallery ---------- */
.gallery { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.gallery figure {
  position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1/1; background: var(--navy-900); box-shadow: var(--shadow-sm);
}
.gallery figure img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.gallery figure::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(1, 27, 68, 0) 45%, rgba(1, 27, 68, .62) 100%);
}
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; left: 12px; bottom: 10px; z-index: 1;
  color: #fff; font-weight: 800; font-size: .78rem; letter-spacing: .04em;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line); border-radius: 12px; background: #fff;
  padding: 4px 20px; margin-bottom: 12px; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 34px 18px 0; position: relative;
  font-family: var(--font-text); font-weight: 800; color: var(--navy); font-size: 1.02rem; letter-spacing: .01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-text); font-weight: 800; font-size: 1.5rem; color: var(--red);
}
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq p { margin: 14px 0 18px; color: var(--muted); font-size: .97rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; isolation: isolate; background: linear-gradient(150deg, var(--navy) 0%, var(--navy-900) 100%); color: #eaf0fb; text-align: center; }
.cta-band.has-photo .bg-photo { opacity: .16; }
.cta-band.has-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(150deg, rgba(1, 33, 78, .93) 0%, rgba(0, 20, 52, .93) 100%);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #bccbe6; max-width: 52ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 26px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.contact-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-line:last-child { margin-bottom: 0; }
.contact-line .ci { flex: none; width: 44px; height: 44px; border-radius: 11px; background: var(--navy-100); color: var(--navy); display: grid; place-items: center; }
.contact-line .ci svg { width: 22px; height: 22px; }
.contact-line b { display: block; font-family: var(--font-display); color: var(--navy); font-size: 1.1rem; }
.contact-line span { font-size: .9rem; color: var(--muted); }
.contact-line a { font-weight: 700; }

form .field { margin-bottom: 16px; }
form label { display: block; font-weight: 700; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
form input, form select, form textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; font-size: .98rem; color: var(--ink); background: var(--paper);
}
form input:focus, form select:focus, form textarea:focus { outline: 3px solid var(--red); outline-offset: 1px; background: #fff; }
form textarea { min-height: 120px; resize: vertical; }
form .btn { width: 100%; justify-content: center; margin-top: 4px; }
form .consent { font-size: .8rem; color: var(--muted); margin-top: 12px; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-900); color: #a9b8d6; }
.site-footer .container { padding-block: clamp(46px, 7vw, 72px); }
.footer-grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.site-footer img.f-logo { height: 58px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .95; }
.site-footer p { font-size: .92rem; color: #9db0d2; }
.site-footer h4 { font-family: var(--font-text); font-weight: 800; text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; color: #fff; margin: 0 0 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { color: #b9c7e2; font-size: .93rem; }
.site-footer ul a:hover { color: #fff; }
.site-footer .f-contact a { color: #fff; font-weight: 700; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 40px; padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center;
  font-size: .82rem; color: #8ea3c6;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-bottom nav a { color: #8ea3c6; }
.footer-bottom nav a:hover { color: #fff; }

/* ---------- floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
  color: #fff;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { text-decoration: none; transform: translateY(-2px); }
@media (min-width: 940px) { .wa-float { width: 62px; height: 62px; right: 26px; bottom: 26px; } }

/* ---------- legal pages ---------- */
.legal { padding-block: clamp(46px, 8vw, 90px); }
.legal .container { max-width: 860px; }
.legal h1 { margin-bottom: .2em; }
.legal .updated { color: var(--muted); font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 34px; }
.legal h2 { font-size: 1.35rem; margin-top: 2em; }
.legal h3 { font-size: 1.08rem; margin-top: 1.6em; }
.legal p, .legal li { color: #38425a; font-size: 1rem; }
.legal ul, .legal ol { padding-left: 1.3em; }
.legal li { margin-bottom: .5em; }
.legal .toc { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 40px; }
.legal .toc h2 { margin: 0 0 12px; font-size: 1rem; text-transform: uppercase; letter-spacing: .12em; }
.legal .toc ol { margin: 0; }
.legal .callout { background: var(--navy-100); border-left: 4px solid var(--navy); padding: 16px 20px; border-radius: 8px; font-size: .95rem; }

/* ---------- misc ---------- */
.skip-link {
  position: absolute; left: -999px; top: 8px; background: #fff; color: var(--navy);
  padding: 10px 16px; border-radius: 8px; font-weight: 800; z-index: 200;
}
.skip-link:focus { left: 8px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
