/* ============================================================
   SUMMIT DENTAL STUDIO — styles.css
   Theme: Rocky Mountain Alpine / Luxury Medical
   Palette: Slate & Ivory
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  /* Core Palette */
  --clr-slate-900:   #0f1117;
  --clr-slate-800:   #181c26;
  --clr-slate-700:   #252b38;
  --clr-slate-600:   #374153;
  --clr-slate-500:   #5a6475;
  --clr-slate-400:   #7e8da0;
  --clr-slate-300:   #a8b4c4;
  --clr-slate-200:   #d0d8e4;
  --clr-slate-100:   #edf0f4;

  --clr-ivory-100:   #faf8f4;
  --clr-ivory-200:   #f3f0ea;
  --clr-ivory-300:   #e8e2d8;

  --clr-gold:        #b8965a;
  --clr-gold-light:  #d4b07a;
  --clr-gold-subtle: rgba(184, 150, 90, 0.15);

  --clr-white:       #ffffff;

  /* Typography */
  --font-display:    'Cormorant Garamond', Georgia, serif;
  --font-body:       'Jost', system-ui, sans-serif;

  /* Spacing Scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --max-width:       1280px;
  --nav-height:      76px;

  /* Easing */
  --ease-out-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:     cubic-bezier(0.4, 0, 0.2, 1);

  /* Borders */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.16), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl:  0 32px 80px rgba(0,0,0,0.24);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--clr-slate-700);
  background-color: var(--clr-ivory-100);
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul[role="list"] { list-style: none; }

address { font-style: normal; }

button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

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

/* ── Section Shared ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--clr-gold);
  flex-shrink: 0;
}

.section-eyebrow--light { color: rgba(184,150,90,0.85); }
.section-eyebrow--light::before { background: rgba(184,150,90,0.5); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--clr-slate-900);
  margin-bottom: var(--sp-6);
}

.section-title em {
  font-style: italic;
  color: var(--clr-slate-600);
}

.section-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--clr-slate-500);
  max-width: 52ch;
}

.section-header {
  margin-bottom: var(--sp-12);
}

.section-header--centered {
  text-align: center;
}

.section-header--centered .section-eyebrow {
  justify-content: center;
}

.section-header--centered .section-eyebrow::before {
  display: none;
}

.section-header--centered .section-desc {
  margin-inline: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease-out-expo);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.btn--lg  { padding: var(--sp-5) var(--sp-10); font-size: 0.8rem; }
.btn--sm  { padding: var(--sp-3) var(--sp-6); font-size: 0.75rem; }
.btn--full { width: 100%; }

.btn--primary {
  background-color: var(--clr-slate-900);
  color: var(--clr-ivory-100);
  border: 1px solid var(--clr-slate-900);
}

.btn--primary:hover {
  background-color: var(--clr-slate-700);
  border-color: var(--clr-slate-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--clr-slate-900);
  border: 1px solid var(--clr-slate-300);
}

.btn--outline:hover {
  border-color: var(--clr-slate-900);
  background-color: var(--clr-slate-100);
}

/* btn--outline inside dark mega menu CTA cards */
.mega-menu .btn--outline {
  color: var(--clr-ivory-100);
  border-color: rgba(255,255,255,0.3);
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
}

.mega-menu .btn--outline:hover {
  background-color: var(--clr-ivory-100);
  border-color: var(--clr-ivory-100);
  color: var(--clr-slate-900);
  transform: translateY(-1px);
}

.btn--ghost {
  background-color: transparent;
  color: var(--clr-ivory-100);
  border: 1px solid rgba(255,255,255,0.35);
}

.btn--ghost:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn--ghost-light {
  background-color: transparent;
  color: var(--clr-ivory-100);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn--ghost-light:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

.btn--ivory {
  background-color: var(--clr-ivory-100);
  color: var(--clr-slate-900);
  border: 1px solid var(--clr-ivory-100);
}

.btn--ivory:hover {
  background-color: var(--clr-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--nav-height);
  background: rgba(15, 17, 23, 0.75);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(15, 17, 23, 0.95);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.nav-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  padding-inline: var(--sp-6);
  max-width: var(--max-width);
  margin-inline: auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--clr-ivory-100);
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo__mark {
  color: var(--clr-gold);
  display: flex;
}

.nav-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.nav-logo__sub {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-slate-300);
}

