/* -------------------------------------------------------------
   style.css, Funerals LTD
   ------------------------------------------------------------- */

/* -------------------------------------------------------------
   Variables
   ------------------------------------------------------------- */
:root {
  --c-bg:         #0C0C0C;
  --c-surface:    #131313;
  --c-surface-2:  #1C1C1C;
  --c-text:       #E2DFD8;
  --c-text-2:     #8A8680;
  --c-text-3:     #4A4744;
  --c-text-lead:  #B4AFA6;
  --c-accent:     #A8967E;
  --c-accent-lt:  #C4B09A;
  --c-border:     rgba(255, 255, 255, 0.07);
  --c-border-lt:  rgba(255, 255, 255, 0.13);

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --f-card:    'Fraunces', Georgia, serif;
  --f-hero:    'Work Sans', system-ui, -apple-system, sans-serif;

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;

  --nav-h:       72px;
  --max-w:       1200px;
  --section-py:  72px;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

[hidden],
.hidden   { display: none !important; }

img, svg { display: block; max-width: 100%; }
a        { color: inherit; text-decoration: none; }
button   { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul       { list-style: none; }

/* -------------------------------------------------------------
   Background: warm static glow + fine film grain
   ------------------------------------------------------------- */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 100% 55% at 50% -12%, rgba(168, 150, 126, 0.10) 0%, transparent 62%),
    radial-gradient(ellipse 60% 45% at 88% 4%,  rgba(168, 150, 126, 0.05) 0%, transparent 55%),
    linear-gradient(180deg, #0E0D0C 0%, var(--c-bg) 40%);
}

.bg-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* -------------------------------------------------------------
   Glass utility
   ------------------------------------------------------------- */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid var(--c-border);
  border-top-color: var(--c-border-lt);
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* -------------------------------------------------------------
   Layout
   ------------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding-block: var(--section-py);
  position: relative;
  z-index: 1;
}

/* First content section after the hero sits closer to the destinations strip */
.destinations-strip + .section { padding-top: 2.75rem; }

.section--alt {
  background: rgba(255, 255, 255, 0.016);
  border-top:    1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

/* -------------------------------------------------------------
   Typography utilities
   ------------------------------------------------------------- */
.section-kicker {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--f-hero);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.1vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--c-text);
  margin-bottom: 1rem;
  text-wrap: balance;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--c-text-2);
  line-height: 1.75;
  max-width: 520px;
}

.section-header {
  margin-bottom: 4rem;
}

.section-rule {
  font-family: var(--f-hero);
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--c-accent);
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 3.25rem;
  text-wrap: balance;
}

.section-rule--center { text-align: center; text-indent: 0.15em; }

@media (max-width: 700px) {
  .section-rule {
    letter-spacing: 0.12em;
    padding-bottom: 0.9rem;
    margin-bottom: 2.25rem;
  }
}

/* -------------------------------------------------------------
   Buttons
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.75rem;
  border-radius: var(--r-sm);
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--c-accent);
  color: #0C0C0C;
}
.btn--primary:hover {
  background: var(--c-accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 150, 126, 0.25);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--c-text);
  border: 1px solid var(--c-border-lt);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--c-accent);
  border: 1px solid rgba(168, 150, 126, 0.4);
}
.btn--outline:hover {
  background: var(--c-accent);
  color: #0C0C0C;
  border-color: var(--c-accent);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* -------------------------------------------------------------
   Skip link
   ------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 400;
  transform: translate(-50%, -120%);
  padding: 0.7rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #0C0C0C;
  background: var(--c-accent);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: transform 0.2s var(--ease-out);
}
.skip-link:focus {
  transform: translate(-50%, 0);
}

/* -------------------------------------------------------------
   Navigation
   ------------------------------------------------------------- */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  border-bottom: 1px solid transparent;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    backdrop-filter 0.4s ease;
}

.nav-wrap.scrolled {
  background: rgba(12, 12, 12, 0.75);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: var(--c-border);
}

.nav {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 1.25rem;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-text);
  margin-right: auto;
}
.nav__logo span { color: var(--c-accent); }
.nav__logo-mark {
  width: 26px;
  height: 28px;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  gap: 0.35rem;
}
.nav__links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-2);
  padding: 0.5rem 0.85rem;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  transition:
    color 0.2s,
    background 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
}
.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--c-border-lt);
}

.nav__links a.active {
  color: var(--c-accent-lt);
  background: rgba(168, 150, 126, 0.08);
  border-color: rgba(168, 150, 126, 0.22);
}

.link-lang {
  display: inline-block;
  margin-left: 0.4em;
  padding: 0.08em 0.3em;
  border: 1px solid var(--c-border-lt);
  border-radius: 3px;
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
  color: var(--c-text-2);
  vertical-align: 0.1em;
}

.nav__cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  border: 1px solid rgba(168, 150, 126, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: var(--r-sm);
  transition: all 0.25s;
}
.nav__cta:hover {
  background: var(--c-accent);
  color: #0C0C0C;
  border-color: var(--c-accent);
}

/* -------------------------------------------------------------
   Language switcher
   ------------------------------------------------------------- */
.lang-switch {
  position: relative;
  flex-shrink: 0;
}
.lang-switch summary {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--c-text-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s, border-color 0.2s;
}
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-switch summary:hover,
.lang-switch[open] summary {
  color: var(--c-text);
  border-color: rgba(168, 150, 126, 0.35);
}

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 200;
  min-width: 150px;
  padding: 0.4rem;
  background: rgba(12, 12, 12, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  animation: mobileSlideDown 0.2s var(--ease-out);
}
.lang-switch__menu a {
  display: block;
  padding: 0.5rem 0.7rem;
  font-size: 0.85rem;
  color: var(--c-text-2);
  border-radius: var(--r-sm);
  transition: background 0.2s, color 0.2s;
}
.lang-switch__menu a:hover {
  background: rgba(168, 150, 126, 0.1);
  color: var(--c-text);
}
.lang-switch__menu a[aria-current] {
  color: var(--c-accent);
}

.nav__mobile-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-top: 0.5rem;
}
.nav__mobile-langs a {
  padding: 0.45rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--c-text-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  transition: color 0.2s, border-color 0.2s;
}
.nav__mobile-langs a:hover { color: var(--c-text); }
.nav__mobile-langs a[aria-current] {
  color: var(--c-accent);
  border-color: rgba(168, 150, 126, 0.35);
}

@media (max-width: 1280px) {
  .nav          { gap: 1rem; }
  .nav__links   { gap: 0.2rem; }
  .nav__links a { padding: 0.45rem 0.6rem; letter-spacing: 0.05em; }
  .nav__cta     { padding: 0.5rem 0.9rem; }
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

@media (max-width: 1100px) {
  .nav__links, .nav__cta, .lang-switch { display: none; }
  .nav__burger                         { display: flex; }
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-text);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem clamp(1.25rem, 5vw, 2.5rem) 2.5rem;
  background: rgba(12, 12, 12, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--c-border);
}
.nav__mobile.open {
  display: flex;
  animation: mobileSlideDown 0.3s var(--ease-out);
}
.nav__mobile ul {
  display: flex;
  flex-direction: column;
}
.nav__mobile ul a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--c-text-2);
  border-bottom: 1px solid var(--c-border);
  transition: color 0.2s;
}
.nav__mobile ul a:hover { color: var(--c-text); }

