/* White Card Today — whitecardtoday.com.au
   Charcoal / white / safety orange · photo-rich · mobile-first */

:root {
  --charcoal: #1a1d21;
  --charcoal-soft: #2a2f36;
  --ink: #121417;
  --muted: #5c6570;
  --line: #e4e7eb;
  --bg: #f7f8fa;
  --white: #ffffff;
  --orange: #F05A1A;
  --orange-dark: #d14a12;
  --orange-soft: #fff4ee;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --shadow: 0 8px 28px rgba(18, 20, 23, 0.08);
  --shadow-lg: 0 20px 50px rgba(18, 20, 23, 0.14);
  --shadow-photo: 0 12px 40px rgba(18, 20, 23, 0.16);
  --font: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --max: 1200px;
  --header-h: 72px;
  --callbar-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  padding-bottom: var(--callbar-h);
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

picture {
  display: block;
  max-width: 100%;
}

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

a:hover {
  color: var(--orange-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--orange);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
  font-weight: 600;
}

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 2.25rem 0;
}

.section--tight {
  padding: 2rem 0 2.5rem;
}

@media (min-width: 768px) {
  .section {
    padding: 2.5rem 0;
  }

  .section--tight {
    padding: 2rem 0 2.25rem;
  }
}

.section--alt {
  background: var(--bg);
}

.section--dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 0.75rem;
}

.section__eyebrow--on-dark {
  color: #ffb089;
}

.section__title {
  font-size: clamp(1.85rem, 4.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  color: inherit;
}

.section__lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 0 1.25rem;
}

.section-head .section__lead {
  margin-bottom: 0;
}

.section--dark .section__lead {
  color: rgba(255, 255, 255, 0.72);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 6px 20px rgba(240, 90, 26, 0.28);
}

.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
}

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

.btn--ghost:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}

.btn--ghost-light:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.btn--block {
  width: 100%;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--charcoal);
}

.logo__img {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(200px, 48vw);
  object-fit: contain;
}

.header-nav {
  display: none;
  gap: 1.35rem;
  align-items: center;
}

.header-nav a {
  color: var(--charcoal-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
}

.header-nav a:hover {
  color: var(--orange);
}

@media (min-width: 900px) {
  .header-nav {
    display: flex;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-actions .btn {
  min-height: 44px;
  padding: 0.55rem 1rem;
  font-size: 0.9375rem;
}

.header-actions .btn--call-desktop {
  display: none;
}

@media (min-width: 640px) {
  .header-actions .btn--call-desktop {
    display: inline-flex;
  }
}

/* Full-bleed photo hero — media NEVER in document flow */
.hero {
  position: relative;
  width: 100%;
  min-height: 480px;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 2.75rem 0 3rem;
  color: var(--white);
  background-color: var(--charcoal);
  background-image: url("assets/photos/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .hero {
    min-height: 560px;
    max-height: none;
    padding: 3rem 0;
  }
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__media {
  z-index: 0;
}

.hero__media picture,
.hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(18, 20, 23, 0.88) 0%, rgba(18, 20, 23, 0.72) 45%, rgba(18, 20, 23, 0.45) 100%),
    linear-gradient(to top, rgba(18, 20, 23, 0.55) 0%, transparent 40%);
}

.hero .container {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.hero__grid {
  display: grid;
  gap: 2rem;
  width: 100%;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
  }
}

.hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 1.1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero__sub {
  font-size: 1.1875rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
  margin: 0 0 1.75rem;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
  list-style: none;
  padding: 0;
}

.trust-chips li {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.hero-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.5rem;
  box-shadow: var(--shadow-lg);
}

.hero-card h2 {
  font-size: 1.3rem;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.hero-card p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.975rem;
}

.hero-card__price {
  background: var(--orange-soft);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  margin-bottom: 1.25rem;
  font-weight: 650;
  color: var(--charcoal);
  font-size: 0.975rem;
}

.hero-card__meta {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Photo mosaic — 2×2 equal cards inside .container */
.photo-mosaic {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  width: 100%;
}

@media (min-width: 640px) {
  .photo-mosaic {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.mosaic-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-photo);
  aspect-ratio: 3 / 2;
  height: auto;
  min-height: 0;
  background: var(--charcoal-soft);
}

@media (min-width: 768px) {
  .mosaic-card {
    aspect-ratio: 16 / 10;
  }
}

/* Modifier classes kept for HTML compat — no special sizing */
.mosaic-card--lg,
.mosaic-card--wide {
  grid-column: auto;
  grid-row: auto;
}

.mosaic-card picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mosaic-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.mosaic-card:hover img {
  transform: scale(1.04);
}

.mosaic-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.35rem 1.2rem 1.15rem;
  background: linear-gradient(to top, rgba(18, 20, 23, 0.88) 0%, rgba(18, 20, 23, 0.35) 70%, transparent 100%);
  color: var(--white);
  z-index: 1;
}

.mosaic-card__label h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
}

.mosaic-card__label p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
}

/* Photo frames — capped height so side photos don’t dominate */
.photo-frame {
  width: 100%;
  height: 100%;
  max-height: 360px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-photo);
}

.photo-frame--tall {
  aspect-ratio: 16 / 10;
  max-height: 240px;
}

.photo-frame--sm {
  aspect-ratio: 16 / 10;
  max-height: 200px;
  margin-bottom: 1.25rem;
}

