:root {
  --bg: #f4f5f7;
  --bg-elevated: #ffffff;
  --ink: #14181c;
  --ink-soft: #4a5560;
  --line: rgba(20, 24, 28, 0.1);
  --brand: #e31b12;
  --brand-deep: #a0100c;
  --signal: #ff6a00;
  --flame: #ffc107;
  --steel: #0d0f12;
  --steel-mid: #1a1f26;
  --fog: #dce1e6;
  --shadow: 0 24px 60px rgba(20, 24, 28, 0.12);
  --radius: 18px;
  --header-h: 4.5rem;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(214, 24, 24, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(42, 52, 62, 0.08), transparent 50%),
    linear-gradient(180deg, #eef0f3 0%, var(--bg) 30%, #eceef1 100%);
  overflow-x: hidden;
  padding-bottom: 0;
}

img,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--brand);
  color: white;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.section-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.section-header {
  max-width: 38rem;
  margin-bottom: 2.75rem;
}

.section-header h2,
.about-copy h2,
.appointments h2,
.location-copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-header p,
.about-copy p,
.appointments p {
  margin: 0;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.1rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--flame) 0%, var(--signal) 42%, var(--brand) 100%);
  color: #140800;
  box-shadow: 0 12px 28px rgba(255, 106, 0, 0.32);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffd24a 0%, #ff7a1a 45%, var(--brand-deep) 100%);
  color: #100700;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-secondary {
  background: var(--bg-elevated);
  border-color: var(--line);
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: #f4f5f7;
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 2;
  margin-left: auto;
}

.header-phone,
.header-text {
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  text-decoration: none;
}

.header-phone {
  color: var(--brand);
}

.header-text {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  color: var(--ink);
}

.site-header:not(.is-scrolled) .header-phone {
  color: #ffb088;
}

.site-header:not(.is-scrolled) .header-text {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.35);
}

.header-actions .header-phone,
.header-actions .header-text {
  display: none;
}

.mobile-only {
  display: none;
}

@media (min-width: 761px) {
  .header-actions .header-phone,
  .header-actions .header-text {
    display: inline-flex;
    align-items: center;
  }

  .nav-toggle {
    display: none !important;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.logo-img {
  width: 3.5rem;
  height: auto;
  background: transparent;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.logo-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.site-header:not(.is-scrolled) .logo-name,
.site-header:not(.is-scrolled) .logo-sub {
  color: #fff;
}

.site-header:not(.is-scrolled) .logo-sub {
  color: rgba(255, 255, 255, 0.72);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  z-index: 2;
}

.site-header.is-scrolled .nav-toggle {
  background: rgba(20, 24, 28, 0.06);
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.28rem auto;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.site-header:not(.is-scrolled) .nav-toggle {
  color: #fff;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.site-nav {
  display: none;
}

@media (min-width: 761px) {
  .site-nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem 1.15rem;
    height: var(--header-h);
    width: min(1120px, calc(100% - 2.5rem));
    padding-right: 11.5rem;
    background: transparent;
    opacity: 1;
    pointer-events: none;
  }

  .site-nav a {
    pointer-events: auto;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.2s ease;
  }

  .site-nav a:hover {
    color: #fff;
  }

  .site-nav.is-scrolled a:not(.nav-cta) {
    color: var(--ink-soft);
  }

  .site-nav.is-scrolled a:not(.nav-cta):hover {
    color: var(--brand);
  }
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--brand);
}

.nav-cta {
  min-height: 2.6rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--flame) 0%, var(--signal) 45%, var(--brand) 100%);
  color: #140800 !important;
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.28);
}

