/* ═══════════════════════════════════════════════
   HARMONIJAS ISTABA — style.css
   Design inspired by TherapyFlow template
═══════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  --cream:        #ECE7E1;
  --cream-dark:   #E0DAD2;
  --white:        #FAFAF8;
  --dark:         #191714;
  --dark-2:       #2c2a25;
  --muted:        #7A7470;
  --light-muted:  #ADA9A4;
  --accent:       #B8936A;
  --accent-hover: #9C7A57;
  --accent-light: #F0E8DF;
  --border:       #DDD8D2;

  --font-display: 'Funnel Display', sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --nav-h:        76px;
  /* Taller bar at top of page before scroll; compacts to --nav-h when .nav.is-scrolled */
  --nav-h-initial: calc(var(--nav-h) * 1.2);
  --container:    1600px;
  --radius:       16px;
  --radius-sm:    10px;
  --radius-pill:  999px;

  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-gutter: stable;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Container ─── */
.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}

/* ─── Typography helpers ─── */
.heading-display {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.heading-display em {
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
}
.heading-display--light { color: var(--white); }
.heading-display--light em { color: rgba(255,255,255,0.55); }

.label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.label--light { color: rgba(255,255,255,0.6); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: background 0.22s var(--ease-out),
              color 0.22s var(--ease-out),
              border-color 0.22s var(--ease-out),
              transform 0.18s var(--ease-out),
              box-shadow 0.22s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--pill { border-radius: var(--radius-pill); }
.btn--lg   { padding: 1em 2em; font-size: 0.92rem; }
.btn--sm   { padding: 0.65em 1.2em; font-size: 0.8rem; }

.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover {
  background: var(--dark-2);
  box-shadow: 0 8px 24px rgba(25,23,20,0.22);
}

.btn--cream {
  background: var(--cream);
  color: var(--dark);
  border-color: var(--cream);
}
.btn--cream:hover {
  background: var(--white);
  box-shadow: 0 8px 24px rgba(25,23,20,0.14);
}

.btn--outline {
  background: linear-gradient(
    to right,
    var(--dark-2) 0%,
    var(--dark-2) 50%,
    var(--white) 50%,
    var(--white) 100%
  );
  background-size: 202% 100%;
  background-position: 100% 0;
  color: var(--dark);
  border-width: 1px;
  border-color: var(--dark);
  transition: background-position 0.52s var(--ease-out),
              color 0.38s ease 0.06s,
              border-color 0.35s ease,
              box-shadow 0.35s var(--ease-out),
              transform 0.22s var(--ease-out);
}
.btn--outline:hover {
  background-position: 0 0;
  color: var(--white);
  border-color: var(--dark-2);
  box-shadow: 0 10px 32px rgba(25, 23, 20, 0.14);
  transform: translateY(-2px);
}

.btn--outline-light {
  /* Prefer .btn--pill.btn--nav-ghost on dark sections; kept for compatibility */
  background: linear-gradient(
    to right,
    var(--cream) 0%,
    var(--cream) 50%,
    var(--dark-2) 50%,
    var(--dark-2) 100%
  );
  background-size: 202% 100%;
  background-position: 100% 0;
  color: var(--white);
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.45);
  transition: background-position 0.52s var(--ease-out),
              color 0.38s ease 0.06s,
              border-color 0.35s ease,
              transform 0.22s var(--ease-out),
              box-shadow 0.35s var(--ease-out);
}
.btn--outline-light:hover {
  background-position: 0 0;
  color: var(--dark);
  border-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
}

.btn--nav {
  /* Wipe: dark-2 expands from the left on hover (gradient + background-position) */
  background: linear-gradient(
    to right,
    var(--dark-2) 0%,
    var(--dark-2) 50%,
    var(--white) 50%,
    var(--white) 100%
  );
  background-size: 202% 100%;
  background-position: 100% 0;
  color: var(--dark);
  border-width: 1px;
  border-color: rgba(221, 216, 210, 0.95);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 1em 2.2em;
  letter-spacing: -0.01em;
  box-shadow: 0 1px 2px rgba(25, 23, 20, 0.05);
  transition: background-position 0.52s var(--ease-out),
              color 0.38s ease 0.06s,
              border-color 0.35s ease,
              box-shadow 0.35s var(--ease-out),
              transform 0.22s var(--ease-out);
}
.btn--nav:hover {
  background-position: 0 0;
  color: var(--white);
  border-color: var(--dark-2);
  box-shadow: 0 10px 32px rgba(25, 23, 20, 0.14);
  transform: translateY(-2px);
}
.btn--nav:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(25, 23, 20, 0.12);
}

/* Same wipe as header nav, sized for mega / in-page CTAs */
.btn--nav.btn--sm {
  font-size: 0.875rem;
  padding: 0.78em 1.65em;
  letter-spacing: -0.01em;
}
.btn--nav.btn--lg {
  font-size: 0.98rem;
  padding: 1.05em 2.35em;
}

/* Light “cream pill” on dark bands — white wipes in on hover */
.btn--nav-cream {
  background: linear-gradient(
    to right,
    var(--white) 0%,
    var(--white) 50%,
    var(--cream) 50%,
    var(--cream) 100%
  );
  background-size: 202% 100%;
  background-position: 100% 0;
  color: var(--dark);
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.42);
  font-weight: 500;
  letter-spacing: -0.01em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  transition: background-position 0.52s var(--ease-out),
              color 0.38s ease 0.06s,
              border-color 0.35s ease,
              box-shadow 0.35s var(--ease-out),
              transform 0.22s var(--ease-out);
}
.btn--nav-cream:hover {
  background-position: 0 0;
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}
.btn--nav-cream:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

