/*
Theme Name: Kamalaa Dental Clinic
Theme URI: https://kamalaadentalclinic.com
Author: Kamalaa Dental Clinic
Description: Premium navy & gold custom theme for Kamalaa Dental Clinic, Kudavasal.
Version: 4.5
Text Domain: kamalaa-dental
*/
/* ============================================
   KAMALAA DENTAL CLINIC — Premium Design System
   Palette: Ivory / Navy / Warm Gold (matches approved logo)
   Fonts: loaded once via wp_enqueue_style( 'kamalaa-google-fonts', ... ) in
   functions.php — do not re-add an @import here, it would load the same
   Google Fonts stylesheet a second time and block rendering.
   ============================================ */

:root {
  --ivory: #F7F8FC;
  --ivory-deep: #EEF0F7;
  --charcoal: #14192E;
  --charcoal-soft: #454B66;
  --gold: #B8935F;
  --gold-deep: #8A6D3F;
  --gold-pale: #E8D9BE;
  --beige-panel: #EEF0F7;
  --navy: #0B174C;
  --navy-deep: #071033;
  --navy-soft: #16215C;
  --white: #FFFFFF;
  --line: rgba(20, 25, 46, 0.12);

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  --container: 1200px;
  --radius: 2px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-deep);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--charcoal-soft);
  max-width: 560px;
  font-weight: 300;
}

/* ---------- Signature: Smile Arc divider ---------- */

.smile-arc {
  width: 72px;
  height: 30px;
  margin: 0 auto 28px;
  display: block;
}
.smile-arc.left { margin: 0 0 28px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(.25,.8,.25,1);
  white-space: nowrap;
}

