/* Stafford Gold Buyers — modern professional theme */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap");

:root {
  --gold: #c9a227;
  --gold-light: #e8d48b;
  --gold-dark: #9a7b1a;
  --ink: #0f1419;
  --ink-soft: #1a2332;
  --slate: #3d4f63;
  --muted: #6b7c8f;
  --cream: #f8f6f1;
  --white: #ffffff;
  --border: rgba(201, 162, 39, 0.22);
  --shadow: 0 12px 40px rgba(15, 20, 25, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font-sans: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-display: "Montserrat", system-ui, -apple-system, sans-serif;
  --max: 1180px;
  --header-h: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-scroll: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-apple: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration-fast: 0.2s;
  --duration-mid: 0.4s;
  --duration-slow: 0.7s;
  --duration-scroll: 1.05s;
  --apple-lift: 56px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
@supports (scroll-behavior: smooth) {
  html { scroll-padding-top: var(--header-h); }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
}
main {
  margin: 0;
  padding: 0;
  display: block;
}
img { max-width: 100%; height: auto; display: block; }
a {
  color: var(--gold-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--duration-fast) var(--ease-smooth);
}
a:hover { color: var(--gold); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.2;
  margin-top: 0;
  font-weight: 700;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }
p { margin: 0 0 1rem; }
ul { padding-left: 1.25rem; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--gold); color: var(--ink); padding: 0.75rem 1rem;
}
.skip-link:focus { left: 0; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--dark { background: var(--ink); color: #c8d0db; }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--white { background: var(--white); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.lead {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--slate);
  max-width: 62ch;
  line-height: 1.75;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem; border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600; font-size: 0.9375rem; letter-spacing: 0.03em;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-mid) var(--ease-smooth),
    background var(--duration-fast) var(--ease-smooth),
    border-color var(--duration-fast) var(--ease-smooth),
    color var(--duration-fast) var(--ease-smooth);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn--gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--ink); }
.btn--gold:hover { box-shadow: 0 10px 28px rgba(201, 162, 39, 0.4); color: var(--ink); }
.btn--outline { background: transparent; border-color: var(--gold); color: var(--gold-light); }
.btn--outline-dark { background: transparent; border-color: var(--gold); color: var(--gold-dark); }
.btn--outline-dark:hover { background: var(--gold); color: var(--ink); box-shadow: 0 6px 20px rgba(201, 162, 39, 0.25); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  margin: 0;
  background: rgba(15, 20, 25, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition:
    background var(--duration-mid) var(--ease-smooth),
    box-shadow var(--duration-mid) var(--ease-smooth),
    border-color var(--duration-mid) var(--ease-smooth);
}
.site-header + main {
  margin-top: 0;
}
.site-header.is-scrolled {
  background: rgba(15, 20, 25, 0.99);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(201, 162, 39, 0.35);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 1rem;
}
/* Logo PNG has black “Stafford/Buyers” type — needs a light plate on dark chrome */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
  background: var(--white);
  border-radius: 10px;
  padding: 0.35rem 0.75rem;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
  transition:
    box-shadow var(--duration-mid) var(--ease-smooth),
    transform var(--duration-mid) var(--ease-spring);
}
.logo:hover {
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}
.logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(280px, 52vw);
  object-fit: contain;
  object-position: left center;
}
.logo--footer {
  padding: 0.4rem 0.85rem;
}
.logo--footer .logo-img {
  height: 52px;
  max-width: 300px;
}
@media (min-width: 900px) {
  .logo { padding: 0.4rem 0.9rem; }
  .logo-img { height: 52px; max-width: 320px; }
  .logo--footer .logo-img { height: 56px; max-width: 326px; }
}
.header-phone {
  display: none; align-items: center; gap: 0.4rem;
  color: var(--gold-light); font-weight: 600; text-decoration: none; white-space: nowrap;
}
.header-phone {
  transition: color var(--duration-fast) var(--ease-smooth), transform var(--duration-fast) var(--ease-out);
}
.header-phone:hover { color: var(--white); transform: scale(1.02); }
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; padding: 0.5rem; cursor: pointer; width: 40px; height: 40px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--gold-light); border-radius: 2px;
  transition: transform var(--duration-mid) var(--ease-out), opacity var(--duration-fast) var(--ease-smooth);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.site-nav a {
  display: block; padding: 0.6rem 0; color: #d4dce8; text-decoration: none; font-weight: 500;
  position: relative;
  transition: color var(--duration-fast) var(--ease-smooth);
}
.site-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0.35rem;
  width: 0; height: 2px; background: var(--gold);
  transition: width var(--duration-mid) var(--ease-out);
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { width: 100%; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold-light); }
@media (max-width: 899px) {
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(15, 20, 25, 0.98);
    border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; opacity: 0;
    transition:
      max-height var(--duration-mid) var(--ease-out),
      opacity var(--duration-fast) var(--ease-smooth);
  }
  .site-nav.is-open {
    max-height: 320px; opacity: 1;
    padding: 0.5rem 1rem 1.25rem;
  }
  .site-nav ul { padding: 0.5rem 0; }
  .header-inner { position: relative; flex-wrap: wrap; }
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .header-phone { display: inline-flex; }
  .site-nav { display: block !important; position: static; max-height: none !important; opacity: 1 !important; overflow: visible; padding: 0 !important; background: transparent; border: none; }
  .site-nav ul { flex-direction: row; align-items: center; gap: 1.5rem; }
  .site-nav a { padding: 0.5rem 0; }
  .site-nav a::after { bottom: 0.2rem; }
}