/* Ghost on dark (matches CTA dark-2; schedule overrides to --dark) */
.btn--nav-ghost {
  background: linear-gradient(
    to right,
    var(--cream) 0%,
    var(--cream) 50%,
    var(--dark-2) 50%,
    var(--dark-2) 100%
  );
  background-size: 202% 100%;
  background-position: 100% 0;
  color: var(--white);
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.48);
  font-weight: 500;
  letter-spacing: -0.01em;
  box-shadow: none;
  transition: background-position 0.52s var(--ease-out),
              color 0.38s ease 0.06s,
              border-color 0.35s ease,
              box-shadow 0.35s var(--ease-out),
              transform 0.22s var(--ease-out);
}
.btn--nav-ghost:hover {
  background-position: 0 0;
  color: var(--dark);
  border-color: var(--cream);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}
.btn--nav-ghost:active {
  transform: translateY(0);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
}

.schedule .btn--nav-ghost {
  background: linear-gradient(
    to right,
    var(--cream) 0%,
    var(--cream) 50%,
    var(--dark) 50%,
    var(--dark) 100%
  );
  background-size: 202% 100%;
  background-position: 100% 0;
}

@media (prefers-reduced-motion: reduce) {
  .btn--nav,
  .btn--nav-cream,
  .btn--nav-ghost,
  .btn--outline,
  .btn--outline-light {
    transition-duration: 0.01ms;
  }
}

/* ─── Reveal animations (JS-driven) ─── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal="fade-up"]    { transform: translateY(36px); }
[data-reveal="fade-right"] { transform: translateX(-48px); }
[data-reveal="fade-left"]  { transform: translateX(48px); }
[data-reveal="fade-in"]    { transform: scale(0.96); }

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h-initial);
  transition: height 0.35s var(--ease-out),
              background 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out),
              backdrop-filter 0.3s;
}
.nav.is-scrolled {
  height: var(--nav-h);
  background: rgba(250, 250, 248, 0.88);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(25,23,20,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  height: 100%;
  width: 100%;
  max-width: min(var(--container), 100% - 2rem);
  padding-inline: 2rem;
  margin-inline: auto;
}

/* Logo */
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo-main {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.nav__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
  justify-content: center;
}

.nav__link,
.nav__link--btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  padding: 0.5em 0.85em;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark-2);
  border-radius: var(--radius-sm);
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0.85em; right: 0.85em;
  height: 1px;
  background: var(--dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}
.nav__link:hover,
.nav__link--active { color: var(--dark); }
.nav__link:hover::after,
.nav__link--active::after { transform: scaleX(1); }
.nav__link--active { font-weight: 500; }

.nav__chevron {
  transition: transform 0.22s var(--ease-out);
  flex-shrink: 0;
}
.nav__item--mega:hover .nav__chevron,
.nav__item--mega.is-open .nav__chevron { transform: rotate(180deg); }

/* Actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  margin-left: auto;
}

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: 0.5rem;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Mega Menu ─── */
.nav__item {
  position: static;
}
.nav__item--mega {
  position: static;
  /* Full nav row height so moving down from the button stays “in” the trigger
     until the cursor reaches the mega panel (avoids losing :hover in the gap). */
  align-self: stretch;
  display: flex;
  align-items: center;
}

.mega {
  position: fixed;
  top: var(--nav-h-initial);
  left: 0; right: 0;
  /* Above .nav (z-index 100) so the bar does not steal pointer events on the way to links */
  z-index: 102;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(25,23,20,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.28s var(--ease-out),
              visibility 0.28s,
              transform 0.28s var(--ease-out),
              top 0.35s var(--ease-out);
  pointer-events: none;
}
.nav.is-scrolled .mega {
  top: var(--nav-h);
}
/* Invisible strip overlapping the nav seam — bridges the last few pixels to the panel */
.mega::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}
.nav__item--mega:hover .mega,
.nav__item--mega.is-open .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 260px;
  gap: 0;
  max-width: var(--container);
  margin-inline: auto;
  padding: 2.5rem 2rem 2.5rem;
}

.mega__col {
  padding: 0 2rem 0 0;
  border-right: 1px solid var(--border);
  margin-right: 2rem;
}
.mega__col:last-of-type {
  border-right: none;
  margin-right: 0;
}

.mega__label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1rem;
}

.mega__list { display: flex; flex-direction: column; gap: 0.15rem; }

.mega__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background 0.16s;
}
.mega__item:hover { background: var(--cream); }

.mega__item-icon {
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
  width: 20px;
  text-align: center;
}

.mega__item-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.mega__item-text strong {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
}
.mega__item-text small {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Mega CTA block */
.mega__cta {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-self: start;
}
.mega__cta-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
}
.mega__cta-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark);
}
.mega__cta-text {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Mobile nav ─── */
.nav__mobile {
  position: fixed;
  inset: 0;
  top: var(--nav-h-initial);
  background: var(--white);
  z-index: 98;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out), top 0.35s var(--ease-out);
}
body:has(.nav.is-scrolled) .nav__mobile {
  top: var(--nav-h);
}
.nav__mobile.is-open {
  transform: translateX(0);
}
.nav__mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-height: 0;
  min-width: 0;
  overflow-y: auto;
}
/* Top-level links only — not mega rows inside accordions */
.nav__mobile-list > li > a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: background 0.16s;
}
.nav__mobile-list > li > a:hover { background: var(--cream); }

.nav__mobile-group { margin: 0; min-width: 0; }

.nav__mobile-acc {
  border-radius: var(--radius-sm);
}

.nav__mobile-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--dark);
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.16s;
}
.nav__mobile-trigger:hover { background: var(--cream); }
.nav__mobile-acc.is-open > .nav__mobile-trigger { background: var(--cream); }

