/* =========================================================
   1nnerChange — styles.css (v2 "editorial calm")
   Design system tokens: type 13/16/20/25/31/39/49/61
   Spacing 4/8/12/16/24/32/48/64/96/128
   Accent: #24466e (hover #1a3453). One accent only.
   Palette: warm ivory + hairlines + one dark section.
   ========================================================= */

:root {
  /* Type scale */
  --fs-13: 0.8125rem;
  --fs-16: 1rem;
  --fs-20: 1.25rem;
  --fs-25: 1.5625rem;
  --fs-31: 1.9375rem;
  --fs-39: 2.4375rem;
  --fs-49: 3.0625rem;
  --fs-61: 3.8125rem;
  --fs-36: 2.25rem; /* hero h1 mobile, spec-mandated exact value */

  /* Spacing scale */
  --sp-4: 0.25rem;
  --sp-8: 0.5rem;
  --sp-12: 0.75rem;
  --sp-16: 1rem;
  --sp-24: 1.5rem;
  --sp-32: 2rem;
  --sp-48: 3rem;
  --sp-64: 4rem;
  --sp-96: 6rem;
  --sp-128: 8rem;

  /* Color — ivory paper palette */
  --c-text: #1a1a1a;
  --c-text-secondary: #5c5852;
  --c-bg-ivory: #faf8f3;
  --c-bg-ivory-alt: #f3eee5;
  --c-hairline: #e3dcce;
  --c-accent: #24466e;
  --c-accent-hover: #1a3453;

  /* Star glyphs only — gold from the logo's arrow. Never used elsewhere. */
  --c-star: #d9a441;

  /* Dark section (neutral, not accent) */
  --c-dark-bg: #161c26;
  --c-dark-text: #f3eee5;
  --c-dark-text-secondary: #a8b0ab;
  --c-dark-body: #c9cec9;
  --c-dark-hairline: #333b36;
  --c-dark-accent-tint: #7da2cc;

  /* Footer */
  --c-footer-bg: #141414;
  --c-footer-text: #e9e7e2;
  --c-footer-text-secondary: #a8a49c;
  --c-footer-hairline: #333333;

  /* Components */
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.1);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Paper texture — subtle SVG noise, opacity baked in at 0.025 via feColorMatrix alpha scale */
  --paper-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.025 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

body,
h1,
h2,
h3,
p,
figure,
ul,
ol {
  margin: 0;
}

.testimonial-card {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--fs-16);
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg-ivory);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.15;
}

/* Italic emphasis — Fraunces italic 400 vs surrounding 600 (per section-header kit) */
h1 em,
h2 em {
  font-style: italic;
  font-weight: 400;
}

/* Anchor targets: scroll-margin-top for sticky header */
section[id],
[id] {
  scroll-margin-top: 88px;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--sp-24);
}

@media (min-width: 640px) {
  .container {
    padding-inline: var(--sp-32);
  }
}

.section {
  padding-block: var(--sp-64);
}

@media (min-width: 900px) {
  .section {
    padding-block: var(--sp-128);
  }
}

.section--ivory {
  background-color: var(--c-bg-ivory);
  background-image: var(--paper-noise);
}

.section--ivory-alt {
  background-color: var(--c-bg-ivory-alt);
  background-image: var(--paper-noise);
}

.section--dark {
  background: var(--c-dark-bg);
  color: var(--c-dark-text);
}

.eyebrow {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: var(--fs-13);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-secondary);
  margin: 0;
}

/* ---------- Section header kit ---------- */
/* Hairline at top of container, then a number+eyebrow row, then the H2. */
.section-kit {
  border-top: 1px solid var(--c-hairline);
  padding-top: var(--sp-32);
  margin-bottom: var(--sp-48);
}

.section-kit__row {
  display: flex;
  align-items: baseline;
  gap: var(--sp-16);
  margin-bottom: var(--sp-16);
}

.section-kit__num {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: var(--fs-20);
  color: var(--c-accent);
  line-height: 1;
}

.section-kit h2 {
  font-size: var(--fs-31);
  max-width: 65ch;
}

@media (min-width: 900px) {
  .section-kit h2 {
    font-size: var(--fs-39);
  }
}

.section-kit--faq {
  margin-bottom: var(--sp-32);
}

.lede {
  font-size: var(--fs-20);
  color: var(--c-text-secondary);
  max-width: 55ch;
}

