/* ============================================================
   funerals.livestreaming.expert — Design System
   Palette + type from the official style guide
   ============================================================ */
:root {
  /* Core palette */
  --slate: #2f3e4c;        /* Deep Slate Blue — headings, nav, strong text */
  --slate-soft: #3d4f5e;
  --ivory: #f7f4ef;        /* Soft Ivory — page background */
  --ivory-deep: #f1ece4;
  --mist: #e8e4de;         /* Mist Grey — soft section backgrounds */
  --stone: #b8a38c;        /* Warm Stone — borders, dividers */
  --bronze: #9b7b5a;       /* Accent Bronze — price accents, emphasis */
  --bronze-dark: #7f6241;
  --taupe: #7a736c;        /* Taupe Grey — secondary text, captions */

  --line: #ddd3c6;
  --line-strong: #cabfae;
  --card: #fffdfa;
  --bronze-tint: #efe7dc;
  --slate-tint: #e7edf1;

  --shadow-sm: 0 8px 24px rgba(47, 62, 76, 0.06);
  --shadow: 0 22px 54px rgba(47, 62, 76, 0.09);
  --shadow-lg: 0 36px 80px rgba(47, 62, 76, 0.14);

  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 30px;
  --max: 1200px;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 600;
  background: var(--slate);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
}
.skip-link:focus {
  left: 0;
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}
.footer-areas {
  color: var(--taupe);
  font-size: 0.9rem;
  margin-top: 12px;
}
.footer-areas strong { color: var(--slate); }

/* ============================================================
   Google rating badge
   ============================================================ */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rating-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.rating-badge .stars { display: inline-flex; gap: 1px; color: var(--bronze); }
.rating-badge .stars svg { width: 17px; height: 17px; }
.rating-badge strong { font-family: var(--serif); font-size: 1.2rem; color: var(--slate); line-height: 1; }
.rating-badge span { color: var(--taupe); font-size: 0.92rem; }

/* ============================================================
   Legal pages (Imprint / Privacy)
   ============================================================ */
.legal-main { padding: 56px 0 90px; }
.legal-head { max-width: 820px; }
.legal-head .eyebrow { margin-bottom: 14px; }
.legal-head h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  font-weight: 500;
  margin-bottom: 12px;
}
.legal-head .updated { color: var(--taupe); font-size: 0.95rem; margin: 0; }
.legal-content { max-width: 820px; margin-top: 14px; }
.legal-content h2 {
  font-size: 1.55rem;
  margin: 40px 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.legal-content h2:first-of-type { border-top: 0; padding-top: 0; }
.legal-content h3 { font-size: 1.15rem; margin: 24px 0 8px; }
.legal-content p { color: var(--slate-soft); margin: 0 0 1em; }
.legal-content ul { color: var(--slate-soft); padding-left: 22px; margin: 0 0 1.1em; display: grid; gap: 8px; }
.legal-content a { color: var(--bronze-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--slate); }
.legal-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 34px;
  box-shadow: var(--shadow-sm);
  margin: 4px 0 8px;
}
.legal-card p { margin: 0 0 0.5em; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card .label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  font-weight: 600;
  margin-bottom: 6px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-weight: 600;
  color: var(--slate);
}
.legal-back svg { width: 18px; height: 18px; }
.legal-back:hover { color: var(--bronze-dark); }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--slate);
  background: var(--ivory);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--slate);
}

p { margin: 0 0 1.1em; }
strong { font-weight: 600; color: var(--slate); }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