.nav__mobile-trigger-chevron {
  flex-shrink: 0;
  color: var(--dark);
  opacity: 0.4;
  transition: transform 0.38s var(--ease-out);
}
.nav__mobile-acc.is-open .nav__mobile-trigger-chevron {
  transform: rotate(180deg);
}

/* Smooth height — grid 0fr → 1fr (replaces native <details> snap) */
.nav__mobile-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
}
.nav__mobile-acc.is-open .nav__mobile-panel {
  grid-template-rows: 1fr;
}
.nav__mobile-panel-inner {
  overflow: hidden;
  min-height: 0;
}
.nav__mobile-acc:not(.is-open) .nav__mobile-panel-inner {
  pointer-events: none;
}

.nav__mobile-sublist {
  list-style: none;
  margin: 0;
  padding: 0.15rem 0 0.35rem 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.nav__mobile-sublist .mega__item {
  padding: 0.55rem 0.65rem;
}
.nav__mobile-sublist .mega__item:hover {
  background: var(--cream);
}

.nav__mobile-foot {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
  flex-shrink: 0;
}
.nav__mobile-btn {
  width: 100%;
  justify-content: center;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 70svh;
  background: var(--cream);
  padding-top: var(--nav-h-initial);
  transition: padding-top 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-x: clip;
  overflow-y: visible;
}
body:has(.nav.is-scrolled) .hero {
  padding-top: var(--nav-h);
}

.hero__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(2.5rem, 5vh, 4.5rem) 2rem clamp(1.5rem, 3vh, 2.5rem);
  animation: heroTextIn 0.9s var(--ease-out) both;
}

/* Decorative artefact (layout like ref. image 2): ~65vh, vertically centered, shifted right so ~15–20% clips at edge */
.hero__artefact {
  --hero-artefact-rotate: 140s;
  position: absolute;
  z-index: 0;
  top: 50%;
  right: clamp(-18vh, -6vw, -1.25rem);
  width: min(66vh, min(94vw, 58rem));
  aspect-ratio: 1;
  max-width: none;
  height: auto;
  transform: translateY(-50%);
  overflow: visible;
  pointer-events: none;
}

.hero__artefact-spin {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  animation: heroArtefactRotate var(--hero-artefact-rotate) linear infinite;
}

.hero__artefact-spin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transform-origin: center center;
}

@keyframes heroArtefactRotate {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 600px) {
  .hero__artefact {
    width: min(54vh, 125vw);
    right: clamp(-28vw, -18vw, -0.75rem);
    top: 52%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__artefact-spin {
    animation: none;
  }
  .nav__mobile-panel {
    transition-duration: 0.01ms;
  }
  .nav__mobile-trigger-chevron {
    transition-duration: 0.01ms;
  }
}

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

.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.8rem, 9vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 2.5rem;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
}

/* ════════════════════════════════════════
   TRUST / FEATURES
════════════════════════════════════════ */
.trust {
  /* Split: cream to horizontal midline of images, white below (see --trust-img-h / --trust-grid-pt) */
  --trust-img-h: clamp(300px, 46vh, 500px);
  --trust-grid-pt: 0px;
  --trust-split-y: calc(var(--trust-grid-pt) + (var(--trust-img-h) / 2));
  background: linear-gradient(
    to bottom,
    var(--cream) 0,
    var(--cream) var(--trust-split-y),
    var(--white) var(--trust-split-y),
    var(--white) 100%
  );
  padding: var(--trust-grid-pt) 0 5rem;
  overflow-x: clip;
  overflow-y: visible;
  position: relative;
  z-index: 1;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
  overflow: visible;
}

.trust__item {
  background: transparent;
  border-radius: var(--radius);
  overflow: visible;
  position: relative;
}

/* Image wrapper — JS sets initial displaced transform, animates to 0 on scroll */
.trust__img-wrap {
  width: 100%;
  height: clamp(300px, 46vh, 500px);
  border-radius: var(--radius);
  overflow: hidden;
  will-change: transform;
  transform-style: preserve-3d;
}
.trust__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trust__body {
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 1.75rem 0rem 2rem;
}

/* Icons: mask + background = single accent color; +20% vs previous img sizing */
.trust__item:nth-child(1) .trust__icon { --trust-mask: url('assets/icons/icon1.svg'); }
.trust__item:nth-child(2) .trust__icon { --trust-mask: url('assets/icons/icon2.svg'); }
.trust__item:nth-child(3) .trust__icon { --trust-mask: url('assets/icons/icon3.svg'); }
.trust__item:nth-child(4) .trust__icon { --trust-mask: url('assets/icons/icon4.svg'); }