/* Desktop nav links — hidden below 1080px */
.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}

.nav-item { position: static; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: var(--sp-2) var(--sp-4);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--clr-slate-200);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.nav-link:hover { color: var(--clr-white); }

.nav-chevron {
  transition: transform 0.25s var(--ease-out-expo);
  flex-shrink: 0;
}

.nav-link--trigger[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

/* Nav Actions */
.nav-actions {
  display: none;
  align-items: center;
  gap: var(--sp-4);
  margin-left: var(--sp-4);
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--clr-slate-300);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-phone:hover { color: var(--clr-ivory-100); }

/* Desktop reveal */
@media (min-width: 1080px) {
  .nav-links   { display: flex; }
  .nav-actions { display: flex; }
  .nav-hamburger { display: none; }
  .nav-wrapper { padding-inline: var(--sp-12); }
}

/* ── Mega Menu ── */
/*
 * Menus are positioned relative to .site-header (which is position:fixed).
 * They span the same width as the body container, aligned to its edges.
 * A transparent "hover bridge" pseudo-element closes the gap between the
 * nav trigger and the panel so the mouse can travel without dismissal.
 */
.mega-menu {
  position: fixed;
  top: var(--nav-height);
  /* Align to container edges — mirrors .container padding at 1080px+ */
  left: max(var(--sp-12), calc(50% - var(--max-width) / 2 + var(--sp-12)));
  right: max(var(--sp-12), calc(50% - var(--max-width) / 2 + var(--sp-12)));
  width: auto;
  background: var(--clr-slate-900);
  border: 1px solid rgba(255,255,255,0.09);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 4px 16px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.25s var(--ease-out-expo), visibility 0s linear 0.2s;
  z-index: 800;
}

/* Transparent hover bridge — fills the gap between nav bar and panel */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

/* Open state */
.mega-menu.is-open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.25s var(--ease-out-expo), visibility 0s linear 0s;
}

/* Narrow variants share the same full-width layout — content is constrained by grid */
.mega-menu--narrow  { /* inherits full-width */ }
.mega-menu--contact { /* inherits full-width */ }

/* Standard 4-col layout */
.mega-menu__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 260px;
  gap: 0;
  padding: var(--sp-8);
}

/* 2-col layout */
.mega-menu__inner--2col {
  grid-template-columns: 1fr 260px;
}

/* Contact layout */
.mega-menu__inner--contact {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-6);
}

.mega-menu__col {
  padding: var(--sp-4) var(--sp-6);
  border-right: 1px solid rgba(255,255,255,0.05);
}

.mega-menu__col:first-child { padding-left: 0; }
.mega-menu__col:last-child  { border-right: none; }

.mega-menu__heading {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mega-menu__col ul { display: flex; flex-direction: column; gap: var(--sp-2); }

.mega-menu__link {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  transition: background 0.15s ease;
  text-decoration: none;
}

.mega-menu__link:hover { background: rgba(255,255,255,0.05); }

.mega-menu__icon {
  font-size: 0.7rem;
  color: var(--clr-gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.mega-menu__link strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--clr-ivory-100);
  letter-spacing: 0.01em;
}

.mega-menu__link em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--clr-slate-400);
  margin-top: 1px;
}

/* CTA Column */
.mega-menu__cta-card {
  background: linear-gradient(135deg, rgba(184,150,90,0.12), rgba(184,150,90,0.04));
  border: 1px solid rgba(184,150,90,0.2);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.mega-menu__cta-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  font-weight: 500;
}

.mega-menu__cta-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--clr-ivory-100);
  line-height: 1.2;
}

.mega-menu__cta-desc {
  font-size: 0.78rem;
  color: var(--clr-slate-400);
  line-height: 1.6;
  flex: 1;
}

