/* ==========================================================================
   Yagoona TV Service — site styles
   Aesthetic: Australian trade-signage meets TV test pattern.
   Deep CRT navy + warm paper, SMPTE colour-bar accents, condensed display
   type, hard offset shadows. Body type is Atkinson Hyperlegible — chosen
   for maximum readability for older customers.
   ========================================================================== */

:root {
  /* Palette */
  --navy-900: #0b1622;
  --navy-800: #10202f;
  --navy-700: #17293c;
  --paper: #f8f4ea;
  --paper-dim: #efe8d8;
  --ink: #16191d;
  --ink-soft: #414b54;
  --line: #d9d1bd;
  --line-dark: #26374a;
  --cta: #f26b1d;
  --cta-bright: #ff8534;
  --cta-ink: #1c0f04;
  /* Darker orange for text on light backgrounds (WCAG 4.5:1+) */
  --cta-deep: #a84300;
  --cream: #f5efdf;

  /* SMPTE-ish colour bars, tuned to sit with the palette */
  --bar-grey: #b9b4a6;
  --bar-yellow: #d3b400;
  --bar-cyan: #00a9ad;
  --bar-green: #00a13d;
  --bar-magenta: #bc2f9e;
  --bar-red: #cf2e21;
  --bar-blue: #2438b8;

  /* Type */
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Atkinson Hyperlegible", Georgia, serif;

  --wrap: 1120px;
  --radius: 10px;
  --shadow-hard: 5px 5px 0 rgba(22, 25, 29, 0.9);
  --shadow-hard-sm: 3px 3px 0 rgba(22, 25, 29, 0.9);
}

/* ---------- Reset & base ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Anchored sections clear the sticky header */
[id] {
  scroll-margin-top: 5.75rem;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

h3 {
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
}

p {
  margin: 0 0 1.1em;
}

a {
  color: var(--ink);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--cta);
}

ul {
  padding-left: 1.3em;
}

strong {
  font-weight: 700;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.25rem 0;
}

.section--dim {
  background: var(--paper-dim);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.section--navy {
  background: var(--navy-800);
  color: var(--cream);
}

.section--navy h2,
.section--navy h3 {
  color: #fff;
}

.section--navy a {
  color: var(--cream);
}

.kicker {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  color: var(--cta-deep);
  display: block;
  margin-bottom: 0.75rem;
}

/* On dark sections the brighter orange has ample contrast */
.hero .kicker,
.section--navy .kicker,
.cta-band .kicker {
  color: var(--cta);
}

.lede {
  font-size: 1.2rem;
  max-width: 46rem;
}

.center {
  text-align: center;
}

.center .lede {
  margin-inline: auto;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--cta);
  color: var(--cta-ink);
  padding: 0.6rem 1rem;
  z-index: 200;
  font-weight: 700;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* ---------- Colour bars motif ---------- */

.bars {
  height: 8px;
  background: linear-gradient(
    to right,
    var(--bar-grey) 0 14.28%,
    var(--bar-yellow) 14.28% 28.57%,
    var(--bar-cyan) 28.57% 42.85%,
    var(--bar-green) 42.85% 57.14%,
    var(--bar-magenta) 57.14% 71.42%,
    var(--bar-red) 71.42% 85.71%,
    var(--bar-blue) 85.71% 100%
  );
}

.bars--thin {
  height: 5px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.95rem 1.5rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.btn svg {
  flex: none;
}

.btn--call {
  background: var(--cta);
  color: var(--cta-ink);
  box-shadow: var(--shadow-hard);
}

.btn--call:hover {
  background: var(--cta-bright);
  color: var(--cta-ink);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(22, 25, 29, 0.9);
}

.btn--call:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 rgba(22, 25, 29, 0.9);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn--ghost-ink {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow-hard-sm);
}

.btn--ghost-ink:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn--big {
  font-size: 1.5rem;
  padding: 1.1rem 1.8rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-900);
  color: var(--cream);
  border-bottom: 2px solid var(--ink);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.25rem;
  max-width: var(--wrap);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--cream);
}