.trust__icon {
  margin-bottom: 0.85rem;
  line-height: 0;
  display: block;
  width: min(3.9rem, 26vw);
  height: clamp(1.62rem, 3.84vw, 1.98rem);
  background-color: var(--accent);
  -webkit-mask-image: var(--trust-mask);
  mask-image: var(--trust-mask);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
}
.trust__item h3 {
  font-family: var(--font-display);
  font-size: 1.50rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.trust__item p {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.7;
  font-weight: 500
}

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

/* Staggered image cluster */
.about__images {
  position: relative;
  height: 520px;
}
.about__img {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(25,23,20,0.12);
  transition: transform 0.4s var(--ease-out);
}
.about__img--1 {
  width: 65%;
  height: 72%;
  top: 0; left: 0;
  transform: rotate(-3deg);
}
.about__img--2 {
  width: 55%;
  height: 60%;
  top: 30%;
  right: 0;
  transform: rotate(4deg);
}
.about__img--3 {
  width: 40%;
  height: 44%;
  bottom: 0; left: 18%;
  transform: rotate(-1.5deg);
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__images:hover .about__img--1 { transform: rotate(-1.5deg) translateY(-6px); }
.about__images:hover .about__img--2 { transform: rotate(2deg) translateY(-4px); }
.about__images:hover .about__img--3 { transform: rotate(-0.5deg) translateY(-3px); }

.about__text {
  font-size: 1rem;
  color: var(--dark);
  margin-top: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
}
.about__text:first-of-type { margin-top: 1.75rem; }

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about__stat { display: flex; flex-direction: column; gap: 0.25rem; }
.about__stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
}
.about__stat-lbl {
  font-size: 1rem;
  color: var(--dark);
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════
   SERVICES — full-width sticky stacking panels
════════════════════════════════════════ */
.services {
  padding: 7rem 0 0;
  background: var(--white);
  overflow-x: clip;
}
.services__header {
  margin-bottom: 3.5rem;
}
.services__header .heading-display { margin-top: 0.5rem; }
.services__intro {
  margin-top: 1.25rem;
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 500;
  color: var(--dark);
}

.services__stack {
  position: relative;
  isolation: isolate;
}

.svc-panel {
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.svc-panel__inner {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}

.svc-panel__content {
  position: relative;
  order: 2;
  padding: 2.25rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  max-width: 34rem;
  margin-inline: auto;
  width: 100%;
}

@media (max-width: 900px) {
  /* Full-bleed strip tone (was only on narrow content block) */
  .svc-panel:nth-child(odd) {
    background: var(--cream);
  }
  .svc-panel:nth-child(even) {
    background: var(--white);
  }
  .svc-panel:nth-child(odd) .svc-panel__content,
  .svc-panel:nth-child(even) .svc-panel__content {
    background: transparent;
    max-width: none;
    margin-inline: 0;
    padding-inline: max(1.25rem, env(safe-area-inset-left, 0px)) max(1.25rem, env(safe-area-inset-right, 0px));
  }
}

.svc-panel__num {
  position: absolute;
  top: 1.5rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 400;
  color: var(--light-muted);
  letter-spacing: -0.03em;
  line-height: 1;
  pointer-events: none;
}

.svc-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.5vw, 2.15rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  padding-right: 3.5rem;
}

.svc-panel__text {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.75;
}

.svc-panel__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.svc-panel__price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
}

.svc-panel__more {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.03em;
  transition: color 0.18s, gap 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  text-decoration: none;
}
.svc-panel__more:hover {
  color: var(--accent-hover);
  gap: 0.5em;
}

.svc-panel__media {
  order: 1;
  position: relative;
  min-height: 200px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dark-2);
}

.svc-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.svc-panel:hover .svc-panel__media img {
  transform: scale(1.04);
}

@media (min-width: 901px) {
  /* Fixed row height — same for every card (was min-height so long copy stretched some panels) */
  .svc-panel {
    position: sticky;
    top: var(--nav-h);
    height: calc((100vh - var(--nav-h)) * 0.7);
    height: calc((100dvh - var(--nav-h)) * 0.7);
    min-height: 0;
    z-index: var(--svc);
    box-shadow: 0 -28px 70px rgba(25, 23, 20, 0.03);
  }
  .svc-panel:first-child {
    box-shadow: none;
  }
  .svc-panel__inner {
    position: relative;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    height: 100%;
    min-height: 0;
  }
  /* Full left column tone (text column is narrower than 50vw — avoids “stripe” look) */
  .svc-panel__inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 0;
    pointer-events: none;
    background: var(--cream);
  }
  .svc-panel:nth-child(even) .svc-panel__inner::before {
    background: var(--white);
  }
  .svc-panel__content {
    order: 0;
    padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3.5rem);
    margin-inline: 0;
    margin-left: max(0px, calc((100vw - var(--container)) / 2));
    max-width: 32rem;
    width: 100%;
    height: 100%;
    min-height: 0;
    box-sizing: border-box;
    background: transparent;
    position: relative;
    z-index: 1;
    justify-content: center;
    overflow-y: auto;
  }
  .svc-panel__num {
    top: clamp(1.5rem, 3vw, 2.25rem);
    right: clamp(1.5rem, 3vw, 2.25rem);
    font-size: clamp(2.75rem, 4vw, 3.5rem);
  }
  .svc-panel__title {
    font-size: clamp(1.85rem, 2.6vw, 2.5rem);
    padding-right: 4rem;
  }
  .svc-panel__text {
    font-size: 0.95rem;
  }
  .svc-panel__media {
    order: 0;
    position: relative;
    z-index: 1;
    min-height: 0;
    aspect-ratio: auto;
    height: 100%;
    align-self: stretch;
  }
}

.services__foot {
  margin-top: 3.5rem;
  padding-bottom: 5rem;
  text-align: center;
}