/* ── Contact Mega Buttons ── */
.mega-contact-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-6) var(--sp-5);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.22s var(--ease-out-expo);
  text-align: center;
  cursor: pointer;
}

.mega-contact-btn:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.mega-contact-btn--accent {
  background: var(--clr-gold-subtle);
  border-color: rgba(184,150,90,0.3);
}

.mega-contact-btn--accent:hover {
  background: rgba(184,150,90,0.18);
  border-color: rgba(184,150,90,0.5);
}

.mega-contact-btn__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--clr-gold);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.mega-contact-btn--accent .mega-contact-btn__icon {
  background: rgba(184,150,90,0.15);
}

.mega-contact-btn:hover .mega-contact-btn__icon {
  background: rgba(255,255,255,0.1);
}

.mega-contact-btn__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mega-contact-btn__text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-ivory-100);
  letter-spacing: 0.04em;
}

.mega-contact-btn__text em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--clr-slate-400);
}

/* ── Hamburger ── */
.nav-hamburger {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: var(--sp-2);
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--clr-ivory-100);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
  transform-origin: center;
}

.nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  width: 100%;
  background: var(--clr-slate-900);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: var(--sp-6);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out-expo);
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

/* Scroll lock when mobile menu is open */
body.menu-open { overflow: hidden; }

.mobile-nav-item { width: 100%; }

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--sp-4) var(--sp-2);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--clr-ivory-100);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: none;
  text-align: left;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover { color: var(--clr-gold); }

.mobile-chevron {
  transition: transform 0.25s var(--ease-out-expo);
  flex-shrink: 0;
  color: var(--clr-slate-400);
}

.mobile-accordion-trigger[aria-expanded="true"] .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-accordion-panel {
  padding: var(--sp-2) 0 var(--sp-4) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  /* Hidden by default via JS — no CSS hidden needed */
}

.mobile-accordion-panel[hidden] { display: none; }

.mobile-accordion-group-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  padding: var(--sp-3) 0 var(--sp-2);
  margin-top: var(--sp-2);
}

.mobile-accordion-group-label:first-child { margin-top: 0; }

.mobile-nav-sublink {
  font-size: 0.88rem;
  color: var(--clr-slate-300);
  padding: var(--sp-2) 0;
  display: block;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
  text-decoration: none;
}

.mobile-nav-sublink:hover { color: var(--clr-gold); }

.mobile-menu__footer {
  margin-top: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu__phone {
  font-size: 0.88rem;
  color: var(--clr-slate-300);
  letter-spacing: 0.06em;
  text-align: center;
}

@media (min-width: 1080px) {
  .mobile-menu { display: none; }
  .nav-hamburger { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: var(--clr-slate-900);
}

/* SVG Mountain Layers */
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__mountain {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
}

.hero__mountain--back {
  background: var(--clr-slate-800);
  clip-path: polygon(0% 100%, 5% 60%, 15% 35%, 25% 55%, 38% 15%, 50% 45%, 62% 20%, 72% 50%, 82% 28%, 90% 48%, 100% 30%, 100% 100%);
  height: 70%;
  bottom: 0;
  opacity: 0.8;
}

.hero__mountain--mid {
  background: var(--clr-slate-700);
  clip-path: polygon(0% 100%, 0% 75%, 10% 50%, 22% 68%, 34% 38%, 45% 62%, 58% 30%, 68% 55%, 78% 40%, 88% 60%, 100% 42%, 100% 100%);
  height: 58%;
  opacity: 0.9;
}

.hero__mountain--front {
  background: var(--clr-slate-800);
  clip-path: polygon(0% 100%, 0% 90%, 8% 76%, 18% 84%, 28% 65%, 40% 80%, 50% 60%, 62% 75%, 72% 58%, 82% 72%, 92% 62%, 100% 70%, 100% 100%);
  height: 40%;
  background: linear-gradient(to bottom, var(--clr-slate-700) 0%, var(--clr-slate-900) 100%);
}

.hero__fog {
  position: absolute;
  bottom: 30%;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(15,17,23,0.4), transparent);
  animation: fogDrift 12s ease-in-out infinite alternate;
}

@keyframes fogDrift {
  from { transform: translateX(-3%); opacity: 0.4; }
  to   { transform: translateX(3%);  opacity: 0.7; }
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Atmospheric gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(15, 17, 23, 0.1) 0%,
    rgba(15, 17, 23, 0.0) 30%,
    rgba(15, 17, 23, 0.6) 70%,
    rgba(15, 17, 23, 0.9) 100%
  );
  z-index: 1;
}