.logo:hover {
  color: #fff;
}

.logo svg {
  flex: none;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__name {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.logo__tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bar-yellow);
  margin-top: 0.3rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  color: var(--cream);
  text-decoration: none;
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
}

.site-nav a:hover {
  color: #fff;
  background: var(--navy-700);
}

.site-nav a[aria-current="page"] {
  color: var(--bar-yellow);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--cta-ink);
  background: var(--cta);
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}

.header-call:hover {
  background: var(--cta-bright);
  color: var(--cta-ink);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--cream);
  border-radius: 8px;
  color: var(--cream);
  padding: 0.45rem 0.6rem;
  cursor: pointer;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy-900);
    border-bottom: 2px solid var(--ink);
    padding: 0.5rem 1rem 1rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.8rem 0.7rem;
    border-bottom: 1px solid var(--line-dark);
    font-size: 1.2rem;
  }

  .header-call .header-call__label {
    display: none;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--navy-800);
  color: var(--cream);
  overflow: hidden;
}

.hero::before {
  /* static noise */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero::after {
  /* CRT scanlines */
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 3px,
    rgba(0, 0, 0, 0.12) 3px 4px
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 2.5rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}

.hero--sub .hero__inner {
  grid-template-columns: 1fr;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero h1 .accent {
  color: var(--cta-bright);
}

.hero .lede {
  color: var(--cream);
  font-size: 1.25rem;
}

.hero__art {
  display: flex;
  justify-content: center;
}

.hero__art svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(8px 8px 0 rgba(0, 0, 0, 0.35));
}

@media (max-width: 820px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__art {
    order: -1;
  }

  .hero__art svg {
    max-width: 260px;
  }
}

.breadcrumb {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-display);
  color: var(--bar-yellow);
  margin-bottom: 0.8rem;
}

.breadcrumb a {
  color: var(--cream);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ---------- Trust strip ---------- */

.trust-strip {
  background: var(--navy-900);
  color: var(--cream);
  border-top: 1px solid var(--line-dark);
  border-bottom: 2px solid var(--ink);
}

.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 2.2rem;
  padding: 0.85rem 1.25rem;
  max-width: var(--wrap);
  margin: 0 auto;
}

.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 1rem;
  white-space: nowrap;
}

.trust-strip__item svg {
  color: var(--bar-yellow);
  flex: none;
}

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.25rem;
}

.card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  padding: 1.6rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

a.card {
  text-decoration: none;
  color: var(--ink);
}

a.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 rgba(22, 25, 29, 0.9);
  color: var(--ink);
}

.card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--navy-800);
  color: var(--bar-yellow);
  border: 2px solid var(--ink);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.4em;
}

.card p {
  color: var(--ink-soft);
  margin-bottom: 0.8em;
}

.card__more {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cta-deep);
  font-size: 1.05rem;
}

/* ---------- Symptom checklist ---------- */

.symptom-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.symptom-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard-sm);
  padding: 1rem 1.1rem;
  font-size: 1.05rem;
}

.symptom-list .tick {
  flex: none;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--bar-green);
  color: #fff;
  border-radius: 50%;
  border: 2px solid var(--ink);
  margin-top: 0.1rem;
}

.symptom-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ---------- Feature rows / checklists ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.65rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 1.05em;
  height: 1.05em;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: var(--bar-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.section--navy .checklist li::before {
  border-color: var(--cream);
}

/* ---------- Notice / honesty box ---------- */

.notice {
  border: 2px solid var(--ink);
  border-left: 10px solid var(--bar-yellow);
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard-sm);
  padding: 1.4rem 1.5rem;
  margin: 2rem 0;
}

.notice h3 {
  margin-bottom: 0.35em;
}

.notice p:last-child {
  margin-bottom: 0;
}

