.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-content: end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(160deg, #0c1615 0%, #132422 42%, #0f1b1a 100%);
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% center;
  transform: scale(1.02);
  animation: heroPhotoIn 1.4s ease both;
}

@keyframes heroPhotoIn {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

.hero__glows {
  position: absolute;
  inset: -8%;
  transition: transform 500ms ease-out;
  will-change: transform;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  will-change: transform;
}

.hero__glow--a {
  width: min(58vw, 520px);
  height: min(58vw, 520px);
  top: -8%;
  left: -10%;
  background: radial-gradient(circle, rgba(58, 133, 127, 0.55) 0%, transparent 68%);
  animation: heroFloatA 14s ease-in-out infinite alternate;
}

.hero__glow--b {
  width: min(48vw, 440px);
  height: min(48vw, 440px);
  right: -8%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(184, 149, 106, 0.28) 0%, transparent 70%);
  animation: heroFloatB 18s ease-in-out infinite alternate;
}

.hero__glow--c {
  width: min(36vw, 320px);
  height: min(36vw, 320px);
  top: 38%;
  right: 28%;
  background: radial-gradient(circle, rgba(42, 102, 97, 0.35) 0%, transparent 72%);
  animation: heroFloatC 12s ease-in-out infinite alternate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 16, 15, 0.86) 0%, rgba(8, 16, 15, 0.58) 42%, rgba(8, 16, 15, 0.22) 72%, rgba(8, 16, 15, 0.4) 100%),
    linear-gradient(to top, rgba(8, 16, 15, 0.82) 0%, rgba(8, 16, 15, 0.18) 50%, rgba(8, 16, 15, 0.28) 100%);
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) 0 5.5rem;
  max-width: 40rem;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.hero__kicker::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.2vw, 4.4rem);
  letter-spacing: 0;
  margin: 0 0 0.85rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.18;
  text-wrap: balance;
}

.hero__specialty {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1rem;
  font-weight: 400;
  line-height: 1.55;
  max-width: 28rem;
}

.hero__tagline {
  max-width: 26rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.9;
  margin: 0 0 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero .btn--primary {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.hero .btn--primary:hover {
  background: #f3f6f5;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 1.35rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.hero__scroll:hover {
  color: #fff;
}

.hero__scroll-line {
  width: 1px;
  height: 2.2rem;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.75));
  animation: heroScrollPulse 1.8s ease-in-out infinite;
}

.hero .reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: heroReveal 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero .reveal:nth-child(1) { animation-delay: 80ms; }
.hero .reveal:nth-child(2) { animation-delay: 180ms; }
.hero .reveal:nth-child(3) { animation-delay: 280ms; }
.hero .reveal:nth-child(4) { animation-delay: 380ms; }
.hero .reveal:nth-child(5) { animation-delay: 480ms; }

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFloatA {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4%, 6%, 0) scale(1.08); }
}

@keyframes heroFloatB {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-5%, -4%, 0) scale(1.1); }
}

@keyframes heroFloatC {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(6%, -5%, 0); }
}

@keyframes heroScrollPulse {
  0%, 100% { transform: scaleY(0.65); opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 0.9; }
}