@keyframes mobileSlideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------------------------
   Hero
   ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(12, 12, 12, 0.92) 0%,
      rgba(12, 12, 12, 0.55) 12%,
      transparent 26%),
    linear-gradient(180deg,
      transparent 55%,
      rgba(12, 12, 12, 0.65) 85%,
      var(--c-bg) 100%),
    linear-gradient(100deg,
      rgba(12, 12, 12, 0.97) 0%,
      rgba(12, 12, 12, 0.95) 30%,
      rgba(12, 12, 12, 0.90) 55%,
      rgba(12, 12, 12, 0.78) 72%,
      rgba(12, 12, 12, 0.50) 86%,
      rgba(12, 12, 12, 0.30) 100%);
}

/* -------------------------------------------------------------
   Hero ambient glow (simple, origin-neutral motion)
   ------------------------------------------------------------- */
.hero__glow {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  width: 72%;
  height: 95%;
  background: radial-gradient(ellipse 50% 50% at 62% 50%,
    rgba(196, 176, 154, 0.08) 0%,
    rgba(168, 150, 126, 0.03) 38%,
    transparent 70%);
  pointer-events: none;
  will-change: transform, opacity;
  animation: heroGlowDrift 11s ease-in-out infinite alternate;
}
@keyframes heroGlowDrift {
  0%   { transform: translate(6%, -58%)  scale(0.95); opacity: 0.6; }
  50%  { transform: translate(-8%, -44%) scale(1.22); opacity: 1; }
  100% { transform: translate(-14%, -52%) scale(1.05); opacity: 0.8; }
}
@media (max-width: 700px) {
  .hero__glow { width: 100%; opacity: 0.3; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__glow { animation: none; transform: translateY(-50%); }
}

@media (max-width: 900px) and (orientation: portrait) {
  .hero--v2 {
    min-height: auto;
  }
  .hero--v2 .hero__content {
    padding-block: 4.5rem 3.5rem;
  }

  .hero__bg {
    bottom: auto;
    height: auto;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 52%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 52%, transparent 100%);
  }

  .hero__overlay {
    background:
      linear-gradient(180deg,
        rgba(12, 12, 12, 0.92) 0%,
        rgba(12, 12, 12, 0.78) 9%,
        rgba(12, 12, 12, 0.32) 13%,
        rgba(12, 12, 12, 0.32) 20%,
        rgba(12, 12, 12, 0.78) 28%,
        rgba(12, 12, 12, 0.95) 40%,
        var(--c-bg) 55%);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-block: 5rem;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(4.5rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroUp 1s 0.22s var(--ease-out) forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--c-accent);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroUp 1s 0.58s var(--ease-out) forwards;
}

.hero__note {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-2);
  opacity: 0;
  animation: heroUp 1s 0.7s var(--ease-out) forwards;
}

@keyframes heroUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------------------------
   Hero v2
   ------------------------------------------------------------- */
.hero--v2 .hero__content {
  width: 100%;
  max-width: var(--max-w);
}

.hero--v2 .hero__title {
  font-family: var(--f-hero);
  font-weight: 300;
  font-size: clamp(3.4rem, 8.2vw, 7.2rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.hero--v2 .hero__title em {
  font-style: normal;
  font-weight: 500;
}

.hero__seo {
  font-family: var(--f-hero);
  font-size: clamp(1.1rem, 1.85vw, 1.42rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--c-text);
  max-width: 42ch;
  margin-bottom: 2.4rem;
  opacity: 0;
  animation: heroUp 1s 0.34s var(--ease-out) forwards;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1.5rem;
}

.hero__reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-2);
  opacity: 0;
  animation: heroUp 1s 0.78s var(--ease-out) forwards;
}
.hero__reviews-g { flex-shrink: 0; }
.hero__reviews-stars {
  display: inline-flex;
  gap: 1px;
  color: var(--c-accent-lt);
}
.hero__reviews-text strong {
  color: var(--c-text);
  font-weight: 600;
}
.hero__reviews-arrow {
  flex-shrink: 0;
  color: var(--c-accent);
  opacity: 0.6;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
a.hero__reviews:hover,
a.hero__reviews:focus-visible { color: var(--c-text); }
a.hero__reviews:hover .hero__reviews-arrow,
a.hero__reviews:focus-visible .hero__reviews-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* -------------------------------------------------------------
   Services
   ------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.section-note {
  text-align: center;
  max-width: 720px;
  margin: 2.5rem auto 0;
  font-size: 0.9rem;
  color: var(--c-text-2);
  line-height: 1.75;
}

.section-header--center { text-align: center; }
.section-header--center .section-desc { max-width: 620px; margin-inline: auto; }

.page-hero--center .page-hero__inner { text-align: center; }
.page-hero--center .page-hero__desc { margin-inline: auto; }
.page-hero--center .page-hero__actions { justify-content: center; }

.section--cta-end { padding-bottom: 3.25rem; }

.borough-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  max-width: 860px;
  margin: 1.75rem auto 0;
}
.borough-tag {
  font-size: 0.8rem;
  color: var(--c-text-2);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  background: rgba(255, 255, 255, 0.02);
}

.trust-band { padding-block: 3.5rem; position: relative; z-index: 1; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.trust-sep { display: none; }

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.4rem 1.5rem;
  border-left: 1px solid var(--c-border);
}
.trust-item:nth-child(6n + 1) { border-left: none; }
.trust-item:nth-child(n + 7)  { border-top: 1px solid var(--c-border); }

.trust-item strong { font-family: var(--f-body); font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; color: var(--c-text); font-variant-numeric: tabular-nums; }
.trust-item span { font-size: 0.8rem; color: var(--c-text-2); }
.section-cta { display: flex; justify-content: center; margin-top: 2.5rem; }

.reviews-proof {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
  padding: 1.25rem 1.6rem;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
}
.reviews-proof__g { flex-shrink: 0; }
.reviews-proof__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
}
.reviews-proof__body strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.reviews-proof__body span {
  font-size: 0.85rem;
  color: var(--c-text-2);
  line-height: 1.6;
}
.reviews-proof__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.reviews-proof__cta svg { transition: transform 0.3s var(--ease-out); }
.reviews-proof:hover,
.reviews-proof:focus-visible {
  border-color: var(--c-border-lt);
  background: rgba(255, 255, 255, 0.035);
}
.reviews-proof:hover .reviews-proof__cta svg,
.reviews-proof:focus-visible .reviews-proof__cta svg { transform: translateX(3px); }
.reviews-proof:hover .reviews-proof__cta,
.reviews-proof:focus-visible .reviews-proof__cta { color: var(--c-accent-lt); }

@media (max-width: 700px) {
  .reviews-proof {
    flex-wrap: wrap;
    gap: 0.9rem;
    padding: 1.15rem 1.25rem;
  }
  .reviews-proof__body { flex-basis: calc(100% - 26px - 1.25rem); }
  .reviews-proof__cta { flex-basis: 100%; }
}

@media (max-width: 620px) {
  .trust-row  { grid-template-columns: 1fr; }
  .trust-item { border-left: none; border-top: 1px solid var(--c-border); padding: 1.1rem 0; }
  .trust-item:first-child { border-top: none; }
}

.local-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding: 1.75rem 2rem;
}
.local-cta__text h3 { margin: 0 0 0.35rem; font-family: var(--f-hero); font-weight: 500; font-size: 1.18rem; letter-spacing: -0.01em; }
.local-cta__text p { margin: 0; font-size: 0.9rem; color: var(--c-text-2); max-width: 48ch; }
.local-cta .btn { flex-shrink: 0; }

.breadcrumb { font-size: 0.8rem; color: var(--c-text-2); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--c-text-2); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-accent-lt); }