.nav-cta:hover {
  filter: brightness(1.05);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 3rem) 0 5.5rem;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.12);
  will-change: transform;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 17, 20, 0.88) 0%, rgba(14, 17, 20, 0.62) 48%, rgba(14, 17, 20, 0.35) 100%),
    linear-gradient(180deg, rgba(14, 17, 20, 0.45) 0%, rgba(14, 17, 20, 0.15) 35%, rgba(14, 17, 20, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
  max-width: 44rem;
  animation: riseIn 0.9s var(--ease) both;
  will-change: transform, opacity;
}

.hero-logo {
  width: min(100%, 28rem);
  height: auto;
  margin: 0 0 1.25rem;
  display: block;
  background: transparent;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 22ch;
  color: rgba(255, 255, 255, 0.94);
}

.hero-lede {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Trust bar */
.trust-bar {
  position: relative;
  z-index: 2;
  padding: 2.25rem 0 0.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.trust-item span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Services */
.services {
  padding: 5.5rem 0 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.service {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(214, 24, 24, 0.25);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  color: var(--brand);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.service p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.specialty {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.75rem;
  align-items: center;
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 106, 0, 0.16), transparent 42%),
    linear-gradient(135deg, #14191f 0%, #232b34 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.specialty .eyebrow {
  color: #ff9a62;
}

.specialty h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.specialty-copy p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  max-width: 40rem;
}

.specialty-list {
  margin: 0;
  padding: 1.15rem 1.25rem;
  list-style: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.specialty-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.2rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.specialty-list li:first-child {
  border-top: 0;
  padding-top: 0.15rem;
}

.specialty-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--flame), var(--brand));
}

.specialty-list li:first-child::before {
  top: 0.55rem;
}

/* About */
.about {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 5rem auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.about-media {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 120%;
  min-height: 480px;
  object-fit: cover;
  will-change: transform;
  transform: translate3d(0, -8%, 0) scale(1.08);
}

.about-copy .about-points {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.about-copy .about-points li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 600;
}

.about-copy .about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(214, 24, 24, 0.15);
}

.about-copy p + p {
  margin-top: 1rem;
}

/* Pricing */
.pricing {
  padding: 2rem 0 5rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.price-card {
  position: relative;
  padding: 1.35rem 1.2rem 1.4rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  min-height: 9.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(20, 24, 28, 0.1);
}

.price-card.featured {
  background: linear-gradient(160deg, var(--steel) 0%, var(--steel-mid) 100%);
  color: #fff;
  border-color: transparent;
}

.price-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.price-card.featured h3 {
  color: rgba(255, 255, 255, 0.78);
}

.price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price span {
  font-size: 0.95rem;
  font-weight: 600;
  margin-right: 0.15rem;
}

.price .each {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-left: 0.15rem;
}

.price.free {
  color: var(--brand);
  font-size: 1.7rem;
}

.price-card.featured .price.free,
.price-card.featured .price {
  color: #fff;
}

.badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  margin: 0;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: var(--signal);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.note {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.price-card.featured .note {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-footnote {
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Appointments */
.appointments {
  padding-bottom: 5rem;
}

.appointments-panel {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 77, 26, 0.28), transparent 35%),
    linear-gradient(135deg, #171d23 0%, #25313b 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.appointments .eyebrow {
  color: #ff8f6b;
}

.appointments p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 34rem;
}

.appointments p a {
  color: #ffb088;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.appointments p a:hover {
  color: #fff;
}

.appointment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hours-box {
  margin: 0;
  padding: 1.4rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hours-box dt {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.hours-box dd {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.hours-box dd span {
  color: rgba(255, 255, 255, 0.55);
}

/* Location */
.location {
  padding-bottom: 5rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: stretch;
}

.location-copy address {
  margin: 0 0 1.25rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.45;
}

.contact-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
}

.contact-list li + li {
  margin-top: 0.35rem;
}

.contact-list a:hover {
  color: var(--brand);
}

.map-embed {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 340px;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
}

.footer-logo {
  width: 7.5rem;
  height: auto;
  margin-bottom: 0.85rem;
  background: transparent;
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.footer-grid > div > p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: start;
  justify-content: end;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--brand);
}

.copyright {
  grid-column: 1 / -1;
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-nap {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-nap a:hover {
  color: var(--brand);
}

/* Process */
.process {
  padding: 4.5rem 0 2rem;
}

.process-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  counter-reset: none;
}

.process-grid li {
  padding: 1.4rem 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.process-step {
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand);
}

.process-grid h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.process-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* Why us */
.why-us {
  padding: 2rem 0 4.5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.why-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.why-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.why-card p {
  margin: 0;
  color: var(--ink-soft);
}

/* Booking form */
.booking-form {
  display: grid;
  gap: 0.9rem;
  margin: 1.35rem 0 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.booking-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0.8rem 0.9rem;
  font: inherit;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(255, 106, 0, 0.55);
  outline-offset: 1px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hours-live {
  display: inline-block;
  margin-left: 0.55rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

.hours-live.is-open {
  background: rgba(46, 204, 113, 0.2);
  color: #7dffb2;
}

.hours-live.is-closed {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* FAQ */
.faq {
  padding: 2rem 0 4.5rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
}

.faq-list details {
  border-radius: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 0.35rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 0;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--brand);
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.faq-list a {
  color: var(--brand);
  font-weight: 600;
}

/* Service area */
.area {
  padding-bottom: 4.5rem;
}

.area-panel {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.75rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: calc(var(--radius) + 6px);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.area-panel h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -0.03em;
}

.area-panel > div > p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.area-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.area-list li {
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: #f1f3f6;
  font-weight: 700;
  text-align: center;
}

.honey {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 0.75rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.form-status[hidden] {
  display: none !important;
}

.form-status.is-success {
  background: rgba(46, 160, 67, 0.18);
  border: 1px solid rgba(46, 160, 67, 0.45);
  color: #d8f5de;
}

.form-status.is-error {
  background: rgba(227, 27, 18, 0.16);
  border: 1px solid rgba(227, 27, 18, 0.4);
  color: #ffd4d1;
}

.form-help {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

/* Reviews */
.reviews {
  padding: 4rem 0 2rem;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.25rem;
  align-items: stretch;
}

.review-stage {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: calc(var(--radius) + 6px);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 17rem;
  display: flex;
  flex-direction: column;
}

.review-badge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-bottom: 1.1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.review-stars {
  color: #f5b301;
  letter-spacing: 0.08em;
  font-size: 1.15rem;
}

.review-quote {
  margin: 0;
  flex: 1;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.review-quote.is-fading {
  opacity: 0;
  transform: translateY(8px);
}

.review-quote p {
  margin: 0 0 1.25rem;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.review-quote footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  align-items: baseline;
}

.review-quote cite {
  font-style: normal;
  font-weight: 700;
  font-family: var(--font-display);
}

.review-source {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.review-dots {
  display: flex;
  gap: 0.45rem;
  margin-top: 1.35rem;
}

.review-dots button {
  width: 0.65rem;
  height: 0.65rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 24, 28, 0.18);
  cursor: pointer;
}

.review-dots button.is-active {
  background: var(--brand);
  transform: scale(1.15);
}

.review-cta {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(160deg, #171d23 0%, #2a343e 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.review-cta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.review-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.review-cta .btn {
  width: 100%;
}

.review-note {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.review-live-map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 180px;
}

.review-live-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
}

/* Warranty */
.warranty {
  padding: 2rem 0 1rem;
}

.warranty-panel {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 193, 7, 0.18), transparent 40%),
    linear-gradient(135deg, #14191f 0%, #25313b 100%);
  color: #fff;
}

.warranty-panel .eyebrow {
  color: #ffc107;
}

.warranty-panel h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  letter-spacing: -0.03em;
}

.warranty-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 38rem;
}

.warranty-points {
  margin: 0;
  padding: 1.15rem 1.25rem;
  list-style: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.warranty-points li {
  padding: 0.55rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.warranty-points li:first-child {
  border-top: 0;
  padding-top: 0.1rem;
}

/* Amenities */
.amenities {
  padding: 3.5rem 0 1.5rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.amenities-grid article {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.amenities-grid h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.amenities-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Makes */
.makes {
  padding: 3rem 0 2rem;
}

.makes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.makes-grid article {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.makes-grid h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brand);
}

.makes-grid p {
  margin: 0;
  color: var(--ink-soft);
}

/* Sticky mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 0.45rem;
  padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(16, 19, 23, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 2.7rem;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-cta .mobile-cta-book {
  background: linear-gradient(135deg, var(--flame) 0%, var(--signal) 45%, var(--brand) 100%);
  color: #140800;
  border: 0;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-content { animation: none; }
  .hero-media,
  .hero-media img,
  .hero-content,
  .about-media img {
    will-change: auto;
    transform: none !important;
  }
  .btn:hover,
  .service:hover,
  .price-card:hover {
    transform: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .trust-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-grid,
  .process-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about,
  .appointments-panel,
  .location-grid,
  .footer-grid,
  .specialty,
  .area-panel,
  .reviews-layout,
  .warranty-panel {
    grid-template-columns: 1fr;
  }

  .amenities-grid,
  .makes-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: start;
  }

  .about-media,
  .about-media img {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav .mobile-only {
    display: inline-flex;
    width: fit-content;
  }

  .amenities-grid,
  .makes-grid,
  .process-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    z-index: 300;
  }

  .nav-toggle {
    position: relative;
    z-index: 310;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 290;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.1rem;
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    padding: 5.5rem 2rem 2rem;
    /* Dark translucent frosted panel at top of page (menu-frost-1) */
    background-color: rgba(16, 19, 23, 0.88);
    background-image: none;
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    backdrop-filter: blur(16px) saturate(1.2);
    opacity: 1;
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
    pointer-events: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.3s var(--ease), visibility 0.3s var(--ease), background-color 0.25s var(--ease);
  }

  .site-nav.is-open {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  .site-nav a {
    position: relative;
    z-index: 1;
    font-size: 1.35rem;
    color: #fff !important;
  }

  /* White translucent frosted panel when header has scrolled */
  .site-nav.is-scrolled,
  .site-header.is-scrolled ~ .site-nav {
    background-color: rgba(244, 245, 247, 0.82) !important;
    background-image: none !important;
    -webkit-backdrop-filter: blur(16px) saturate(1.2) !important;
    backdrop-filter: blur(16px) saturate(1.2) !important;
  }

  .site-nav.is-scrolled a:not(.nav-cta),
  .site-header.is-scrolled ~ .site-nav a:not(.nav-cta) {
    color: #14181c !important;
  }

  .site-nav.is-scrolled a:not(.nav-cta):hover,
  .site-header.is-scrolled ~ .site-nav a:not(.nav-cta):hover {
    color: #e31b12 !important;
  }

  .site-nav.is-scrolled .header-phone,
  .site-header.is-scrolled ~ .site-nav .header-phone {
    color: #e31b12 !important;
  }

  .site-nav.is-scrolled .header-text,
  .site-header.is-scrolled ~ .site-nav .header-text {
    color: #14181c !important;
    border-color: rgba(20, 24, 28, 0.1);
  }

  .nav-cta {
    width: fit-content;
    margin-top: 0.5rem;
  }

  .hero {
    min-height: 92vh;
    align-items: center;
    padding-bottom: 5.5rem;
  }

  .hero-content {
    max-width: none;
  }

  .hero h1 {
    max-width: none;
  }

  .mobile-cta {
    display: grid;
  }

  body {
    padding-bottom: 4.75rem;
  }

  .site-footer {
    padding-bottom: 1.25rem;
  }
}

@media (max-width: 560px) {
  .trust-grid,
  .service-grid,
  .price-grid,
  .process-grid,
  .why-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .appointment-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section-inner,
  .header-inner,
  .hero-content,
  .about {
    width: min(1120px, calc(100% - 1.5rem));
  }
}
