/* ============================================================
   Beacon of Light Home Care Service — design tokens
   ============================================================ */
:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1rem + 0.55vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.15vw, 2.125rem);
  --text-2xl: clamp(2rem, 1.25rem + 2.4vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1.3rem + 3.4vw, 4.25rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Brand */
  --navy: #0d2d52;
  --blue: #2f62a2;
  --gold: #d3a000;
  --cream: #fbf8ef;
  --mist: #eef4f8;
  --paper: #ffffff;

  --font-display: 'Newsreader', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Switzer', 'Inter', 'Helvetica Neue', sans-serif;

  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --transition-interactive: 220ms cubic-bezier(0.16, 1, 0.3, 1);

  --content: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(4rem, 8vw, 8rem);
}

/* -------- Light theme -------- */
:root,
[data-theme='light'] {
  --color-bg: #fbf8ef;
  --color-surface: #ffffff;
  --color-surface-2: #f7fafc;
  --color-surface-offset: #eef4f8;
  --color-border: #dfe6ec;
  --color-border-strong: #c6d3de;
  --color-text: #14263c;
  --color-text-muted: #55677d;
  --color-text-faint: #8497a9;
  --color-text-inverse: #fbf8ef;
  --color-primary: #0d2d52;
  --color-accent: #2f62a2;
  --color-gold: #a97f00;
  --color-gold-bright: #d3a000;
  --shadow-sm: 0 1px 2px rgba(13, 45, 82, 0.06);
  --shadow-md: 0 6px 20px rgba(13, 45, 82, 0.08);
  --shadow-lg: 0 22px 60px rgba(13, 45, 82, 0.14);
}

/* -------- Dark theme -------- */
[data-theme='dark'] {
  --color-bg: #091626;
  --color-surface: #0f2039;
  --color-surface-2: #132745;
  --color-surface-offset: #102138;
  --color-border: #23405f;
  --color-border-strong: #2f5480;
  --color-text: #e6eef6;
  --color-text-muted: #a3b6ca;
  --color-text-faint: #7c92a8;
  --color-text-inverse: #0b1a2c;
  --color-primary: #f0f5fa;
  --color-accent: #7ea9d8;
  --color-gold: #e8bc3a;
  --color-gold-bright: #e8bc3a;
  --navy: #0f2039;
  --blue: #7ea9d8;
  --gold: #e8bc3a;
  --paper: #0f2039;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 22px 60px rgba(0, 0, 0, 0.55);
}

/* ============================================================
   Base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
body {
  min-height: 100dvh;
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}
img,
picture,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul[role='list'],
ol[role='list'] {
  list-style: none;
}
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}
[hidden] {
  display: none !important;
}
a {
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
  color: var(--color-primary);
}
p {
  text-wrap: pretty;
}
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
a,
button,
input,
select,
textarea,
summary,
.service-card {
  transition:
    color var(--transition-interactive),
    background var(--transition-interactive),
    border-color var(--transition-interactive),
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive);
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--navy);
  color: #fff;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  left: var(--space-4);
  top: var(--space-4);
}
.shell {
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ============================================================
   Shared elements
   ============================================================ */
.eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.eyebrow-gold {
  color: var(--color-gold-bright);
}
.lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 34ch;
  line-height: 1.6;
}
.section {
  padding-block: var(--section-pad);
}
.section-mist {
  background: var(--color-surface-offset);
}
.section-cream {
  background: var(--color-surface);
}
.section-head {
  max-width: 40rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head h2 {
  font-size: var(--text-xl);
}
.section-lede {
  margin-top: var(--space-5);
  color: var(--color-text-muted);
  max-width: 52ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-sm {
  padding: 0.6rem 1.15rem;
  font-size: var(--text-xs);
}
.btn-full {
  width: 100%;
}
.btn-gold {
  background: var(--color-gold-bright);
  color: #14263c;
  box-shadow: 0 8px 22px rgba(211, 160, 0, 0.25);
}
.btn-gold:hover {
  background: #bd8f00;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(211, 160, 0, 0.32);
}
[data-theme='dark'] .btn-gold:hover {
  background: #f0cb56;
}
.btn-ghost {
  border-color: var(--color-border-strong);
  color: var(--color-primary);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: color-mix(in oklab, var(--color-accent) 8%, transparent);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fbf8ef;
}
.btn-outline:hover {
  border-color: var(--color-gold-bright);
  color: var(--color-gold-bright);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in oklab, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    box-shadow var(--transition-interactive),
    border-color var(--transition-interactive);
}
.site-header.is-scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  min-height: 5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-right: auto;
}
.brand-mark {
  display: block;
  width: 2.9rem;
  flex: none;
}
.mark-svg {
  width: 100%;
  height: auto;
}
.brand-words {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.85rem);
}
.nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  color: var(--color-text-muted);
}
.nav a:hover,
.nav a.is-active {
  color: var(--color-primary);
}
.nav .nav-cta {
  color: #14263c;
}
[data-theme='dark'] .nav .nav-cta {
  color: #0b1a2c;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.icon-btn {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: var(--color-surface);
}
.icon-btn:hover {
  color: var(--color-primary);
  border-color: var(--color-border-strong);
}
.menu-btn {
  display: none;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding-block: clamp(3rem, 6vw, 6rem) clamp(4rem, 7vw, 7rem);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0 0 auto auto;
  width: min(52vw, 640px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 70% 30%, rgba(211, 160, 0, 0.13), transparent 62%);
  transform: translate(18%, -28%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy h1 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
  max-width: 16ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-6);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.hero-facts li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-facts span {
  color: var(--color-gold-bright);
}

.hero-media {
  position: relative;
}
.hero-figure {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: auto -1.15rem -1.15rem auto;
  width: 55%;
  height: 55%;
  border: 1px solid var(--color-gold-bright);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.55;
}
.hero-badge {
  position: absolute;
  left: clamp(-1rem, -1.5vw, 0rem);
  bottom: clamp(1rem, 3vw, 2.25rem);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  max-width: 17rem;
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-gold-bright);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.hero-badge p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.35;
  color: var(--color-primary);
}
.hero-badge-star {
  color: var(--color-gold-bright);
  font-size: 1.1rem;
}

/* ============================================================
   Assurance band
   ============================================================ */
.band {
  background: var(--navy);
  color: #eaf1f8;
  padding-block: clamp(3rem, 6vw, 5rem);
}
[data-theme='dark'] .band {
  background: var(--color-surface-2);
  border-block: 1px solid var(--color-border);
}
.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.band-title {
  font-size: var(--text-lg);
  color: #fff;
  margin-bottom: var(--space-4);
}
.band-item p {
  color: rgba(234, 241, 248, 0.78);
  font-size: var(--text-sm);
  max-width: 40ch;
}
.band-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}
.band-list li {
  padding-top: var(--space-4);
  border-top: 1px solid rgba(211, 160, 0, 0.5);
}
.band-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--color-gold-bright);
  margin-bottom: var(--space-2);
}
.band-list span {
  font-size: var(--text-sm);
  color: rgba(234, 241, 248, 0.78);
}

/* ============================================================
   Services
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.service-num {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-gold-bright);
}
.service-card h3 {
  font-size: 1.375rem;
}
.service-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-accent);
}
.card-link span {
  transition: transform var(--transition-interactive);
}
.service-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
[data-theme='dark'] .service-card:hover {
  background: var(--color-surface-2);
  border-color: var(--color-border-strong);
}
.service-card:hover h3 {
  color: #fff;
}
[data-theme='dark'] .service-card:hover h3 {
  color: var(--color-primary);
}
.service-card:hover p {
  color: rgba(234, 241, 248, 0.8);
}
[data-theme='dark'] .service-card:hover p {
  color: var(--color-text-muted);
}
.service-card:hover .card-link {
  color: var(--color-gold-bright);
}
.service-card:hover .card-link span {
  transform: translateX(4px);
}

.service-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-3);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: color-mix(in oklab, var(--color-gold-bright) 12%, var(--color-bg));
  border: 1px solid color-mix(in oklab, var(--color-gold-bright) 34%, transparent);
  border-radius: var(--radius-lg);
}
.note-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.service-note p:last-child {
  font-size: var(--text-sm);
  color: var(--color-text);
}

/* ============================================================
   Full-bleed moment
   ============================================================ */