.service-card {
  padding: 2rem 1.75rem;
  border-radius: var(--r-md);
  transition: all 0.35s var(--ease-out);
}
.service-card:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.13);
  transform: translateY(-5px);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.service-card__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 150, 126, 0.08);
  border: 1px solid rgba(168, 150, 126, 0.14);
  border-radius: var(--r-sm);
  color: var(--c-accent);
  margin-bottom: 1.4rem;
  transition: all 0.3s;
}
.service-card:hover .service-card__icon {
  background: rgba(168, 150, 126, 0.13);
  border-color: rgba(168, 150, 126, 0.24);
}

.service-card h3 {
  font-family: var(--f-card);
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--c-text);
  margin-bottom: 0.55rem;
}
.service-card p {
  font-size: 0.86rem;
  color: var(--c-text-2);
  line-height: 1.65;
}

/* -------------------------------------------------------------
   Services: alternating text/image rows
   ------------------------------------------------------------- */
.svc-rows {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.svc-row {
  display: grid;
  align-items: center;
  gap: 3.5rem;
  --svc-measure: 30rem;
}

.svc-row--a { grid-template-columns: 52fr 48fr; }
/* image | text, media pulled into the first column */
.svc-row--b { grid-template-columns: 48fr 52fr; }
.svc-row--b .svc-row__media { order: -1; }
/* text | image */
.svc-row--c { grid-template-columns: 52fr 48fr; }

.svc-row__text h3 {
  font-family: var(--f-hero);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.7vw, 1.45rem);
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--c-text);
  margin-bottom: 1rem;
  max-width: 24ch;
  text-wrap: balance;
}

.svc-row__text p {
  font-size: 0.95rem;
  color: var(--c-text-2);
  line-height: 1.85;
  margin-bottom: 1.1rem;
  max-width: var(--svc-measure);
}

.svc-row--b { --svc-measure: none; }
.svc-row--b .svc-row__text h3 { max-width: none; }

.svc-list {
  margin: 1.35rem 0 0;
  max-width: var(--svc-measure);
}
.svc-list li {
  padding: 0.6rem 0;
  border-top: 1px solid var(--c-border);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--c-text-2);
}
.svc-list li:last-child {
  border-bottom: 1px solid var(--c-border);
}

.svc-row__note {
  margin-top: 1.35rem;
  padding-left: 1rem;
  border-left: 2px solid var(--c-accent);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--c-accent-lt);
  max-width: var(--svc-measure);
}

.svc-row__note + .svc-row__link { margin-top: 1.5rem; }

.svc-row__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-accent);
  border-bottom: 1px solid rgba(168, 150, 126, 0.3);
  padding-bottom: 0.25rem;
  transition: color 0.25s, border-color 0.25s;
}
.svc-row__link svg { transition: transform 0.3s var(--ease-out); }
.svc-row__link:hover {
  color: var(--c-accent-lt);
  border-bottom-color: var(--c-accent-lt);
}
.svc-row__link:hover svg { transform: translateX(3px); }

.svc-row__media { margin: 0; }

.svc-row__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
}
.svc-row--a .svc-row__img {
  aspect-ratio: 4 / 5;
  max-width: 420px;
  margin-left: auto;
}
.svc-row--b .svc-row__img {
  aspect-ratio: 1 / 1;
  max-width: 440px;
  margin-right: auto;
}
.svc-row--c .svc-row__img {
  aspect-ratio: 3 / 2;
  max-width: 520px;
  margin-left: auto;
}

@media (max-width: 900px) {
  .svc-rows   { gap: 3.5rem; }
  .svc-row    { grid-template-columns: 1fr; gap: 1.75rem; align-items: start; }
  .svc-row__media { order: -1; }
  .svc-row__text h3 { max-width: none; }
  .svc-row--a .svc-row__img,
  .svc-row--b .svc-row__img,
  .svc-row--c .svc-row__img { margin-inline: 0; }
  .svc-row--a .svc-row__img { max-width: 340px; }
  .svc-row--b .svc-row__img { max-width: 400px; }
  .svc-row--c .svc-row__img { max-width: 520px; }
}

/* -------------------------------------------------------------
   About / owner
   ------------------------------------------------------------- */
/* -------------------------------------------------------------
   About / why-us panel (all six homepages)
   ------------------------------------------------------------- */
.about-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2.25rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 4rem);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--c-border-lt);
}
/* Section-scoped decorative motion, like .hero__glow. */
.about-panel__glow {
  position: absolute;
  top: -30%;
  right: -8%;
  width: 55%;
  height: 90%;
  pointer-events: none;
  background: radial-gradient(ellipse at 55% 45%, rgba(168, 150, 126, 0.13), transparent 62%);
  animation: about-drift 24s ease-in-out infinite;
}
@keyframes about-drift {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.05); }
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
}

.about-panel__title {
  font-family: var(--f-hero);
  font-weight: 300;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}
.about-panel__rule {
  width: 72px;
  height: 1px;
  background: var(--c-accent);
  margin: 1.6rem 0 1.9rem;
}

.about-figure {
  position: relative;
  margin: 0;
  min-height: 640px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.9);
}
.about-figure__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.22) contrast(1.04);
}
.about-figure__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(12, 12, 12, 0.42) 0%,
    rgba(12, 12, 12, 0.06) 30%,
    rgba(12, 12, 12, 0.55) 68%,
    rgba(8, 8, 7, 0.96) 100%);
}

.about-rating {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: rgba(8, 8, 7, 0.74);
  border: 1px solid var(--c-border-lt);
  font-size: 0.8rem;
  color: var(--c-text);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.25s var(--ease-out);
}
.about-rating:hover,
.about-rating:focus-visible { border-color: rgba(168, 150, 126, 0.6); }
.about-rating strong { font-weight: 600; }
.about-rating svg { flex-shrink: 0; }

.about-figure__caption {
  position: absolute;
  left: clamp(1.25rem, 3vw, 2.15rem);
  right: clamp(1.25rem, 3vw, 2.15rem);
  bottom: 2rem;
}

.about-quote {
  font-family: var(--f-card);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  line-height: 1.42;
  color: #F6F3ED;
  margin-bottom: 1.15rem;
  text-wrap: pretty;
}

.about-attrib {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.about-attrib strong { font-weight: 600; color: var(--c-text); }
.about-attrib span   { color: var(--c-text-2); }

.about-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.about-body__lead {
  color: var(--c-text);
  font-size: 1.1rem;
  line-height: 1.7;
}
.about-body p {
  font-size: 0.95rem;
  color: var(--c-text-2);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-facts {
  display: flex;
  align-items: stretch;
  margin: 1rem 0 2.25rem;
  border-top:    1px solid var(--c-border-lt);
  border-bottom: 1px solid var(--c-border-lt);
}

.about-fact {
  flex: 1 1 0;
  min-width: 0;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
}
.about-fact:first-child { padding-left: 0; }
.about-fact:last-child  { padding-right: 0; }
.about-fact + .about-fact { border-left: 1px solid var(--c-border-lt); }

.about-fact dt {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--c-text-2);
  margin-bottom: 0.5rem;
}
.about-fact dd {
  margin-top: auto;
  font-family: var(--f-hero);
  font-weight: 300;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.1;
  color: var(--c-text);
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}

.about-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.4rem;
}
.about-reviews-link {
  font-size: 0.85rem;
  color: var(--c-accent-lt);
  border-bottom: 1px solid rgba(168, 150, 126, 0.45);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.about-reviews-link:hover,
.about-reviews-link:focus-visible {
  color: var(--c-text);
  border-bottom-color: var(--c-accent-lt);
}

@media (max-width: 900px) {
  .about-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-figure { min-height: 420px; }
  /* The heading breaks by hand on wide screens; let it flow when narrow. */
  .about-panel__title br { display: none; }
}

@media (max-width: 620px) {
  .about-facts { flex-direction: column; }
  .about-fact  { padding: 1rem 0; }
  .about-fact + .about-fact {
    border-left: none;
    border-top: 1px solid var(--c-border);
  }
  /* Stacked, so there is no neighbouring value to align to. */
  .about-fact dd { margin-top: 0; }
  .about-rating { top: 1rem; right: 1rem; font-size: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .about-panel__glow { animation: none; }
}

/* -------------------------------------------------------------
   Process, "the handover" (all six homepages)
   ------------------------------------------------------------- */
.handover {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  column-gap: clamp(2rem, 5vw, 4.5rem);
  list-style: none;
  padding: 0;
  --handover-pad: clamp(1.75rem, 3vw, 2.5rem);
  --handover-rule: linear-gradient(90deg,
    rgba(196, 176, 154, 0.5),
    rgba(255, 255, 255, 0.07) 24%,
    rgba(255, 255, 255, 0.07));
}

.handover__label {
  position: relative;
  font-family: var(--f-hero);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--c-accent);
  padding-bottom: 1.35rem;
  margin-bottom: 1.35rem;
}

.handover__label::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--handover-rule);
}