/* Hero slider */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.hero-slider {
  position: relative;
  margin: 0;
  padding: 0;
  background: var(--ink);
}
main > .hero-slider:first-child {
  margin-top: 0;
}
.hero-slider__viewport {
  position: relative;
  margin: 0;
  min-height: clamp(420px, 72vh, 620px);
  overflow: hidden;
  background: var(--ink);
}
.hero-slider__track { position: relative; width: 100%; height: 100%; min-height: inherit; }
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  background-color: var(--ink);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0; visibility: hidden;
  transform: scale(1);
  transition:
    opacity var(--duration-slow) var(--ease-smooth),
    transform var(--duration-slow) var(--ease-out),
    visibility var(--duration-slow);
  z-index: 0;
}
.hero-slide--1 { background-image: url(../assets/img/bg/slide1.jpg); }
.hero-slide--2 { background-image: url(../assets/img/bg/slide6.jpg); }
.hero-slide--3 { background-image: url(../assets/img/bg/slide5.jpg); }
.hero-slide.is-active {
  opacity: 1; visibility: visible; z-index: 1;
  transform: scale(1);
}
.hero-slide.is-exiting {
  opacity: 0;
  transform: scale(1);
}
.hero-slide__inner > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}
.hero-slide.is-active .hero-slide__inner > * {
  opacity: 1;
  transform: translateY(0);
}
.hero-slide.is-active .hero-slide__inner .eyebrow { transition-delay: 0.08s; }
.hero-slide.is-active .hero-slide__inner h1,
.hero-slide.is-active .hero-slide__inner h2 { transition-delay: 0.16s; }
.hero-slide.is-active .hero-slide__inner .lead { transition-delay: 0.24s; }
.hero-slide.is-active .hero-slide__inner .btn-row { transition-delay: 0.32s; }
.hero-slide__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,20,25,0.92) 0%, rgba(15,20,25,0.75) 45%, rgba(15,20,25,0.45) 100%);
}
.hero-slide__inner {
  position: relative; z-index: 2;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(4.5rem, 10vw, 6rem);
  max-width: 720px;
  color: #d4dce8;
}
.hero-slide h1, .hero-slide h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 4vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.hero-slide .lead {
  color: #b8c5d4;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.7;
}
.hero-slide .btn-row { margin-top: 1.5rem; }

.hero-slider__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(15,20,25,0.55);
  color: var(--gold-light);
  cursor: pointer;
  display: grid; place-items: center;
  transition:
    background var(--duration-fast) var(--ease-smooth),
    border-color var(--duration-fast) var(--ease-smooth),
    color var(--duration-fast) var(--ease-smooth),
    transform var(--duration-fast) var(--ease-spring);
  backdrop-filter: blur(6px);
}
.hero-slider__arrow:hover {
  background: rgba(201,162,39,0.25);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}