@media (max-width: 768px) {
  .hero {
    min-height: calc(100svh - var(--dock-h));
    align-content: center;
  }

  .hero__content {
    padding: calc(var(--header-h) + 1.75rem) 0 calc(3.5rem + var(--dock-h));
    max-width: none;
  }

  .hero__name {
    font-size: clamp(2.15rem, 9.5vw, 3rem);
  }

  .hero__specialty {
    font-size: 1.05rem;
  }

  .hero__tagline {
    font-size: 0.95rem;
    margin-bottom: 1.45rem;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .btn {
    flex: 1 1 calc(50% - 0.3rem);
    min-width: 0;
  }

  .hero__scroll {
    bottom: calc(0.65rem + var(--dock-h));
  }

  .hero__glow--a {
    width: 70vw;
    height: 70vw;
  }

  .hero__glow--c {
    display: none;
  }

  .hero__photo {
    object-position: 45% center;
  }
}

@media (max-width: 420px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
    width: 100%;
  }

  .hero__scroll {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__glow--a,
  .hero__glow--b,
  .hero__glow--c,
  .hero__scroll-line,
  .hero__photo,
  .hero .reveal {
    animation: none !important;
  }

  .hero .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__photo {
    transform: scale(1.02);
    opacity: 1;
  }
}

.cta-band {
  background: var(--brand);
  color: #fff;
}

.cta-band .section-title,
.cta-band p {
  color: #fff;
}

.cta-band p {
  opacity: 0.85;
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
}

.contact-card h3 {
  margin-bottom: 0.75rem;
}

.contact-card p {
  margin-bottom: 0.65rem;
}

.contact-card a[dir="ltr"] {
  letter-spacing: 0.02em;
}

.map-embed {
  margin-top: 2rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
  background:
    radial-gradient(circle at 30% 35%, rgba(42, 102, 97, 0.18), transparent 28%),
    radial-gradient(circle at 70% 60%, rgba(184, 149, 106, 0.16), transparent 32%),
    linear-gradient(160deg, #dfeae7, #eef3f1 55%, #e4ebe8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.map-embed__inner {
  max-width: 22rem;
}

.map-embed__inner h3 {
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.map-embed__inner p {
  margin-bottom: 1.25rem;
}

.reviews-hero {
  padding: calc(var(--header-h) + 3rem) 0 2rem;
  background:
    radial-gradient(circle at 12% 20%, rgba(184, 149, 106, 0.12), transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(42, 102, 97, 0.08), transparent 40%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.reviews-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.75rem 2.5rem;
  align-items: end;
}

.reviews-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.reviews-hero__score {
  justify-self: start;
  padding-bottom: 0.15rem;
  animation: reviewsFadeUp 0.7s ease both;
}

.reviews-hero__score strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.2rem);
  line-height: 0.95;
  color: var(--ink);
  font-weight: 700;
}

.reviews-hero__score span {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.reviews-metrics {
  padding: 0 0 0.5rem;
}

.reviews-metrics__list {
  list-style: none;
  margin: 0;
  padding: 1.15rem 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem 1.25rem;
  border-block: 1px solid var(--line);
}

.reviews-metrics__list li {
  min-width: 0;
}

.reviews-metrics__list strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.reviews-metrics__list span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

.reviews-section {
  padding-top: 2rem;
}

.reviews-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.reviews-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  margin: 0;
  color: var(--ink);
}

.reviews-section__meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.review-card {
  margin: 0;
  padding: 1.4rem 1.3rem 1.25rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(215, 224, 221, 0.95);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  animation: reviewsFadeUp 0.55s ease both;
  transition: border-color var(--ease), transform var(--ease), background var(--ease), box-shadow var(--ease);
}

.review-card:nth-child(2) { animation-delay: 0.05s; }
.review-card:nth-child(3) { animation-delay: 0.1s; }
.review-card:nth-child(4) { animation-delay: 0.15s; }
.review-card:nth-child(5) { animation-delay: 0.2s; }
.review-card:nth-child(6) { animation-delay: 0.25s; }

.review-card:hover {
  background: #fff;
  border-color: rgba(42, 102, 97, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(21, 40, 38, 0.06);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.review-card__mark {
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1;
  color: var(--accent);
}

.review-card__badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.01em;
}

.review-card__text {
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  line-height: 1.9;
  color: var(--ink);
  flex: 1;
}

.review-card__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.review-card__who {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.review-card__author {
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.review-card__reason {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.review-card__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  font-size: 0.78rem;
  color: var(--ink-muted);
  text-align: end;
  flex-shrink: 0;
}

.reviews-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
}

.reviews-empty h2 {
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.reviews-cta {
  margin-top: 2.75rem;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

.reviews-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.reviews-cta p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.reviews-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  flex-shrink: 0;
}

@keyframes reviewsFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-hero__score,
  .review-card {
    animation: none;
  }
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.prose p,
.prose li {
  color: var(--ink-muted);
}

.prose ul {
  list-style: disc;
  padding-inline-start: 1.25rem;
  margin-bottom: 1rem;
}

.service-detail-hero {
  padding: calc(var(--header-h) + 3rem) 0 2.25rem;
  background:
    radial-gradient(circle at 18% 20%, rgba(184, 149, 106, 0.1), transparent 40%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.service-detail-hero--media {
  position: relative;
  min-height: min(62vh, 560px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: #132422;
  padding: 0;
}

.service-detail-hero__media {
  position: absolute;
  inset: 0;
}

.service-detail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.03);
}

.service-detail-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(8, 16, 15, 0.82) 0%, rgba(8, 16, 15, 0.42) 55%, rgba(8, 16, 15, 0.28) 100%),
    linear-gradient(to top, rgba(8, 16, 15, 0.88) 0%, rgba(8, 16, 15, 0.2) 55%, rgba(8, 16, 15, 0.3) 100%);
}

.service-detail-hero__content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 2.5rem) 0 2.75rem;
  max-width: 42rem;
}

.service-detail-hero--media .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.service-detail-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: inherit;
  opacity: 0.8;
}

.service-detail-hero:not(.service-detail-hero--media) .service-detail-hero__back {
  color: var(--ink-muted);
  opacity: 1;
}

.service-detail-hero__back:hover {
  opacity: 1;
  color: var(--accent);
}

.service-detail-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.3;
  margin: 0 0 0.75rem;
}