p {
  max-width: 65ch;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -48px;
  left: var(--sp-16);
  z-index: 100;
  background: var(--c-accent);
  color: #ffffff;
  padding: var(--sp-12) var(--sp-16);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: top 200ms var(--ease-out);
}

.skip-link:focus {
  top: var(--sp-16);
}

/* ---------- Focus ---------- */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: var(--fs-16);
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 200ms var(--ease-out), color 200ms var(--ease-out),
    border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out),
    transform 200ms var(--ease-out);
  min-height: 44px;
  line-height: 1.2;
}

.btn--primary {
  background: var(--c-accent);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.btn--primary:hover {
  background: var(--c-accent-hover);
  box-shadow: var(--shadow-hover);
}

.btn--ghost {
  background: transparent;
  color: var(--c-accent);
  border-color: var(--c-accent);
}

.btn--ghost:hover {
  background: var(--c-bg-ivory-alt);
}

.btn--white {
  background: #ffffff;
  color: var(--c-accent);
  box-shadow: var(--shadow);
}

.btn--white:hover {
  background: var(--c-bg-ivory-alt);
  box-shadow: var(--shadow-hover);
}

/* Arrow glyph on primary-weight buttons only (ghost stays plain outline) */
.btn--primary::after,
.btn--white::after {
  content: "→";
  display: inline-block;
  transition: transform 200ms var(--ease-out);
}

.btn--primary:hover::after,
.btn--white:hover::after {
  transform: translateX(4px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--c-bg-ivory);
  border-bottom: 1px solid var(--c-hairline);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
  padding-block: var(--sp-16);
}

.logo {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: var(--fs-20);
  text-decoration: none;
  color: var(--c-text);
  letter-spacing: -0.01em;
}

.logo__mark {
  color: var(--c-accent);
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

@media (max-width: 480px) {
  .logo-img {
    height: 40px;
  }
}

.main-nav {
  display: none;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-32);
}

.main-nav__list a {
  text-decoration: none;
  font-size: var(--fs-16);
  font-weight: 500;
  color: var(--c-text);
  transition: color 200ms var(--ease-out);
}

.main-nav__list a:hover {
  color: var(--c-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-24);
}

.header-phone {
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  font-size: var(--fs-16);
  color: var(--c-text);
  white-space: nowrap;
  transition: color 200ms var(--ease-out);
}

.header-phone:hover {
  color: var(--c-accent);
}

.header-phone__icon {
  display: none;
  color: var(--c-accent);
  flex-shrink: 0;
}

.header-actions .btn {
  padding: 10px 20px;
  font-size: var(--fs-13);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  transition: transform 200ms var(--ease-out), opacity 200ms var(--ease-out);
}

.nav-toggle__bars {
  position: relative;
}

.nav-toggle__bars::before {
  position: absolute;
  top: -7px;
  left: 0;
}

.nav-toggle__bars::after {
  position: absolute;
  top: 7px;
  left: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  background: var(--c-bg-ivory);
  border-bottom: 1px solid var(--c-hairline);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  padding: var(--sp-8) var(--sp-24) var(--sp-24);
}

.mobile-nav__list a {
  display: flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  font-size: var(--fs-16);
  font-weight: 500;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-hairline);
}

.mobile-nav__phone {
  display: flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  font-weight: 600;
  color: var(--c-accent);
}