/* ---------- Shared bits ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--stone);
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--stone);
}

.section { padding: 104px 0; }
.section.tight { padding: 72px 0; }
.section.mist { background: var(--mist); }
.section.ivory-deep { background: var(--ivory-deep); }

.section-head { max-width: 720px; }
.section-head.centered { margin: 0 auto; text-align: center; }
.section-title {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  margin-bottom: 18px;
}
.section-sub {
  color: var(--taupe);
  font-size: 1.12rem;
  margin: 0;
}

.lead { font-size: 1.18rem; color: var(--slate-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--slate);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--slate-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-bronze {
  background: linear-gradient(180deg, var(--bronze), var(--bronze-dark));
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-bronze:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--slate);
}
.btn-ghost:hover { background: var(--card); transform: translateY(-2px); }

/* ============================================================
   Topbar
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247, 244, 239, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.topbar.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(47, 62, 76, 0.05);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  background: linear-gradient(180deg, #fff, var(--bronze-tint));
  color: var(--bronze-dark);
  flex: 0 0 44px;
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-logo {
  height: 46px;
  width: auto;
  display: block;
  flex: 0 0 auto;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--slate);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-phone svg { width: 17px; height: 17px; color: var(--bronze-dark); flex: 0 0 auto; }
.nav-phone:hover { color: var(--bronze-dark); }
.brand-text { line-height: 1.15; }
.brand-text strong {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  color: var(--slate);
}
.brand-text small {
  display: block;
  color: var(--taupe);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 26px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-size: 0.95rem;
  color: var(--taupe);
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: var(--bronze);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--slate); }
.nav-links a:hover::after { width: 100%; }

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 600;
}
.lang-toggle a {
  padding: 6px 13px;
  color: var(--taupe);
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-toggle a.active { background: var(--slate); color: #fff; }
.lang-toggle a:not(.active):hover { background: var(--mist); color: var(--slate); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--card);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--slate);
  position: relative;
  transition: transform 0.25s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding: 76px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.7rem, 5.4vw, 4.7rem);
  font-weight: 500;
  margin: 0 0 30px;
}
.hero-kicker {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  color: var(--slate-soft);
  margin: 0 0 26px;
  line-height: 1.35;
}
.hero p { color: var(--taupe); font-size: 1.07rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.hero-figure::after {
  content: "";
  position: absolute; inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
.hero-price-tag {
  position: absolute;
  left: -22px; bottom: 34px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  box-shadow: var(--shadow);
}
.hero-price-tag small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 600;
  margin-bottom: 4px;
}
.hero-price-tag strong {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--bronze-dark);
  line-height: 1;
}
.hero-price-tag span { display: block; font-size: 0.82rem; color: var(--taupe); margin-top: 4px; }

/* Body copy block under hero */
.hero-copy-block {
  max-width: 760px;
  margin: 40px auto 0;
  text-align: center;
}
.hero-copy-block p { color: var(--taupe); font-size: 1.08rem; }
.hero-intro { padding-top: 64px; padding-bottom: 8px; }
.hero-intro .hero-copy-block { margin-top: 0; }
.hero-intro .hero-copy-block p + p { margin-top: 1.1em; }

/* ---------- Full-bleed sunset hero banner ---------- */
.hero-banner {
  position: relative;
  padding: 0;
  min-height: clamp(540px, 72vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero-banner-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(96deg, rgba(16,26,36,0.80) 0%, rgba(16,26,36,0.52) 34%, rgba(16,26,36,0.12) 62%, rgba(16,26,36,0) 82%),
    linear-gradient(0deg, rgba(16,26,36,0.42) 0%, rgba(16,26,36,0) 42%);
}
.hero-banner-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 64px 0;
}
.hero-banner-copy { max-width: 700px; }
.hero-banner .eyebrow { color: #f3dcc0; }
.hero-banner .eyebrow::before { background: rgba(255, 255, 255, 0.65); }
.hero-banner h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  font-weight: 500;
  margin: 0 0 22px;
  text-shadow: 0 2px 30px rgba(8, 16, 24, 0.45);
}
.hero-banner .hero-kicker {
  color: rgba(255, 255, 255, 0.94);
  margin: 0 0 8px;
  text-shadow: 0 1px 16px rgba(8, 16, 24, 0.4);
}
.hero-banner .hero-actions { margin-top: 30px; }
.btn-ghost-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}
.hero-price-tag.floating {
  position: absolute;
  right: 0;
  bottom: 46px;
  left: auto;
  z-index: 2;
}

