/* ── Design tokens (Figma) ─────────────────────────────────── */
:root {
  --bg-dark: #18181E;
  --bg-elevated: #22222c;
  --cream: #fbebdb;
  --gold: #b8824f;
  --gold-hover: #c99462;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-archivo: "Archivo", system-ui, sans-serif;
  --header-height: 100px;
  --max-width: 1180px;
  --max-wide: 1900px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

em { font-style: italic; color: inherit; }

.icon-whatsapp {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

/* ── Cover ─────────────────────────────────────────────────── */
.cover {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  opacity: 1;
  transition: opacity 0.05s linear;
  pointer-events: auto;
}

.cover.is-hidden {
  pointer-events: none;
  visibility: hidden;
}

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

.cover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  pointer-events: none;
}

.cover-logo {
  position: relative;
  z-index: 1;
  width: min(88vw, 680px);
  height: auto;
  mix-blend-mode: lighten;
}

.cover-hint {
  position: absolute;
  bottom: 2.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  margin: 0;
  width: max-content;
  max-width: calc(100% - 2rem);
  font-family: var(--font-sans);
  font-size: clamp(0.97rem, calc(1.2vw + 2pt), calc(0.95rem + 2pt));
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: var(--cream);
  opacity: 0.75;
  animation: pulse-hint 2.4s ease-in-out infinite;
}

@keyframes pulse-hint {
  0%, 100% { opacity: 0.45; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.9; transform: translateX(-50%) translateY(4px); }
}

/* ── Intro ─────────────────────────────────────────────────── */
.intro-track { pointer-events: none; }

body.intro-active .page-content > :not(.section-hero) { visibility: hidden; }

body.intro-active .section-hero {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: var(--header-height);
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: var(--bg-dark);
}

body.intro-complete .intro-track { height: 0 !important; overflow: hidden; }
body.intro-complete .page-content > * { visibility: visible; }
body.intro-complete .section-hero {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
  background: rgba(28, 28, 36, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 0.6px solid rgba(184, 130, 79, 0.15);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.05s linear, transform 0.05s linear;
  pointer-events: none;
}

.site-header.is-visible,
body.intro-complete .site-header {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.logo {
  display: block;
  line-height: 0;
  justify-self: start;
}

.logo img {
  height: clamp(56px, 7vw, 82px);
  width: auto;
  mix-blend-mode: lighten;
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  justify-self: center;
  grid-column: 2;
}

.nav-desktop a {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--cream);
  transition: color 0.25s var(--ease-out);
}

.nav-desktop a:hover { color: var(--gold); }

.nav-cta {
  justify-self: end;
  grid-column: 3;
}

.menu-toggle { display: none; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 200px;
  border: 0.6px solid transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: lowercase;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.btn-solid {
  background: var(--gold);
  color: #1c1c24;
  border-color: var(--gold);
  text-transform: none;
}

.btn-solid:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}

.btn-whatsapp.btn-solid {
  gap: 10px;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.btn-whatsapp .icon-whatsapp {
  width: 1.15em;
  height: 1.15em;
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--cream);
}

.btn-outline:hover {
  background: rgba(184, 130, 79, 0.12);
}

.nav-cta.btn-outline {
  min-width: 160px;
  padding: 12px 24px;
  text-transform: none;
  color: var(--cream);
  border-color: rgba(251, 235, 219, 0.55);
}

.nav-cta.btn-outline:hover {
  background: rgba(251, 235, 219, 0.06);
  border-color: var(--cream);
  color: var(--cream);
}

/* ── Sections ────────────────────────────────────────────────── */
.section {
  position: relative;
  scroll-margin-top: var(--header-height);
}

.section-inner {
  width: min(var(--max-width), calc(100% - 3rem));
  margin: 0 auto;
}

.section-inner--wide {
  width: min(var(--max-wide), calc(100% - 2rem));
}

/* ── Hero ────────────────────────────────────────────────────── */
.section-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: calc(var(--header-height) + 2rem) 1.5rem 4rem;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #18181E;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  text-align: center;
}

.hero-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 56px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.hero-title em {
  font-style: italic;
  color: inherit;
}

.hero-subtitle {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  font-family: var(--font-sans);
  font-size: clamp(1.125rem, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.4;
  color: #fbebdb;
}

/* ── Services ────────────────────────────────────────────────── */
.section-services {
  padding: clamp(4rem, 8vw, 6rem) 0 0;
  background: var(--bg-dark);
}

.services-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  width: min(var(--max-wide), calc(100% - 4rem));
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.services-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 42px);
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  color: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.service-card {
  position: relative;
  aspect-ratio: 3 / 4.2;
  overflow: hidden;
  border-radius: 0;
  background: var(--bg-elevated);
}

.service-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.48);
  transition: filter 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.service-card:hover .service-card-img {
  filter: grayscale(0.15) brightness(0.58);
  transform: scale(1.02);
}