.service-detail-hero:not(.service-detail-hero--media) .service-detail-hero__title {
  color: var(--ink);
}

.service-detail-hero__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 34rem;
}

.service-detail-hero:not(.service-detail-hero--media) .service-detail-hero__lead {
  color: var(--ink-muted);
}

.service-detail-hero--media .service-detail-hero__lead {
  color: rgba(255, 255, 255, 0.86);
}

.service-detail-note {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.form-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.side-panel {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 1.5rem;
}

.side-panel h3 {
  margin-bottom: 0.75rem;
}

.side-panel .btn {
  margin-top: 0.55rem;
}

/* Appointment page */
.appt-hero {
  padding: calc(var(--header-h) + 3rem) 0 2rem;
  background:
    radial-gradient(circle at 14% 18%, rgba(184, 149, 106, 0.12), transparent 42%),
    radial-gradient(circle at 88% 10%, rgba(42, 102, 97, 0.08), transparent 40%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.appt-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.75rem 2.5rem;
  align-items: end;
}

.appt-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.appt-hero__ways {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.appt-hero__ways li {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.appt-hero__ways span {
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.appt-hero__ways a {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
}

.appt-hero__ways a:hover {
  color: var(--brand);
}

.appt-section {
  padding-top: 1.25rem;
}

.appt-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.75fr);
  gap: 1.75rem 2.5rem;
  align-items: start;
}

.appt-form {
  padding: 1.75rem 1.6rem 1.6rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(215, 224, 221, 0.95);
  border-radius: 16px;
  animation: apptFade 0.55s ease both;
}

.appt-form__head {
  margin-bottom: 1.5rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.appt-form__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  margin: 0 0 0.4rem;
  color: var(--ink);
}

.appt-form__head p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

.appt-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

.appt-optional {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.appt-form__submit {
  margin-top: 0.35rem;
}

.appt-form__errors {
  margin-bottom: 1rem;
  color: var(--danger);
  font-size: 0.9rem;
}

.appt-aside {
  border: 1px solid rgba(215, 224, 221, 0.95);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  animation: apptFade 0.65s ease both 0.08s;
}

.appt-aside__photo {
  aspect-ratio: 4 / 3.4;
  background: var(--line);
  overflow: hidden;
}

.appt-aside__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.appt-aside__body {
  padding: 1.25rem 1.2rem 1.35rem;
}

.appt-aside__label {
  margin: 0 0 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
}

.appt-aside__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.appt-aside__text {
  margin: 0 0 1.1rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

.appt-aside__facts {
  margin: 0 0 1.15rem;
  display: grid;
  gap: 0.85rem;
}

.appt-aside__facts div {
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.appt-aside__facts dt {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-bottom: 0.25rem;
}

.appt-aside__facts dd {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink);
}

.appt-aside__actions {
  display: grid;
  gap: 0.5rem;
}

.appt-success {
  padding: calc(var(--header-h) + 4.5rem) 0 5rem;
  min-height: min(78vh, 720px);
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(42, 102, 97, 0.08), transparent 42%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.appt-success__inner {
  max-width: 36rem;
  animation: apptFade 0.55s ease both;
}

.appt-success__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.appt-success__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.75rem;
}

@keyframes apptFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .appt-form,
  .appt-aside,
  .appt-success__inner {
    animation: none;
  }
}

.principle-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.principle-item {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.principle-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

/* About page */
.about-hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.about-hero__media {
  position: absolute;
  inset: 0;
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.03);
}

.about-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(8, 16, 15, 0.86) 0%, rgba(8, 16, 15, 0.45) 55%, rgba(8, 16, 15, 0.3) 100%),
    linear-gradient(to top, rgba(8, 16, 15, 0.88) 0%, rgba(8, 16, 15, 0.2) 55%, rgba(8, 16, 15, 0.35) 100%);
}

.about-hero__content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 3rem) 0 3.5rem;
  max-width: 40rem;
}