/* Logo-only brand (text hidden site-wide, kept for screen readers via alt/aria-label) */
.brand-text { display: none; }

/* ---------- Trust strip ---------- */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--card);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 5px;
}
.trust-item span { color: var(--taupe); font-size: 0.93rem; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(47,62,76,0) 55%, rgba(47,62,76,0.28));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-zoom {
  position: absolute;
  right: 12px; bottom: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: grid; place-items: center;
  color: var(--slate);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: translateY(0); }
.gallery-zoom svg { width: 16px; height: 16px; }

/* ============================================================
   Benefits (split)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.benefit-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 18px; }
.benefit-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.benefit-list li:last-child { border-bottom: 0; }
.benefit-check {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bronze-tint);
  border: 1px solid var(--stone);
  color: var(--bronze-dark);
  display: grid; place-items: center;
  margin-top: 2px;
}
.benefit-check svg { width: 15px; height: 15px; }
.benefit-list strong { display: block; font-size: 1.08rem; margin-bottom: 2px; }
.benefit-list span { color: var(--taupe); font-size: 0.98rem; }

/* ============================================================
   Process / How it works
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.process-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--stone);
  line-height: 1;
  margin-bottom: 18px;
}
.process-step h3 { font-size: 1.5rem; margin-bottom: 10px; }
.process-step p { color: var(--taupe); margin: 0; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin-top: 50px;
  align-items: stretch;
}
.testimonial {
  flex: 1 1 calc(50% - 13px);
  max-width: calc(50% - 13px);
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--stone);
  margin-bottom: 14px;
}
.testimonial p { color: var(--slate-soft); font-size: 1rem; }
.testimonial-person {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-person img {
  width: 54px; height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--mist);
}
.avatar-monogram {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bronze-tint);
  border: 1px solid var(--stone);
  color: var(--bronze-dark);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  flex: 0 0 54px;
}
.avatar-photo {
  width: 54px; height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--mist);
  flex: 0 0 54px;
  display: block;
}
.avatar-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  border: 0;
}
.testimonial-person.logo img {
  border-radius: 12px;
  object-fit: contain;
  padding: 6px;
  background: #fff;
}
.testimonial-person strong { display: block; font-family: var(--serif); font-size: 1.18rem; font-weight: 600; }
.testimonial-person span { color: var(--taupe); font-size: 0.86rem; }

/* ============================================================
   Services
   ============================================================ */
.service-row { display: grid; gap: 34px; margin-top: 50px; }
.service-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-card:nth-child(even) .service-media { order: 2; }
.service-media { position: relative; min-height: 320px; }
.service-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-media.contain { background: #fff; }
.service-media.contain img { object-fit: contain; padding: 20px; }
.service-body { padding: 44px 46px; align-self: center; }
.service-body h3 { font-size: 1.8rem; margin-bottom: 16px; }
.service-body p { color: var(--taupe); margin: 0; }
.service-features { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.service-features li {
  display: grid; grid-template-columns: 20px 1fr; gap: 12px;
  color: var(--slate-soft); font-size: 1rem;
}
.service-features li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--bronze);
  margin-top: 9px;
}

/* ============================================================
   Pricing
   ============================================================ */
.pricing-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--bronze-dark);
  font-size: 0.9rem;
  font-weight: 600;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
  align-items: stretch;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card.featured {
  border-color: var(--stone);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}