@media (min-width: 900px) {
  .main-nav {
    display: block;
  }
  .nav-toggle {
    display: none;
  }
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .header-phone {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .header-phone__text {
    display: none;
  }
  .header-phone__icon {
    display: inline-flex;
  }
  .header-actions .btn {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-color: var(--c-bg-ivory);
  background-image: linear-gradient(
      to right,
      rgba(250, 248, 243, 0.97) 0%,
      rgba(250, 248, 243, 0.94) 55%,
      rgba(250, 248, 243, 0.65) 80%,
      rgba(250, 248, 243, 0.3) 100%
    ),
    url("../assets/hero-banner.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: left top, center right;
  background-size: auto, cover;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (max-width: 899px) {
  .hero {
    background-image: linear-gradient(
        to right,
        rgba(250, 248, 243, 0.97) 0%,
        rgba(250, 248, 243, 0.85) 100%
      ),
      url("../assets/hero-banner.jpg");
    background-position: left top, 75% center;
  }
}

@media (min-width: 900px) {
  .hero {
    min-height: 85vh;
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding-block: var(--sp-64);
}

@media (min-width: 900px) {
  .hero__inner {
    padding-block: var(--sp-96) var(--sp-64);
  }
}

/* Ripple rings motif — hero placement (top-right, cropped, on mobile; right-center, less cropped, on desktop) */
.hero__ripple {
  position: absolute;
  top: -60px;
  right: -168px;
  z-index: 0;
  width: 420px;
  height: 420px;
  opacity: 0.35;
  pointer-events: none;
}

.hero__ripple svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (min-width: 900px) {
  .hero__ripple {
    top: 50%;
    right: -108px;
    transform: translateY(-50%);
    width: 720px;
    height: 720px;
    opacity: 0.45;
  }
}

.has-reveal .hero__ripple svg {
  opacity: 0;
  transform: scale(0.96);
  animation: heroRingIn 600ms var(--ease-out) 100ms forwards;
}

@keyframes heroRingIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-reveal .hero__ripple svg {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1040px;
}

.hero h1 {
  font-size: var(--fs-36);
  line-height: 1.1;
  margin-top: var(--sp-16);
  max-width: 20ch;
}

@media (min-width: 900px) {
  .hero h1 {
    font-size: var(--fs-61);
    line-height: 1.05;
    max-width: none;
  }
}

.hero h1 em {
  color: var(--c-accent);
}

.hero__lead {
  margin-top: var(--sp-24);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-16);
  margin-top: var(--sp-32);
}

.hero__trust {
  margin-top: var(--sp-24);
  font-size: var(--fs-13);
  color: var(--c-text-secondary);
}

.hero__trust-star {
  color: var(--c-star);
}

/* Integrated stats strip — replaces standalone proof strip */
.hero__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-32) var(--sp-16);
  padding-block: var(--sp-32) var(--sp-48);
  background-color: var(--c-bg-ivory);
  /* Full-bleed opaque plate behind the strip so hairlines stay crisp over
     the hero photo, without altering markup. Clipped by .hero's overflow:hidden. */
}

.hero__stats::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(-50vw + 50%);
  width: 100vw;
  background: var(--c-bg-ivory);
  z-index: -1;
}

@media (min-width: 700px) {
  .hero__stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 var(--sp-24);
  }
}

.hero__stats-item {
  padding-top: var(--sp-16);
  border-top: 1px solid var(--c-hairline);
}

.hero__stats-primary {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: var(--fs-20);
}

.hero__stats-secondary {
  margin-top: var(--sp-4);
  font-size: var(--fs-13);
  color: var(--c-text-secondary);
}

/* ---------- Services — numbered editorial index ---------- */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: var(--sp-48);
}

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

.service-row {
  display: flex;
  align-items: baseline;
  gap: var(--sp-16);
  padding-block: var(--sp-24);
  border-bottom: 1px solid var(--c-hairline);
  cursor: default;
}

.service-row__num {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: var(--fs-16);
  color: var(--c-accent);
  flex-shrink: 0;
}

.service-row__body {
  flex: 1;
  min-width: 0;
}

.service-row__body h3 {
  font-size: var(--fs-25);
  font-weight: 600;
  transition: transform 200ms var(--ease-out);
}

.service-row__body p {
  margin-top: var(--sp-8);
  font-size: var(--fs-16);
  color: var(--c-text-secondary);
  max-width: 100%;
}

.service-row__arrow {
  flex-shrink: 0;
  color: var(--c-accent);
  opacity: 0;
  transition: opacity 200ms var(--ease-out);
}

.service-row:hover .service-row__body h3 {
  transform: translateX(4px);
}

.service-row:hover .service-row__arrow {
  opacity: 1;
}

/* ---------- How it works — ringed numerals ---------- */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-48);
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-32);
  }

  .steps::before {
    content: "";
    position: absolute;
    top: 32px;
    left: calc(16.66% + 32px);
    right: calc(16.66% + 32px);
    height: 1px;
    background: var(--c-hairline);
    z-index: 0;
  }
}

.step {
  position: relative;
  z-index: 1;
}

.step__ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--c-accent);
  background: var(--c-bg-ivory-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-16);
}

.step__number {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: var(--fs-31);
  color: var(--c-accent);
  line-height: 1;
}

.step h3 {
  font-size: var(--fs-20);
  margin-bottom: var(--sp-8);
}