.bleed {
  position: relative;
  isolation: isolate;
}
.bleed img {
  width: 100%;
  height: clamp(20rem, 42vw, 30rem);
  object-fit: cover;
}
.bleed-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-block: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(to top, rgba(13, 45, 82, 0.88) 0%, rgba(13, 45, 82, 0.35) 55%, rgba(13, 45, 82, 0.05) 100%);
}
.bleed-overlay blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.6vw, 2rem);
  line-height: 1.3;
  color: #fff;
  max-width: 34ch;
  text-wrap: balance;
}
.bleed-overlay blockquote::before {
  content: '✦';
  display: block;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: var(--space-4);
}

/* ============================================================
   Split sections
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.split-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.split-copy h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-5);
}
.split-copy p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  max-width: 46ch;
}
.check-list {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.check-list li {
  position: relative;
  padding-left: 2.1rem;
  font-weight: 500;
  color: var(--color-text);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-gold-bright);
  background:
    linear-gradient(var(--color-gold-bright), var(--color-gold-bright)) center / 0.4rem 0.4rem no-repeat;
}
.fact-grid {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}
.fact-grid dt {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-1);
}
.fact-grid dd {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.fact-grid em,
.ph {
  font-style: normal;
  color: var(--color-text-faint);
}

/* ============================================================
   Steps
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.75rem);
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: var(--space-8);
  border-top: 2px solid var(--color-border);
}
.step-num {
  position: absolute;
  top: -1.35rem;
  left: 0;
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: var(--radius-full);
  background: var(--color-gold-bright);
  color: #14263c;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.step h3 {
  font-size: 1.375rem;
  margin-bottom: var(--space-3);
}
.step p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-shell {
  max-width: 56rem;
}
.faq-list {
  border-top: 1px solid var(--color-border);
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: clamp(1.1rem, 2vw, 1.5rem);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '';
  flex: none;
  width: 0.95rem;
  height: 0.95rem;
  background:
    linear-gradient(var(--color-gold-bright), var(--color-gold-bright)) center / 100% 2px no-repeat,
    linear-gradient(var(--color-gold-bright), var(--color-gold-bright)) center / 2px 100% no-repeat;
  transition: transform var(--transition-interactive);
}
.faq-item[open] summary::after {
  background: linear-gradient(var(--color-gold-bright), var(--color-gold-bright)) center / 100% 2px no-repeat;
}
.faq-item summary:hover {
  color: var(--color-accent);
}
.faq-body {
  padding-bottom: var(--space-6);
  padding-right: clamp(0rem, 4vw, 3rem);
}
.faq-body p {
  color: var(--color-text-muted);
  max-width: 62ch;
}
.faq-body em {
  color: var(--color-text-faint);
  font-style: normal;
}
.disclaimer {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: var(--space-5) var(--space-6);
  border-left: 3px solid var(--color-gold-bright);
  background: var(--color-surface-offset);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================================
   Request Care
   ============================================================ */