.handover__lead {
  grid-column: 1;
  grid-row: 1 / span 3;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: var(--handover-pad);
  border-radius: var(--r-md);
  background: linear-gradient(160deg,
    rgba(168, 150, 126, 0.09) 0%,
    rgba(255, 255, 255, 0.028) 34%,
    rgba(255, 255, 255, 0.018) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 50px -20px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.handover__lead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 176, 154, 0.6) 35%, transparent);
}

.handover__lead::after {
  content: '';
  position: absolute;
  left: -20%;
  bottom: -20%;
  width: 120%;
  height: 72%;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, rgba(168, 150, 126, 0.26), transparent 66%);
}

.handover__lead > * {
  position: relative;
  z-index: 1;
}

.handover__lead h3 {
  font-family: var(--f-hero);
  font-size: clamp(1.75rem, 3.1vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--c-text);
  margin-bottom: 0.9rem;
  text-wrap: balance;
}

.handover__lead h3 + p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--c-text-lead);
  text-wrap: pretty;
}

.handover__call {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.9rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--c-border);
  font-family: var(--f-hero);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-accent);
  font-variant-numeric: tabular-nums;
  transition: color 0.25s var(--ease-out);
}
.handover__call svg { flex-shrink: 0; }
.handover__call:hover,
.handover__call:focus-visible { color: var(--c-accent-lt); }

.handover__step {
  position: relative;
  grid-column: 2;
  padding-block: 1.7rem;
}
.handover__step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--handover-rule);
}

.handover__step:nth-child(2) { padding-top: var(--handover-pad); }
.handover__step:nth-child(2)::before { content: none; }

.handover__step:last-child { padding-bottom: 0; }

.handover__step h3 {
  font-family: var(--f-hero);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--c-text);
  margin-bottom: 0.35rem;
  text-wrap: balance;
}

.handover__step h3 + p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--c-text-2);
  max-width: 58ch;
  text-wrap: pretty;
}

@media (max-width: 1024px) {
  .handover { grid-template-columns: minmax(0, 1fr); }
  .handover__lead {
    grid-row: auto;
    max-width: 42rem;
    margin-bottom: 2.75rem;
  }
  .handover__step {
    grid-column: 1;
    max-width: 42rem;
  }
  /* Nothing left to line up with once the columns stack. */
  .handover__step:nth-child(2) { padding-top: 0; }
}

@media (max-width: 768px) {
  .handover__step { padding-block: 1.5rem; }
  .handover__step h3 + p { max-width: none; }
  .handover__call { padding-top: 1.4rem; }
}

/* -------------------------------------------------------------
   Testimonials
   ------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.35s var(--ease-out);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.testimonial-card__mark {
  color: var(--c-accent);
  opacity: 0.18;
  flex-shrink: 0;
}

.testimonial-card__text {
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--c-text);
  line-height: 1.75;
  letter-spacing: -0.005em;
  text-wrap: pretty;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(168, 150, 126, 0.1);
  border: 1px solid rgba(168, 150, 126, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-accent);
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text);
}
.testimonial-card__author span {
  font-size: 0.75rem;
  color: var(--c-text-2);
}

/* -------------------------------------------------------------
   Contact
   ------------------------------------------------------------- */
.contact-section {
  background: linear-gradient(to bottom, transparent, rgba(168, 150, 126, 0.025));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-info .section-title { max-width: 360px; }
.contact-info .section-rule { margin-bottom: 1.75rem; }

.contact-info__text {
  font-size: 0.92rem;
  color: var(--c-text-2);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  transition: all 0.25s;
}
.contact-item:hover {
  border-color: rgba(168, 150, 126, 0.3);
  background: rgba(168, 150, 126, 0.04);
}

.contact-item__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 150, 126, 0.08);
  border: 1px solid rgba(168, 150, 126, 0.12);
  border-radius: 7px;
  color: var(--c-accent);
}

.contact-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.contact-item__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-2);
}
.contact-item__body strong {
  font-size: 0.88rem;
  color: var(--c-text);
}
.contact-item__body span {
  font-size: 0.76rem;
  color: var(--c-text-2);
}

.contact-cta {
  padding: 2.5rem;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.contact-cta h3 {
  font-family: var(--f-hero);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--c-text);
  line-height: 1.2;
}
.contact-cta > p {
  font-size: 0.88rem;
  color: var(--c-text-2);
  line-height: 1.65;
}

.contact-cta__note {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-2);
  text-align: center;
  margin-top: 0.25rem;
}

/* -------------------------------------------------------------
   FAQ
   ------------------------------------------------------------- */
.faq-list {
  max-width: 920px;
  margin-inline: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--r-md);
  overflow: hidden;
}

.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-text);
  user-select: none;
  transition: color 0.2s;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: '+';
  font-family: var(--f-body);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--c-accent);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] .faq-item__q::after { content: '\2212'; }
.faq-item[open] .faq-item__q { color: var(--c-accent-lt); }

.faq-item__a {
  padding: 0.9rem 1.5rem 1.4rem;
  font-size: 0.88rem;
  color: var(--c-text-2);
  line-height: 1.8;
  border-top: 1px solid var(--c-border);
}
.faq-item__a a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* -------------------------------------------------------------
   Contact form
   ------------------------------------------------------------- */
.contact-form-wrap {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--c-border);
}

.contact-form-wrap__heading {
  font-family: var(--f-hero);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin-bottom: 1.5rem;
  max-width: 680px;
  margin-inline: auto;
}

.contact-form {
  padding: 2rem;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 680px;
  margin-inline: auto;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form__field label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-2);
}

.contact-form__field input,
.contact-form__field textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-sm);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s;
  resize: vertical;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder { color: var(--c-text-2); }
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: rgba(168, 150, 126, 0.5);
}

.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--c-text-2);
  cursor: pointer;
}
.contact-form__consent input {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin: 0.1rem 0 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-border-lt);
  border-radius: 4px;
  cursor: pointer;
  display: grid;
  place-content: center;
  transition: background-color 0.2s, border-color 0.2s;
}
.contact-form__consent input::before {
  content: '';
  width: 9px;
  height: 5px;
  border-left: 1.5px solid #0C0C0C;
  border-bottom: 1.5px solid #0C0C0C;
  transform: rotate(-45deg) translate(1px, -1px);
  opacity: 0;
  transition: opacity 0.15s;
}
.contact-form__consent input:checked {
  background: var(--c-accent);
  border-color: var(--c-accent);
}
.contact-form__consent input:checked::before { opacity: 1; }
.contact-form__consent input:hover { border-color: rgba(168, 150, 126, 0.5); }
.contact-form__consent input:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}
.contact-form__consent em { color: var(--c-accent); font-style: normal; }
.contact-form__consent a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-form__consent a:hover { color: var(--c-accent-lt); }