.service-card-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: linear-gradient(180deg, transparent 0%, rgba(28, 28, 36, 0.95) 50%);
}

.service-card-content h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.6vw, 24px);
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--gold);
}

.service-card-content p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}

/* ── Quote ───────────────────────────────────────────────────── */
.section-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(520px, 68vw, 1306px);
  padding: clamp(4rem, 10vw, 8rem) 1.5rem;
  background:
    linear-gradient(180deg, rgba(28, 28, 36, 0.55) 0%, rgba(28, 28, 36, 0.72) 100%),
    url("../assets/fondo-cover.png") center / cover no-repeat,
    var(--bg-dark);
}

.quote-inner {
  width: min(1200px, 100%);
  text-align: center;
}

.quote-main {
  margin: 0 0 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5.5vw, 90px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--gold);
}

.quote-main em {
  font-style: italic;
}

.quote-line {
  display: block;
}

.quote-layout--mobile {
  display: none;
}

.quote-layout--desktop .quote-line {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .quote-layout--desktop {
    display: none;
  }

  .quote-layout--mobile {
    display: block;
  }

  .quote-main {
    font-size: clamp(1.35rem, 6.8vw, 2.1rem);
    line-height: 1.25;
    padding: 0 1.25rem;
  }

  .quote-layout--mobile .quote-line {
    white-space: normal;
  }
}

@media (min-width: 769px) {
  .quote-sub .quote-line {
    white-space: nowrap;
  }
}

.quote-sub {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 4vw, 66px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.25;
  color: var(--cream);
}

.quote-sub em {
  font-style: italic;
  color: var(--cream);
}

/* ── Split sections (pasos / about) ──────────────────────────── */
.section-split {
  padding: 0;
}

.section-about,
.section-pasos {
  background: #18181E;
}

.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(480px, 50vw, 720px);
}

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 5rem);
  background: var(--bg-elevated);
}

.split-title {
  margin: 0 0 1.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--cream);
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
}

.split-title em {
  font-style: italic;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  font-family: var(--font-archivo);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--cream);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: var(--gold);
}

.pasos-note {
  margin: 1.75rem 0 2rem;
  font-family: var(--font-archivo);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--cream);
}

.section-pasos .split-inner {
  background: #18181E;
}

.section-pasos .split-text {
  background: #18181E;
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(2.5rem, 6vw, 6rem);
}

.pasos-text .checklist li {
  font-family: var(--font-archivo);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.pasos-text .btn {
  margin-top: 2rem;
  align-self: flex-start;
}

.section-about .split-inner {
  background: #18181E;
}

.section-about .split-text {
  background: #18181E;
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(2.5rem, 6vw, 6rem);
}

.about-text > p:not(.eyebrow) {
  margin: 0 0 1.25rem;
  font-family: var(--font-archivo);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--cream);
}

.about-text strong {
  font-weight: 400;
}

.about-text .split-title {
  margin-bottom: 2rem;
}

.about-text .btn {
  margin-top: 2rem;
  align-self: flex-start;
}

.split-media {
  margin: 0;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) brightness(0.48);
}

/* ── Testimonials ────────────────────────────────────────────── */
.section-testimonials {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--bg-dark);
}

.testimonials-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  width: min(var(--max-wide), calc(100% - 4rem));
  margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
}

.testimonials-title {
  margin: 0;
  min-width: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 36px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--cream);
}

@media (min-width: 769px) {
  .testimonials-title {
    white-space: nowrap;
  }
}

.testimonials-title em {
  font-style: italic;
}

.testimonials-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.testimonials-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #303038;
  color: rgba(251, 235, 219, 0.65);
  cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.testimonials-nav button:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.testimonials-nav button svg {
  width: 20px;
  height: 20px;
}

.testimonials-nav button svg path {
  stroke: currentColor;
  stroke-width: 1.5;
}

.testimonials-nav button:hover:not(:disabled) {
  background: #3c3c46;
  color: var(--cream);
}

.testimonials-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  padding-left: max(calc((100% - 927px) / 2), 2rem);
  padding-right: 0;
  mask-image: linear-gradient(90deg, #000 0%, #000 72%, rgba(0, 0, 0, 0.35) 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 72%, rgba(0, 0, 0, 0.35) 88%, transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: 18px;
  transition: transform 0.55s var(--ease-out);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 min(927px, calc(100vw - 4rem));
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  min-height: 329px;
  padding: 60px;
  border: 0.6px solid var(--gold);
  border-radius: 30px;
  background: transparent;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.testimonial-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(184, 130, 79, 0.2) 0%, rgba(28, 28, 36, 0.9) 100%);
  border: 0.6px solid rgba(184, 130, 79, 0.35);
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-name {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--cream);
}

