/* ============================================================
   Silva Cleaning — silvacleanings.com
   Dark luxury aesthetic: near-black + rose gold (from brand post)
   ============================================================ */

:root {
  --bg: #0e0d0f;
  --bg-tint: #141215;
  --surface: #1a171b;
  --line: rgba(217, 160, 140, 0.18);
  --gold-1: #f2cdb5;
  --gold-2: #d9a08c;
  --gold-3: #b76e79;
  --gold-solid: #dba894;
  --text: #f5f1ec;
  --text-muted: #b5aca6;
  --grad-gold: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 45%, var(--gold-3) 100%);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-script: "Great Vibes", cursive;
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --container: 1160px;
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-2);
  color: #1a1a1a;
  padding: 12px 20px;
  z-index: 1001;
  font-weight: 500;
  text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Typography helpers ---------- */
.script {
  font-family: var(--font-script);
  font-weight: 400;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.35em; /* keep swashes from clipping */
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-solid);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--grad-gold);
  flex: none;
}
.eyebrow--center {
  justify-content: center;
}
.eyebrow--center::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--grad-gold);
  flex: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  touch-action: manipulation;
}
.btn:active { transform: scale(0.97); }
.btn--lg { min-height: 58px; padding: 16px 34px; font-size: 1rem; }

.btn--gold {
  background: var(--grad-gold);
  color: #231317;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(217, 160, 140, 0.25);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(217, 160, 140, 0.4);
}

.btn--ghost {
  color: var(--text);
  border: 1px solid rgba(245, 241, 236, 0.28);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--gold-2); color: var(--gold-1); }

.btn--outline {
  color: var(--gold-1);
  border: 1px solid var(--gold-3);
  background: transparent;
}
.btn--outline:hover { background: rgba(217, 160, 140, 0.1); }

.ic {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(14, 13, 15, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
  margin-right: auto;
}
.brand__monogram {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.06em;
  padding-right: 2px;
}
.brand__text { display: flex; flex-direction: column; }
.brand__name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.brand__tagline {
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-solid);
}

.nav__links {
  display: flex;
  gap: 30px;
}
.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 10px 0;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--gold-1); }

.nav__cta { min-height: 44px; padding: 10px 22px; font-size: 0.88rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 170px 0 90px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 160, 140, 0.14) 0%, transparent 62%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.9rem, 6vw, 4.6rem);
  line-height: 1.04;
  margin: 6px 0 24px;
}
.hero__title em {
  font-style: normal;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__title .script { font-size: 1.18em; line-height: 1; }
.hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 38px;
}
.hero__ctas--center { justify-content: center; margin-bottom: 0; }

.hero__badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}
.hero__badges .badge-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.35rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: 6px;
}
.hero__badges .sep {
  width: 1px;
  height: 26px;
  background: var(--line);
}

/* Rose-gold arch (brand motif) */
.hero__visual { display: flex; justify-content: center; }
.arch {
  position: relative;
  width: min(360px, 80vw);
  aspect-ratio: 4 / 5;
  border: 1.5px solid transparent;
  border-radius: 999px 999px 26px 26px;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad-gold) border-box;
  padding: 14px;
}
.arch__inner {
  width: 100%;
  height: 100%;
  border-radius: 999px 999px 18px 18px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(217, 160, 140, 0.16) 0%, transparent 60%),
    var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
}
.arch__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.arch__mono {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 5.5rem;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.06em;
  padding-right: 6px;
}
.arch__line { width: 64px; height: 1px; background: var(--grad-gold); }
.arch__since {
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-solid);
  text-align: center;
  line-height: 2;
}

.arch__pill {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-gold);
  color: #231317;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 12px 26px 11px 30px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.sparkle {
  position: absolute;
  color: var(--gold-1);
  font-size: 1.5rem;
  text-shadow: 0 0 18px rgba(242, 205, 181, 0.8);
  animation: twinkle 3.2s ease-in-out infinite;
}
.sparkle--1 { top: 6%; right: -6%; }
.sparkle--2 { bottom: 12%; left: -8%; font-size: 1rem; animation-delay: 1.4s; }
@keyframes twinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section--tinted {
  background: var(--bg-tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  line-height: 1.12;
  text-align: center;
  margin-bottom: 18px;
}
.section__title--left { text-align: left; }
.section__script { font-size: 1.22em; }
.section__intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 58ch;
  margin: 0 auto 56px;
  font-size: 1.05rem;
}
.section__intro--left { text-align: left; margin: 0 0 34px; }
.section__cta { text-align: center; margin-top: 52px; }
.section__cta--left { text-align: left; margin-top: 0; }

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 160, 140, 0.45);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}
.card__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    var(--grad-gold) border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.card__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.45rem;
  margin-bottom: 12px;
}
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Silva Standard ---------- */
.standard__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.feature { text-align: center; padding: 12px; }
.feature__icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--bg-tint), var(--bg-tint)) padding-box,
    var(--grad-gold) border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.feature p { color: var(--text-muted); font-size: 0.92rem; }

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about__visual { position: relative; display: flex; justify-content: center; }
.arch--photo { width: min(340px, 76vw); }
.arch__inner--tall .arch__mono { font-size: 4.5rem; }
.about__badge {
  position: absolute;
  bottom: 26px;
  right: 4px;
  background: var(--grad-gold);
  color: #231317;
  border-radius: 50%;
  width: 108px;
  height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
}
.about__badge-num {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
}
.about__badge-year {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1.1;
}
.about__text p { color: var(--text-muted); margin-bottom: 18px; max-width: 60ch; }