.btn-gold {
  background: var(--charcoal);
  color: var(--ivory);
}
.btn-gold:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(138,109,63,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--line);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.btn-ghost-light {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(247,248,252,0.4);
}
.btn-ghost-light:hover {
  background: var(--ivory);
  color: var(--charcoal);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,23,76,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ivory);
}
.logo span { color: var(--gold); font-style: italic; }
.logo-img { height: 56px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(247,248,252,0.75);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ivory);
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-phone svg { stroke: var(--gold); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.mobile-toggle span {
  width: 24px; height: 1.5px;
  background: var(--ivory);
  transition: all 0.3s;
}

@media (max-width: 968px) {
  .header-inner {
    padding: 16px 20px;
  }
  .logo-img {
    height: 50px;
  }
  .header-cta {
    gap: 12px;
  }
  .header-cta .btn {
    padding: 10px 18px;
    font-size: 13px;
  }
  .nav-links {
    position: fixed;
    top: 82px; left: 0; right: 0;
    flex-direction: column;
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 20px 20px 28px;
    gap: 20px;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .nav-links.mobile-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links .nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }
  .nav-links .nav-list a {
    display: block;
    width: 100%;
    padding: 12px 4px;
  }
  .header-phone-text { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .mobile-toggle.open span:nth-child(2) { opacity: 0; }
  .mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

@media (max-width: 400px) {
  .header-inner { padding: 14px 16px; }
  .logo-img { height: 44px; }
  .header-cta { gap: 8px; }
  .header-cta .btn { padding: 9px 14px; font-size: 12.5px; }
  .nav-links { top: 72px; max-height: calc(100vh - 72px); padding: 18px 16px 24px; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 190px 0 120px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-deep) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before { content:''; width: 28px; height: 1px; background: var(--gold); }

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  margin-bottom: 26px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}

.hero p {
  font-size: 1.12rem;
  color: var(--charcoal-soft);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 38px;
}

.hero-actions { display: flex; gap: 18px; margin-bottom: 56px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--charcoal);
  font-weight: 500;
}
.hero-stat-num span { color: var(--gold-deep); }
.hero-stat-label {
  font-size: 12px;
  color: var(--charcoal-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
}
.hero-visual-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.hero-visual-frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: -18px; right: -18px;
  width: 100%; height: 100%;
  border: 1px solid var(--gold);
  border-radius: 6px;
  z-index: -1;
}

.hero-badge {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 22px 26px;
  border-radius: 4px;
  max-width: 220px;
  box-shadow: 0 24px 48px -12px rgba(20,25,46,0.35);
}
.hero-badge-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.hero-badge-text { font-size: 12.5px; color: rgba(247,248,252,0.75); line-height: 1.4; }

@media (max-width: 968px) {
  .hero { padding: 150px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-stats { flex-wrap: wrap; row-gap: 20px; }
  .hero-badge { left: 0; }
}

/* ---------- Marquee strip ---------- */

.trust-strip {
  background: var(--charcoal);
  padding: 22px 0;
  overflow: hidden;
}
.trust-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: scroll-left 28s linear infinite;
  width: max-content;
}
.trust-track span {
  color: rgba(247,248,252,0.55);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.trust-track span strong { color: var(--gold); font-weight: 600; }

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Section base ---------- */

.section { padding: 110px 0; }
.section-header { text-align: center; margin-bottom: 68px; }
.section-header.left { text-align: left; }
.section-header .section-sub { margin: 0 auto; }
.section-header.left .section-sub { margin: 0; }

.bg-panel { background: var(--beige-panel); }
.bg-charcoal { background: var(--charcoal); color: var(--ivory); }
.bg-charcoal h2, .bg-charcoal h3 { color: var(--ivory); }
.bg-charcoal .section-sub { color: rgba(247,248,252,0.65); }

/* ---------- About split ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 460px;
}
.about-img-1 {
  position: absolute;
  top: 0; left: 0;
  width: 72%; height: 78%;
  border-radius: 6px;
  overflow: hidden;
}
.about-img-2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 55%;
  border-radius: 6px;
  overflow: hidden;
  border: 6px solid var(--ivory);
  box-shadow: 0 20px 40px -12px rgba(20,25,46,0.25);
}
.about-img-1 img, .about-img-2 img { width: 100%; height: 100%; object-fit: cover; }

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 34px 0 38px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--charcoal-soft);
  font-weight: 500;
}
.about-list li svg { flex-shrink: 0; stroke: var(--gold-deep); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { height: 380px; margin-bottom: 20px; }
}

/* ---------- Feature / Why-us cards ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-card {
  background: var(--ivory);
  padding: 44px 32px;
  transition: background 0.35s ease;
}
.feature-card:hover { background: var(--beige-panel); }

.feature-icon {
  width: 44px; height: 44px;
  margin-bottom: 24px;
}

.feature-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  color: var(--charcoal-soft);
  font-weight: 300;
}

@media (max-width: 968px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Treatments ---------- */

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.treatment-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 38px 34px;
  transition: all 0.35s cubic-bezier(.25,.8,.25,1);
  position: relative;
}
.treatment-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px -20px rgba(20,25,46,0.15);
}

.treatment-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  display: block;
}

.treatment-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.treatment-card p {
  font-size: 14px;
  color: var(--charcoal-soft);
  font-weight: 300;
  margin-bottom: 20px;
}
.treatment-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.treatment-link svg { transition: transform 0.3s; }
.treatment-card:hover .treatment-link svg { transform: translateX(4px); }

@media (max-width: 968px) { .treatment-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .treatment-grid { grid-template-columns: 1fr; } }

/* ---------- CTA banner ---------- */

.cta-banner {
  background: var(--navy);
  color: var(--ivory);
  border-radius: 8px;
  padding: 64px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  border: 1px solid rgba(247,248,252,0.15);
  border-radius: 50%;
}
.cta-banner h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ivory);
  max-width: 480px;
}
.cta-banner-actions { display: flex; gap: 16px; flex-shrink: 0; }

@media (max-width: 800px) {
  .cta-banner { flex-direction: column; text-align: center; padding: 48px 32px; }
}

