/* =============================================================
   A-Z Shades — Design System & Global Styles
   Modern, responsive, accessible. No external CSS dependencies.
   ============================================================= */

:root {
  /* Brand palette — matched to azshades.com.au (sky-blue sail · orange Z · sun) */
  --navy: #1b2e38;        /* deep brand blue-slate (dark sections) */
  --navy-700: #27434f;
  --teal: #1f96c9;        /* primary brand blue (buttons, links, active) */
  --teal-600: #1a86b4;
  --teal-700: #15749d;
  --sky: #6ec1e4;         /* the exact logo sail blue */
  --sun: #f7941e;         /* the logo orange (energy / CTA accent) */
  --sun-600: #e8850f;
  --sun-700: #cc7409;

  /* Neutrals */
  --ink: #2a343b;         /* headings (brand grey, darkened for contrast) */
  --body: #6e7479;        /* body text (brand grey #7A7A7A) */
  --muted: #9aa1a6;
  --line: #e4eaef;
  --bg: #ffffff;
  --bg-soft: #f4f9fc;
  --bg-tint: #e8f4fb;     /* light sky tint */

  /* UI */
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(27, 46, 56, .06), 0 1px 3px rgba(27, 46, 56, .08);
  --shadow: 0 10px 30px -12px rgba(27, 46, 56, .22);
  --shadow-lg: 0 30px 60px -20px rgba(27, 46, 56, .32);
  --ring: 0 0 0 4px rgba(110, 193, 228, .5);

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 56px);

  --font-body: "Poppins", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Poppins", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, picture, video { display: block; max-width: 100%; height: auto; }
