/* ==========================================================================
   Comodo Maintenance - South East Queensland Airbnb maintenance specialists
   Single stylesheet. No external fonts, no frameworks. Mobile first.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink:            #0f1b24;
  --ink-2:          #1c2c38;
  --slate:          #46606f;
  --slate-2:        #6b8494;
  --line:           #dde5ea;
  --line-2:         #eef3f6;
  --paper:          #ffffff;
  --paper-2:        #f5f8fa;
  --paper-3:        #eaf1f5;

  --brand:          #0d5c6b;
  --brand-dark:     #08424e;
  --brand-tint:     #e3f1f3;

  --amber:          #f0921f;
  --amber-dark:     #c9760e;
  --amber-tint:     #fdf1df;

  --green:          #1f7a4d;
  --red:            #b02c2c;

  --radius:         12px;
  --radius-lg:      20px;
  --radius-pill:    999px;

  --shadow-sm:      0 1px 2px rgba(15,27,36,.06), 0 1px 3px rgba(15,27,36,.06);
  --shadow:         0 4px 6px -1px rgba(15,27,36,.07), 0 10px 20px -6px rgba(15,27,36,.10);
  --shadow-lg:      0 12px 24px -8px rgba(15,27,36,.14), 0 30px 60px -20px rgba(15,27,36,.18);

  --wrap:           1160px;
  --wrap-narrow:    760px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;

  --step-fluid: clamp(1rem, 0.92rem + 0.4vw, 1.0625rem);
}

/* ---------- Reset / base ---------- */
*, *::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: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--step-fluid);
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
body { overflow-x: hidden; }

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 .6em;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 1.4rem + 2.9vw, 3.25rem); letter-spacing: -0.032em; }
h2 { font-size: clamp(1.55rem, 1.24rem + 1.5vw, 2.3rem); letter-spacing: -0.026em; }
h3 { font-size: clamp(1.16rem, 1.06rem + 0.5vw, 1.4rem); }
h4 { font-size: 1.02rem; }

p  { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

a { color: var(--brand); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--brand-dark); }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-radius: 4px;
}

strong { color: var(--ink); font-weight: 650; }

hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: clamp(3.25rem, 2.2rem + 4.4vw, 5.5rem); }
.section--tight { padding-block: clamp(2.5rem, 2rem + 2.4vw, 3.75rem); }
.section--paper2 { background: var(--paper-2); }
.section--ink { background: var(--ink); color: #c8d7e0; }
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--slate); font-size: 1.06em; margin-bottom: 0; }
.section--ink .section-head p { color: #9db3c0; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .85rem;
}
.section--ink .eyebrow { color: var(--amber); }

.grid { display: grid; gap: 1.25rem; }
@media (min-width: 700px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 700px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 620px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.split { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr .95fr; gap: 3.5rem; } }
@media (min-width: 900px) { .split--sticky > :last-child { position: sticky; top: 92px; } }

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .75rem 1.1rem;
  border-radius: 0 0 var(--radius) 0; font-weight: 600;
}
.skip:focus { left: 0; color: #fff; }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.hdr__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; flex-shrink: 0; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-weight: 750; font-size: 1.06rem; color: var(--ink); letter-spacing: -.02em;
}
.brand__tag {
  font-size: .66rem; font-weight: 600; letter-spacing: .085em;
  text-transform: uppercase; color: var(--slate-2);
}

.nav { display: none; }
@media (min-width: 950px) {
  .nav { display: flex; align-items: center; gap: .3rem; }
  .nav a {
    display: inline-block; padding: .5rem .7rem; border-radius: 8px;
    font-size: .95rem; font-weight: 550; color: var(--ink-2); text-decoration: none;
  }
  .nav a:hover { background: var(--paper-3); color: var(--ink); }
  .nav a[aria-current="page"] { color: var(--brand); font-weight: 650; }
}
/* Specificity note: .btn sets display:inline-flex later in this file, so these
   need the .hdr ancestor to win. Do not flatten to a bare .hdr__cta selector. */
.hdr .hdr__cta { display: none; }
@media (min-width: 620px) { .hdr .hdr__cta { display: inline-flex; } }

/* mobile nav */
.navtoggle {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: .55rem .8rem;
  font: inherit; font-size: .9rem; font-weight: 600; color: var(--ink);
  cursor: pointer;
}
@media (min-width: 950px) { .navtoggle { display: none; } }
.navtoggle svg { width: 18px; height: 18px; }