.hero-slider__arrow:active { transform: translateY(-50%) scale(0.95); }
.hero-slider__arrow--prev { left: 1rem; }
.hero-slider__arrow--next { right: 1rem; }
.hero-slider__arrow::before {
  content: "";
  width: 10px; height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.hero-slider__arrow--prev::before { transform: rotate(-135deg); margin-left: 4px; }
.hero-slider__arrow--next::before { transform: rotate(45deg); margin-right: 4px; }

.hero-slider__dots {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  z-index: 10;
  display: flex; gap: 0.5rem;
}
.hero-slider__dots button {
  width: 28px; height: 6px;
  padding: 0; border: none; border-radius: 999px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition:
    width var(--duration-mid) var(--ease-out),
    background var(--duration-fast) var(--ease-smooth),
    transform var(--duration-fast) var(--ease-spring);
}
.hero-slider__dots button.is-active,
.hero-slider__dots button[aria-selected="true"] {
  background: var(--gold);
  width: 40px;
  transform: scale(1.05);
}

.hero-slider__bar {
  background: var(--ink-soft);
  border-top: 1px solid var(--border);
  padding: 0.85rem 0;
}
.hero-slider__bar-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem;
  font-size: 0.92rem;
}
.hero-slider__bar-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.hero-slider__bar-item a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
}
.hero-slider__bar-item a:hover { color: var(--white); text-decoration: underline; }
.hero-slider__bar-item span { color: #d4dce8; font-weight: 500; }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  list-style: none; padding: 0; margin: 0;
}
.hero-badges li {
  font-size: 0.82rem; padding: 0.35rem 0.75rem; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid var(--border); color: var(--gold-light);
  transition: background var(--duration-fast) var(--ease-smooth), border-color var(--duration-fast) var(--ease-smooth);
}
.hero-badges li:hover {
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--gold);
}
.hero-slider__bar {
  transition: transform var(--duration-mid) var(--ease-out);
}
.hero-badges--compact { margin-left: auto; }
@media (max-width: 768px) {
  .hero-badges--compact { margin-left: 0; width: 100%; }
  .hero-slider__arrow { width: 40px; height: 40px; }
  .hero-slider__arrow--prev { left: 0.5rem; }
  .hero-slider__arrow--next { right: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide__inner > *,
  .apple-scroll,
  .card,
  .btn { transition: none !important; }
  .apple-scroll {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .scroll-progress { display: none; }
}

/* Cards grid */
.grid-2 { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid rgba(15,20,25,0.06);
  box-shadow: 0 4px 20px rgba(15,20,25,0.04);
  height: 100%;
  transition:
    transform var(--duration-mid) var(--ease-out),
    box-shadow var(--duration-mid) var(--ease-smooth),
    border-color var(--duration-mid) var(--ease-smooth);
}
.card:hover {
  box-shadow: 0 16px 40px rgba(15, 20, 25, 0.1);
  border-color: rgba(201, 162, 39, 0.25);
}
.card.apple-scroll:hover,
.review-card.apple-scroll:hover {
  transform: translate3d(0, calc((1 - var(--p)) * var(--lift)), 0)
    scale(calc(0.965 + var(--p) * 0.035));
  box-shadow: 0 20px 44px rgba(15, 20, 25, 0.12);
}
.review-card.apple-scroll:hover {
  transform: translate3d(0, calc((1 - var(--p)) * var(--lift)), 0) scale(1);
}
.card:not(.apple-scroll):hover {
  transform: translateY(-6px);
}
.card--dark:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  border-color: var(--gold);
}
.card--dark { background: rgba(255,255,255,0.04); border-color: var(--border); color: #c8d0db; }
.card--dark h3 { color: var(--gold-light); }

/* Cards with photos */
.card--media {
  padding: 0;
  overflow: hidden;
}
.card--media .card-body {
  padding: 1.35rem 1.5rem 1.5rem;
}
.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-soft);
}
.card-media--compact { aspect-ratio: 4 / 3; }
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s var(--ease-out);
}
.card--media:hover .card-media img {
  transform: scale(1.06);
}
.card--dark.card--media .card-media {
  border-bottom: 1px solid var(--border);
}
.card--dark.card--media .card-body p {
  color: #b8c5d4;
}