/* Subtle aurora/glow at top */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: radial-gradient(ellipse 70% 50% at 50% -10%, rgba(90, 110, 140, 0.3), transparent);
  z-index: 1;
}

/* ── Hero entrance animation ── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero__animate {
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease-out-expo) forwards;
}

/* Staggered delays */
.hero__animate--1 { animation-delay: 0.15s; }
.hero__animate--2 { animation-delay: 0.32s; }
.hero__animate--3 { animation-delay: 0.48s; }
.hero__animate--4 { animation-delay: 0.62s; }
.hero__animate--5 {
  animation-name: heroFadeIn;
  animation-duration: 0.8s;
  animation-delay: 0.85s;
}

/* ── Centered content block ── */
.hero__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* Vertically centered between nav and bottom stats */
  flex: 1;
  justify-content: center;
  padding-top: var(--nav-height);
  padding-inline: var(--sp-6);
  max-width: 820px;
  width: 100%;
  margin-inline: auto;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-slate-300);
  margin-bottom: var(--sp-6);
}

.hero__badge-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--clr-slate-500);
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--clr-ivory-100);
  margin-bottom: var(--sp-6);
}

.hero__heading-top {
  display: block;
}

.hero__heading-accent {
  display: block;
  font-style: italic;
  color: var(--clr-gold-light);
}

.hero__subtext {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--clr-slate-300);
  max-width: 46ch;
  margin-bottom: var(--sp-10);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
}

/* ── Pinned bottom stats bar ── */
.hero__stats-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--sp-10);
  z-index: 2;
  width: 100%;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  align-items: center;
  justify-content: space-evenly;
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--clr-ivory-100);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-slate-400);
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--sp-8);
  right: var(--sp-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  z-index: 2;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.2); opacity: 1; }
}

.hero__scroll-text {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-slate-400);
  writing-mode: vertical-rl;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding-block: var(--sp-24);
  background: var(--clr-ivory-100);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

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

@media (min-width: 1080px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  position: relative;
  background: var(--clr-white);
  border: 1px solid var(--clr-ivory-300);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-8) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: all 0.3s var(--ease-out-expo);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out-expo);
}

.service-card:hover {
  border-color: var(--clr-ivory-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card--featured {
  background: var(--clr-slate-900);
  border-color: var(--clr-slate-900);
  color: var(--clr-ivory-100);
}

.service-card--featured .service-card__title { color: var(--clr-ivory-100); }
.service-card--featured .service-card__desc  { color: var(--clr-slate-300); }
.service-card--featured .service-card__link  { color: var(--clr-gold-light); }
.service-card--featured .service-card__icon  { color: var(--clr-gold); }

.service-card--featured::before {
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
}

.service-card__featured-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  border: 1px solid rgba(184,150,90,0.3);
  padding: var(--sp-1) var(--sp-3);
  border-radius: 999px;
  margin-bottom: var(--sp-2);
}

.service-card__icon {
  color: var(--clr-gold);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-gold-subtle);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--clr-slate-900);
  line-height: 1.2;
}

.service-card__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--clr-slate-500);
  flex: 1;
}

.service-card__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-gold);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.service-card__link:hover { text-decoration: underline; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding-block: var(--sp-24);
  background: var(--clr-ivory-200);
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-16);
  align-items: center;
}

@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
  }
}

/* Visual / Image Area */
.about__visual {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.about__img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--clr-slate-800);
}