.about-hero__kicker {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.about-hero__kicker::before {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: var(--accent);
}

.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.2;
  margin: 0 0 0.7rem;
  color: #fff;
}

.about-hero__specialty {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
}

.about-hero__lead {
  margin: 0 0 1.5rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.about-hero .btn--primary {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.about-hero .btn--primary:hover {
  background: #f3f6f5;
  color: var(--ink);
}

.about-hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0.25rem 0;
}

.about-fact {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.about-fact__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

.about-fact__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.about-story__copy p {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--ink-muted);
}

.about-story__copy p + p {
  margin-top: 1rem;
}

.about-principles__head {
  margin-bottom: 1.75rem;
  max-width: 36rem;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.about-principle {
  padding: 1.35rem 1.2rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(215, 224, 221, 0.95);
  border-radius: 14px;
  transition: border-color var(--ease), transform var(--ease), background var(--ease);
}

.about-principle:hover {
  background: #fff;
  border-color: rgba(42, 102, 97, 0.28);
  transform: translateY(-2px);
}

.about-principle__index {
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.about-principle h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.55rem;
}

.about-principle p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.8;
}

.about-closing {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-closing__media {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
}

.about-closing__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  transition: transform 400ms ease;
}

.about-closing__media:hover img {
  transform: scale(1.03);
}

.about-closing__content .section-lead {
  margin-bottom: 1.35rem;
}

.about-closing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

@media (max-width: 960px) {
  .about-facts {
    grid-template-columns: 1fr 1fr;
  }

  .about-story__grid,
  .about-closing,
  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-closing__media {
    max-width: 420px;
  }
}

@media (max-width: 700px) {
  .about-hero {
    min-height: min(78vh, calc(100svh - var(--dock-h)));
  }

  .about-hero__content {
    padding: calc(var(--header-h) + 2rem) 0 2.5rem;
  }

  .about-hero__title {
    font-size: clamp(2.1rem, 9vw, 2.9rem);
  }

  .about-facts {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
  }

  .about-hero__actions .btn,
  .about-closing__actions .btn {
    flex: 1 1 auto;
  }

  .about-closing__actions {
    width: 100%;
  }

  .about-principle {
    padding: 1.2rem 1.05rem;
  }
}

@media (max-width: 420px) {
  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-hero__actions {
    flex-direction: column;
  }

  .about-hero__actions .btn {
    width: 100%;
  }
}

/* Articles list */
.articles-hero {
  padding: calc(var(--header-h) + 3rem) 0 2rem;
  background:
    radial-gradient(circle at 85% 10%, rgba(42, 102, 97, 0.08), transparent 40%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.articles-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.75rem 2.5rem;
  align-items: end;
}

.articles-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.articles-search__box {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.35rem 0.35rem 0.35rem 0.85rem;
  box-shadow: 0 8px 28px rgba(21, 40, 38, 0.05);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.articles-search__box:focus-within {
  border-color: rgba(42, 102, 97, 0.45);
  box-shadow: 0 0 0 3px rgba(42, 102, 97, 0.12);
}

.articles-search__icon {
  color: var(--ink-muted);
  flex-shrink: 0;
}

.articles-search__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.55rem 0.35rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
}

.articles-search__input::placeholder {
  color: rgba(92, 107, 105, 0.75);
}

.articles-search__clear {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--ink-muted);
  font-size: 1.2rem;
  line-height: 1;
}

.articles-search__clear:hover {
  background: var(--bg-soft);
  color: var(--ink);
}

.articles-search__btn {
  flex-shrink: 0;
}

.articles-search__meta {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.articles-section {
  padding-top: 1.5rem;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.25rem 1.2rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(215, 224, 221, 0.95);
  border-radius: 14px;
  color: inherit;
  min-height: 100%;
  transition: border-color var(--ease), transform var(--ease), background var(--ease), box-shadow var(--ease);
}

.article-card:hover {
  background: #fff;
  border-color: rgba(42, 102, 97, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(21, 40, 38, 0.06);
  color: inherit;
}

.article-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.article-card__index {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
}

.article-card__date {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.article-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin: 0 0 0.55rem;
  color: var(--ink);
  line-height: 1.4;
}

.article-card:hover .article-card__title {
  color: var(--brand);
}

.article-card__summary {
  margin: 0 0 1.15rem;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--ink-muted);
  flex: 1;
}

.article-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand);
}

.pagination {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.85rem;
}

.pagination__pages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.pagination__btn,
.pagination__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}

.pagination__btn:hover,
.pagination__page:hover {
  color: var(--brand);
  border-color: rgba(42, 102, 97, 0.35);
}