/* ════════════════════════════════════════
   LARGE SCROLL TEXT
════════════════════════════════════════ */
.scroll-text {
  overflow: hidden;
  padding: 1rem 0;
  background: var(--white);
}
.scroll-text__line {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 300;
  white-space: nowrap;
  color: var(--cream-dark);
  letter-spacing: -0.02em;
  line-height: 1;
  animation: scrollText 22s linear infinite;
  will-change: transform;
  padding-right: 4rem;
}
.scroll-text__line::before {
  content: attr(data-scroll-text) ' · ';
}
@keyframes scrollText {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════
   QUOTE SECTION
════════════════════════════════════════ */
.quote-sec {
  padding: 7rem 0;
  background: var(--white);
}
.quote-sec__inner {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
.quote-sec__mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.6;
  color: var(--cream-dark);
  display: block;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.quote-sec__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.quote-sec__cite {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════
   SCHEDULE
════════════════════════════════════════ */
.schedule {
  background: var(--dark);
  padding: 7rem 0;
}
.schedule__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.schedule__intro {
  color: rgba(250,250,248,0.6);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}
.schedule__days {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.schedule__day {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: padding-left 0.2s var(--ease-out);
}
.schedule__day:hover { padding-left: 0.75rem; }
.schedule__day-name {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.schedule__day-class {
  font-size: 0.9rem;
  color: rgba(250,250,248,0.85);
}
.schedule__image {
  border-radius: var(--radius);
  overflow: hidden;
  height: 540px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}
.schedule__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ════════════════════════════════════════
   TESTIMONIAL
════════════════════════════════════════ */
.testi {
  padding: 7rem 0;
  background: var(--white);
  text-align: center;
}
.testi .container { max-width: 900px; }
.testi__mark {
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 0.5;
  color: var(--cream-dark);
  margin-bottom: 1.5rem;
  display: block;
  font-style: italic;
}
.testi__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  line-height: 1.55;
  letter-spacing: -0.01em;
  margin-bottom: 2.25rem;
}
.testi__clients {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: clamp(0.75rem, 3vw, 2rem);
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: left;
}
.testi__client {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  padding: 0.35rem 0;
  border: none;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
  transition: filter 0.28s var(--ease-out), opacity 0.28s var(--ease-out);
}
.testi__client:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.testi__avatar-wrap {
  flex-shrink: 0;
  padding: 3px;
  border-radius: 50%;
  border: 1.5px dashed transparent;
  transition: border-color 0.28s var(--ease-out);
}
.testi__client--active .testi__avatar-wrap {
  border-color: var(--accent);
}
.testi__avatar {
  width: clamp(52px, 12vw, 64px);
  height: clamp(52px, 12vw, 64px);
  border-radius: 50%;
  overflow: hidden;
  display: block;
  background: var(--cream);
}
.testi__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.32s var(--ease-out), opacity 0.32s var(--ease-out);
}
.testi__client:not(.testi__client--active) .testi__avatar img {
  filter: grayscale(1);
  opacity: 0.72;
}
.testi__client--active .testi__avatar img {
  filter: none;
  opacity: 1;
}
.testi__divider {
  align-self: stretch;
  width: 1px;
  min-height: 2.75rem;
  margin: 0 clamp(0.65rem, 2vw, 1rem);
  background: var(--border);
  flex-shrink: 0;
}
.testi__client-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  min-width: 0;
}
.testi__client-info strong {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.testi__client-info small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.35;
}

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.cta {
  background: var(--dark-2);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -60%; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(184,147,106,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta__inner {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  position: relative;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.cta__title em {
  font-style: italic;
  color: rgba(255,255,255,0.45);
}
.cta__text {
  font-size: 0.95rem;
  color: rgba(250,250,248,0.55);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.cta__note {
  font-size: 0.75rem;
  color: rgba(250,250,248,0.35);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding-top: 5rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__inner > * {
  min-width: 0;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}
.footer__address {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.footer__social a:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.footer__col h4 {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  text-transform: none;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__col ul a {
  position: relative;
  display: inline-block;
  padding-left: 0;
  font-size: 0.975rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.28s var(--ease-out),
              padding-left 0.4s var(--ease-out);
}
.footer__col ul a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 2px;
  margin-top: -1px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease-out);
}
.footer__col ul a:hover {
  padding-left: 1.75rem;
  color: var(--accent);
}
.footer__col ul a:hover::before {
  transform: scaleX(1);
}

/* Contact column (fifth) */
.footer__contact-address {
  margin-bottom: 0;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__contact-address p {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.55;
}
.footer__contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  transition: color 0.22s var(--ease-out);
}
.footer__contact-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.footer__contact-row:hover {
  color: var(--accent);
}
.footer__contact-row-text {
  min-width: 0;
  word-break: break-word;
}
.footer__contact-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  transition: border-color 0.22s, color 0.22s;
}
.footer__contact-row:hover .footer__contact-icon {
  border-color: var(--accent);
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 2rem;
  padding: 1.5rem 0;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer__bottom img {
  width: 125px;
  height: 25px;
  max-width: 125px;
  display: block;
  object-fit: contain;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
  .mega__inner { grid-template-columns: repeat(2, 1fr) 220px; }
  .mega__col:nth-child(3) { display: none; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --nav-h: 66px; }

  .nav__links { display: none; }
  .nav__burger {
    display: flex;
    margin-left: auto;
  }
  .nav__actions { display: none; }

  .hero {
    min-height: unset;
    padding-bottom: clamp(0.75rem, 3vw, 1.5rem);
  }
  .hero__text {
    padding: clamp(1.25rem, 3vh, 2rem) 1.5rem clamp(0.75rem, 2vh, 1.25rem);
  }
  .hero__eyebrow {
    margin-bottom: 1rem;
  }
  .hero__title {
    font-size: clamp(3rem, 14vw, 5.5rem);
    margin-bottom: 1.5rem;
  }
  .hero__artefact {
    opacity: 0.7;
  }

  .trust {
    --trust-img-h: clamp(200px, 30vw, 280px);
    /* Extra top offset so the grid clears hero title / CTA; cards may sit mostly on white band */
    --trust-grid-pt: clamp(300px, 54vw, 440px);
  }
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: max(1rem, env(safe-area-inset-left, 0px)) max(1rem, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }
  .trust__img-wrap { height: clamp(200px, 30vw, 280px); }

  .about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about__images { height: 360px; }

  .schedule__inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .schedule__image { height: 340px; }
}

@media (max-width: 640px) {
  .trust {
    --trust-grid-pt: clamp(340px, 60vw, 500px);
  }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .about__images { height: 280px; }
  .about__img--3 { display: none; }

  .testi__clients {
    flex-direction: column;
    align-items: stretch;
    gap: 1.1rem;
  }
  .testi__client {
    flex: 1 1 auto;
    width: 100%;
  }
  .cta__actions { flex-direction: column; align-items: center; }

  .trust__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .trust__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(2.8rem, 16vw, 4rem); }
  .mega { display: none; }
}

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════ */
.page-hero {
  position: relative;
  isolation: isolate;
  background: var(--cream);
  padding-top: calc(var(--nav-h-initial) + clamp(3rem, 6vh, 5rem));
  padding-bottom: clamp(3.5rem, 7vh, 6rem);
  text-align: center;
  overflow: hidden;
}
body:has(.nav.is-scrolled) .page-hero {
  padding-top: calc(var(--nav-h) + clamp(3rem, 6vh, 5rem));
}

.page-hero__artefact {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: clamp(-8rem, -4vw, -2rem);
  width: min(42vh, 32rem);
  aspect-ratio: 1;
  transform: translateY(-50%);
  opacity: 0.18;
  pointer-events: none;
}
.page-hero__artefact-spin {
  width: 100%;
  height: 100%;
  animation: heroArtefactRotate 120s linear infinite;
}
.page-hero__artefact-spin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
}
.page-hero__content .heading-display { margin-top: 0.5rem; }

.page-hero__text {
  max-width: 38rem;
  margin: 1.5rem auto 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 400;
}

.page-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact {
  padding: 7rem 0;
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact__info .heading-display { margin-top: 0.5rem; }

.contact__intro {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--dark);
  font-weight: 400;
  max-width: 30rem;
}

/* Contact tiles */
.contact__tiles {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  margin-bottom: 2rem;
}

.contact-tile {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--dark);
  transition: padding-left 0.22s var(--ease-out), color 0.18s;
}
a.contact-tile:hover {
  padding-left: 0.5rem;
}

.contact-tile__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background 0.2s, color 0.2s;
}
a.contact-tile:hover .contact-tile__icon {
  background: var(--accent);
  color: var(--white);
}

.contact-tile__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-tile__label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
}

.contact-tile__value {
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--dark);
  word-break: break-word;
  transition: color 0.18s;
}
a.contact-tile:hover .contact-tile__value { color: var(--accent); }

.contact-tile__arrow {
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--light-muted);
  transition: transform 0.22s var(--ease-out), color 0.18s;
}
a.contact-tile:hover .contact-tile__arrow {
  transform: translateX(5px);
  color: var(--accent);
}

