/* ═══════════════════════════════════════════════════════════════════════════════
   SORRISO — Premium Dental Clinic Theme v3
   Palette: ink / cream / gold. Typography: Playfair Display + DM Sans.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Demo banner ─────────────────────────────────────────────────────────── */
.demo-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: #000; color: rgba(255,255,255,0.75);
  font-family: var(--sans); font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.04em; text-align: center;
  padding: 0.45rem 1rem;
  line-height: 1.4;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
body.banner-hidden .demo-banner {
  transform: translateY(-100%);
}

/* ── Design Tokens ───────────────────────────────────────────────────────── */
:root {
  --banner-h:  28px;
  --ink:       #0c1c2e;
  --cream:     #f7f4ef;
  --gold:      #b8956a;
  --muted:     #7a8694;
  --white:     #ffffff;
  --light:     #f0ede8;
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'DM Sans', system-ui, sans-serif;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --container: 1200px;
  --r:         3px;
}

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  cursor: auto;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }

/* ── Shared Section Typography ────────────────────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-label--light { color: rgba(184,149,106,0.9); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; line-height: 1.15; color: var(--ink);
}
.section-title--light { color: var(--cream); }

.section-subtitle {
  font-size: 1rem; color: var(--muted);
  line-height: 1.8; margin-top: 1rem; max-width: 560px;
}

/* ── Custom Cursor (disabled) ─────────────────────────────────────────────── */
.cursor-dot, .cursor-ring { display: none; }

/* ── Scroll Reveal ────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.52s; }

/* ── Word Reveal ──────────────────────────────────────────────────────────── */
.word-wrap { display: inline-block; overflow: hidden; vertical-align: bottom; }
.word-inner {
  display: inline-block; transform: translateY(110%);
  transition: transform 0.85s var(--ease);
}
.word-inner.is-visible { transform: translateY(0); }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center;
  background: var(--gold); color: var(--white);
  padding: 0.9rem 2.25rem; border-radius: var(--r);
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.3s, transform 0.3s var(--ease);
  cursor: pointer; border: none;
}
.btn-gold:hover { background: #a07858; transform: translateY(-2px); }

.btn-bordered {
  display: inline-flex; align-items: center;
  border: 1px solid currentColor;
  padding: 0.9rem 2.25rem; border-radius: var(--r);
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink);
  transition: background 0.3s var(--ease), color 0.3s;
  cursor: pointer; background: none;
}
.btn-bordered:hover { background: var(--ink); color: var(--cream); }
.btn-bordered--light { color: var(--cream); }
.btn-bordered--light:hover { background: var(--cream); color: var(--ink); }