/* ---------- Related Treatments (shared premium card grid) ----------
   Used on every dedicated treatment landing page's "You may also be
   looking for" section. Equal-height cards via CSS grid + flex column,
   image top / title / one-line description / Learn More link that
   animates on hover — replaces the old per-page *-related-card styles. */

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.related-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(20, 25, 46, 0.22);
  border-color: var(--gold);
}
.related-card-img { aspect-ratio: 4/3; overflow: hidden; }
.related-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.related-card:hover .related-card-img img { transform: scale(1.06); }
.related-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
}
.related-card-body h4 { font-size: 1.05rem; margin-bottom: 8px; }
.related-card-body p {
  font-size: 13.5px;
  color: var(--charcoal-soft);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.related-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.related-card-link svg { transition: transform 0.3s ease; }
.related-card:hover .related-card-link svg { transform: translateX(4px); }

@media (max-width: 640px) {
  .related-grid { grid-template-columns: 1fr; }
}

/* ---------- "Looking for the right treatment?" CTA ----------
   Full-width, centered variant of the navy CTA banner — replaces the old
   "All Treatments" card inside the related-treatments grid with a proper
   standalone conversion section instead of one card among several. */

.treat-more-cta {
  background: var(--navy);
  border-radius: 8px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.treat-more-cta::after {
  content: '';
  position: absolute;
  left: -60px; bottom: -60px;
  width: 220px; height: 220px;
  border: 1px solid rgba(247, 248, 252, 0.15);
  border-radius: 50%;
}
.treat-more-cta h3 {
  color: var(--ivory);
  font-size: clamp(1.5rem, 3vw, 2rem);
  max-width: 560px;
  margin: 0 auto 14px;
}
.treat-more-cta p {
  color: rgba(247, 248, 252, 0.72);
  font-size: 15px;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 32px;
}
.treat-more-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}
@media (max-width: 640px) {
  .treat-more-cta { padding: 44px 26px; }
}

/* ---------- Testimonials ---------- */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px 32px;
}
.testi-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 26px;
  line-height: 1.55;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-person img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-name { font-size: 14px; font-weight: 600; }
.testi-role { font-size: 12px; color: var(--charcoal-soft); }

@media (max-width: 968px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--charcoal);
  color: rgba(247,248,252,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(247,248,252,0.1);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ivory);
  margin-bottom: 18px;
}
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-about { font-size: 14px; font-weight: 300; line-height: 1.7; max-width: 320px; }

.footer-heading {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 22px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; transition: color 0.25s; }
.footer-links a:hover { color: var(--gold); }

.footer-contact li {
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  line-height: 1.5;
}
.footer-contact svg { flex-shrink: 0; margin-top: 3px; stroke: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 26px 0;
  font-size: 13px;
  text-align: center;
}

/* ---------- Footer "Follow Us" social section ---------- */
.footer-social-section {
  padding: 44px 0;
  border-bottom: 1px solid rgba(247, 248, 252, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-social-heading {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.footer-social-subtitle {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247, 248, 252, 0.65);
  max-width: 440px;
  margin: 0 0 24px;
}
.footer-social { display: flex; justify-content: center; gap: 18px; }
.footer-social a {
  width: 46px; height: 46px;
  border: 1px solid rgba(247,248,252,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -8px rgba(184,147,95,0.5);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-social-section { padding: 36px 0; }
  .footer-social-subtitle { font-size: 13.5px; padding: 0 12px; }
}

/* ---------- Floating contact buttons ---------- */

.float-actions {
  position: fixed;
  bottom: 18px; right: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(20,25,46,0.35);
  transition: transform 0.3s;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn.call { background: var(--charcoal); }
.float-btn.whatsapp { background: #25D366; }

@media (max-width: 480px) {
  .float-actions { bottom: 16px; right: 16px; gap: 10px; }
  .float-btn { width: 48px; height: 48px; }
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .trust-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Page header (inner pages) ---------- */

.page-header {
  padding: 170px 0 70px;
  background: var(--beige-panel);
  text-align: center;
}
.page-header h1 { font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 14px; }
.breadcrumb {
  font-size: 13px;
  color: var(--charcoal-soft);
  display: flex;
  gap: 8px;
  justify-content: center;
}
.breadcrumb a { color: var(--gold-deep); font-weight: 600; }