.contact-form__note {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--c-text-2);
}

.contact-form__success {
  padding: 1rem 1.25rem;
  background: rgba(168, 150, 126, 0.08);
  border: 1px solid rgba(168, 150, 126, 0.2);
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  color: var(--c-accent-lt);
}
.contact-form__success.hidden { display: none; }

.contact-form__error {
  margin-top: 1rem;
  padding: 0.85rem 1.1rem;
  background: rgba(168, 150, 126, 0.07);
  border-left: 2px solid var(--c-accent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--c-text);
}
.contact-form__error.hidden { display: none; }

.btn:disabled {
  opacity: 0.55;
  cursor: progress;
  pointer-events: none;
}

@media (max-width: 600px) {
  .contact-form__row { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------
   Footer
   ------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--c-border);
  padding-block: 3rem;
  position: relative;
  z-index: 1;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__logo {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--c-text);
}
.footer__logo span { color: var(--c-accent); }

.footer__tagline {
  font-size: 0.75rem;
  color: var(--c-text-2);
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-text-2);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--c-text); }

.footer__copy {
  font-size: 0.75rem;
  color: var(--c-text-2);
}

/* -------------------------------------------------------------
   Floating WhatsApp
   ------------------------------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 150;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
  background: rgba(168, 150, 126, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 150, 126, 0.24);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  pointer-events: none;
  transition: all 0.4s var(--ease-out);
}
.wa-float.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-float:hover {
  background: rgba(168, 150, 126, 0.24);
  border-color: rgba(168, 150, 126, 0.4);
  transform: translateY(-2px) scale(1.06);
}

/* -------------------------------------------------------------
   Testimonial stars
   ------------------------------------------------------------- */
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--c-accent);
}

/* -------------------------------------------------------------
   Destinations strip
   ------------------------------------------------------------- */
.destinations-strip {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-block: 0.95rem;
  border-top:    1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: rgba(255, 255, 255, 0.012);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.destinations-track {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  width: max-content;
  animation: destScroll 32s linear infinite;
}
.destinations-strip:hover .destinations-track {
  animation-play-state: paused;
}

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

.dest-item {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-2);
  white-space: nowrap;
}
.dest-item--featured {
  color: var(--c-accent);
}

.dest-dot {
  width: 1px;
  height: 12px;
  background: var(--c-text-3);
  opacity: 0.3;
  flex-shrink: 0;
  border-radius: 0;
}

/* -------------------------------------------------------------
   Page hero (interior pages, smaller than homepage hero)
   ------------------------------------------------------------- */
.page-hero {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 2.25rem);
  padding-bottom: 3rem;
}
.page-hero__inner { max-width: 720px; }
.page-hero .section-title { margin-bottom: 1.25rem; }
.page-hero__desc {
  font-size: 0.98rem;
  color: var(--c-text-2);
  line-height: 1.8;
  max-width: 600px;
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

/* -------------------------------------------------------------
   Scroll reveal
   ------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity  0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------------
   Responsive
   ------------------------------------------------------------- */
/* -------------------------------------------------------------
   Legal / long-form content (privacy, cookies, terms)
   ------------------------------------------------------------- */
.legal {
  position: relative;
  z-index: 1;
  padding-block: 2rem var(--section-py);
}
.legal__inner { max-width: 760px; margin-inline: auto; }

.legal__updated {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-2);
  margin-bottom: 2.5rem;
}

.legal__inner h2 {
  font-family: var(--f-hero);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin: 2.5rem 0 0.85rem;
}
.legal__inner h3 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-text);
  margin: 1.5rem 0 0.5rem;
}
.legal__inner p {
  font-size: 0.92rem;
  color: var(--c-text-2);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.legal__inner ul {
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal__inner ul li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.92rem;
  color: var(--c-text-2);
  line-height: 1.7;
}
.legal__inner ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  background: var(--c-accent);
  border-radius: 50%;
}
.legal__inner a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal__inner a:hover { color: var(--c-accent-lt); }
.legal__inner strong { color: var(--c-text); }
/* Buttons inside prose must not inherit the link colour/underline */
.legal__inner a.btn { text-decoration: none; }
.legal__inner a.btn--primary { color: #0C0C0C; }
.legal__inner a.btn--outline { color: var(--c-accent); }
.legal__inner a.btn--outline:hover { color: #0C0C0C; }

/* Data table (cookies) */
.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.5rem 0 1.5rem;
  font-size: 0.84rem;
}
.legal__table th,
.legal__table td {
  text-align: left;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--c-border);
  color: var(--c-text-2);
  vertical-align: top;
}
.legal__table th {
  color: var(--c-text);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.02);
}

/* Placeholder marker for client-supplied legal facts */
.ph {
  background: rgba(168, 150, 126, 0.18);
  color: var(--c-accent-lt);
  padding: 0 0.3rem;
  border-radius: 3px;
  font-style: normal;
  white-space: nowrap;
}

.footer__legal {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-border);
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--c-text-2);
}

.footer__credit {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--c-text-2);
}

.footer__credit a {
  color: var(--c-text-2);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--c-border-lt);
  transition: color 0.25s ease;
}

.footer__credit a:hover,
.footer__credit a:focus-visible {
  color: var(--c-accent-lt);
}

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

@media (max-width: 768px) {
  :root {
    --section-py: 50px;
  }

  .hero__title { font-size: clamp(3.5rem, 16vw, 6rem); }

  .services-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .contact-cta     { position: static; }

  .footer__inner   { flex-direction: column; text-align: center; }
  .footer__links   { justify-content: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn           { width: 100%; justify-content: center; }
}

/* -------------------------------------------------------------
   Reduced motion
   ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .destinations-track {
    animation: none;
    transform: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0s !important;
  }

  [data-hero] {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .nav__mobile.open,
  .lang-switch__menu {
    animation: none;
  }

  .wa-float,
  .wa-float.visible,
  .wa-float:hover {
    transition: opacity 0.2s ease;
    transform: none;
  }
}

/* -------------------------------------------------------------
   Resources (guides index)
   ------------------------------------------------------------- */

.res-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--f-hero);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--c-accent);
}
.res-eyebrow__rule {
  flex: 1;
  height: 1px;
  background: var(--c-border);
}
.res-eyebrow__meta {
  font-family: var(--f-body);
  letter-spacing: 0.08em;
  color: var(--c-text-2);
  font-variant-numeric: tabular-nums;
}

.res-hero__title,
.res-featured__title,
.ls-hero__title,
.pk-hero__title,
.art-hero__title {
  background-image: linear-gradient(166deg, #F6F3ED 6%, #DED9CF 46%, #A99C8B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .res-hero__title,
  .res-featured__title,
  .ls-hero__title,
  .pk-hero__title,
  .art-hero__title {
    background-image: none;
    -webkit-text-fill-color: currentColor;
  }
}

.res-hero {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 2.25rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
}
.res-hero .res-eyebrow { margin-bottom: 1.5rem; }
.res-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}
.res-hero__title {
  min-width: 0;
  font-family: var(--f-hero);
  font-weight: 300;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--c-text);
  text-wrap: balance;
}
.res-hero__lead {
  min-width: 0;
  font-size: 1rem;
  color: var(--c-text-lead);
  line-height: 1.8;
  max-width: 38em;
}