.btn-arrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream); background: none; border: none; cursor: pointer;
  transition: gap 0.4s var(--ease);
}
.btn-arrow::after { content: '→'; display: inline-block; transition: transform 0.4s var(--ease); }
.btn-arrow:hover { gap: 0.9rem; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ══════════════════════════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: var(--banner-h); left: 0; right: 0; z-index: 100;
  padding: 1.75rem 0;
  transition: background 0.5s var(--ease), padding 0.4s var(--ease), box-shadow 0.5s, top 0.3s ease;
}
body.banner-hidden .site-nav { top: 0; }
.site-nav.scrolled {
  background: rgba(12,28,46,0.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 1rem 0;
  box-shadow: 0 2px 24px rgba(12,28,46,0.2);
}
.site-nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 500;
  color: var(--cream); letter-spacing: 0.02em;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(247,244,239,0.7);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  color: var(--gold) !important;
  border-bottom: 1px solid var(--gold); padding-bottom: 1px;
  transition: color 0.3s, border-color 0.3s !important;
}
.nav-cta:hover { color: var(--cream) !important; border-color: var(--cream); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1px;
  background: var(--cream); border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════════════════════
   HERO — full-bleed image with vignette overlay
══════════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(12,28,46,0.88) 0%, rgba(12,28,46,0.65) 55%, rgba(12,28,46,0.25) 100%),
    linear-gradient(to top, rgba(12,28,46,0.5) 0%, transparent 40%);
}
.hero-image {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
}
.hero-content {
  position: relative; z-index: 1;
  padding-top: 9rem; padding-bottom: 6rem;
  max-width: 820px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 2rem;
  opacity: 0; animation: heroFadeUp 0.8s var(--ease) 0.1s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 32px; height: 1px; background: var(--gold);
  flex-shrink: 0;
}
.hero-eyebrow-text {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}
.hero-heading {
  font-family: var(--serif); font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 400; line-height: 1.05; color: var(--cream);
  margin-bottom: 2rem;
}
.hero-heading em { font-style: italic; color: rgba(247,244,239,0.45); font-weight: 400; }
.hero-sub {
  font-size: 1.05rem; color: rgba(247,244,239,0.55); line-height: 1.8;
  max-width: 500px; margin-bottom: 3rem;
  opacity: 0; animation: heroFadeUp 0.8s var(--ease) 0.5s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  opacity: 0; animation: heroFadeUp 0.8s var(--ease) 0.7s forwards;
}
.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3.5rem; padding-top: 3rem;
  border-top: 1px solid rgba(247,244,239,0.12);
  opacity: 0; animation: heroFadeUp 0.8s var(--ease) 0.9s forwards;
}
.hstat-num {
  display: block;
  font-family: var(--serif); font-size: 1.8rem; font-weight: 400;
  color: var(--cream); line-height: 1;
}
.hstat-label {
  display: block;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(247,244,239,0.35); margin-top: 0.4rem;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════════════════════════════════ */
.marquee {
  background: var(--gold); overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.marquee-inner {
  display: flex; user-select: none;
  animation: marqueescroll 32s linear infinite;
}
.marquee-track {
  display: flex; align-items: center; flex-shrink: 0; min-width: 100%;
  padding: 0.9rem 0;
}
.marquee-item {
  white-space: nowrap; flex-shrink: 0;
  font-family: var(--sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); padding: 0 2.5rem;
}
.marquee-sep {
  flex-shrink: 0;
  font-size: 0.5rem; color: rgba(255,255,255,0.4);
  padding: 0 0.5rem;
}
@keyframes marqueescroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════════════════════
   HIGHLIGHTS
══════════════════════════════════════════════════════════════════════════════ */
.highlights {
  background: var(--ink);
  border-top: 1px solid rgba(247,244,239,0.07);
}
.highlights .container { display: grid; grid-template-columns: repeat(4,1fr); max-width: none; padding: 0; }
.highlight-item {
  padding: 3rem 2rem;
  border-right: 1px solid rgba(247,244,239,0.07);
  transition: background 0.4s;
  text-align: center;
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: rgba(247,244,239,0.03); }
.highlight-numeral {
  display: block;
  font-family: var(--serif); font-size: clamp(2.5rem, 3.5vw, 3.5rem);
  font-weight: 400; color: var(--gold); line-height: 1; opacity: 0.6;
  margin-bottom: 1.5rem;
}
.highlight-title {
  display: block;
  font-family: var(--serif); font-size: clamp(1.2rem, 1.6vw, 1.5rem); font-weight: 400;
  color: var(--cream); margin-bottom: 0.75rem; line-height: 1.2;
}
.highlight-desc {
  font-size: 0.78rem; color: rgba(247,244,239,0.35); line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════════════════════ */
.about { padding: 5rem 0; background: var(--cream); }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center; }

.about-image-wrap {
  position: relative;
  background: var(--light); border-radius: 2px; overflow: hidden;
}
.about-image-wrap::before {
  content: '';
  position: absolute; top: -2rem; left: -2rem; right: 2rem; bottom: 2rem;
  border: 1px solid rgba(184,149,106,0.2); border-radius: 2px; z-index: 0;
  pointer-events: none;
}
/* About gallery slider */
.about-gallery {
  position: relative; overflow: hidden; border-radius: 2px; z-index: 1;
}
.about-gallery-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}
.about-gallery-track .about-image-main {
  min-width: 100%; width: 100%; flex-shrink: 0;
}
.about-image-main {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top;
  display: block; position: relative; z-index: 1;
}
.about-gallery-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.85); border: none;
  font-size: 1.3rem; line-height: 1; color: var(--ink);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: background 0.3s, transform 0.3s var(--ease);
  opacity: 0.8;
}
.about-gallery-btn:hover { background: #fff; opacity: 1; transform: translateY(-50%) scale(1.05); }
.about-gallery-prev { left: 0.75rem; }
.about-gallery-next { right: 0.75rem; }

.about-desc {
  font-size: 1rem; color: var(--muted); line-height: 1.85; margin-top: 1.25rem;
}

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  margin-top: 3.5rem; border-top: 1px solid rgba(12,28,46,0.12);
}
.about-stat {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(12,28,46,0.08);
  border-right: 1px solid rgba(12,28,46,0.08);
}
.about-stat:nth-child(even) { border-right: none; padding-left: 2rem; }
.about-stat:nth-child(odd)  { padding-right: 2rem; }
.about-stat:nth-last-child(-n+2) { border-bottom: none; }