/* Process steps with images */
.step-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-soft);
}
.step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}
.steps li:hover .step-media img {
  transform: scale(1.05);
}
.steps li {
  overflow: hidden;
}
.steps li::before {
  margin: 1rem 1.25rem 0.65rem;
}
.steps li strong,
.steps li p {
  display: block;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.steps li strong {
  padding-top: 0.15rem;
}
.steps li p {
  padding-bottom: 1.25rem;
  margin-bottom: 0;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head .lead { margin-inline: auto; }

/* Steps */
.steps { counter-reset: step; list-style: none; padding: 0; display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li {
  position: relative;
  padding: 0 0 0 0;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(15,20,25,0.06);
  transition:
    transform var(--duration-mid) var(--ease-out),
    box-shadow var(--duration-mid) var(--ease-smooth);
}
.steps li:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 20, 25, 0.08);
}
.steps li::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center;
  background: var(--gold); color: var(--ink); font-weight: 700; border-radius: 50%;
  margin-bottom: 0.75rem; font-size: 0.9rem;
}

/* Customer reviews */
.reviews-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
  background: var(--ink);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.reviews-summary__score {
  text-align: center;
  min-width: 140px;
}
.reviews-summary__number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: -0.03em;
}
.reviews-summary__label {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: #b8c5d4;
  font-weight: 500;
}
.reviews-summary__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: flex-end;
}
.reviews-summary__highlights li {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid var(--border);
  color: var(--gold-light);
}

.review-stars {
  display: inline-flex;
  gap: 3px;
  margin-bottom: 0.85rem;
}
.review-stars span {
  width: 16px;
  height: 16px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.review-stars--lg span {
  width: 22px;
  height: 22px;
}

.reviews-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.35rem;
  border: 1px solid rgba(15, 20, 25, 0.06);
  box-shadow: 0 4px 24px rgba(15, 20, 25, 0.05);
  transition:
    transform var(--duration-mid) var(--ease-out),
    box-shadow var(--duration-mid) var(--ease-smooth),
    border-color var(--duration-mid) var(--ease-smooth);
  overflow: hidden;
}
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 20, 25, 0.1);
  border-color: rgba(201, 162, 39, 0.35);
}
.review-card__quote {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(201, 162, 39, 0.15);
  pointer-events: none;
}
.review-card blockquote {
  flex: 1;
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
  color: var(--slate);
  position: relative;
  z-index: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 20, 25, 0.08);
  margin: 0;
}
.review-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.35);
}
.review-card__author cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.review-card__author span {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.1rem;
}

@media (max-width: 639px) {
  .reviews-summary {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .reviews-summary__highlights {
    justify-content: center;
  }
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(15,20,25,0.1); }
.faq-item summary {
  padding: 1.15rem 2.5rem 1.15rem 0; cursor: pointer; font-weight: 600;
  color: var(--ink); list-style: none; position: relative;
  transition: color var(--duration-fast) var(--ease-smooth);
}
.faq-item[open] summary { color: var(--gold-dark); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--gold); font-weight: 400;
  transition: transform var(--duration-mid) var(--ease-spring), color var(--duration-fast) var(--ease-smooth);
}
.faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}
.faq-item .faq-answer {
  max-height: 0; overflow: hidden; opacity: 0;
  padding: 0;
  color: var(--slate);
  transition:
    max-height var(--duration-mid) var(--ease-out),
    opacity var(--duration-mid) var(--ease-smooth),
    padding var(--duration-mid) var(--ease-smooth);
}
.faq-item[open] .faq-answer {
  max-height: 320px;
  opacity: 1;
  padding: 0 0 1.15rem;
}

/* AEO answer blocks */
.answer-block {
  background: var(--white); border-radius: var(--radius); padding: 1.5rem 1.75rem;
  border: 1px solid var(--border); margin-bottom: 1.5rem;
  transition:
    transform var(--duration-mid) var(--ease-out),
    box-shadow var(--duration-mid) var(--ease-smooth),
    border-color var(--duration-mid) var(--ease-smooth);
}
.answer-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 20, 25, 0.08);
  border-color: rgba(201, 162, 39, 0.4);
}
.answer-block h2 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.direct-answer { font-size: 1.05rem; color: var(--slate); }

/* Map / contact */
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
  min-height: 320px; background: var(--ink-soft);
}
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}
.contact-form-wrap iframe {
  display: block;
  width: 100%;
  min-height: 920px;
  border: 0;
}
.contact-form-fallback {
  margin: 0;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid rgba(15, 20, 25, 0.08);
}
.contact-form-fallback a { font-weight: 600; }
.nap-box {
  background: var(--white); padding: 2rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: box-shadow var(--duration-mid) var(--ease-smooth), transform var(--duration-mid) var(--ease-out);
}
.nap-box:hover { box-shadow: 0 20px 48px rgba(15, 20, 25, 0.12); }
.nap-box address { font-style: normal; line-height: 1.8; }