.request {
  background: var(--navy);
  color: #eaf1f8;
}
[data-theme='dark'] .request {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.request-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.request-copy h2 {
  font-size: var(--text-2xl);
  color: #fff;
  max-width: 15ch;
  margin-bottom: var(--space-5);
}
[data-theme='dark'] .request-copy h2 {
  color: var(--color-primary);
}
.request-copy > p {
  color: rgba(234, 241, 248, 0.8);
  max-width: 34ch;
}
[data-theme='dark'] .request-copy > p {
  color: var(--color-text-muted);
}
.benefit-list {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 500;
  color: #fff;
}
[data-theme='dark'] .benefit-list li {
  color: var(--color-text);
}
.benefit-list span {
  color: var(--color-gold-bright);
}
.request-contact {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(234, 241, 248, 0.18);
  display: grid;
  gap: var(--space-2);
  font-size: var(--text-sm);
}
[data-theme='dark'] .request-contact {
  border-top-color: var(--color-border);
}
.rc-label {
  display: inline-block;
  min-width: 3.5rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
}
.request-contact .ph {
  color: rgba(234, 241, 248, 0.7);
}
[data-theme='dark'] .request-contact .ph {
  color: var(--color-text-faint);
}

.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}
[data-theme='dark'] .form-card {
  background: var(--color-surface-2);
}
.form-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}
.field {
  margin-bottom: var(--space-5);
}
.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}
.field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: var(--text-sm);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
}
[data-theme='dark'] .field input,
[data-theme='dark'] .field select,
[data-theme='dark'] .field textarea {
  background: var(--color-bg);
}
.field textarea {
  resize: vertical;
  min-height: 6.5rem;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--color-text-faint);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-accent) 18%, transparent);
  outline: none;
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--color-text-muted) 50%),
    linear-gradient(135deg, var(--color-text-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 1.25rem) 1.35rem,
    calc(100% - 1rem) 1.35rem;
  background-size:
    0.32rem 0.32rem,
    0.32rem 0.32rem;
  background-repeat: no-repeat;
}
.err {
  min-height: 0;
  font-size: var(--text-xs);
  color: #b3261e;
  margin-top: var(--space-1);
}
[data-theme='dark'] .err {
  color: #f29c95;
}
.field.has-error input,
.field.has-error select {
  border-color: #b3261e;
}
.form-note {
  margin-top: var(--space-5);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  line-height: 1.6;
}
.form-success {
  display: grid;
  gap: var(--space-3);
  text-align: center;
  padding-block: var(--space-8);
}
.success-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-inline: auto;
  border-radius: var(--radius-full);
  background: color-mix(in oklab, var(--color-gold-bright) 20%, transparent);
  color: var(--color-gold);
  font-size: 1.25rem;
}
.form-success h3 {
  font-size: var(--text-lg);
}
.form-success p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  max-width: 40ch;
  margin-inline: auto;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #0a2244;
  color: rgba(234, 241, 248, 0.8);
  padding-top: clamp(3rem, 6vw, 5rem);
}
[data-theme='dark'] .site-footer {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.05fr 1.3fr 0.7fr;
  gap: clamp(1.75rem, 3vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.footer-brand img {
  width: clamp(8rem, 12vw, 11rem);
  background: #fbf8ef;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}
.footer-head {
  font-size: 1.0625rem;
  color: #fff;
  margin-bottom: var(--space-3);
}
[data-theme='dark'] .footer-head {
  color: var(--color-primary);
}
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-gold-bright);
  margin-bottom: var(--space-4);
}
.footer-meta {
  font-size: var(--text-sm);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}
.footer-links {
  display: grid;
  gap: var(--space-2);
  font-size: var(--text-sm);
}
.footer-links a {
  text-decoration: none;
  color: rgba(234, 241, 248, 0.8);
}
.footer-links a:hover {
  color: var(--color-gold-bright);
}
[data-theme='dark'] .footer-links a {
  color: var(--color-text-muted);
}
.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: var(--space-6);
  border-top: 1px solid rgba(234, 241, 248, 0.14);
  font-size: var(--text-xs);
  color: rgba(234, 241, 248, 0.6);
}
[data-theme='dark'] .footer-base {
  border-top-color: var(--color-border);
  color: var(--color-text-faint);
}
.footer-base p {
  max-width: 60ch;
}

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .band-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .menu-btn {
    display: grid;
  }
  .nav {
    position: fixed;
    inset: 5rem var(--gutter) auto;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-1);
    padding: var(--space-4);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms;
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav a {
    padding: var(--space-3);
    border-radius: var(--radius-sm);
    font-size: var(--text-base);
  }
  .nav a:hover {
    background: var(--color-surface-offset);
  }
  .nav .nav-cta {
    justify-content: center;
    margin-top: var(--space-2);
    font-size: var(--text-sm);
  }
  .hero-grid,
  .split,
  .request-grid {
    grid-template-columns: 1fr;
  }
  .split-reverse .split-media {
    grid-row: 1;
  }
  .hero-copy h1 {
    max-width: 20ch;
  }
  .lede {
    max-width: 46ch;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .band-list {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
}

@media (max-width: 620px) {
  .brand-mark {
    width: 2.4rem;
  }
  .brand-name {
    font-size: 1.15rem;
  }
  .brand-sub {
    font-size: 0.625rem;
  }
  .services-grid,
  .footer-grid,
  .field-row {
    grid-template-columns: 1fr;
  }
  .hero-badge {
    position: static;
    max-width: none;
    margin-top: var(--space-5);
  }
  .hero-media::after {
    display: none;
  }
  .hero-facts {
    gap: var(--space-2) var(--space-4);
  }
  .btn {
    width: 100%;
  }
  .btn-sm,
  .card-link {
    width: auto;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-base {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Contact email links */
.request-contact a,
.footer-meta a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, currentColor 35%, transparent);
  padding-bottom: 1px;
  overflow-wrap: anywhere;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-meta a {
  font-size: 0.86rem;
  letter-spacing: -0.01em;
}
.request-contact a:hover,
.footer-meta a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