.about-stat-num {
  display: block;
  font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400; line-height: 1; color: var(--ink); margin-bottom: 0.4rem;
}
.about-stat-label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════════════════════ */
.services { padding: 5rem 0; background: var(--light); }
.services-header { max-width: 620px; margin-bottom: 4rem; }

.services-panel {
  display: grid; grid-template-columns: 280px 1fr;
  border: 1px solid rgba(12,28,46,0.1); border-radius: 2px;
  overflow: hidden;
}
.services-tabs {
  border-right: 1px solid rgba(12,28,46,0.1); padding: 1.5rem 0;
  background: var(--cream);
}
.services-tab-btn {
  display: flex; align-items: center; gap: 0.9rem;
  width: 100%; padding: 1.1rem 1.75rem;
  background: none; border: none; text-align: left;
  font-family: var(--sans); font-size: 0.875rem; font-weight: 400;
  color: var(--muted); cursor: pointer;
  border-left: 2px solid transparent;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.services-tab-btn:hover { color: var(--ink); background: rgba(12,28,46,0.02); }
.services-tab-btn.is-active {
  color: var(--ink); font-weight: 500;
  border-left-color: var(--gold); background: var(--light);
}
.tab-num {
  font-family: var(--serif); font-size: 0.7rem; font-weight: 400;
  color: var(--gold); opacity: 0.7; flex-shrink: 0;
}

.services-content { padding: 3.5rem; background: var(--cream); }
.services-pane { display: none; }
.services-pane.is-active { display: block; animation: paneFade 0.4s var(--ease); }
@keyframes paneFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.services-pane-title {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400; color: var(--ink); margin-bottom: 1.5rem;
}
.services-pane-list {
  list-style: none; margin: 0 0 2.5rem; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr));
  gap: 0.6rem 1.5rem;
}
.services-pane-list li {
  font-size: 0.9rem; color: var(--ink);
  padding-left: 1.1rem; position: relative; line-height: 1.55;
}
.services-pane-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.services-footer { margin-top: 3rem; text-align: center; }
.services-footer .btn-bordered { color: var(--ink); }

/* ══════════════════════════════════════════════════════════════════════════════
   TEAM — alternating full-width rows
══════════════════════════════════════════════════════════════════════════════ */
.team { padding: 5rem 0 0; background: var(--cream); }
.team-header { margin-bottom: 5rem; }

.team-row {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-top: 1px solid rgba(12,28,46,0.1);
}
.team-row:last-child { border-bottom: none; }

.team-row-photo { overflow: hidden; }
.team-row-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
  transition: transform 0.8s var(--ease);
}
.team-row:hover .team-row-photo img { transform: scale(1.03); }

.team-row-text {
  padding: 4rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--cream);
}
.team-row--reverse .team-row-photo { order: 2; }
.team-row--reverse .team-row-text  { order: 1; background: var(--light); }

.team-row-numeral {
  display: block;
  font-family: var(--serif); font-size: clamp(2.5rem, 3.5vw, 3.5rem);
  font-weight: 400; color: var(--gold); opacity: 0.4; line-height: 1;
  margin-bottom: 1.5rem;
}
.team-row-name {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400; color: var(--ink); margin-bottom: 0.5rem; line-height: 1.2;
}
.team-row-specialty {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.team-row-bio {
  font-size: 0.9rem; color: var(--muted); line-height: 1.85; max-width: 380px;
}

/* ══════════════════════════════════════════════════════════════════════════════
   TESTIMONIALS — slider
══════════════════════════════════════════════════════════════════════════════ */
.testimonials { padding: 5rem 0; background: var(--ink); overflow: hidden; }
.testimonials-header { margin-bottom: 4rem; }

.tslider { overflow: hidden; }
.tslider-track {
  display: flex;
  transition: transform 0.75s var(--ease);
}
.tslider-slide {
  min-width: 100%;
  display: grid; grid-template-columns: 80px 1fr;
  gap: 4rem; align-items: start;
  padding-bottom: 0.5rem;
}
.tslide-quote {
  font-family: var(--serif); font-size: 6rem; line-height: 0.7;
  color: var(--gold); opacity: 0.35; user-select: none; font-style: italic;
  padding-top: 0.5rem;
}
.tslide-text {
  font-family: var(--serif); font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-style: italic; font-weight: 400;
  color: var(--cream); line-height: 1.8; margin-bottom: 2.5rem;
}
.tslide-meta { display: flex; flex-direction: column; gap: 0.3rem; }
.tslide-name {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(247,244,239,0.9);
}
.tslide-role { font-size: 0.75rem; color: var(--muted); }
.tslide-stars { font-size: 0.72rem; color: var(--gold); letter-spacing: 3px; margin-top: 0.4rem; }

.tslider-controls {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(247,244,239,0.08);
}
.tslider-btn {
  background: none; border: 1px solid rgba(247,244,239,0.2);
  width: 50px; height: 50px; border-radius: 50%;
  color: var(--cream); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
  flex-shrink: 0;
}
.tslider-btn:hover {
  background: rgba(247,244,239,0.08);
  border-color: rgba(247,244,239,0.4);
  transform: scale(1.05);
}
.tslider-dots { display: flex; gap: 0.6rem; align-items: center; }
.tslider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(247,244,239,0.2);
  transition: background 0.35s, transform 0.35s, width 0.35s var(--ease);
  cursor: pointer; border: none;
}
.tslider-dot.is-active {
  background: var(--gold); transform: scale(1.3);
  width: 20px; border-radius: 3px;
}