.mobilenav {
  display: none; border-top: 1px solid var(--line); background: var(--paper);
  /* padding-block only - .mobilenav also carries .wrap, and a padding shorthand
     here would wipe out the horizontal gutter that .wrap sets. */
  padding-block: .6rem 1rem;
}
.mobilenav.is-open { display: block; }
@media (min-width: 950px) { .mobilenav, .mobilenav.is-open { display: none; } }
.mobilenav a {
  display: block; padding: .72rem .25rem; font-weight: 600; color: var(--ink-2);
  text-decoration: none; border-bottom: 1px solid var(--line-2);
}
.mobilenav a:last-of-type { border-bottom: 0; }
.mobilenav .btn { margin-top: .9rem; width: 100%; justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: inherit; font-size: .97rem; font-weight: 650;
  text-decoration: none; cursor: pointer;
  transition: transform .12s ease, background-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
/* Icons inside buttons must be pinned - .btn--block is a flex container, and an
   unsized SVG child stretches to fill it. */
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--lg svg { width: 19px; height: 19px; }
.btn--primary { background: var(--amber); color: #23180a; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--amber-dark); color: #fff; }
.btn--brand { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn--brand:hover { background: var(--brand-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--paper-2); color: var(--ink); border-color: var(--slate-2); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--paper-3); color: var(--ink); }
.btn--lg { padding: 1rem 1.7rem; font-size: 1.03rem; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 420px at 12% -8%, rgba(240,146,31,.16), transparent 62%),
    radial-gradient(760px 400px at 92% 4%, rgba(13,92,107,.30), transparent 60%),
    linear-gradient(168deg, var(--ink) 0%, #12303c 58%, #0c2531 100%);
  color: #c7d8e1;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(760px 460px at 78% 12%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(760px 460px at 78% 12%, #000, transparent 72%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  padding-block: clamp(3rem, 2.2rem + 4vw, 5.5rem);
  display: grid; gap: 2.75rem;
}
@media (min-width: 980px) {
  .hero__inner { grid-template-columns: 1.08fr .92fr; align-items: center; gap: 3.5rem; }
}
.hero h1 { color: #fff; margin-bottom: .55em; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero__lede { font-size: clamp(1.06rem, 1rem + .5vw, 1.24rem); color: #a9c1cd; max-width: 34em; }

.hero__pill {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-pill);
  padding: .4rem .95rem .4rem .55rem;
  font-size: .82rem; font-weight: 600; color: #d5e5ec;
  margin-bottom: 1.5rem;
}
.hero__pill .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 0 4px rgba(240,146,31,.22);
}
.hero__points {
  list-style: none; margin: 1.75rem 0 2rem; padding: 0;
  display: grid; gap: .6rem;
}
.hero__points li {
  display: flex; gap: .65rem; align-items: flex-start;
  font-size: .98rem; color: #bed3dd;
}
.hero__points svg { width: 19px; height: 19px; flex: none; margin-top: 2px; color: var(--amber); }

/* hero form card */
.formcard {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 1rem + 1.5vw, 2rem);
  box-shadow: var(--shadow-lg);
  color: var(--ink-2);
}
.formcard h2 { font-size: 1.35rem; margin-bottom: .35em; }
.formcard__sub { font-size: .93rem; color: var(--slate); margin-bottom: 1.35rem; }

/* ---------- Forms ---------- */
.field { margin-bottom: 1rem; }
.field label {
  display: block; font-size: .87rem; font-weight: 650; color: var(--ink);
  margin-bottom: .38rem;
}
.field .req { color: var(--red); }
.field .hint { display: block; font-weight: 500; color: var(--slate-2); font-size: .8rem; margin-top: .3rem; }

input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
select, textarea {
  width: 100%;
  font: inherit; font-size: .97rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .68rem .8rem;
  transition: border-color .15s ease, box-shadow .15s ease;
  appearance: none;
}
textarea { min-height: 118px; resize: vertical; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2346606f'%3E%3Cpath d='M5.5 7.5 10 12l4.5-4.5'  stroke='%2346606f' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .7rem center; background-size: 18px;
  padding-right: 2.3rem;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(13,92,107,.14);
}
input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(176,44,44,.12);
}
.field__err { display: none; color: var(--red); font-size: .82rem; font-weight: 600; margin-top: .32rem; }
.field__err.is-shown { display: block; }