/* Availability card */
.contact__avail {
  padding: 1.75rem;
  background: var(--cream);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.contact__avail-title {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1rem;
}

.contact__avail-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact__avail-list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--dark);
}
.contact__avail-icon {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

/* Website links */
.contact__websites { margin-top: 1.5rem; }

.contact__website-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.contact__website-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s;
}
.contact__website-link:hover { color: var(--accent); }

/* Form card */
.contact__form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: 0 4px 40px rgba(25, 23, 20, 0.06);
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.contact-form .label { margin-bottom: 0.5rem; }

.contact-form__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  line-height: 1.15;
}

.form-group { margin-bottom: 1.35rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.form-field {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.82em 1.05em;
  outline: none;
  transition: border-color 0.22s var(--ease-out),
              background 0.22s var(--ease-out),
              box-shadow 0.22s var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}
.form-field::placeholder { color: var(--light-muted); font-weight: 400; }
.form-field:focus {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 147, 106, 0.12);
}

.form-field--textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

.form-field--select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%237A7470' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: var(--cream);
  padding-right: 2.75rem;
}
.form-field--select:focus {
  background-color: var(--white);
}

.form-foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
}

.form-note {
  font-size: 0.75rem;
  color: var(--light-muted);
  line-height: 1.5;
}

/* ════════════════════════════════════════
   CONTACT SCHEDULE STRIP
════════════════════════════════════════ */
.contact-schedule {
  background: var(--dark);
  padding: 7rem 0;
}

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

.contact-schedule__left .heading-display { margin-top: 0.5rem; }

.contact-schedule__note {
  color: rgba(250, 250, 248, 0.55);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}
.contact-schedule__note strong { color: rgba(250, 250, 248, 0.85); }

.contact-schedule__days {
  display: flex;
  flex-direction: column;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive — contact page */
@media (max-width: 1000px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .contact__form-wrap { position: static; }
}

@media (max-width: 900px) {
  .contact-schedule__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .page-hero__artefact { opacity: 0.12; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .page-hero__actions { flex-direction: column; align-items: center; }
  .contact-tile__icon { width: 38px; height: 38px; }
}

@media (max-width: 420px) {
  .page-hero__artefact { display: none; }
}

/* ════════════════════════════════════════
   CENAS — Pricing Overview
════════════════════════════════════════ */
.pricing-overview {
  padding: 5rem 0 4rem;
  background: var(--white);
}
.pricing-overview__header { margin-bottom: 3rem; }
.pricing-overview__header .heading-display { margin-top: 0.5rem; }

.pricing-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pricing-cat {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--dark);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
}
.pricing-cat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(25, 23, 20, 0.09);
}

.pricing-cat__icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
  display: block;
}
.pricing-cat__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.pricing-cat__desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-top: 0.15rem;
}
.pricing-cat__from {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-top: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.pricing-cat__from-label {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 500;
}
.pricing-cat__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--dark);
  letter-spacing: -0.02em;
}

/* ════════════════════════════════════════
   CENAS — Detailed Pricing Sections
════════════════════════════════════════ */
.pricing-section {
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--border);
}
.pricing-section:nth-child(odd)  { background: var(--white); }
.pricing-section:nth-child(even) { background: var(--cream); }