.pricing-card.featured:hover { transform: translateY(-14px); }
.pricing-top {
  padding: 34px 32px 26px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.pricing-top.taupe { background: linear-gradient(180deg, var(--bronze-tint), var(--card)); }
.pricing-top.blue { background: linear-gradient(180deg, var(--slate-tint), var(--card)); }
.pricing-badge {
  position: absolute;
  top: 22px; right: 24px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--slate);
  padding: 5px 12px;
  border-radius: 999px;
}
.pricing-top h3 { font-size: 1.55rem; margin-bottom: 14px; max-width: 80%; }
.price {
  font-family: var(--serif);
  font-size: 2.9rem;
  font-weight: 600;
  color: var(--bronze-dark);
  line-height: 1;
}
.price small { font-size: 1rem; color: var(--taupe); font-weight: 500; }
.pricing-desc { color: var(--taupe); font-style: italic; margin: 12px 0 0; min-height: 48px; font-size: 0.98rem; }
.pricing-body { padding: 28px 32px 32px; display: flex; flex-direction: column; flex: 1; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 13px; }
.pricing-features li {
  display: grid; grid-template-columns: 20px 1fr; gap: 11px;
  color: var(--slate-soft); font-size: 0.98rem; align-items: start;
}
.pricing-features li svg { width: 16px; height: 16px; color: var(--bronze); margin-top: 4px; }
.pricing-onsite {
  margin-top: auto;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--ivory);
  border: 1px solid var(--line);
}
.pricing-onsite strong { display: block; font-family: var(--sans); font-size: 0.92rem; margin-bottom: 4px; }
.pricing-onsite span { color: var(--taupe); font-size: 0.9rem; }

.addons {
  margin-top: 40px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-sm);
}
.addons h3 { font-size: 1.8rem; margin-bottom: 6px; }
.addons-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.addon {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--ivory);
}
.addon-plus {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bronze-tint);
  border: 1px solid var(--stone);
  color: var(--bronze-dark);
  display: grid; place-items: center;
  font-weight: 700;
}
.addon-name { color: var(--slate-soft); font-size: 0.98rem; }
.addon-price { font-family: var(--serif); font-weight: 600; color: var(--bronze-dark); font-size: 1.1rem; white-space: nowrap; }
.travel-note {
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: var(--slate-tint);
  border: 1px solid var(--line);
  font-size: 0.96rem;
  color: var(--slate-soft);
}

/* ============================================================
   Expert
   ============================================================ */
.expert-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.expert-media { position: sticky; top: 110px; max-width: 300px; }
.expert-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.expert-caption {
  text-align: center;
  margin-top: 16px;
  font-style: italic;
  color: var(--taupe);
  font-size: 0.96rem;
}
.expert-body p { color: var(--taupe); font-size: 1.06rem; }
.expert-body .signature {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--slate);
  margin-top: 20px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 50px;
  align-items: start;
}
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--line-strong); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--slate);
}
.faq-icon {
  flex: 0 0 26px;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--stone);
  color: var(--bronze-dark);
  display: grid; place-items: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--slate); color: #fff; border-color: var(--slate); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner { padding: 0 24px 22px; color: var(--taupe); }