.step p {
  color: var(--c-text-secondary);
}

.steps__footnote {
  margin-top: var(--sp-48);
  font-size: var(--fs-13);
  color: var(--c-text-secondary);
  max-width: 65ch;
}

/* ---------- Method (dark section) ---------- */
.method__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-48);
}

@media (min-width: 900px) {
  .method__grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

.method__row {
  display: flex;
  align-items: baseline;
  gap: var(--sp-16);
  margin-bottom: var(--sp-16);
}

.method__num {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: var(--fs-20);
  color: var(--c-dark-accent-tint);
  line-height: 1;
}

.method__eyebrow {
  color: var(--c-dark-text-secondary);
}

.section--dark h2 {
  color: var(--c-dark-text);
  font-size: var(--fs-31);
  max-width: 65ch;
}

@media (min-width: 900px) {
  .section--dark h2 {
    font-size: var(--fs-39);
  }
}

.method__body {
  margin-top: var(--sp-16);
  color: var(--c-dark-body);
}

.fact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 var(--sp-32);
}

@media (min-width: 500px) {
  .fact-list {
    grid-template-columns: 1fr 1fr;
  }
}

.fact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-12);
  padding-block: var(--sp-16);
  border-top: 1px solid var(--c-dark-hairline);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: var(--fs-20);
  color: var(--c-dark-text);
}

.fact-list__mark {
  color: var(--c-dark-accent-tint);
  font-size: var(--fs-16);
  line-height: 1.6;
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
}

/* ---------- About — offset portrait ---------- */
.about__wrap {
  position: relative;
}

.about__panel {
  display: none;
}

@media (min-width: 900px) {
  .about__panel {
    display: block;
    position: absolute;
    top: 64px;
    left: -32px;
    right: -32px;
    bottom: -32px;
    background: var(--c-bg-ivory-alt);
    border-radius: var(--radius);
    z-index: 0;
  }
}

.about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-32);
  padding: var(--sp-32);
  background: var(--c-bg-ivory-alt);
  border-radius: var(--radius);
}

@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: var(--sp-48);
    padding: 0;
    background: transparent;
    border-radius: 0;
  }
}

.portrait-placeholder {
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #ddd3c2 0%, #c9bda6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .portrait-placeholder {
    margin-inline: 0;
    margin-top: -64px;
  }
}

.portrait-placeholder__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__body {
  color: var(--c-text-secondary);
}

.pull-quote {
  position: relative;
  margin-top: var(--sp-32);
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: var(--fs-31);
  color: var(--c-text);
  line-height: 1.4;
  max-width: 60ch;
  z-index: 1;
}

.pull-quote::before {
  content: "\201C";
  position: absolute;
  top: -64px;
  left: -8px;
  font-family: "Fraunces", Georgia, serif;
  font-style: normal;
  font-weight: 600;
  font-size: 128px;
  line-height: 1;
  color: var(--c-accent);
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}

.pull-quote cite {
  display: block;
  margin-top: var(--sp-16);
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: var(--fs-13);
  color: var(--c-text-secondary);
}

/* ---------- Testimonials — staggered ---------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-24);
}

@media (min-width: 900px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }

  .testimonials__grid > *:nth-child(2) {
    margin-top: var(--sp-32);
  }
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: var(--sp-32);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: var(--sp-24);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: var(--c-star);
}

.testimonial-card p {
  font-size: var(--fs-16);
  max-width: 100%;
}

.testimonial-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-12);
}

.testimonial-card__meta > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__name {
  font-style: normal;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: var(--fs-13);
  color: var(--c-text);
}

.testimonial-card__translated {
  font-size: var(--fs-13);
  color: var(--c-text-secondary);
}

.testimonials__rating {
  margin-top: var(--sp-16);
  font-size: var(--fs-16);
  color: var(--c-text-secondary);
}

.testimonials__rating a {
  color: var(--c-accent);
  text-decoration: underline;
}

.testimonials__rating-stars {
  font-size: var(--fs-13);
  color: var(--c-star);
  letter-spacing: 2px;
  margin-right: var(--sp-4);
}

.testimonial-card__tag {
  font-size: var(--fs-13);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-accent);
  border: 1px solid var(--c-accent);
  border-radius: var(--radius);
  padding: 4px 12px;
}

/* ---------- FAQ — split layout ---------- */
.faq__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-48);
}