/* ══════════════════════════════════════════════════════════════════════════════
   APPOINTMENT — booking widget
══════════════════════════════════════════════════════════════════════════════ */
.appointment {
  padding: 5rem 0; background: var(--light);
}

.appt-header { text-align: center; margin-bottom: 3rem; }
.appt-lead {
  font-size: 0.95rem; color: var(--muted); line-height: 1.8;
  margin: 1rem auto 0; max-width: 480px;
}

/* Widget card */
.appt-widget {
  border: 1px solid rgba(12,28,46,0.1);
  border-radius: 4px; overflow: hidden; background: #fff;
}

/* Steps */
.appt-step {
  padding: 2.25rem 3rem;
  border-bottom: 1px solid rgba(12,28,46,0.07);
  transition: opacity 0.4s;
}
.appt-step:last-child { border-bottom: none; }
.appt-step--locked { opacity: 0.3; pointer-events: none; }

.appt-step-header {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.75rem;
}
.appt-step-num {
  font-family: var(--serif); font-size: 0.88rem; color: var(--gold); opacity: 0.8;
}
.appt-step-title {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
}

/* Service pills */
.appt-service-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.appt-service-btn {
  padding: 0.7rem 1.5rem; border-radius: 2rem;
  border: 1px solid rgba(12,28,46,0.18); background: none;
  font-family: var(--sans); font-size: 0.9rem;
  color: rgba(12,28,46,0.55); cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.appt-service-btn:hover { border-color: var(--gold); color: var(--ink); }
.appt-service-btn.is-active { background: var(--gold); border-color: var(--gold); color: #fff; }

/* Calendar */
.appt-calendar { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.appt-day {
  display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
  padding: 0.9rem 1.1rem; min-width: 68px;
  border: 1px solid rgba(12,28,46,0.12); border-radius: 3px;
  background: none; cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.appt-day-name {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(12,28,46,0.35);
}
.appt-day-num {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 400;
  color: var(--ink); line-height: 1;
}
.appt-day-month { font-size: 0.65rem; color: rgba(12,28,46,0.3); }
.appt-day:hover { border-color: rgba(184,149,106,0.6); }
.appt-day.is-active {
  border-color: var(--gold); background: rgba(184,149,106,0.1);
}
.appt-day.is-active .appt-day-name,
.appt-day.is-active .appt-day-num,
.appt-day.is-active .appt-day-month { color: var(--gold); }

/* Time slots */
.appt-slots { display: flex; flex-direction: column; gap: 1.25rem; }
.appt-slot-group-label {
  display: block; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(12,28,46,0.35); margin-bottom: 0.6rem;
}
.appt-slot-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.appt-slot {
  padding: 0.6rem 1.25rem; border-radius: 3px;
  border: 1px solid rgba(12,28,46,0.12); background: none;
  font-family: var(--sans); font-size: 0.9rem;
  color: rgba(12,28,46,0.55); cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.appt-slot:hover { border-color: var(--gold); color: var(--ink); }
.appt-slot.is-active { background: var(--gold); border-color: var(--gold); color: #fff; }
.appt-slot.is-booked {
  opacity: 0.2; pointer-events: none; text-decoration: line-through;
}

/* Form */
.appt-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.75rem;
}
.appt-field { display: flex; flex-direction: column; gap: 0.5rem; }
.appt-label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(12,28,46,0.45);
}
.appt-input {
  background: var(--light);
  border: 1px solid rgba(12,28,46,0.15); border-radius: 3px;
  padding: 0.9rem 1.1rem; font-family: var(--sans); font-size: 1rem;
  color: var(--ink); outline: none; transition: border-color 0.3s;
}
.appt-input::placeholder { color: rgba(12,28,46,0.25); }
.appt-input:focus { border-color: var(--gold); }
.appt-submit { margin-top: 0; }

/* Loading state */
.appt-loading {
  padding: 4rem 2rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem; min-height: 220px;
  transition: opacity 0.35s var(--ease);
}
.appt-loading.is-fading { opacity: 0; }
.appt-spinner {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid rgba(184,149,106,0.2);
  border-top-color: var(--gold);
  animation: apptSpin 0.8s linear infinite;
}
@keyframes apptSpin { to { transform: rotate(360deg); } }
.appt-loading-text {
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
/* Confirmation */
.appt-confirmation {
  padding: 4rem 2rem; text-align: center;
  animation: apptFadeIn 0.45s var(--ease);
}
@keyframes apptFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.appt-conf-icon {
  display: block; font-size: 1.5rem; color: var(--gold); margin-bottom: 1.5rem;
}
.appt-confirmation h3 {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400; color: var(--ink); margin-bottom: 0.75rem;
}
.appt-confirmation p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; }
.appt-confirmation strong { color: var(--ink); font-weight: 500; }

/* ── Contactos section ───────────────────────────────────────────────── */
.contactos {
  padding: 5rem 0;
  background: var(--ink);
}
.contactos-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.contactos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.contactos-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.contactos-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.contactos-card-accent { display: none; }
.contactos-card-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.contactos-card-value {
  font-size: 0.95rem;
  color: rgba(247,244,239,0.65);
  line-height: 1.7;
  margin: 0;
}
.contactos-card-value a {
  color: rgba(247,244,239,0.65);
  text-decoration: none;
  transition: color 0.25s;
}
.contactos-card-value a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════════════════════
   FLOATING CTA
══════════════════════════════════════════════════════════════════════════════ */
.float-cta {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  background: var(--gold); color: var(--white);
  padding: 0.9rem 1.75rem; border-radius: 3rem;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(184,149,106,0.45);
  transform: translateY(80px); opacity: 0; pointer-events: none;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), background 0.3s, box-shadow 0.3s;
}
.float-cta.is-visible {
  transform: translateY(0); opacity: 1; pointer-events: auto;
}
.float-cta:hover { background: #a07858; box-shadow: 0 12px 36px rgba(184,149,106,0.55); }

/* ══════════════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(247,244,239,0.07);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(247,244,239,0.07);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 500;
  color: var(--cream); margin-bottom: 1rem; display: block;
}
.footer-tagline {
  font-size: 0.82rem; color: rgba(247,244,239,0.3); line-height: 1.9; max-width: 260px;
}
.footer-social { display: flex; gap: 1.5rem; margin-top: 2rem; }
.footer-social a {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(247,244,239,0.4);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--cream); }
.footer-heading {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(247,244,239,0.3); margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.82rem; color: rgba(247,244,239,0.5); transition: color 0.3s; }
.footer-links a:hover { color: var(--cream); }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact li { font-size: 0.82rem; color: rgba(247,244,239,0.4); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.72rem; color: rgba(247,244,239,0.2); }
.footer-credit {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.04em; color: var(--gold);
  text-shadow: 0 0 12px rgba(184,149,106,0.6), 0 1px 3px rgba(0,0,0,0.4);
}

/* ══════════════════════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════════════════════ */
.faq-accordion { border-top: 1px solid rgba(12,28,46,0.1); }
.faq-item { border-bottom: 1px solid rgba(12,28,46,0.1); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; background: none; border: none; cursor: pointer;
  text-align: left; font-family: var(--sans); font-size: 0.95rem; font-weight: 400;
  color: var(--ink); gap: 1rem;
  transition: color 0.3s;
}
.faq-question::after {
  content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--gold);
  flex-shrink: 0; transition: transform 0.35s var(--ease); line-height: 1;
}
.faq-item.is-open .faq-question { color: var(--gold); }
.faq-item.is-open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-item.is-open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding-bottom: 1.25rem; font-size: 0.875rem; color: var(--muted); line-height: 1.8; }

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-stats { gap: 2rem; }
  .about .container { grid-template-columns: 1fr; gap: 4rem; }
  .about-image-main { aspect-ratio: 16/9; }
  .services-panel { grid-template-columns: 1fr; }
  .services-tabs {
    border-right: none; border-bottom: 1px solid rgba(12,28,46,0.1);
    padding: 0; display: flex; overflow-x: auto;
  }
  .services-tab-btn {
    white-space: nowrap; border-left: none;
    border-bottom: 2px solid transparent; padding: 1rem 1.5rem;
  }
  .services-tab-btn.is-active { border-left-color: transparent; border-bottom-color: var(--gold); }
  .team-row { grid-template-columns: 1fr; min-height: auto; }
  .team-row-photo { height: 60vw; max-height: 480px; }
  .team-row--reverse .team-row-photo { order: 0; }
  .team-row--reverse .team-row-text  { order: 0; }
  .appointment .container { grid-template-columns: 1fr; gap: 4rem; }
  .contactos-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .tslider-slide { grid-template-columns: 60px 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: var(--ink); justify-content: center;
    align-items: center; gap: 2.5rem; z-index: 99;
    opacity: 0; visibility: hidden;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
  }
  .nav-links a {
    transform: translateY(12px); opacity: 0;
    transition: transform 0.65s var(--ease), opacity 0.6s var(--ease);
  }
  .nav-toggle { display: flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; position: relative; z-index: 100; }
  .nav-links.is-open {
    opacity: 1; visibility: visible;
  }
  .nav-links.is-open a {
    font-size: 1.1rem; color: var(--cream);
    transform: translateY(0); opacity: 1;
  }
  .nav-links.is-open li:nth-child(1) a { transition-delay: 0.05s; }
  .nav-links.is-open li:nth-child(2) a { transition-delay: 0.1s; }
  .nav-links.is-open li:nth-child(3) a { transition-delay: 0.15s; }
  .nav-links.is-open li:nth-child(4) a { transition-delay: 0.2s; }
  .nav-links.is-open li:nth-child(5) a { transition-delay: 0.25s; }
  .nav-links.is-open a.nav-cta { transition: transform 0.65s var(--ease) 0.25s, opacity 0.6s var(--ease) 0.25s, color 0.3s, border-color 0.3s !important; }
  /* Hide hero stats on mobile — duplicated in about section */
  .hero-stats { display: none; }
  .highlights .container { grid-template-columns: 1fr 1fr; }
  .highlight-item:nth-child(2) { border-right: none; }
  .highlight-item:nth-child(1),
  .highlight-item:nth-child(2) { border-bottom: 1px solid rgba(247,244,239,0.07); }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stat:nth-child(even) { padding-left: 1.5rem; }
  .about-stat:nth-child(odd) { padding-right: 1.5rem; }
  .team-row-text { padding: 2.5rem 1.75rem; }
  .tslider-slide { grid-template-columns: 1fr; gap: 1rem; }
  .tslide-quote { font-size: 4rem; }
  /* Fix #9: Footer headings too small */
  .footer-heading { font-size: 0.75rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer-bottom p { font-size: 0.78rem; }
  .footer-credit { font-size: 0.78rem; }
  .float-cta { bottom: 1.25rem; right: 1.25rem; }
  /* Fix #2: Section labels too small on mobile */
  .section-label { font-size: 0.75rem; }
  /* Fix #5: Appointment form fields must fill width */
  .appt-step { padding: 2rem 1.5rem; }
  .appt-form-row { grid-template-columns: 1fr; }
  .appt-step-header { width: 100%; }
  .appt-service-grid { width: 100%; }
  .appt-calendar { width: 100%; }
  .appt-slots { width: 100%; }
  /* Marquee: faster on mobile, seamless infinite loop */
  .marquee-inner { width: max-content; animation-duration: 36s; }
  .marquee-track { min-width: 0; padding: 0.75rem 0; }
  /* Services: accordion on mobile */
  .services-panel { display: block; border: none; }
  .services-tabs { display: none; }
  .services-content { padding: 0; background: none; }
  .services-pane { display: block; border: 1px solid rgba(12,28,46,0.1); border-radius: 2px; margin-bottom: 0.75rem; background: var(--cream); overflow: hidden; }
  .services-pane .services-pane-inner { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
  .services-pane.is-active .services-pane-inner { max-height: 600px; }
  .services-pane-toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 1.1rem 1.25rem;
    background: none; border: none; cursor: pointer;
    font-family: var(--sans); font-size: 0.95rem; font-weight: 400;
    color: var(--ink); text-align: left; gap: 1rem;
  }
  .services-pane-toggle .tab-num {
    font-family: var(--serif); font-size: 0.78rem; color: var(--gold); opacity: 0.7; margin-right: 0.75rem;
  }
  .services-pane-toggle::after {
    content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--gold);
    flex-shrink: 0; transition: transform 0.35s var(--ease); line-height: 1;
  }
  .services-pane.is-active .services-pane-toggle { color: var(--gold); }
  .services-pane.is-active .services-pane-toggle::after { transform: rotate(45deg); }
  .services-pane-title { display: none; }
  .services-pane-body { padding: 0 1.25rem 1.5rem; }
  .services-pane-list { margin-bottom: 1.5rem; }
  /* Fix #10: Testimonial slider dots — larger touch target */
  .tslider-dots { gap: 0; }
  .tslider-dot { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; background: transparent; position: relative; }
  .tslider-dot::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: rgba(247,244,239,0.2); display: block; transition: background 0.35s, width 0.35s var(--ease); }
  .tslider-dot.is-active { background: transparent; transform: none; width: auto; }
  .tslider-dot.is-active::after { background: var(--gold); width: 20px; border-radius: 3px; }
  /* Fix #2: Team specialty text too small */
  .team-row-specialty { font-size: 0.78rem; }
  /* Fix #5: Contactos grid single column */
  .contactos-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .highlights .container { grid-template-columns: 1fr; }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(247,244,239,0.07); }
  .hero-heading { font-size: 2.8rem; }
  .contactos-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  /* Fix #2: Hero eyebrow text too small */
  .hero-eyebrow-text { font-size: 0.75rem; }
  /* Fix #8: Hero stat labels too small */
  .hstat-label { font-size: 0.75rem; }
  .hstat-num { font-size: 1.5rem; }
  /* Fix #3: Secondary CTA needs proper button sizing */
  .btn-arrow { padding: 0.75rem 0; min-height: 44px; }
  /* Fix #7: About image too squashed */
  .about-image-main { aspect-ratio: 4/3; }
  /* Fix #5: Appointment form full-width on small screens */
  .appt-step { padding: 1.5rem 1rem; }
  .appt-service-btn { font-size: 0.82rem; padding: 0.6rem 1.2rem; }
  /* Fix #2: Marquee text */
  .marquee-item { font-size: 0.75rem; }
  .marquee-sep { font-size: 0.6rem; }
  /* Fix #4: Tab numbers */
  .tab-num { font-size: 0.75rem; }
  /* Fix #2: About stat labels */
  .about-stat-label { font-size: 0.78rem; }
  /* Fix #2: Appointment labels */
  .appt-label { font-size: 0.78rem; }
  /* Fix #10: Testimonial stars */
  .tslide-stars { font-size: 0.82rem; }
  /* Fix #5: Contactos single column at 480 */
  .contactos-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   SERVICES PAGE — page-servicos.php