/* ---------- Steps ---------- */

.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 2.25rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.steps li {
  counter-increment: step;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  padding: 1.5rem;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--cta-deep);
  margin-bottom: 0.5rem;
}

.steps strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
}

/* ---------- Brand list ---------- */

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}

.chip {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  padding: 0.4rem 0.9rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  white-space: nowrap;
}

.section--navy .chip {
  background: var(--navy-700);
  border-color: var(--cream);
  color: var(--cream);
}

/* ---------- Service area ---------- */

.area-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.area-cols h3 {
  border-bottom: 3px solid var(--cta);
  display: inline-block;
  padding-bottom: 0.2rem;
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 50rem;
  margin: 2.25rem auto 0;
}

.faq details {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard-sm);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.3rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.2rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  line-height: 1;
  color: var(--cta-deep);
  flex: none;
}

.faq details[open] summary::after {
  content: "\2212";
}

.faq details[open] summary {
  border-bottom: 2px solid var(--line);
}

.faq .faq__a {
  padding: 1rem 1.3rem 1.2rem;
}

.faq .faq__a p:last-child {
  margin-bottom: 0;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--navy-900);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-band .wrap {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: #fff;
}

.cta-band .lede {
  margin-inline: auto;
}

.cta-band .btn-row {
  justify-content: center;
  margin-top: 1.75rem;
}

.cta-band .phone-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.4rem);
  color: var(--cta-bright);
  text-decoration: none;
  display: inline-block;
  margin: 0.5rem 0 0.25rem;
}

.cta-band .phone-big:hover {
  color: #fff;
}

/* ---------- Hours table ---------- */

.hours {
  width: 100%;
  border-collapse: collapse;
  max-width: 26rem;
}

.hours th,
.hours td {
  text-align: left;
  padding: 0.55rem 0.4rem;
  border-bottom: 1px solid var(--line);
}

.hours th {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.hours .closed {
  color: #b32619;
  font-weight: 700;
}

/* ---------- Forms ---------- */

.form {
  display: grid;
  gap: 1rem;
}

.form label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 3px solid var(--cta);
  outline-offset: 1px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

.form .btn {
  justify-self: start;
}

.form-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  padding: 1.75rem;
}

.contact-card + .contact-card {
  margin-top: 1.5rem;
}

.contact-line {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-line svg {
  flex: none;
  color: var(--cta);
  margin-top: 0.2rem;
}

.contact-line a {
  font-weight: 700;
}

.map-frame {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  line-height: 0;
}

.map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-900);
  color: var(--cream);
  padding: 3.5rem 0 0;
}

.site-footer a {
  color: var(--cream);
}

.site-footer a:hover {
  color: var(--cta-bright);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-grid h3 {
  font-size: 1.15rem;
  color: var(--bar-yellow);
  letter-spacing: 0.08em;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 0.5rem;
}

.footer-areas {
  font-size: 0.95rem;
  color: #c9c2b0;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 1.2rem 0 4.5rem;
  font-size: 0.9rem;
  color: #a9a294;
}

@media (min-width: 761px) {
  .footer-bottom {
    padding-bottom: 1.2rem;
  }
}

/* ---------- Sticky mobile call bar ---------- */

.call-bar {
  display: none;
}

@media (max-width: 760px) {
  .call-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    border-top: 2px solid var(--ink);
  }

  .call-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.15rem;
    padding: 0.95rem 0.5rem;
    text-decoration: none;
  }

  .call-bar__call {
    background: var(--cta);
    color: var(--cta-ink);
  }

  .call-bar__quote {
    background: var(--navy-800);
    color: var(--cream);
  }

  body {
    padding-bottom: 3.6rem;
  }
}

/* ---------- Reveal animation ---------- */

/* Hidden state only applies once JS has run (html.js), so content is never
   lost on browsers where the script or IntersectionObserver fails. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .card {
    transition: none;
  }
}