.field-row { display: grid; gap: 1rem; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.form-note { font-size: .8rem; color: var(--slate-2); margin-top: .9rem; line-height: 1.5; }

.form-status { display: none; border-radius: 10px; padding: .85rem 1rem; font-size: .92rem; margin-top: 1rem; }
.form-status.is-shown { display: block; }
.form-status--ok  { background: #e7f4ee; color: #12603a; border: 1px solid #b8e0cb; }
.form-status--err { background: #fbeaea; color: #8d2222; border: 1px solid #f0c4c4; }

/* Backstop: an inline <svg> dropped into running text with no sizing rule of its
   own would otherwise expand to fill its container. Every component that styles
   its own icons (.btn, .checklist, .card__icon, ...) overrides this later in the
   file. Never remove without checking for bare icons in headings/paragraphs. */
h1 > svg, h2 > svg, h3 > svg, h4 > svg, p > svg, td > svg, th > svg, summary > svg {
  width: 1.05em; height: 1.05em; vertical-align: -.14em; flex: none;
}

/* ---------- Cards ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.card--hover:hover { border-color: var(--slate-2); box-shadow: var(--shadow); transform: translateY(-2px); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--slate); font-size: .95rem; }
.card__icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--brand-tint); color: var(--brand);
  display: grid; place-items: center; margin-bottom: 1.1rem;
}
.card__icon svg { width: 23px; height: 23px; }
.card__icon--amber { background: var(--amber-tint); color: var(--amber-dark); }
.card__link {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: 1rem; font-size: .9rem; font-weight: 650; text-decoration: none;
}
.card__link svg { width: 15px; height: 15px; transition: transform .15s ease; }
.card--hover:hover .card__link svg { transform: translateX(3px); }

.card--flat { background: var(--paper-2); border-color: transparent; }

/* ---------- Trust bar ---------- */
.trust {
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
  padding-block: 1.15rem;
}
.trust__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .6rem 2rem; justify-content: center;
}
.trust__list li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .875rem; font-weight: 600; color: var(--slate);
}
.trust__list svg { width: 17px; height: 17px; color: var(--brand); flex: none; }

/* ---------- Stat strip ---------- */
.stats { display: grid; gap: 1.5rem; text-align: center; }
@media (min-width: 620px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat__n {
  font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.7rem);
  font-weight: 750; letter-spacing: -.03em; color: #fff; line-height: 1;
}
.stat__l { font-size: .87rem; color: #93aab8; margin-top: .5rem; }

/* ---------- Steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; counter-reset: s; }
@media (min-width: 760px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li {
  counter-increment: s;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 1.35rem; position: relative;
}
.steps li::before {
  content: counter(s);
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--ink); color: #fff;
  font-weight: 700; font-size: .95rem;
  margin-bottom: 1rem;
}
.steps h3 { font-size: 1.06rem; margin-bottom: .4rem; }
.steps p { font-size: .92rem; color: var(--slate); margin: 0; }

/* ---------- Checklist ---------- */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; font-size: .97rem; }
.checklist svg { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--green); }
.section--ink .checklist svg { color: var(--amber); }

/* ---------- Comparison table ---------- */
.tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 1px solid var(--line); }
table { border-collapse: collapse; width: 100%; min-width: 520px; font-size: .93rem; background: var(--paper); }
th, td { text-align: left; padding: .9rem 1.1rem; border-bottom: 1px solid var(--line-2); vertical-align: top; }
thead th { background: var(--paper-2); color: var(--ink); font-weight: 700; font-size: .86rem;
  letter-spacing: .02em; border-bottom: 1px solid var(--line); }