.about__img-placeholder {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.about__img-mountain {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: var(--clr-slate-700);
  clip-path: polygon(0% 100%, 10% 55%, 25% 70%, 40% 30%, 55% 60%, 70% 25%, 85% 55%, 100% 40%, 100% 100%);
}

.about__img-silhouette {
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, rgba(37, 43, 56, 0.0) 0%, rgba(15, 17, 23, 0.7) 100%);
}

.about__img-accent {
  position: absolute;
  bottom: -var(--sp-6);
  right: -var(--sp-6);
  width: 120px;
  height: 120px;
  border: 2px solid var(--clr-gold);
  border-radius: var(--radius-lg);
  transform: translate(24px, 24px);
  z-index: -1;
  opacity: 0.4;
}

/* Credential card */
.about__credential-card {
  position: absolute;
  bottom: var(--sp-6);
  left: -var(--sp-6);
  background: var(--clr-white);
  border: 1px solid var(--clr-ivory-300);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-lg);
  transform: translateX(-16px);
}

.about__credential-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--clr-slate-900);
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.about__credential-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--clr-slate-500);
  text-transform: uppercase;
  max-width: 12ch;
  line-height: 1.4;
}

/* Content */
.about__body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--clr-slate-600);
  margin-bottom: var(--sp-5);
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--clr-ivory-300);
}

.about__pillar {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
}

.about__pillar-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--clr-gold);
  min-width: 24px;
  padding-top: 2px;
}

.about__pillar strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-slate-800);
  margin-bottom: var(--sp-1);
  letter-spacing: 0.03em;
}

.about__pillar p {
  font-size: 0.85rem;
  color: var(--clr-slate-500);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding-block: var(--sp-24);
  background: var(--clr-ivory-100);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-10);
}

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

@media (min-width: 1080px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-ivory-300);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-card--featured {
  background: var(--clr-slate-900);
  border-color: var(--clr-slate-900);
}

.testimonial-card--featured .testimonial-card__stars { color: var(--clr-gold); }
.testimonial-card--featured .testimonial-card__quote  { color: var(--clr-slate-200); }
.testimonial-card--featured .testimonial-card__name   { color: var(--clr-ivory-100); }
.testimonial-card--featured .testimonial-card__location { color: var(--clr-slate-400); }
.testimonial-card--featured .testimonial-card__avatar {
  background: rgba(184,150,90,0.2);
  color: var(--clr-gold);
  border-color: rgba(184,150,90,0.3);
}

.testimonial-card__stars {
  font-size: 0.95rem;
  color: var(--clr-gold);
  letter-spacing: 0.08em;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--clr-slate-700);
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--clr-ivory-300);
}

.testimonial-card--featured .testimonial-card__author {
  border-top-color: rgba(255,255,255,0.07);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--clr-ivory-300);
  background: var(--clr-ivory-200);
  color: var(--clr-slate-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-style: normal;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--clr-slate-800);
  display: block;
}

.testimonial-card__location {
  font-size: 0.75rem;
  color: var(--clr-slate-400);
  letter-spacing: 0.04em;
}

.testimonials__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--clr-ivory-300);
}

.testimonials__source {
  font-size: 0.75rem;
  color: var(--clr-slate-400);
  letter-spacing: 0.04em;
}

.testimonials__rating {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.testimonials__rating-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--clr-slate-900);
  line-height: 1;
}

.testimonials__rating-stars {
  font-size: 0.9rem;
  color: var(--clr-gold);
  letter-spacing: 0.06em;
}

.testimonials__rating-count {
  font-size: 0.78rem;
  color: var(--clr-slate-400);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding-block: var(--sp-24);
  overflow: hidden;
  background: var(--clr-slate-900);
}

.cta-section__bg {
  position: absolute;
  inset: 0;
}

.cta-section__mountain {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: var(--clr-slate-800);
  clip-path: polygon(0% 100%, 0% 65%, 15% 40%, 28% 58%, 40% 20%, 52% 48%, 65% 15%, 75% 42%, 88% 25%, 100% 40%, 100% 100%);
  opacity: 0.5;
}

.cta-section__grain {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--clr-ivory-100);
  margin-bottom: var(--sp-6);
}