.pagination__page.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.pagination__btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.pagination__status {
  width: 100%;
  text-align: center;
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.articles-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
}

.articles-empty h2 {
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.articles-empty p {
  margin-bottom: 1.25rem;
}

/* Article detail */
.article-detail__hero {
  padding: calc(var(--header-h) + 2.75rem) 0 2.25rem;
  background:
    radial-gradient(circle at 18% 20%, rgba(184, 149, 106, 0.1), transparent 40%),
    radial-gradient(circle at 90% 8%, rgba(42, 102, 97, 0.08), transparent 42%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.article-detail__hero-inner {
  max-width: 48rem;
}

.article-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-muted);
  transition: color var(--ease);
}

.article-detail__back:hover {
  color: var(--brand);
}

.article-detail__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.35;
  margin: 0 0 1rem;
  color: var(--ink);
  max-width: 18ch;
}

.article-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.1rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.article-detail__body {
  padding-top: 0.5rem;
}

.article-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 15.5rem;
  gap: 2.5rem 3rem;
  align-items: start;
}

.article-detail__main {
  max-width: 42rem;
  animation: articleDetailIn 0.55s ease both;
}

.article-detail__lead {
  margin: 0 0 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.85;
  color: var(--ink);
}

.article-detail__content.prose {
  max-width: none;
}

.article-detail__content.prose p {
  font-size: 1.02rem;
  line-height: 2;
  margin: 0 0 1.15rem;
  color: var(--ink-muted);
}

.article-detail__content.prose p:last-child {
  margin-bottom: 0;
}

.article-detail__note {
  margin-top: 2rem;
  padding: 1.15rem 0 0;
  border-top: 1px solid var(--line);
}

.article-detail__note strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.article-detail__note p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--ink-muted);
}

.article-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.75rem;
}

.article-detail__aside {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  animation: articleDetailIn 0.65s ease both 0.08s;
}

.article-detail__aside-card {
  padding: 1.35rem 1.25rem 1.25rem;
  border: 1px solid rgba(215, 224, 221, 0.95);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.article-detail__aside-label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.article-detail__aside-text {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.article-detail__aside-muted {
  margin: 0 0 1.15rem;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

.article-detail__aside-link {
  display: block;
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand);
}

.article-detail__aside-link:hover {
  color: var(--ink);
}

.article-related {
  padding: 1rem 0 4rem;
  background:
    radial-gradient(circle at 88% 0%, rgba(42, 102, 97, 0.05), transparent 40%),
    var(--bg-soft);
}

.article-related__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.article-related__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin: 0;
  color: var(--ink);
}

.article-related__all {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand);
}

.article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

@keyframes articleDetailIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-detail__main,
  .article-detail__aside {
    animation: none;
  }
}

@media (max-width: 960px) {
  .article-detail__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .article-detail__aside {
    position: static;
    order: 2;
  }

  .article-detail__main {
    order: 1;
  }

  .article-related__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .article-detail__title {
    max-width: none;
  }

  .article-related__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .reviews-metrics__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .articles-hero__inner,
  .reviews-hero__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .articles-grid,
  .reviews-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid,
  .form-shell {
    grid-template-columns: 1fr;
  }

  .appt-hero__inner,
  .appt-layout {
    grid-template-columns: 1fr;
  }

  .appt-aside {
    position: static;
  }

  .appt-form__row {
    grid-template-columns: 1fr;
  }

  .reviews-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-cta__actions,
  .faq-cta__actions,
  .appt-success__actions,
  .article-detail__actions,
  .about-closing__actions {
    width: 100%;
  }

  .reviews-cta__actions .btn,
  .faq-cta__actions .btn,
  .appt-success__actions .btn,
  .article-detail__actions .btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 640px) {
  .reviews-metrics__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem 1rem;
  }

  .review-card__foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-card__aside {
    align-items: flex-start;
    text-align: start;
  }

  .appt-form {
    padding: 1.35rem 1.1rem 1.25rem;
    border-radius: 14px;
  }

  .appt-hero {
    padding: calc(var(--header-h) + 2.15rem) 0 1.5rem;
  }

  .appt-hero__title,
  .articles-hero__title,
  .reviews-hero__title,
  .faq-hero__title {
    font-size: clamp(1.85rem, 8.5vw, 2.5rem);
  }

  .appt-success {
    padding: calc(var(--header-h) + 3rem) 0 3.5rem;
    min-height: auto;
  }

  .appt-success__actions {
    flex-direction: column;
  }

  .appt-success__actions .btn {
    width: 100%;
  }

  .map-embed {
    min-height: 260px;
    padding: 1.5rem 1.15rem;
  }

  .side-panel {
    padding: 1.25rem 1.1rem;
  }

  .contact-card {
    padding: 1.25rem 1.1rem;
  }

  .article-related__head,
  .reviews-section__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .articles-hero,
  .reviews-hero,
  .faq-hero,
  .article-detail__hero {
    padding: calc(var(--header-h) + 2.15rem) 0 1.65rem;
  }
}