tbody tr:last-child td { border-bottom: 0; }
td strong { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .75rem; }
.faq details {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.faq details[open] { border-color: var(--slate-2); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.1rem 3rem 1.1rem 1.25rem;
  font-weight: 650; color: var(--ink); font-size: 1.02rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.25rem; top: 1.45rem;
  width: 10px; height: 10px;
  border-right: 2px solid var(--slate); border-bottom: 2px solid var(--slate);
  transform: rotate(45deg); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.65rem; }
.faq .faq__a { padding: 0 1.25rem 1.25rem; color: var(--slate); font-size: .96rem; }
.faq .faq__a p:first-child { margin-top: 0; }

/* ---------- Area list ---------- */
.suburbs {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.suburbs li {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: .38rem .85rem;
  font-size: .87rem; color: var(--slate); font-weight: 550;
}
.section--paper2 .suburbs li { background: #fff; }

/* ---------- Callout ---------- */
.callout {
  background: var(--brand-tint);
  border: 1px solid #c3e0e4;
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  font-size: .97rem;
}
.callout h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.callout h3 svg {
  width: 1.05em; height: 1.05em; vertical-align: -.14em;
  margin-right: .3rem; color: var(--brand);
}
.callout--amber h3 svg { color: var(--amber-dark); }
.callout--amber { background: var(--amber-tint); border-color: #f4dcb8; border-left-color: var(--amber); }

/* ---------- Prose (about / long copy) ---------- */
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 1.9rem; }
.prose > :first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1.2em; }
.prose li { margin-bottom: .45em; }
.prose .lede { font-size: 1.13em; color: var(--slate); }

/* ---------- Page header ---------- */
.pagehead {
  background: linear-gradient(170deg, var(--ink) 0%, #14313d 100%);
  color: #b5cbd6;
  padding-block: clamp(2.5rem, 2rem + 2.6vw, 4rem);
}
.pagehead h1 { color: #fff; max-width: 18ch; }
.pagehead p { color: #a1bac7; font-size: 1.08em; max-width: 60ch; margin-bottom: 0; }
.pagehead--wide h1 { max-width: 24ch; }

/* ---------- Breadcrumbs ---------- */
.crumbs { font-size: .82rem; margin-bottom: 1.1rem; color: #85a2b1; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.crumbs li::after { content: "/"; margin-left: .4rem; color: #5b7a89; }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: #b5cbd6; text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs [aria-current="page"] { color: #7e9dad; }

/* ---------- CTA band ---------- */
.ctaband {
  background: linear-gradient(150deg, var(--brand-dark) 0%, var(--brand) 100%);
  color: #d3ecf0;
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1.2rem + 2.4vw, 3rem);
  text-align: center;
}
.ctaband h2 { color: #fff; margin-bottom: .5em; }
.ctaband p { max-width: 52ch; margin-inline: auto; color: #bcdfe4; }
.ctaband .btn-row { justify-content: center; margin-top: 1.75rem; }

/* ---------- Footer ---------- */
.ftr { background: var(--ink); color: #8fa8b6; padding-block: 3.25rem 1.75rem; font-size: .92rem; }
.ftr a { color: #b9cdd8; text-decoration: none; }
.ftr a:hover { color: #fff; text-decoration: underline; }
.ftr__grid { display: grid; gap: 2.25rem; }
@media (min-width: 720px)  { .ftr__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .ftr__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.ftr h3 { color: #fff; font-size: .82rem; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 1rem; }
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.ftr .brand__name { color: #fff; }
.ftr .brand__tag { color: #7f97a5; }
.ftr__about { max-width: 34ch; margin-top: 1rem; line-height: 1.6; }
.ftr__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2.75rem; padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .84rem; color: #7a92a0;
}
.ftr__legal { display: flex; flex-wrap: wrap; gap: 1.2rem; }

/* ---------- Sticky mobile CTA ---------- */
.stickycta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(15,27,36,.96);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: .7rem 16px calc(.7rem + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: .85rem; justify-content: space-between;
}
.stickycta p { margin: 0; font-size: .82rem; color: #a8c0cd; line-height: 1.35; }
.stickycta strong { color: #fff; display: block; font-size: .93rem; }
@media (min-width: 700px) { .stickycta { display: none; } }
@media (max-width: 699px) { body { padding-bottom: 76px; } }

/* ---------- Address / NAP ---------- */
address { font-style: normal; }
.ftr__addr {
  margin-top: 1.1rem; font-size: .89rem; line-height: 1.75; color: #8fa8b6;
}
.ftr__addr a { word-break: break-word; }
.nap { font-size: 1rem; line-height: 1.7; color: var(--slate); }
.nap strong { color: var(--ink); }

/* ---------- Utility ---------- */
.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;
}
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.text-center { text-align: center; }