.testimonial-role {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(251, 235, 219, 0.65);
}

.testimonial-text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(251, 235, 219, 0.85);
}

/* ── CTA ─────────────────────────────────────────────────────── */
.section-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 10rem) 1.5rem clamp(5rem, 10vw, 8rem);
  background:
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(184, 130, 79, 0.28) 0%, rgba(184, 130, 79, 0.1) 30%, transparent 65%),
    #14141a;
}

.cta-inner {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  color: var(--cream);
}

.cta-title em {
  font-style: italic;
  color: var(--cream);
}

.cta-sub {
  margin: 0 0 2.75rem;
  font-family: var(--font-sans);
  font-size: clamp(1.125rem, 1.8vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  color: rgba(251, 235, 219, 0.72);
}

.section-cta .btn-solid {
  min-width: 180px;
  padding: 14px 28px;
  font-size: 16px;
  text-transform: none;
  color: var(--bg-dark);
}

.section-cta .icon-whatsapp {
  width: 1.25em;
  height: 1.25em;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  padding: clamp(3.5rem, 6vw, 4.5rem) 0 clamp(2.5rem, 4vw, 3.5rem);
  background: #111116;
  border-top: none;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) auto minmax(200px, 1fr);
  align-items: center;
  gap: 2rem;
  width: min(var(--max-wide), calc(100% - 4rem));
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  min-height: 80px;
}

.footer-logo img {
  height: clamp(64px, 8.5vw, 96px);
  width: auto;
  mix-blend-mode: lighten;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-column: 2;
}

.footer-nav a {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  color: var(--cream);
  white-space: nowrap;
  transition: color 0.25s var(--ease-out);
}

.footer-nav a:hover { color: var(--gold); }

.footer-legal {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 4vw, 3rem);
}

.footer-legal a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(251, 235, 219, 0.4);
  transition: color 0.25s var(--ease-out);
}

.footer-legal a:hover { color: var(--cream); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .testimonial-card { flex-basis: min(720px, calc(100vw - 2rem)); }
}

@media (max-width: 768px) {
  :root { --header-height: 80px; }

  .cover-hint {
    font-size: clamp(0.72rem, 3.1vw, 0.88rem);
    letter-spacing: 0.16em;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-desktop,
  .footer-nav { display: none; }

  .nav-cta.btn-whatsapp { display: none; }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    grid-column: 2;
    justify-self: end;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    margin-left: auto;
    background: var(--cream);
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .menu-toggle span {
    transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
  }

  .nav-mobile {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 140;
    display: none;
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    background: rgba(28, 28, 36, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 0.6px solid rgba(184, 130, 79, 0.2);
  }

  .nav-mobile:not([hidden]) { display: flex; }

  .nav-mobile a {
    padding: 0.85rem 0;
    font-size: 1rem;
    text-transform: none;
    color: var(--cream);
    border-bottom: 1px solid rgba(251, 235, 219, 0.08);
  }

  .nav-mobile .nav-cta {
    display: inline-flex;
    margin-top: 1rem;
    justify-content: center;
    align-self: center;
  }

  .split-inner { grid-template-columns: 1fr; }

  .split-media { order: -1; min-height: 320px; }

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

  .services-header {
    width: calc(100% - 2rem);
    gap: 1rem;
    grid-template-columns: 1fr;
  }

  .services-header .btn {
    display: none;
  }

  .services-title {
    font-size: clamp(2rem, 6vw, 2.35rem);
  }

  .service-card-content h3 {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .service-card-content p {
    font-size: 1.0625rem;
    line-height: 1.5;
  }

  .testimonials-header {
    gap: 1rem;
    width: calc(100% - 2rem);
  }

  .testimonials-title {
    white-space: normal;
    font-size: clamp(1rem, 3.8vw, 1.35rem);
  }

  .testimonials-nav button {
    width: 42px;
    height: 42px;
  }

  .testimonials-viewport {
    padding-left: 1.5rem;
    mask-image: linear-gradient(90deg, #000 0%, #000 75%, transparent 100%);
  }

  .testimonial-card {
    flex-basis: calc(100vw - 3rem);
    padding: 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-self: center;
    width: fit-content;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cover, .site-header, .section-hero, .cover-hint, .testimonials-track { transition: none !important; animation: none !important; }
}