@media (min-width: 900px) {
  .faq__split {
    grid-template-columns: 0.9fr 1.4fr;
    gap: var(--sp-64);
    align-items: start;
  }
}

.faq__left h2 {
  font-size: var(--fs-31);
  max-width: 20ch;
}

@media (min-width: 900px) {
  .faq__left h2 {
    font-size: var(--fs-39);
  }

  .faq__left {
    position: sticky;
    top: 96px;
  }
}

.price-callout {
  margin-top: var(--sp-32);
  border: 1px solid var(--c-hairline);
  border-radius: var(--radius);
  padding: var(--sp-32);
}

.price-callout__amount {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: var(--fs-49);
  color: var(--c-text);
}

.price-callout__note {
  margin-top: var(--sp-8);
  font-size: var(--fs-13);
  color: var(--c-text-secondary);
  max-width: 40ch;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--c-hairline);
  padding: 0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
  min-height: 44px;
  padding-block: var(--sp-24);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: var(--fs-20);
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
  font-size: var(--fs-20);
  color: var(--c-accent);
  transition: transform 200ms var(--ease-out);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--c-text-secondary);
  padding-bottom: var(--sp-24);
  max-width: 65ch;
}

/* ---------- Final CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--c-accent);
  color: #ffffff;
  overflow: hidden;
}

.cta-band__ripple {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  z-index: 0;
  width: 560px;
  height: 560px;
  pointer-events: none;
}

@media (max-width: 899px) {
  .cta-band__ripple {
    right: -35%;
    width: 400px;
    height: 400px;
  }
}

.cta-band__ripple svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cta-band__content {
  position: relative;
  z-index: 1;
  max-width: 65ch;
}

.cta-band h2 {
  color: #ffffff;
  font-size: var(--fs-31);
}

@media (min-width: 900px) {
  .cta-band h2 {
    font-size: var(--fs-39);
  }
}

.cta-band__line {
  margin-top: var(--sp-16);
  font-size: var(--fs-20);
  max-width: 55ch;
  color: rgba(255, 255, 255, 0.9);
}

.cta-band__actions {
  margin-top: var(--sp-32);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-16);
}

.cta-band__email {
  color: #ffffff;
  font-size: var(--fs-16);
}

.cta-band__email a {
  color: #ffffff;
  text-decoration: underline;
}

.cta-band__small {
  margin-top: var(--sp-32);
  font-size: var(--fs-13);
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-footer-bg);
  color: var(--c-footer-text);
  padding-block: var(--sp-64);
  border-top: 1px solid var(--c-footer-hairline);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-48);
}

@media (min-width: 700px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.site-footer .logo {
  color: #ffffff;
}

.site-footer__desc {
  margin-top: var(--sp-16);
  color: var(--c-footer-text-secondary);
  max-width: 40ch;
}

.footer-heading {
  font-size: var(--fs-13);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-footer-text-secondary);
  margin-bottom: var(--sp-16);
}

.footer-nap {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.footer-nap a {
  text-decoration: none;
  color: var(--c-footer-text);
}

.footer-nap a:hover {
  color: #ffffff;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.footer-nav a {
  text-decoration: none;
  color: var(--c-footer-text);
}

.footer-nav a:hover {
  color: #ffffff;
}

.site-footer__bottom {
  margin-top: var(--sp-48);
  padding-top: var(--sp-32);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}

.site-footer__copyright {
  font-size: var(--fs-13);
  color: var(--c-footer-text-secondary);
}

.site-footer__disclaimer {
  font-size: var(--fs-13);
  color: var(--c-footer-text-secondary);
  max-width: 65ch;
}

/* =========================================================
   Scroll reveal — has-reveal gate pattern
   Content is fully visible by default (JS disabled = visible).
   Only when <html class="has-reveal"> do [data-reveal] elements
   start hidden, then IntersectionObserver adds .is-visible once.
   ========================================================= */
.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}

.has-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.has-reveal [data-reveal-group] > * {
  transition-delay: calc(var(--reveal-index, 0) * 80ms);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .has-reveal [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn,
  .btn::after,
  .service-row,
  .service-row__body h3,
  .service-row__arrow,
  .nav-toggle__bars,
  .nav-toggle__bars::before,
  .nav-toggle__bars::after,
  .faq-item summary::after {
    transition: none !important;
  }
}