.res-band {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(180deg, rgba(168, 150, 126, 0.055) 0%, rgba(255, 255, 255, 0.012) 55%, transparent 100%);
  border-top: 1px solid var(--c-border);
}
.res-band--closed { border-bottom: 1px solid var(--c-border); }
.res-band--cta { padding-block: clamp(3rem, 6vw, 4.5rem); }
.res-band .res-eyebrow { margin-bottom: 2rem; }

.res-featured {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.res-featured__body { min-width: 0; order: 2; }
.res-featured__media { min-width: 0; order: 1; }

.res-featured__title {
  font-family: var(--f-hero);
  font-weight: 400;
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--c-text);
  margin-bottom: 1.1rem;
  text-wrap: balance;
}
.res-featured__desc {
  font-size: 0.98rem;
  color: var(--c-text-lead);
  line-height: 1.8;
  margin-bottom: 1.6rem;
  max-width: 34em;
}
.res-featured__more {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-accent);
  border-bottom: 1px solid rgba(168, 150, 126, 0.35);
  padding-bottom: 3px;
  transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.res-featured__more svg { transition: transform 0.3s var(--ease-out); }
.res-featured:hover .res-featured__more,
.res-featured:focus-visible .res-featured__more {
  color: var(--c-accent-lt);
  border-bottom-color: var(--c-accent-lt);
}
.res-featured:hover .res-featured__more svg,
.res-featured:focus-visible .res-featured__more svg { transform: translateX(3px); }

.res-featured__glow {
  position: absolute;
  inset: -12% -8%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 45%, rgba(168, 150, 126, 0.16) 0%, transparent 70%);
  animation: res-drift 24s ease-in-out infinite;
}
@keyframes res-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1);    opacity: 0.8; }
  50%      { transform: translate3d(-2%, 1%, 0) scale(1.06); opacity: 1; }
}

.res-featured__media {
  position: relative;
  z-index: 1;
  aspect-ratio: 5 / 4;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.55),
    0 0 90px -30px rgba(168, 150, 126, 0.3);
}
.res-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.res-featured__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(12, 12, 12, 0.7) 0%,
    rgba(12, 12, 12, 0.1) 34%,
    rgba(12, 12, 12, 0.12) 62%,
    rgba(12, 12, 12, 0.75) 100%);
}
.res-featured__stamp {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1rem, 2.5vw, 1.75rem);
  font-family: var(--f-hero);
  font-weight: 500;
  font-size: clamp(1.9rem, 5.5vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.8),
    0 1px 3px rgba(0, 0, 0, 0.6);
}
.res-featured__stamp span:last-child { text-align: right; }

.res-index {
  position: relative;
  z-index: 1;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.res-groups {
  display: flex;
  flex-direction: column;
  gap: clamp(2.75rem, 5vw, 4rem);
}
.res-group__heading {
  font-size: 0.75rem;
  margin-bottom: 1.25rem;
}
.res-group__heading .res-eyebrow__rule {
  background: linear-gradient(90deg,
    rgba(168, 150, 126, 0.45) 0%,
    rgba(255, 255, 255, 0.07) 45%,
    transparent 100%);
}

.res-list {
  display: flex;
  flex-direction: column;
}
.res-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0 1.25rem;
  align-items: baseline;
  padding: 1.35rem 0.75rem 1.35rem 0;
  border-top: 1px solid var(--c-border);
  transition: background 0.3s ease, padding 0.3s ease;
}
.res-group:last-child .res-list > .res-row:last-child {
  border-bottom: 1px solid var(--c-border);
}
a.res-row:hover,
a.res-row:focus-visible {
  background: linear-gradient(90deg,
    rgba(168, 150, 126, 0.14) 0%,
    rgba(168, 150, 126, 0.045) 42%,
    rgba(168, 150, 126, 0) 100%);
  padding-left: 0.9rem;
}
.res-row--soon { cursor: default; }

.res-row__body { min-width: 0; }
.res-row__title {
  font-family: var(--f-hero);
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--c-text);
  text-wrap: pretty;
}
.res-row__desc {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.9rem;
  color: var(--c-text-2);
  line-height: 1.7;
  max-width: 44em;
}
.res-row__badge {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-2);
  border: 1px solid var(--c-border-lt);
  border-radius: 5px;
  padding: 0.25rem 0.5rem;
}
.res-row__tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-2);
  white-space: nowrap;
}

.res-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.res-cta__title {
  font-family: var(--f-hero);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--c-text);
  margin-bottom: 0.9rem;
  text-wrap: balance;
}
.res-cta__desc {
  font-size: 0.95rem;
  color: var(--c-text-2);
  line-height: 1.8;
  max-width: 34em;
  margin-inline: auto;
}
.res-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

@media (max-width: 700px) {
  .res-eyebrow { letter-spacing: 0.12em; }
  .res-featured__stamp { letter-spacing: 0.06em; }
  .res-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem 0;
  }
  .res-row__tag { order: -1; }
}

@media (prefers-reduced-motion: reduce) {
  .res-featured__glow { animation: none; }
}

/* -------------------------------------------------------------
   Local funeral services, London (v2)
   ------------------------------------------------------------- */

.ls-panel {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.9rem;
  border-radius: var(--r-md);
  background: linear-gradient(160deg,
    rgba(168, 150, 126, 0.09) 0%,
    rgba(255, 255, 255, 0.028) 34%,
    rgba(255, 255, 255, 0.018) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 50px -20px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.ls-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 176, 154, 0.6) 35%, transparent);
}
.ls-panel__title {
  font-family: var(--f-card);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--c-text);
  margin-bottom: 1.4rem;
}

/* Short accent hairline under a section heading. */
.ls-rule {
  width: 64px;
  height: 1px;
  background: var(--c-accent);
  margin: 0 0 1.25rem;
}

.ls-section {
  position: relative;
  z-index: 1;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.ls-section--tint {
  background: linear-gradient(180deg, rgba(168, 150, 126, 0.055) 0%, rgba(255, 255, 255, 0.012) 55%, transparent 100%);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.ls-section__title {
  font-family: var(--f-hero);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--c-text);
  margin-bottom: 0.9rem;
  max-width: 20em;
  text-wrap: balance;
}
.ls-section__lead {
  font-size: 0.95rem;
  color: var(--c-text-2);
  line-height: 1.8;
  max-width: 38em;
}
.ls-section__lead--gap { margin-bottom: 3rem; }

.ls-hero {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 2.5rem);
  padding-bottom: 4rem;
}
.ls-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.ls-hero__body { min-width: 0; }
.ls-hero__title {
  font-family: var(--f-hero);
  font-weight: 400;
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--c-text);
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.ls-hero__lead {
  font-size: 1.02rem;
  color: var(--c-text-lead);
  line-height: 1.75;
  margin-bottom: 1.1rem;
  max-width: 34em;
}
.ls-hero__sub {
  font-size: 0.95rem;
  color: var(--c-text-2);
  line-height: 1.75;
  max-width: 34em;
}
.ls-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.25rem;
}
.ls-hero__media {
  min-width: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.55),
    0 0 80px -34px rgba(168, 150, 126, 0.22);
}
.ls-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ls-strip {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0.012) 0%,
    rgba(168, 150, 126, 0.075) 50%,
    rgba(255, 255, 255, 0.012) 100%);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.ls-strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.6rem 2.25rem;
  padding-block: 1.15rem;
  font-size: 0.85rem;
  color: var(--c-text-lead);
  line-height: 1.5;
}
.ls-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.ls-strip__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
}