.cta-section__desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--clr-slate-300);
  margin-bottom: var(--sp-10);
  max-width: 50ch;
  margin-inline: auto;
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding-block: var(--sp-24);
  background: var(--clr-ivory-200);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-16);
  align-items: start;
}

@media (min-width: 900px) {
  .contact__grid { grid-template-columns: 1fr 1.2fr; }
}

/* Details */
.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin-top: var(--sp-6);
}

.contact__detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.contact__detail-icon {
  color: var(--clr-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact__detail-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-slate-400);
  margin-bottom: var(--sp-1);
}

.contact__detail-item address,
.contact__detail-item p {
  font-size: 0.9rem;
  color: var(--clr-slate-600);
  line-height: 1.7;
}

.contact__detail-item a {
  font-size: 0.9rem;
  color: var(--clr-slate-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact__detail-item a:hover { color: var(--clr-gold); }

/* Form */
.contact-form {
  background: var(--clr-white);
  border: 1px solid var(--clr-ivory-300);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-md);
}

.contact-form__heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--clr-slate-900);
  margin-bottom: var(--sp-8);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.form-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-slate-600);
}

.form-label span { color: var(--clr-gold); }

.form-input {
  width: 100%;
  padding: var(--sp-4) var(--sp-5);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--clr-slate-800);
  background: var(--clr-ivory-100);
  border: 1px solid var(--clr-ivory-300);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder { color: var(--clr-slate-300); }

.form-input:focus {
  border-color: var(--clr-slate-400);
  box-shadow: 0 0 0 3px rgba(90, 100, 117, 0.1);
}

.form-input:invalid:not(:placeholder-shown) {
  border-color: #c0392b;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%235a6475' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-4) center;
  padding-right: var(--sp-10);
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form__note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--clr-slate-400);
  margin-top: var(--sp-4);
  line-height: 1.6;
}

.form-success {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
  padding: var(--sp-5) var(--sp-6);
  background: rgba(90, 140, 100, 0.06);
  border: 1px solid rgba(90, 140, 100, 0.2);
  border-radius: var(--radius-md);
  color: #3a7049;
  font-size: 0.88rem;
}

.form-success p { margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--clr-slate-900);
  color: var(--clr-slate-300);
  padding-top: var(--sp-20);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 280px 1fr; }
}

/* Brand */
.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--clr-ivory-100);
  text-decoration: none;
  margin-bottom: var(--sp-4);
}

.footer__logo-mark { color: var(--clr-gold); display: flex; }

.footer__tagline {
  font-size: 0.85rem;
  color: var(--clr-slate-400);
  line-height: 1.7;
  max-width: 26ch;
  margin-bottom: var(--sp-6);
}

.footer__socials {
  display: flex;
  gap: var(--sp-3);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--clr-slate-400);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer__social-link:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

/* Nav columns */
.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}

@media (min-width: 640px) {
  .footer__nav { grid-template-columns: repeat(3, 1fr); }
}

.footer__nav-heading {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-slate-500);
  margin-bottom: var(--sp-5);
}

.footer__nav-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__nav-col a {
  font-size: 0.85rem;
  color: var(--clr-slate-400);
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
}

.footer__nav-col a:hover { color: var(--clr-ivory-100); }

.footer__address {
  font-size: 0.85rem;
  color: var(--clr-slate-400);
  line-height: 1.7;
  margin-bottom: var(--sp-3);
}

.footer__phone {
  font-size: 0.85rem;
  color: var(--clr-slate-400);
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.04em;
}

.footer__phone:hover { color: var(--clr-gold); }

/* Bottom bar */
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-6);
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--clr-slate-500);
}

.footer__legal {
  display: flex;
  gap: var(--sp-5);
}

.footer__legal a {
  font-size: 0.78rem;
  color: var(--clr-slate-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__legal a:hover { color: var(--clr-slate-300); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* ============================================================
   FOCUS STYLES
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .hero__scroll-hint, .hero__bg::after { display: none; }
  .hero { min-height: auto; padding-top: var(--sp-8); }
}