@media (max-width: 600px) {
  .articles-search__box {
    flex-wrap: wrap;
    padding: 0.55rem;
  }

  .articles-search__input {
    width: 100%;
    order: 2;
    padding-inline: 0.35rem;
  }

  .articles-search__icon {
    order: 1;
  }

  .articles-search__clear {
    order: 1;
    margin-inline-start: auto;
  }

  .articles-search__btn {
    order: 3;
    width: 100%;
  }
}

/* FAQ page */
.faq-hero {
  padding: calc(var(--header-h) + 3rem) 0 2rem;
  background:
    radial-gradient(circle at 80% 12%, rgba(42, 102, 97, 0.08), transparent 42%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.faq-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.75rem 2.5rem;
  align-items: end;
}

.faq-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.faq-search__box {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.45rem 0.85rem;
  box-shadow: 0 8px 28px rgba(21, 40, 38, 0.05);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.faq-search__box:focus-within {
  border-color: rgba(42, 102, 97, 0.45);
  box-shadow: 0 0 0 3px rgba(42, 102, 97, 0.12);
}

.faq-search__icon {
  color: var(--ink-muted);
  flex-shrink: 0;
}

.faq-search__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.55rem 0.25rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
}

.faq-search__input::placeholder {
  color: rgba(92, 107, 105, 0.75);
}

.faq-search__clear {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  border-radius: 8px;
  color: var(--ink-muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.faq-search__clear:hover {
  background: var(--bg-soft);
  color: var(--ink);
}

.faq-search__meta {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.faq-section {
  padding-top: 1.25rem;
}

.faq-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
  margin-bottom: 2rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.faq-cats__btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.35rem 0;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  position: relative;
  transition: color var(--ease);
}

.faq-cats__btn::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -0.9rem;
  height: 2px;
  background: transparent;
  transition: background var(--ease);
}

.faq-cats__btn:hover {
  color: var(--ink);
}

.faq-cats__btn.is-active {
  color: var(--brand);
}

.faq-cats__btn.is-active::after {
  background: var(--brand);
}

.faq-board {
  display: grid;
  gap: 2.25rem;
  max-width: 48rem;
}

.faq-group__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.faq-group__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin: 0;
  color: var(--ink);
}

.faq-group__count {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
  animation: faqFade 0.4s ease both;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.02rem, 1.6vw, 1.12rem);
  line-height: 1.55;
  color: var(--ink);
  transition: color var(--ease);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
  color: var(--brand);
  font-size: 1.25rem;
  font-weight: 500;
  transition: transform var(--ease);
}

.faq-item[open] summary {
  color: var(--brand);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__body {
  padding: 0 0 1.2rem;
  max-width: 40rem;
}

.faq-item__body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--ink-muted);
}

.faq-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  max-width: 48rem;
}

.faq-empty h2 {
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.faq-empty p {
  margin-bottom: 1.25rem;
  color: var(--ink-muted);
}

.faq-cta {
  margin-top: 2.75rem;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  max-width: 48rem;
}

.faq-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.faq-cta p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.faq-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  flex-shrink: 0;
}

@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item {
    animation: none;
  }
}

@media (max-width: 900px) {
  .faq-hero__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .faq-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .faq-cats {
    gap: 0.25rem 0.9rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -0.25rem;
    padding-inline: 0.25rem;
    scroll-padding-inline: 0.25rem;
  }

  .faq-cats::-webkit-scrollbar {
    display: none;
  }

  .faq-cats__btn {
    white-space: nowrap;
    font-size: 0.9rem;
    min-height: 44px;
    padding: 0.55rem 0.15rem;
  }

  .faq-cats__btn::after {
    bottom: -0.9rem;
  }

  .faq-item summary {
    padding: 1.05rem 0;
    gap: 0.75rem;
    font-size: 1rem;
  }

  .faq-cta__actions {
    width: 100%;
  }

  .faq-cta__actions .btn {
    flex: 1 1 auto;
  }
}