a { color: var(--teal-700); text-decoration: none; }
a:hover { color: var(--teal); }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 1.4rem + 3.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + 0.9vw, 1.5rem); }
p { color: var(--body); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(60px, 8vw, 110px); }
.section--soft { background: var(--bg-soft); }
.section--tint { background: linear-gradient(180deg, var(--bg-tint), #fff); }
.section--navy { background: var(--navy); color: #cfe0ea; }
.section--navy h2, .section--navy h3 { color: #fff; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--teal);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--sun); border-radius: 2px; }
.center .eyebrow::before { display: none; }
.section-head { max-width: 680px; margin-inline: auto; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head p { margin-top: 14px; font-size: 1.075rem; }
.lead { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem); color: var(--body); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--teal); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem; line-height: 1;
  background: var(--btn-bg); color: var(--btn-fg);
  box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .25s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn--sun { --btn-bg: var(--sun); --btn-fg: #25160a; }
.btn--sun:hover { background: var(--sun-600); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--line); box-shadow: none; }
.btn--ghost:hover { --btn-fg: var(--teal-700); border-color: var(--teal); background: var(--bg-tint); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--navy); }
.btn--outline-light { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.4); box-shadow: none; }
.btn--outline-light:hover { background: rgba(255,255,255,.12); }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.btn .ico { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar { background: var(--navy); color: #bcd3e0; font-size: .85rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar a { color: #dff0fa; font-weight: 600; }
.topbar a:hover { color: #fff; }
.topbar__left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item .ico { width: 15px; height: 15px; color: var(--sun); }
.topbar__badges { display: flex; gap: 16px; }
.topbar__badges span { display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 860px) { .topbar { display: none; } }

.navbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { height: 47px; width: auto; max-width: none; display: block; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  display: inline-flex; align-items: center; padding: 10px 14px; border-radius: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .96rem; color: var(--navy);
  transition: background .18s ease, color .18s ease;
}
.nav a:hover { background: var(--bg-tint); color: var(--teal-700); }
.nav a[aria-current="page"] { color: var(--teal-700); }
.nav a[aria-current="page"]::after { content: ""; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; align-items: center; justify-content: center; color: var(--navy);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .ico-close { display: none; }
body.nav-open .nav-toggle .ico-open { display: none; }
body.nav-open .nav-toggle .ico-close { display: block; }

@media (max-width: 1000px) {
  .nav, .nav-actions .btn--quote-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
    flex-direction: column; align-items: stretch; gap: 6px;
    background: #fff; padding: 92px 22px 32px; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); z-index: 70;
  }
  body.nav-open .nav { display: flex; transform: translateX(0); }
  .nav a { padding: 14px 16px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav .btn { margin-top: 14px; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(12,34,51,.5); opacity: 0; visibility: hidden;
    transition: opacity .3s ease; z-index: 65;
  }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(160deg, #1b2e38 0%, #1a5e7e 48%, #2a9fcf 120%); color: #eaf6fb; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 85% -10%, rgba(247,148,30,.30), transparent 55%),
    radial-gradient(90% 70% at 10% 110%, rgba(110,193,228,.28), transparent 60%);
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center;
  padding-block: clamp(56px, 8vw, 104px);
}
.hero__eyebrow { color: var(--sky); }
.hero__eyebrow::before { background: var(--sun); }
.hero h1 { color: #fff; margin-top: 18px; }
.hero h1 .hl { color: var(--sun); }
.hero__sub { margin-top: 20px; font-size: clamp(1.05rem, 1rem + 0.45vw, 1.25rem); color: #c6dded; max-width: 38ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 38px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); }
.hero__trust div { line-height: 1.2; }
.hero__trust b { display: block; font-family: var(--font-head); font-size: 1.6rem; color: #fff; }
.hero__trust span { font-size: .85rem; color: #a9c6d8; }
.hero__art { position: relative; }
.hero__art img { width: 100%; filter: drop-shadow(0 30px 50px rgba(0,0,0,.4)); }
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 460px; margin-inline: auto; }
  .hero__sub { max-width: none; }
}

/* ---------- Marquee / logos strip ---------- */
.assurance { background: var(--navy-700); color: #cfe0ea; border-top: 1px solid rgba(255,255,255,.08); }
.assurance .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px 30px; padding-block: 20px; }
.assurance__item { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: .92rem; font-family: var(--font-head); }
.assurance__item .ico { width: 20px; height: 20px; color: var(--sun); flex: none; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .3s ease, border-color .22s ease;
  overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #cfe0e6; }
.card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(140deg, var(--bg-tint), #fff); border: 1px solid var(--line); color: var(--teal);
}
.card__icon .ico { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; }
.card__link { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--teal-700); }
.card__link .ico { width: 16px; height: 16px; transition: transform .2s ease; }
.card:hover .card__link .ico { transform: translateX(4px); }

/* Sector cards with imagery band */
.sector {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .3s ease;
}
.sector:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.sector__media { aspect-ratio: 16/10; position: relative; display: grid; place-items: center; color: #fff; }
.sector__media svg { width: 100%; height: 100%; }
.sector__tag { position: absolute; top: 14px; left: 14px; background: rgba(12,34,51,.78); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.sector__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.sector__body p { font-size: .98rem; margin-bottom: 18px; }
.sector__list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.sector__list li { font-size: .8rem; font-weight: 600; color: var(--teal-700); background: var(--bg-tint); padding: 6px 12px; border-radius: 999px; }
.sector__body .card__link { margin-top: auto; }

/* ---------- Feature / Why us ---------- */
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature__icon { flex: none; width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; background: var(--teal); color: #fff; box-shadow: 0 8px 20px -8px rgba(14,116,144,.7); }
.feature__icon .ico { width: 24px; height: 24px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 6px; }
.feature p { font-size: .96rem; }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.split__media svg, .split__media img { width: 100%; height: 100%; object-fit: cover; }
.split ul.ticks { margin-top: 22px; display: grid; gap: 12px; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

.ticks li { display: flex; gap: 12px; align-items: flex-start; }
.ticks li .ico { flex: none; width: 22px; height: 22px; color: var(--teal); margin-top: 2px; }
.ticks li b { color: var(--ink); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 14px; }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(2.2rem, 1.6rem + 2vw, 3.1rem); color: #fff; line-height: 1; letter-spacing: -.03em; }
.stat span { display: block; margin-top: 8px; font-size: .92rem; color: #9fc0d3; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; } }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 30px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step__num { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--bg-tint); line-height: 1; -webkit-text-stroke: 1.5px var(--teal); }
.step h3 { font-size: 1.15rem; margin: 12px 0 8px; }
.step p { font-size: .95rem; }

/* ---------- Testimonials ---------- */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; height: 100%; }
.quote__stars { display: flex; gap: 3px; color: var(--sun); margin-bottom: 14px; }
.quote__stars .ico { width: 19px; height: 19px; }
.quote p { font-size: 1.02rem; color: var(--ink); flex: 1; }
.quote__by { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.quote__avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--teal); color: #fff; font-family: var(--font-head); font-weight: 700; }
.quote__by b { display: block; color: var(--ink); font-size: .95rem; }
.quote__by span { font-size: .85rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 56px 20px 24px; position: relative; font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--teal); font-weight: 400; transition: transform .2s ease; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 24px 22px; font-size: .98rem; }

/* ---------- CTA band ---------- */
.cta {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--teal-700), var(--navy) 90%); color: #e8f3f8;
  padding: clamp(40px, 6vw, 70px); text-align: center; box-shadow: var(--shadow-lg);
}
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 90% -10%, rgba(245,158,11,.3), transparent 55%); }
.cta > * { position: relative; }
.cta h2 { color: #fff; }
.cta p { color: #cfe2ee; max-width: 560px; margin: 14px auto 0; }
.cta .hero__cta { justify-content: center; margin-top: 30px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 56px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { display: grid; gap: 18px; margin-top: 26px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item__icon { flex: none; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--bg-tint); color: var(--teal); border: 1px solid var(--line); }
.info-item h3 { font-size: 1.05rem; margin-bottom: 2px; }
.info-item a, .info-item p { font-size: .98rem; }
.info-item span.sub { color: var(--muted); font-size: .88rem; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: var(--sun-700); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px;
  font: inherit; color: var(--ink); background: var(--bg-soft); transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(14,116,144,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.form__success { display: none; padding: 16px 18px; border-radius: 12px; background: #e6f6ee; border: 1px solid #b9e6cd; color: #14663c; font-weight: 600; margin-bottom: 18px; }
.form__success.is-visible { display: block; }

/* Map */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: linear-gradient(150deg, var(--navy), var(--teal-700)); color: #e7f3f8; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 120% at 92% -20%, rgba(245,158,11,.25), transparent 55%); }
.page-hero .container { position: relative; padding-block: clamp(48px, 7vw, 86px); }
.page-hero h1 { color: #fff; max-width: 16ch; }
.page-hero p { color: #cce0ec; margin-top: 16px; max-width: 56ch; font-size: 1.1rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: #a9c6d8; margin-bottom: 18px; }
.breadcrumb a { color: #cfe6f2; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span[aria-current] { color: var(--sun); }

/* ---------- Product list (sectors) ---------- */
.product { display: grid; grid-template-columns: 200px 1fr; gap: 26px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); transition: box-shadow .25s ease, transform .2s ease; }
.product:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product__art { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.product__art svg { width: 100%; height: 100%; }
.product h3 { margin-bottom: 8px; }
.product p { font-size: .98rem; }
@media (max-width: 620px) { .product { grid-template-columns: 1fr; } .product__art { max-width: 260px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #aebfca; padding-top: clamp(54px, 7vw, 84px); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; font-family: var(--font-head); letter-spacing: .02em; }
.site-footer a { color: #aebfca; }
.site-footer a:hover { color: #fff; }
.footer-brand img { width: 180px; margin-bottom: 18px; }
.footer-brand p { color: #93a9b6; font-size: .95rem; max-width: 34ch; }
.footer-links { display: grid; gap: 11px; font-size: .95rem; }
.footer-contact { display: grid; gap: 14px; font-size: .95rem; }
.footer-contact .info-item__icon { width: 38px; height: 38px; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); color: var(--sun); }
.footer-contact .info-item { align-items: center; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.06); color: #cfe0ea; transition: background .2s ease, transform .2s ease; }
.footer-social a:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.footer-social .ico { width: 19px; height: 19px; }
.footer-bottom { margin-top: clamp(40px, 6vw, 64px); border-top: 1px solid rgba(255,255,255,.1); padding-block: 24px; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; font-size: .85rem; color: #8499a6; }
.footer-bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Floating call button (mobile) ---------- */
.floating-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 55; display: none;
  width: 58px; height: 58px; border-radius: 50%; background: var(--sun); color: #25160a;
  align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
}
.floating-call .ico { width: 26px; height: 26px; }
@media (max-width: 860px) { .floating-call { display: inline-flex; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.mt-l { margin-top: 32px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--sun); color: #25160a; padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 100; font-weight: 700; }
.skip-link:focus { left: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