.faq-aside {
  position: sticky;
  top: 110px;
  background: var(--slate);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 38px;
  box-shadow: var(--shadow);
}
.faq-aside .eyebrow { color: var(--stone); }
.faq-aside .eyebrow::before { background: var(--stone); }
.faq-aside h3 { color: #fff; font-size: 1.9rem; margin-bottom: 14px; }
.faq-aside p { color: rgba(255,255,255,0.78); }
.faq-aside img {
  width: 100%;
  border-radius: var(--radius-sm);
  margin: 22px 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.faq-aside-logo {
  background: var(--card);
  border-radius: var(--radius-sm);
  margin: 24px 0;
  padding: 30px 26px;
  display: grid;
  place-items: center;
}
.faq-aside-logo img {
  height: 92px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.faq-aside .btn-bronze { width: 100%; margin-top: 8px; }

/* ============================================================
   Contact CTA
   ============================================================ */
.contact-wrap {
  background: linear-gradient(180deg, var(--slate), #26333f);
  border-radius: var(--radius-lg);
  padding: 64px 60px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.contact-wrap .eyebrow { color: var(--stone); }
.contact-wrap .eyebrow::before { background: var(--stone); }
.contact-wrap h2 { color: #fff; font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: 16px; }
.contact-wrap p { color: rgba(255,255,255,0.8); font-size: 1.08rem; }
.contact-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.9); }
.contact-ic {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  display: grid; place-items: center;
  flex: 0 0 40px;
}
.contact-ic svg { width: 18px; height: 18px; }
.contact-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 36px 34px;
  text-align: center;
}
.contact-panel small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--stone);
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-panel .price { color: #fff; font-size: 3rem; }
.contact-panel .price small { color: rgba(255,255,255,0.6); letter-spacing: 0; }
.contact-panel p { margin: 12px 0 24px; font-size: 0.98rem; }
.contact-panel .btn { width: 100%; }
.contact-panel .btn + .btn { margin-top: 12px; }

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--ivory-deep);
  border-top: 1px solid var(--line);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-brand { max-width: 360px; }
.footer-brand p { color: var(--taupe); font-size: 0.96rem; margin-top: 14px; }
.footer-logo { height: 76px; width: auto; display: block; margin-bottom: 4px; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--slate);
}
.footer-phone svg { width: 17px; height: 17px; color: var(--bronze-dark); }
.footer-phone:hover { color: var(--bronze-dark); }
.footer-col h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bronze-dark); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { color: var(--taupe); font-size: 0.96rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--slate); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 28px;
  color: var(--taupe);
  font-size: 0.88rem;
}
.footer-bottom .footer-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(33, 43, 52, 0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.lb-btn {
  position: absolute;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lb-btn:hover { background: rgba(255,255,255,0.22); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lb-counter {
  position: absolute;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-figure { max-width: 520px; margin: 0 auto; }
  .expert-grid { grid-template-columns: 1fr; gap: 32px; }
  .expert-media { position: static; max-width: 280px; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-aside { position: static; }
}
@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav { gap: 12px; }
  .lang-toggle.desktop {
    display: inline-flex;
    font-size: 0.9rem;
    border-color: var(--stone);
  }
  .lang-toggle.desktop a { padding: 8px 15px; }
  .lang-toggle.desktop a.active { background: var(--bronze-dark); color: #fff; }
  .nav-phone { width: 46px; height: 46px; justify-content: center; border: 1px solid var(--line-strong); border-radius: 50%; background: var(--card); }
  .nav-phone .num { display: none; }
  .nav-toggle { display: grid; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .service-card { grid-template-columns: 1fr; }
  .service-card:nth-child(even) .service-media { order: 0; }
  .service-media { min-height: 240px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; padding: 44px 34px; }
  .addons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  /* mobile menu */
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    padding: 18px 20px 24px;
    box-shadow: var(--shadow);
  }
}
@media (max-width: 680px) {
  .testimonial { flex-basis: 100%; max-width: 100%; }
  .hero-banner { min-height: 0; }
  .hero-banner-inner { padding: 130px 0 40px; }
  .hero-price-tag.floating { position: static; margin-top: 24px; display: inline-block; }
  .hero-banner-scrim {
    background: linear-gradient(0deg, rgba(16,26,36,0.78) 0%, rgba(16,26,36,0.34) 55%, rgba(16,26,36,0.18) 100%);
  }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .brand-text { display: none; }
  .brand-logo { height: 44px; }
  .topbar .btn-bronze { display: none; }
  .nav { gap: 10px; }
  .hero-figure { max-width: 320px; }
  .hero-figure img { aspect-ratio: 5 / 4; }
  .hero-figure::after { inset: 10px; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .service-body { padding: 30px 26px; }
  .addons { padding: 30px 24px; }
  .contact-wrap { padding: 36px 24px; }
  .hero-price-tag { left: 12px; }
  .btn { width: 100%; }
  .topbar .btn, .nav-phone { width: auto; }
  .hero-actions .btn { width: 100%; }
}