/* Footer */
.site-footer {
  background: var(--ink); color: #9aa8b8; padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
}
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h3 { color: var(--gold-light); font-size: 1rem; margin-bottom: 0.75rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.site-footer a {
  color: #c8d0db; text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth), transform var(--duration-fast) var(--ease-out);
  display: inline-block;
}
.site-footer a:hover { color: var(--gold-light); transform: translateX(3px); }
.footer-bottom {
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(160deg, var(--ink) 0%, #1a2838 100%);
  color: #d4dce8; padding: 2.5rem 0 3rem;
  animation: pageHeroIn 0.8s var(--ease-out) both;
}
@keyframes pageHeroIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.page-hero .lead { font-weight: 400; }
.breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold-light); text-decoration: none; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--ink); text-align: center; padding: 2.5rem 1.5rem; border-radius: var(--radius-lg);
  transition: transform var(--duration-mid) var(--ease-out), box-shadow var(--duration-mid) var(--ease-smooth);
}
.cta-band:hover {
  transform: scale(1.01);
  box-shadow: 0 16px 40px rgba(201, 162, 39, 0.35);
}
.cta-band h2 {
  color: var(--ink);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.cta-band p { margin-bottom: 1.25rem; max-width: 50ch; margin-inline: auto; }
.cta-band .btn { background: var(--ink); color: var(--white); }
.cta-band .btn:hover { background: var(--ink-soft); color: var(--white); }

/* Service list */
.service-detail { margin-bottom: 2.5rem; }
.service-detail h2 { margin-bottom: 0.75rem; }
.service-detail.card--media {
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 20, 25, 0.06);
  box-shadow: 0 4px 20px rgba(15, 20, 25, 0.04);
}
.service-detail__media {
  aspect-ratio: 21 / 9;
}
.service-detail .card-body {
  padding: 1.5rem 1.75rem 1.75rem;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 0.4rem; list-style: none; padding: 0; margin: 1rem 0 0; }
.tag-list li {
  font-size: 0.82rem; padding: 0.3rem 0.65rem; background: rgba(201,162,39,0.12);
  border-radius: 6px; color: var(--gold-dark);
  transition: background var(--duration-fast) var(--ease-smooth), transform var(--duration-fast) var(--ease-out);
}
.tag-list li:hover {
  background: rgba(201,162,39,0.22);
  transform: translateY(-2px);
}

/* Mobile sticky call */
.mobile-call {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--gold); padding: 0.75rem; text-align: center;
}
.mobile-call a {
  color: var(--ink); font-weight: 700; text-decoration: none; font-size: 1rem;
  display: block;
}
@media (max-width: 899px) {
  .mobile-call { display: block; }
  body { padding-bottom: 56px; }
}

/* Scroll progress (top bar while scrolling) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10001;
  pointer-events: none;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.5);
  will-change: transform;
}

/* Apple-style scroll-scrubbed reveal (progress driven by scroll position) */
.apple-scroll {
  --p: 0;
  --lift: var(--apple-lift);
  opacity: var(--p);
  transform: translate3d(0, calc((1 - var(--p)) * var(--lift)), 0)
    scale(calc(0.965 + var(--p) * 0.035));
  filter: blur(calc((1 - var(--p)) * 5px));
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
}

.apple-scroll--head {
  --lift: 44px;
}

.apple-scroll--card {
  --lift: 40px;
}

.apple-scroll--cta {
  --lift: 36px;
}

.apple-scroll.is-complete {
  will-change: auto;
  filter: none;
}

/* Section headings — Apple large-type feel */
.section-head h2 {
  letter-spacing: -0.03em;
}
.section-head .eyebrow {
  letter-spacing: 0.2em;
}

.map-wrap iframe {
  transition: transform var(--duration-slow) var(--ease-out);
}
.map-wrap:hover iframe { transform: scale(1.02); }

.mobile-call {
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-mid) var(--ease-smooth);
}
.mobile-call:active { transform: scale(0.98); }