.ls-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.ls-split__body { min-width: 0; }
.ls-split__body .ls-section__title { margin-bottom: 1.5rem; }
.ls-split__lead {
  font-size: 0.98rem;
  color: var(--c-text-lead);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.ls-split__body p:not(.ls-split__lead) {
  font-size: 0.95rem;
  color: var(--c-text-2);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.ls-split__body p:last-child { margin-bottom: 0; }
.ls-split__body a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ls-split__body a:hover { color: var(--c-accent-lt); }

.ls-included li {
  display: grid;
  grid-template-columns: 1.6rem minmax(0, 1fr);
  gap: 0.5rem;
  align-items: baseline;
  font-size: 0.9rem;
  color: var(--c-text-lead);
  line-height: 1.65;
  padding: 0.8rem 0;
  border-top: 1px solid var(--c-border);
  transition: color 0.25s var(--ease-out);
}
.ls-included li:hover { color: var(--c-text); }
.ls-included__n {
  font-family: var(--f-hero);
  font-size: 0.72rem;
  color: var(--c-accent);
  font-variant-numeric: tabular-nums;
}

.ls-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: stretch;
}
.ls-steps__media {
  min-width: 0;
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.45),
    0 0 80px -34px rgba(168, 150, 126, 0.2);
}
.ls-steps__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ls-steps__list { min-width: 0; }
.ls-step {
  padding: 1.15rem 0;
  border-top: 1px solid var(--c-border);
}
.ls-step:last-child { border-bottom: 1px solid var(--c-border); }
.ls-step h3 {
  font-family: var(--f-card);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--c-text);
  margin-bottom: 0.35rem;
}
.ls-step p {
  font-size: 0.89rem;
  color: var(--c-text-2);
  line-height: 1.75;
}

.ls-areas__groups {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--c-border);
}
.ls-area {
  flex: 1 1 170px;
  min-width: 0;
}
.ls-area h3 {
  font-family: var(--f-card);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--c-accent);
  margin-bottom: 0.9rem;
}
.ls-area ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-start;
}
.ls-area li {
  font-size: 0.85rem;
  color: var(--c-text-lead);
}
.ls-areas__note {
  margin-top: 2.25rem;
  font-size: 0.9rem;
  color: var(--c-text-2);
  line-height: 1.75;
  max-width: 38em;
}

.ls-faq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.ls-faq__heading {
  min-width: 0;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.ls-faq__heading h2 { margin-bottom: 0; }
.ls-faq__list {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.ls-faq__item { border-top: 1px solid var(--c-border); }
.ls-faq__item:last-child { border-bottom: 1px solid var(--c-border); }
.ls-faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.15rem 0;
  cursor: pointer;
  list-style: none;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-text);
  transition: color 0.2s;
}
.ls-faq__q::-webkit-details-marker { display: none; }
.ls-faq__q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--c-accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s var(--ease-out);
}
.ls-faq__item[open] .ls-faq__q::after { transform: rotate(135deg); }
.ls-faq__item[open] .ls-faq__q { color: var(--c-accent-lt); }
.ls-faq__q:hover { color: var(--c-accent-lt); }
.ls-faq__a {
  padding-bottom: 1.3rem;
  font-size: 0.9rem;
  color: var(--c-text-2);
  line-height: 1.8;
  max-width: 48em;
}
.ls-faq__a a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ls-faq__a a:hover { color: var(--c-accent-lt); }

.ls-enquiry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
/* The hero button jumps here, and the nav is fixed. */
.ls-enquiry-section { scroll-margin-top: calc(var(--nav-h) + 1rem); }
.ls-enquiry__body { min-width: 0; }
.ls-enquiry__lead {
  font-size: 0.98rem;
  color: var(--c-text-lead);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 32em;
}

.ls-contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out),
    background 0.25s var(--ease-out), border-color 0.25s var(--ease-out), filter 0.2s;
}
.ls-contact-card + .ls-contact-card { margin-top: 0.75rem; }
.ls-contact-card svg { flex-shrink: 0; }
.ls-contact-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.ls-contact-card__text strong {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.ls-contact-card__text span { font-size: 0.78rem; }

.ls-contact-card--primary {
  background: linear-gradient(180deg, #C6B29A 0%, var(--c-accent) 100%);
  color: #0C0C0C;
  box-shadow: 0 12px 30px -14px rgba(168, 150, 126, 0.75);
}
.ls-contact-card--primary strong { font-weight: 600; }
.ls-contact-card--primary .ls-contact-card__text span { color: #23211D; }
.ls-contact-card--primary:hover,
.ls-contact-card--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -14px rgba(168, 150, 126, 0.9);
  filter: brightness(1.06);
}

.ls-contact-card--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--c-text);
}
.ls-contact-card--ghost svg { color: var(--c-accent); }
.ls-contact-card--ghost strong { font-weight: 500; }
.ls-contact-card--ghost .ls-contact-card__text span { color: var(--c-text-2); }
.ls-contact-card--ghost:hover,
.ls-contact-card--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(168, 150, 126, 0.35);
  transform: translateY(-2px);
}

.contact-form--panel {
  max-width: none;
  margin-inline: 0;
  gap: 1rem;
}

@media (max-width: 900px) {
  /* Sticky is pointless once the panel and the list are stacked. */
  .ls-faq__heading { position: static; }
}

@media (max-width: 700px) {
  .ls-steps__media { min-height: 260px; }
  .ls-strip__list { gap: 0.55rem 1.5rem; }
  .ls-area { flex: 1 1 130px; }
  .ls-areas__groups { gap: 1.75rem 1.5rem; }
}

/* -------------------------------------------------------------
   Repatriation packages page (pk-*)
   ------------------------------------------------------------- */

.pk-hero {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 2.5rem);
  padding-bottom: clamp(2.75rem, 5vw, 4rem);
}
.pk-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.pk-hero__body { min-width: 0; }
.pk-hero__title {
  font-family: var(--f-hero);
  font-weight: 300;
  font-size: clamp(2.15rem, 4.6vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--c-text);
  margin-bottom: 1.35rem;
  text-wrap: balance;
}
.pk-hero__lead {
  font-size: 1.05rem;
  color: var(--c-text-lead);
  line-height: 1.75;
  margin-bottom: 1.05rem;
  max-width: 34em;
}
.pk-hero__sub {
  font-size: 0.95rem;
  color: var(--c-text-2);
  line-height: 1.8;
  max-width: 34em;
}
.pk-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.25rem;
}

/* Accent pill, used on the featured ladder row and the featured card. */
.pk-tag {
  display: inline-block;
  font-family: var(--f-hero);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-bg);
  background: var(--c-accent);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pk-ladder {
  min-width: 0;
  position: relative;
  overflow: hidden;
  padding: 1.85rem 1.75rem;
  border-radius: var(--r-md);
  background: linear-gradient(160deg,
    rgba(168, 150, 126, 0.09) 0%,
    rgba(255, 255, 255, 0.028) 34%,
    rgba(255, 255, 255, 0.018) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 50px -20px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.pk-ladder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 176, 154, 0.6) 35%, transparent);
}
.pk-ladder__label {
  font-family: var(--f-hero);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.3rem;
}
.pk-ladder__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.05rem 0;
  border-top: 1px solid var(--c-border);
}
.pk-ladder__row:last-of-type { border-bottom: 1px solid var(--c-border); }
.pk-ladder__text { min-width: 0; }
.pk-ladder__name {
  display: block;
  font-family: var(--f-card);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-text);
  transition: color 0.2s var(--ease-out);
}
.pk-ladder__name .pk-tag { margin-left: 0.55rem; vertical-align: 0.14em; }
.pk-ladder__when {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.82rem;
  color: var(--c-text-2);
  line-height: 1.5;
  text-wrap: balance;
}
.pk-ladder__price {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}
.pk-ladder__from,
.pk-card__from {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-2);
}
.pk-ladder__amount {
  font-family: var(--f-body);
  font-size: 1.55rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-accent);
  font-variant-numeric: tabular-nums;
}
.pk-ladder__row:hover .pk-ladder__name,
.pk-ladder__row:focus-visible .pk-ladder__name { color: var(--c-accent-lt); }
.pk-ladder__note {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--c-text-2);
  line-height: 1.65;
}