══════════════════════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--ink); padding: 9rem 0 5rem;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  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.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px 200px; opacity: 0.5;
}
.page-hero .container { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400; color: var(--cream); line-height: 1.1; margin: 1rem 0 1.5rem;
}
.page-hero p { font-size: 1.05rem; color: rgba(247,244,239,0.6); line-height: 1.8; max-width: 560px; }
.page-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(247,244,239,0.4); margin-bottom: 1.5rem;
}
.page-breadcrumb a { color: var(--gold); transition: opacity 0.3s; }
.page-breadcrumb a:hover { opacity: 0.75; }
.sp-nav {
  position: sticky; top: 60px; z-index: 90;
  background: var(--white); border-bottom: 1px solid rgba(12,28,46,0.1);
  box-shadow: 0 2px 12px rgba(12,28,46,0.06);
}
.sp-nav .container {
  display: flex; align-items: center; justify-content: center; overflow-x: auto; gap: 0.5rem;
  scrollbar-width: none; max-width: var(--container); margin: 0 auto;
  padding: 0.85rem 2rem;
}
.sp-nav .container::-webkit-scrollbar { display: none; }
.sp-nav a {
  display: block; white-space: nowrap; padding: 0.5rem 1.1rem;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.06em; color: var(--muted);
  border: 1px solid rgba(12,28,46,0.18); border-radius: 2rem;
  text-decoration: none;
  transition: color 0.25s, border-color 0.25s, background 0.25s; flex-shrink: 0;
}
.sp-nav a:hover { color: var(--ink); border-color: var(--gold); }
.sp-nav a.is-active { color: #fff; background: var(--gold); border-color: var(--gold); font-weight: 500; }
.service-section {
  padding: 5rem 0; background: var(--cream);
  border-bottom: 1px solid rgba(12,28,46,0.07);
}
.service-section--alt { background: var(--light); }
.service-section-header {
  display: grid; grid-template-columns: 64px 1fr; gap: 2rem; align-items: flex-start;
  margin-bottom: 3.5rem;
}
.service-section-icon {
  font-size: 2.2rem; line-height: 1; width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border-radius: 50%; box-shadow: 0 2px 12px rgba(12,28,46,0.08); flex-shrink: 0;
}
.service-section-header h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400; color: var(--ink); margin-bottom: 1rem;
}
.service-intro { font-size: 1rem; color: var(--muted); line-height: 1.85; max-width: 720px; }
.service-how { margin-bottom: 3.5rem; }
.service-how > h3 {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 2.5rem;
}
.service-steps {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
  position: relative; padding-top: 2rem;
}
/* Connector line between circles — spans from edge of first to edge of last circle */
.service-steps::before {
  content: '';
  position: absolute;
  top: calc(2rem + 20px);
  left: calc(16.67% + 21px);
  right: calc(16.67% + 21px);
  height: 1px;
  background: linear-gradient(to right,
    rgba(184,149,106,0.7),
    rgba(184,149,106,0.2) 50%,
    rgba(184,149,106,0.7));
}
.service-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 2rem; background: none; border: none; position: relative;
}
.step-number {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--gold);
  margin-bottom: 1.75rem; position: relative; z-index: 1;
  background: var(--cream);
}
.service-section--alt .step-number { background: var(--light); }
.service-step p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }
.service-faq > h3 {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
}
.general-faq { background: var(--ink); padding: 5rem 0; }
.general-faq-header { margin-bottom: 3rem; }
.general-faq .section-label { color: var(--gold); }
.general-faq .section-title { color: var(--cream); }
.general-faq .faq-accordion { border-top-color: rgba(247,244,239,0.1); }
.general-faq .faq-item { border-bottom-color: rgba(247,244,239,0.1); }
.general-faq .faq-question { color: var(--cream); }
.general-faq .faq-question::after { color: var(--gold); }
.general-faq .faq-item.is-open .faq-question { color: var(--gold); }
.general-faq .faq-answer-inner { color: rgba(247,244,239,0.6); }
.sp-cta {
  background: var(--cream); padding: 6rem 0; text-align: center;
  border-top: 1px solid rgba(12,28,46,0.07);
}
.sp-cta h2 {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; color: var(--ink); margin-bottom: 1rem;
}
.sp-cta p { font-size: 1rem; color: var(--muted); margin-bottom: 2.5rem; }
.btn { display: inline-flex; align-items: center; cursor: pointer; }
.btn-primary {
  background: var(--gold); color: var(--white);
  padding: 0.9rem 2.25rem; border-radius: var(--r);
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: none; transition: opacity 0.3s;
}
.btn-primary:hover { opacity: 0.88; }
@media (max-width: 900px) {
  .service-steps {
    grid-template-columns: 1fr; gap: 2rem; padding-top: 0;
  }
  .service-steps::before { display: none; }
  .service-step { align-items: flex-start; text-align: left; }
  .service-section-header { grid-template-columns: 48px 1fr; gap: 1.25rem; }
}
@media (max-width: 768px) {
  .page-hero { padding: 7rem 0 3.5rem; }
  /* Hide sticky pill nav, replaced by accordion */
  .sp-nav { display: none; }
  /* Service sections as accordion */
  .service-section {
    padding: 0; border-bottom: 1px solid rgba(12,28,46,0.1);
    background: var(--cream);
  }
  .service-section--alt { background: var(--cream); }
  .service-section .container { padding: 0; }
  /* Accordion toggle header */
  .svc-accordion-toggle {
    display: flex; align-items: center; gap: 1rem;
    width: 100%; padding: 1.25rem 2rem;
    background: var(--cream); border: none; cursor: pointer;
    font-family: var(--serif); font-size: 1.1rem; font-weight: 400;
    color: var(--ink); text-align: left;
  }
  .svc-accordion-toggle .svc-acc-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--white); box-shadow: 0 2px 8px rgba(12,28,46,0.06);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
  }
  .svc-accordion-toggle .svc-acc-title { flex: 1; }
  .svc-accordion-toggle::after {
    content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--gold);
    flex-shrink: 0; transition: transform 0.35s var(--ease); line-height: 1;
  }
  .service-section.svc-acc-open .svc-accordion-toggle { color: var(--gold); }
  .service-section.svc-acc-open .svc-accordion-toggle::after { transform: rotate(45deg); }
  /* Collapsible content */
  .svc-accordion-body {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s var(--ease);
  }
  .svc-accordion-body-inner { padding: 0 2rem 2rem; }
  /* Hide original header inside body (toggle replaces it) */
  .svc-accordion-body .service-section-header { display: none; }
  .service-section-icon { width: 48px; height: 48px; font-size: 1.6rem; }
}