.pricing-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.85fr;
  gap: 5rem;
  align-items: start;
}

.pricing-section__icon {
  display: block;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.pricing-section__header .heading-display {
  margin-top: 0.35rem;
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
}
.pricing-section__desc {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 22rem;
}
.pricing-section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap 0.18s var(--ease-out), color 0.18s;
}
.pricing-section__link:hover { color: var(--accent-hover); gap: 0.6em; }

/* Price table */
.pricing-table {
  display: flex;
  flex-direction: column;
  padding-top: 0.25rem;
}

.pricing-group-label {
  display: block;
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  padding: 1.5rem 0 0.65rem;
  border-bottom: 1px solid var(--border);
}
.pricing-group-label:first-child { padding-top: 0; }

.pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.pricing-row:hover { background: rgba(25, 23, 20, 0.018); }

.pricing-row__name {
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 400;
  flex: 1;
  min-width: 0;
  line-height: 1.45;
}
.pricing-row__price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.pricing-row__price--free { color: var(--accent); }

/* ════════════════════════════════════════
   CENAS — Pricing Note (dark)
════════════════════════════════════════ */
.pricing-note-sec {
  background: var(--dark-2);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.pricing-note-sec::before {
  content: '';
  position: absolute;
  top: -60%; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(184,147,106,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.pricing-note-card {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  position: relative;
}
.pricing-note__mark {
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 0.55;
  color: rgba(255, 255, 255, 0.06);
  display: block;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.pricing-note__text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.88);
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.pricing-note__sub {
  font-size: 0.85rem;
  color: rgba(250, 250, 248, 0.4);
  line-height: 1.75;
}

/* Sticky-stack scroll — pricing sections (desktop) */
@media (min-width: 1001px) {
  .pricing-section {
    position: sticky;
    top: var(--nav-h);
    z-index: var(--pricing-sec);
    box-shadow: 0 -28px 70px rgba(25, 23, 20, 0.04);
  }
  .pricing-section:first-child { box-shadow: none; }
}

/* Responsive — pricing page */
@media (max-width: 1000px) {
  .pricing-overview__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .pricing-section__desc { max-width: none; }
}
@media (max-width: 640px) {
  .pricing-overview__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .pricing-overview__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   PAR MANI — split hero + expertise areas
═══════════════════════════════════════════════ */

/* ── Split hero ── */
.pm-hero {
  background: var(--cream);
  padding-top: calc(var(--nav-h-initial) + clamp(3rem, 5vh, 4rem));
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.pm-hero__artefact {
  position: absolute;
  left: 42%; top: 18%;
  opacity: 0.10;
  width: min(44vh, 32rem);
  transform-origin: center;
  pointer-events: none;
  z-index: 0;
}
.pm-hero__artefact-spin {
  animation: heroArtefactRotate 120s linear infinite;
}
.pm-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: end;
  position: relative;
  z-index: 1;
}
.pm-hero__content {
  padding-bottom: clamp(4rem, 7vh, 6rem);
}
.pm-hero__sub {
  margin-top: 1.25rem;
  max-width: 52rem;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--text-light);
  line-height: 1.75;
}
.pm-hero__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.pm-hero__role {
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: rgba(184, 147, 106, 0.12);
  color: var(--accent);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
}
.pm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}
.pm-hero__portrait {
  width: clamp(200px, 24vw, 340px);
  flex-shrink: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 3/4;
  align-self: end;
}
.pm-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Expertise areas ── */
.pm-areas { background: var(--white); }
.pm-area {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: var(--white);
}
.pm-area--cream { background: var(--cream); }
.pm-area + .pm-area { border-top: 1px solid var(--border); }
.pm-area__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 5.5rem);
  align-items: center;
}
.pm-area--img-left .pm-area__image,
.pm-area--img-left .pm-area__image-duo { order: -1; }
.pm-area__image {
  border-radius: var(--radius);
  overflow: hidden;
}
.pm-area__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pm-area__image--tall { aspect-ratio: 4/5; }
.pm-area__image--wide { aspect-ratio: 16/11; }
.pm-area__image-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pm-area__image-duo > .pm-area__image:last-child { margin-top: 2rem; }
.pm-area__eyebrow { margin-bottom: 0.75rem; }
.pm-area__title { margin-bottom: 1.25rem; }
.pm-area__text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Instrument grid */
.pm-instruments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 1.5rem 0 2rem;
}
.pm-instrument {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--dark);
}
.pm-instrument:nth-child(odd)  { padding-right: 1.5rem; }
.pm-instrument:nth-child(even) { padding-left: 1.5rem; border-left: 1px solid var(--border); }
.pm-instrument__symbol {
  color: var(--accent);
  flex-shrink: 0;
  font-size: 1.05rem;
  margin-top: 0.05em;
}
.pm-instrument small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}

/* Benefit list */
.pm-benefits {
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pm-benefit {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.pm-benefit::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}

/* Location badges */
.pm-locations {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 1.75rem;
}
.pm-location {
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.32rem 0.85rem;
  color: var(--text-light);
}

/* Responsive — par mani */
@media (max-width: 900px) {
  .pm-hero__inner      { grid-template-columns: 1fr; }
  .pm-hero__portrait   { display: none; }
  .pm-area__inner      { grid-template-columns: 1fr; gap: 2.5rem; }
  .pm-area--img-left .pm-area__image,
  .pm-area--img-left .pm-area__image-duo { order: 0; }
  .pm-instruments      { grid-template-columns: 1fr; }
  .pm-instrument:nth-child(even) { padding-left: 0; border-left: none; }
}


/* ══════════════════════════════════════════════════
   SERVICE ARCHIVE PAGE — pakalpojumi.html
══════════════════════════════════════════════════ */

.pakalpojumi-hero {
  padding: calc(var(--nav-h-initial) + clamp(4rem, 8vh, 6rem)) 0 clamp(4rem, 7vh, 5.5rem);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.pakalpojumi-hero__artefact {
  position: absolute;
  right: 5%;
  top: 10%;
  opacity: 0.07;
  width: min(50vh, 38rem);
  pointer-events: none;
}
.pakalpojumi-hero__artefact-spin { animation: heroArtefactRotate 180s linear infinite; }
.pakalpojumi-hero__inner { position: relative; z-index: 1; max-width: 56rem; }
.pakalpojumi-hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-light);
  line-height: 1.75;
  margin-top: 1.25rem;
  max-width: 46rem;
}