.timeline {
  list-style: none;
  margin-top: 34px;
  border-left: 1px solid var(--line);
  padding-left: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.timeline li {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -30.5px;
  top: 0.42em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-gold);
}
.timeline__year {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-1);
  min-width: 58px;
}
.timeline__text { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Reviews ---------- */
.reviews__carousel { position: relative; }
.reviews__track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-3) transparent;
}
.reviews__track::-webkit-scrollbar { height: 5px; }
.reviews__track::-webkit-scrollbar-track { background: rgba(217, 160, 140, 0.08); border-radius: 999px; }
.reviews__track::-webkit-scrollbar-thumb { background: var(--gold-3); border-radius: 999px; }

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    var(--grad-gold) border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease;
  touch-action: manipulation;
}
.carousel__btn:hover { transform: translateY(-50%) scale(1.08); }
.carousel__btn:active { transform: translateY(-50%) scale(0.95); }
.carousel__btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold-1);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.carousel__btn--prev { left: -20px; }
.carousel__btn--next { right: -20px; }

.review {
  flex: 0 0 340px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
}
.review__stars {
  width: 110px;
  height: 18px;
  fill: var(--gold-2);
  flex: none;
}
.review blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--text);
  border: 0;
  margin: 0;
  padding: 0;
}
.review figcaption {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review figcaption strong {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.review figcaption span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-solid);
}
/* ---------- Gallery ---------- */
.gallery__carousel { position: relative; }
.gallery__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-3) transparent;
}
.gallery__track::-webkit-scrollbar { height: 5px; }
.gallery__track::-webkit-scrollbar-track { background: rgba(217, 160, 140, 0.08); border-radius: 999px; }
.gallery__track::-webkit-scrollbar-thumb { background: var(--gold-3); border-radius: 999px; }
.gallery__item {
  flex: 0 0 360px;
  width: 360px;
  height: 440px;
  border-radius: 14px;
  border: 1px solid var(--line);
  scroll-snap-align: start;
  object-fit: cover;
}

.reviews__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
  text-align: center;
}
.reviews__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.reviews__headline {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.4rem;
}

/* ---------- Service area ---------- */
.area__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.area__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.area__list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 10px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.area__list li:hover { border-color: var(--gold-2); color: var(--gold-1); }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq__chevron {
  flex: none;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--gold-2);
  border-bottom: 1.5px solid var(--gold-2);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.faq details[open] .faq__chevron { transform: rotate(-135deg); }
.faq details p {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.96rem;
}
.faq details a { color: var(--gold-1); }

/* ---------- Final CTA ---------- */
.cta-final {
  position: relative;
  padding: 110px 0 120px;
  text-align: center;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(217, 160, 140, 0.13) 0%, transparent 70%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.cta-final__mono {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 14px;
  padding-right: 4px;
}
.cta-final__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-final__sub { color: var(--text-muted); margin-bottom: 38px; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 120px;
  background: var(--bg-tint);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.footer__brand .brand__monogram { font-size: 2.6rem; }
.footer__tagline {
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-solid);
}
.footer__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}
.footer__contact a {
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  min-height: 44px;
  transition: color 0.2s ease;
}
.footer__contact a:hover { color: var(--gold-1); }
.footer__note {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-solid);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}
.footer__legal { color: rgba(181, 172, 166, 0.6); font-size: 0.8rem; }

/* ---------- Mobile sticky CTA ---------- */
.stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.stickybar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.stickybar__btn--call { background: #17151a; color: var(--gold-1); }
.stickybar__btn--text { background: var(--grad-gold); color: #231317; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
/* If JS never runs, keep content visible */
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .sparkle { animation: none; }
  .btn, .card { transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .standard__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 26px; }
  .nav__links { display: none; }
}

@media (max-width: 860px) {
  .hero { padding: 130px 0 70px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { order: -1; }
  .arch { width: min(260px, 70vw); }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .area__grid { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 72px 0; }
}

@media (max-width: 640px) {
  .hero { padding: 104px 0 60px; }
  .hero__grid { gap: 30px; }
  .arch { width: min(190px, 56vw); padding: 9px; }
  .arch__mono { font-size: 3.2rem; }
  .arch__line { width: 44px; }
  .arch__since { font-size: 0.62rem; letter-spacing: 0.3em; }
  .eyebrow { font-size: 0.68rem; letter-spacing: 0.24em; }
  .eyebrow::before, .eyebrow::after { width: 28px; }
  .services__grid { grid-template-columns: 1fr; }
  .standard__grid { grid-template-columns: 1fr; gap: 34px; }
  .area__list { grid-template-columns: repeat(2, 1fr); }
  .carousel__btn { display: none; }
  .review { flex-basis: min(84vw, 320px); }
  .gallery__item { flex-basis: min(78vw, 300px); width: min(78vw, 300px); height: 360px; }
  .nav__cta { display: none; }
  .nav__inner { height: 72px; }
  html { scroll-padding-top: 80px; }
  .stickybar { display: flex; }
  .footer { padding-bottom: 150px; } /* clear the sticky bar */
  .hero__ctas .btn { width: 100%; }
  .hero__badges { justify-content: center; }
  .hero__copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .eyebrow::after {
    content: "";
    width: 42px;
    height: 1px;
    background: var(--grad-gold);
    flex: none;
  }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .section__title--left, .section__intro--left, .section__cta--left { text-align: center; }
  .section__intro--left { margin: 0 auto 34px; }
  .about__badge { width: 92px; height: 92px; bottom: 12px; right: 12px; }
  .timeline { text-align: left; }
}