/* Split course block */
.split-block {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .split-block {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }
}

.split-block__media {
  min-width: 0;
  max-width: 100%;
  max-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
}

@media (min-width: 900px) {
  .split-block__media {
    position: sticky;
    top: 6rem;
    align-self: start;
  }
}

.split-block__media picture {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 360px;
}

.split-block__media img,
.split-block__media .photo-frame {
  width: 100%;
  max-width: 100%;
  max-height: 360px;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.split-block__copy .section__lead {
  margin-bottom: 1.5rem;
}

.why-aside {
  min-width: 0;
}

.why-aside > picture {
  display: block;
  width: 100%;
  max-height: 240px;
  overflow: hidden;
  border-radius: var(--radius);
}

.why-aside > picture img {
  width: 100%;
  max-height: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (min-width: 800px) {
  .why-aside > picture,
  .why-aside > picture img {
    max-height: 220px;
  }
  .why-aside > picture img {
    height: 220px;
  }
}

/* Photo band — full viewport width; caption text in .container */
.photo-band {
  position: relative;
  height: 220px;
  overflow: hidden;
  width: 100%;
}

@media (min-width: 768px) {
  .photo-band {
    height: 280px;
  }
}

.photo-band picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.photo-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 40%;
}

.photo-band__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 3rem 0 2rem;
  background: linear-gradient(to top, rgba(18, 20, 23, 0.82) 0%, rgba(18, 20, 23, 0.45) 55%, transparent 100%);
  color: var(--white);
}

.photo-band__caption p {
  margin: 0;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  max-width: 36rem;
}

/* Cards / grids */
.card-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .card-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.45rem;
}

.card--soft {
  background: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.card--lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card--lift:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.975rem;
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--orange-soft);
  color: var(--orange);
  font-weight: 800;
  font-size: 0.875rem;
  margin-bottom: 0.9rem;
}

/* Details list */
.detail-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.detail-list dt,
.detail-list dd {
  margin: 0;
  padding: 1rem 1.25rem;
}

.detail-list dt {
  background: var(--bg);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.detail-list dd {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.detail-list dd:last-of-type {
  border-bottom: none;
}

@media (min-width: 700px) {
  .detail-list {
    grid-template-columns: 200px 1fr;
  }
  .detail-list dt {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .detail-list dd {
    border-bottom: 1px solid var(--line);
  }
  .detail-list > :nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* Why / steps */
.steps {
  counter-reset: step;
  display: grid;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steps li {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: var(--shadow);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9375rem;
  margin-bottom: 0.85rem;
}

.steps h3 {
  margin: 0 0 0.4rem;
  font-size: 1.125rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.975rem;
}

.why-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .why-grid {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
    gap: 2.5rem;
  }
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5l3 3 6-6.5' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.feature-list strong {
  color: var(--ink);
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  box-shadow: 0 2px 8px rgba(18, 20, 23, 0.04);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 650;
  padding: 1.15rem 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

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

.faq summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
}

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

.faq .faq__a {
  padding: 0 1.25rem 1.2rem;
  color: var(--muted);
  margin: 0;
}

/* Location — larger map (map ≥ venue card) */
.location-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 800px) {
  .location-grid {
    grid-template-columns: 0.9fr 1.3fr;
    align-items: stretch;
  }
}

.map-embed {
  position: relative;
  height: 100%;
  min-height: 320px;
  aspect-ratio: auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-photo);
  background: var(--bg);
}

@media (min-width: 800px) {
  .map-embed {
    min-height: 420px;
  }
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.address-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.address-block h3 {
  margin: 0 0 0.75rem;
}

.address-block p {
  margin: 0 0 0.5rem;
  color: var(--muted);
}

.address-block a {
  font-weight: 650;
}

/* Form */
.form-wrap {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .form-wrap {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.enquire-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.65rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

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

@media (min-width: 560px) {
  .form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 650;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}

.field .req {
  color: var(--orange);
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s ease;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:hover,
.field textarea:hover {
  border-color: #c5ccd4;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--orange);
  outline: none;
  box-shadow: 0 0 0 3px rgba(240, 90, 26, 0.18);
}

.form-note {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0.85rem 0 0;
}

.form-success {
  display: none;
  background: #eefaf1;
  border: 1px solid #b7e4c3;
  color: #1b5e2a;
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-success.is-visible {
  display: block;
}

.contact-aside h3 {
  margin: 0 0 0.75rem;
}

.contact-aside p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.25rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.contact-list li {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.975rem;
}

.contact-list a {
  color: var(--white);
  font-weight: 650;
  text-decoration: none;
}

.contact-list a:hover {
  color: #ffc9a8;
}

.contact-list span {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.15rem;
}

/* Footer */
.site-footer {
  background: #121417;
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem 0 2rem;
  font-size: 0.9rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

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

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

.site-footer p {
  margin: 0 0 0.5rem;
}

.footer-legal {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Mobile sticky call bar */
.mobile-callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
}

.mobile-callbar .btn {
  min-height: 48px;
}

@media (min-width: 768px) {
  .mobile-callbar {
    display: none;
  }
}

/* Utilities */
.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;
}

.text-balance {
  text-wrap: balance;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .mosaic-card img,
  .card--lift,
  .btn {
    transition: none;
  }
}