.pk-section {
  position: relative;
  z-index: 1;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.pk-section--tint {
  background: linear-gradient(180deg, rgba(168, 150, 126, 0.055) 0%, rgba(255, 255, 255, 0.012) 55%, transparent 100%);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.pk-title {
  font-family: var(--f-hero);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--c-text);
  margin-bottom: 0.9rem;
  max-width: 20em;
  text-wrap: balance;
}
.pk-lead {
  font-size: 0.98rem;
  color: var(--c-text-lead);
  line-height: 1.8;
  max-width: 40em;
}

.pk-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
  margin-top: 3rem;
}
.pk-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.25rem 1.9rem;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(255, 255, 255, 0.022);
  scroll-margin-top: calc(var(--nav-h) + 1.5rem);
  transition:
    transform 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}
.pk-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: 0 22px 60px -24px rgba(0, 0, 0, 0.75);
}
.pk-card--featured {
  border-color: rgba(168, 150, 126, 0.38);
  background: linear-gradient(170deg, rgba(168, 150, 126, 0.075) 0%, rgba(255, 255, 255, 0.022) 45%);
}
.pk-card--featured::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 1.9rem;
  right: 1.9rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-accent-lt), transparent);
}
.pk-card--featured:hover { border-color: rgba(168, 150, 126, 0.55); }

.pk-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}
.pk-card__name {
  font-family: var(--f-card);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--c-text);
}
.pk-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--c-border);
}
.pk-card__amount {
  font-family: var(--f-body);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--c-accent);
  font-variant-numeric: tabular-nums;
}
.pk-card__summary {
  margin-top: 1.35rem;
  font-size: 0.93rem;
  color: var(--c-text-lead);
  line-height: 1.75;
}
.pk-card__label {
  margin-top: 1.75rem;
  margin-bottom: 0.15rem;
  font-family: var(--f-hero);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.pk-list {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pk-list li {
  padding: 0.8rem 0;
  border-top: 1px solid var(--c-border);
  font-size: 0.9rem;
  color: var(--c-text);
  line-height: 1.55;
}
.pk-list li:last-child { border-bottom: 1px solid var(--c-border); }
.pk-card__time {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--c-text-2);
  line-height: 1.65;
}
.pk-card__time strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--f-hero);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-2);
}
.pk-card .btn { margin-top: 1.6rem; }

.pk-why__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.pk-why__media {
  min-width: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.55),
    0 0 80px -34px rgba(168, 150, 126, 0.22);
}
.pk-why__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pk-why__body { min-width: 0; }
.pk-why__list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
}
.pk-why__item {
  padding: 1.2rem 0;
  border-top: 1px solid var(--c-border);
}
.pk-why__item:last-child { border-bottom: 1px solid var(--c-border); }
.pk-why__item h3 {
  font-family: var(--f-hero);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin-bottom: 0.4rem;
}
.pk-why__item p {
  font-size: 0.9rem;
  color: var(--c-text-2);
  line-height: 1.75;
}
.pk-why__close {
  margin-top: 1.75rem;
  font-size: 0.95rem;
  color: var(--c-text-lead);
  line-height: 1.8;
}

.pk-cta { text-align: center; }
.pk-cta__title {
  font-family: var(--f-hero);
  font-weight: 300;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--c-text);
  margin-bottom: 1rem;
  max-width: 18em;
  margin-inline: auto;
  text-wrap: balance;
}
.pk-cta__desc {
  max-width: 40em;
  margin: 0 auto 2.25rem;
  font-size: 0.98rem;
  color: var(--c-text-lead);
  line-height: 1.8;
}
.pk-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

@media (max-width: 1000px) {
  .pk-hero__grid,
  .pk-why__grid { grid-template-columns: minmax(0, 1fr); }
  .pk-hero__grid { gap: 2.75rem; }
  .pk-cards {
    grid-template-columns: minmax(0, 1fr);
    max-width: 540px;
    margin-inline: auto;
  }
  .pk-why__media { max-width: 420px; }
}

@media (max-width: 620px) {
  .pk-ladder { padding: 1.5rem 1.35rem; }
  .pk-ladder__row { gap: 0.9rem; }
  .pk-ladder__amount { font-size: 1.35rem; }
  .pk-card { padding: 1.9rem 1.5rem; }
  .pk-card--featured::before { left: 1.5rem; right: 1.5rem; }
}

/* -------------------------------------------------------------
   Coverage section, "Prices, timing and what we cover"
   ------------------------------------------------------------- */
.cov-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: clamp(1.75rem, 3vw, 2.75rem);
  align-items: start;
}
.cov-col { min-width: 0; }

.cov-label {
  font-family: var(--f-hero);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.2rem;
}

.cov-defs { border-top: 1px solid var(--c-border); }
.cov-def {
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--c-border);
}
.cov-def__k {
  font-family: var(--f-hero);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--c-text);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.3rem;
}
.cov-def__v {
  font-size: 0.87rem;
  color: var(--c-text-2);
  line-height: 1.7;
}
.cov-def__v a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: rgba(168, 150, 126, 0.45);
  transition: color 0.2s var(--ease-out), text-decoration-color 0.2s var(--ease-out);
}
.cov-def__v a:hover,
.cov-def__v a:focus-visible {
  color: var(--c-accent-lt);
  text-decoration-color: var(--c-accent-lt);
}

@media (max-width: 1000px) {
  .cov-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cov-col--price { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .cov-grid { grid-template-columns: minmax(0, 1fr); }
}

/* -------------------------------------------------------------
   Blog article
   ------------------------------------------------------------- */
.art-hero {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 2.25rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.art-hero__inner { max-width: 680px; }
.art-hero .breadcrumb { margin-bottom: 1.4rem; }
.art-hero__title {
  font-family: var(--f-hero);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.7vw, 2.85rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--c-text);
  text-wrap: balance;
}
.art-hero__meta { margin-top: 1.6rem; }
.art-hero__meta time { font-variant-numeric: tabular-nums; }

.art-body { max-width: 680px; }
.art-body .article__lead {
  font-size: 1.12rem;
  font-weight: 300;
  color: var(--c-text);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}
.art-body p,
.art-body ul li,
.art-body ol li { font-size: 1rem; }
.art-body p { line-height: 1.85; margin-bottom: 1.15rem; }
.art-body h2 {
  margin: 3rem 0 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--c-border);
  font-size: clamp(1.3rem, 2.2vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
}
.art-body h3 {
  margin: 2rem 0 0.6rem;
  font-family: var(--f-hero);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-text);
}
.art-body ul { gap: 0.75rem; margin-bottom: 1.6rem; }
.art-body ul li { line-height: 1.75; }

.art-body .article__cta {
  margin: 3.25rem 0 0;
  padding: clamp(1.5rem, 3.5vw, 2rem);
  border-radius: var(--r-md);
}
.art-body .article__cta h3 {
  margin: 0 0 0.6rem;
  font-family: var(--f-hero);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.art-body .article__cta p { margin: 0 0 1.5rem; }