.svc-cat {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--white);
}
.svc-cat:nth-child(even) { background: var(--cream); }

.svc-cat__header { margin-bottom: clamp(2rem, 4vw, 3rem); }
.svc-cat__label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: block;
}
.svc-cat__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  line-height: 1.2;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.svc-cat:nth-child(even) .svc-card { background: var(--white); }
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(25, 23, 20, 0.10);
}

.svc-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--border);
}
.svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.svc-card:hover .svc-card__img img { transform: scale(1.04); }

.svc-card__body {
  padding: 1.1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-card__icon {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
  line-height: 1;
}
.svc-card__title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.svc-card__desc {
  font-size: 0.79rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 0.85rem;
}
.svc-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.svc-card__price {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.svc-card__arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  transition: background 0.2s;
}
.svc-card:hover .svc-card__arrow { background: var(--accent); }

/* ══════════════════════════════════════════════════
   SERVICE DETAIL PAGE
══════════════════════════════════════════════════ */

.svc-hero {
  background: #ece7e1;
  padding-top: calc(var(--nav-h-initial) + clamp(3.5rem, 6vh, 5rem));
  padding-bottom: 0;
  overflow: hidden;
  color: var(--dark);
}
.svc-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: end;
}
.svc-hero__content {
  padding-bottom: clamp(3.5rem, 6vh, 5rem);
}
.svc-hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.svc-hero__eyebrow a {
  color: var(--text-light);
  text-decoration: none;
}
.svc-hero__eyebrow a:hover { color: var(--accent); }
.svc-hero__eyebrow-sep { opacity: 0.35; color: var(--text-light); }
.svc-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.svc-hero__title em {
  font-style: normal;
  color: var(--text-light);
}
.svc-hero__desc {
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  color: var(--text-light);
  line-height: 1.8;
  max-width: 50rem;
  margin-bottom: 2rem;
}
.svc-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.svc-hero__pill {
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.32rem 0.85rem;
  color: var(--text-light);
}
.svc-hero__pill--accent {
  background: rgba(184,147,106,0.15);
  border-color: rgba(184,147,106,0.45);
  color: var(--accent);
}
.svc-hero__actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.svc-hero__image {
  width: clamp(200px, 22vw, 320px);
  align-self: end;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.svc-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Info strip */
.svc-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.svc-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.svc-strip__item {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-right: 1px solid var(--border);
}
.svc-strip__item:last-child { border-right: none; }
.svc-strip__label {
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-light);
}
.svc-strip__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

/* Main content */
.svc-content {
  background: var(--cream);
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.svc-content__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 5.5rem);
  align-items: start;
}
.svc-content__text .heading-display {
  margin-bottom: 1.25rem;
}
.svc-content__text p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}
.svc-content__text p:last-child { margin-bottom: 0; }
.svc-content__image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.svc-content__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Benefits */
.svc-benefits {
  background: var(--dark-2);
  padding: clamp(4rem, 7vw, 6rem) 0;
  color: var(--cream);
}
.svc-benefits .heading-display { color: var(--white); margin-bottom: clamp(2rem, 4vw, 3rem); }
.svc-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.svc-benefit-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 1.4rem;
}
.svc-benefit-item__icon {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  display: block;
  color: rgba(184,147,106,0.8);
}
.svc-benefit-item__title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.svc-benefit-item__desc {
  font-size: 0.79rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* Process */
.svc-process {
  background: var(--white);
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.svc-process .heading-display { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.svc-process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-step {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.svc-step__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.svc-step__title {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.svc-step__desc {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* Pricing */
.svc-pricing {
  background: var(--cream);
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.svc-pricing .heading-display { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.svc-pricing-table {
  max-width: 54rem;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.svc-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.svc-pricing-row:last-child { border-bottom: none; }
.svc-pricing-row__name { font-size: 0.88rem; color: var(--dark); }
.svc-pricing-row__price {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}
.svc-pricing__note {
  max-width: 54rem;
  margin: 1.25rem auto 0;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.6;
}

/* Related */
.svc-related {
  background: var(--white);
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.svc-related .heading-display { margin-bottom: clamp(2rem, 4vw, 3rem); }
.svc-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Responsive — service pages */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .svc-hero__inner,
  .svc-content__inner { grid-template-columns: 1fr; }
  .svc-hero__image { display: none; }
  .svc-content__image { position: static; aspect-ratio: 16/9; }
  .svc-benefits__grid { grid-template-columns: 1fr 1fr; }
  .svc-process__steps { grid-template-columns: 1fr; gap: 1rem; }
  .svc-strip__inner { grid-template-columns: 1fr 1fr; }
  .svc-strip__item:nth-child(even) { border-right: none; }
  .svc-related__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-benefits__grid { grid-template-columns: 1fr; }
  .svc-related__grid { grid-template-columns: 1fr; }
  .svc-strip__inner { grid-template-columns: 1fr 1fr; }
}
