/* ==========================================================================
   Garden Villa — Limassol
   A private, quiet landing. Mobile-first.
   ========================================================================== */

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }

/* ----- Design tokens ----- */
:root {
  /* Palette — warm, quiet, boutique-hotel */
  --bg:          #f4efe7;   /* warm bone */
  --bg-2:        #ebe3d6;   /* soft sand, for dividers */
  --bg-dark:     #15120e;   /* deep charcoal */
  --ink:         #1a1814;
  --ink-soft:    #4a4339;
  --ink-mute:    #8e8578;
  --line:        rgba(26, 24, 20, 0.12);
  --line-strong: rgba(26, 24, 20, 0.22);
  --accent:      #a98b5e;   /* warm gold — used very sparingly */

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Layout */
  --page-x: clamp(1.25rem, 4vw, 3.25rem);
  --measure: 38rem;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  text-decoration: none;
}
.skip-link:focus { left: 1rem; top: 1rem; outline: 2px solid var(--accent); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ----- Typography primitives ----- */
.display {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.5rem, 9vw, 5.5rem);
}
.display--md { font-size: clamp(2rem, 6vw, 3.75rem); }
.display--sm { font-size: clamp(1.5rem, 4vw, 2.5rem); line-height: 1.2; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 1.5rem;
}
.eyebrow--soft { color: var(--accent); margin-bottom: 0.75rem; }

.body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
}

.measure {
  max-width: var(--measure);
  margin-inline: auto;
  padding-inline: var(--page-x);
}

/* ----- Reusable buttons with refined hover ----- */
.btn {
  position: relative;
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.1rem 2.25rem;
  border: 1px solid currentColor;
  background-clip: padding-box;
  overflow: hidden;
  isolation: isolate;
  transition: color 520ms var(--ease), border-color 520ms var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 640ms cubic-bezier(0.77, 0, 0.175, 1);
  z-index: -1;
}
.btn:hover::before,
.btn:focus-visible::before { transform: scaleY(1); transform-origin: top; }

.btn--ghost { color: #fff; border-color: rgba(255,255,255,0.7); background: transparent; }
.btn--ghost::before { background: #fff; }
.btn--ghost:hover, .btn--ghost:focus-visible { color: var(--ink); border-color: #fff; }

.btn--solid { color: var(--bg); background: var(--ink); border-color: var(--ink); }
.btn--solid:hover, .btn--solid:focus-visible { color: var(--ink); }
.btn--solid::before { background: var(--bg); }

.btn--quiet { color: var(--ink); border-color: var(--line-strong); }
.btn--quiet:hover, .btn--quiet:focus-visible { color: var(--bg); border-color: var(--ink); }
.btn--quiet::before { background: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .btn, .btn::before { transition: none; }
  .btn::before { display: none; }
}


/* =============================================================
   Reveal animations — simple, bulletproof, professional
   Two modes: default (fade-up) and stagger (per-child delay)
   ============================================================= */

/* --- default reveal: fade + rise + subtle scale --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 1200ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 1400ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* --- stagger: cancel parent animation, animate children instead --- */
[data-reveal="stagger"] {
  opacity: 1;
  transform: none;
  transition: none;
}
[data-reveal="stagger"] > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1000ms cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 1000ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
[data-reveal="stagger"].is-in > *:nth-child(1) { transition-delay:  80ms; opacity: 1; transform: none; }
[data-reveal="stagger"].is-in > *:nth-child(2) { transition-delay: 180ms; opacity: 1; transform: none; }
[data-reveal="stagger"].is-in > *:nth-child(3) { transition-delay: 280ms; opacity: 1; transform: none; }
[data-reveal="stagger"].is-in > *:nth-child(4) { transition-delay: 380ms; opacity: 1; transform: none; }
[data-reveal="stagger"].is-in > *:nth-child(5) { transition-delay: 480ms; opacity: 1; transform: none; }
[data-reveal="stagger"].is-in > *:nth-child(6) { transition-delay: 580ms; opacity: 1; transform: none; }
[data-reveal="stagger"].is-in > *:nth-child(7) { transition-delay: 680ms; opacity: 1; transform: none; }
[data-reveal="stagger"].is-in > *:nth-child(n+8) { transition-delay: 780ms; opacity: 1; transform: none; }

/* --- no-JS fallback: if JS doesn't run, show everything --- */
.no-js [data-reveal],
.no-js [data-reveal="stagger"] > * {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal="stagger"] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}


/* =============================================================
   HERO  — brand top-left, headline + CTA in one row at the bottom
   ============================================================= */
.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding:
    clamp(2.25rem, 4.5vh, 3.75rem)
    clamp(1.5rem, 5vw, 4rem)
    clamp(2.25rem, 5vh, 4rem);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__brand {
  grid-row: 1;
  align-self: start;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: kenBurns 42s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  0%   { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.14) translate3d(-1.2%, -0.8%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg img { animation: none; transform: none; }
}
.hero__veil {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    /* gentle wash on the top-left brand */
    linear-gradient(135deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.10) 22%, rgba(0,0,0,0) 45%),
    /* bottom band so the headline + CTA always read clearly */
    linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.20) 70%, rgba(0,0,0,0.65) 100%);
}
.hero__content {
  position: relative;
  grid-row: 3;
  align-self: end;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  text-align: left;
}
@media (min-width: 720px) {
  .hero__content {
    grid-template-columns: 1fr auto;
    gap: clamp(1.5rem, 4vw, 3rem);
  }
}

/* Hero line-by-line stagger (runs on load) */
.reveal-line {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1400ms var(--ease), transform 1400ms var(--ease);
  will-change: opacity, transform;
}
.hero.is-in .reveal-line:nth-child(1) { transition-delay: 250ms; opacity: 1; transform: none; }
.hero.is-in .reveal-line:nth-child(2) { transition-delay: 500ms; opacity: 1; transform: none; }
.hero.is-in .reveal-line:nth-child(3) { transition-delay: 800ms; opacity: 1; transform: none; }
.hero.is-in .reveal-line:nth-child(4) { transition-delay: 1050ms; opacity: 1; transform: none; }
.hero.is-in .reveal-line:nth-child(5) { transition-delay: 1350ms; opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-line { opacity: 1 !important; transform: none !important; transition: none !important; }
}
.hero .eyebrow {
  color: rgba(255,255,255,0.92);
  margin: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.hero__title {
  color: #fff;
  font-style: italic;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin: 0;
  max-width: 32ch;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.hero__cta {
  justify-self: start;
}
@media (min-width: 720px) {
  .hero__cta { justify-self: end; }
}
.hero__scroll {
  position: absolute;
  right: clamp(1.5rem, 5vw, 4rem);
  bottom: 1.5rem;
  height: 56px;
  width: 1px;
  overflow: hidden;
}
.hero__scroll-line {
  display: block;
  width: 1px; height: 100%;
  background: rgba(255,255,255,0.6);
  animation: cue 2.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  transform-origin: top;
}
@keyframes cue {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============================================================
   Common section rhythm  (trimmed for a shorter page)
   ============================================================= */
.section {
  padding-block: clamp(3.75rem, 8vw, 6.75rem);
}

/* =============================================================
   ESSENCE
   ============================================================= */
.essence .measure { text-align: center; }
.essence__line {
  margin: 0;
  font-size: clamp(1.6rem, 4.2vw, 2.75rem);
  line-height: 1.25;
}
.essence__spacer { height: clamp(1.5rem, 3vw, 2.5rem); margin: 0; }
.essence__sub {
  max-width: 32rem;
  margin: 0.25rem auto;
}

.essence__photos {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  padding-inline: var(--page-x);
}
.essence__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (min-width: 840px) {
  .essence__photos {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .essence__photo img { aspect-ratio: 5 / 6; }
  .essence__photo--offset { margin-top: clamp(2rem, 5vw, 4rem); }
}

/* =============================================================
   GALLERY
   ============================================================= */
.gallery {
  padding-inline: var(--page-x);
  display: grid;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}
.gallery__full,
.gallery__half,
.gallery__tall,
.gallery__mosaic-stack figure,
.essence__photo,
.life__photo,
.arch__slide {
  overflow: hidden;
}

/* =============================================================
   LQIP — blurred background placeholder; image fades in on top
   ============================================================= */
.gallery__full > picture > img,
.gallery__half > picture > img,
.gallery__tall > picture > img,
.gallery__mosaic-stack figure > picture > img,
.life__photo > picture > img,
.arch__slide > picture > img {
  opacity: 0;
  transition: opacity 600ms ease-out, transform 1200ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.gallery__full > picture > img.is-loaded,
.gallery__half > picture > img.is-loaded,
.gallery__tall > picture > img.is-loaded,
.gallery__mosaic-stack figure > picture > img.is-loaded,
.life__photo > picture > img.is-loaded,
.arch__slide > picture > img.is-loaded {
  opacity: 1;
}

/* No-JS fallback: show images immediately */
.no-js .gallery__full > picture > img,
.no-js .gallery__half > picture > img,
.no-js .gallery__tall > picture > img,
.no-js .gallery__mosaic-stack figure > picture > img,
.no-js .life__photo > picture > img,
.no-js .arch__slide > picture > img {
  opacity: 1 !important;
}

/* Hero background picture stays as-is; the LQIP shows under hero img which is already
   above any animation. The img fades in once loaded. */
.hero__img {
  opacity: 0;
  transition: opacity 800ms ease-out, transform 0s;
}
.hero__img.is-loaded { opacity: 1; }
.no-js .hero__img { opacity: 1 !important; }
.gallery__full img,
.gallery__half img,
.gallery__tall img,
.gallery__mosaic-stack figure img,
.essence__photo img,
.life__photo img {
  transition: transform 1200ms cubic-bezier(0.22, 0.61, 0.36, 1),
              filter 800ms var(--ease);
  will-change: transform;
}
.gallery__full:hover img,
.gallery__half:hover img,
.gallery__tall:hover img,
.gallery__mosaic-stack figure:hover img,
.essence__photo:hover img,
.life__photo:hover img {
  transform: scale(1.035);
}
@media (prefers-reduced-motion: reduce) {
  .gallery__full img, .gallery__half img,
  .gallery__tall img, .gallery__mosaic-stack figure img,
  .essence__photo img, .life__photo img {
    transition: none;
  }
  .gallery__full:hover img, .gallery__half:hover img,
  .gallery__tall:hover img, .gallery__mosaic-stack figure:hover img,
  .essence__photo:hover img, .life__photo:hover img { transform: none; }
}

.gallery__full img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.gallery__pair {
  display: grid;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}
.gallery__half img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
@media (min-width: 720px) {
  .gallery__full img { aspect-ratio: 16 / 9; }
  .gallery__pair { grid-template-columns: 1fr 1fr; }
  .gallery__half img { aspect-ratio: 4 / 5; }
}
@media (min-width: 1200px) {
  .gallery { padding-inline: clamp(2rem, 6vw, 5rem); }
  .gallery__full img { aspect-ratio: 16 / 10; }
}

/* Mosaic row: tall portrait beside two stacked landscapes */
.gallery__mosaic {
  display: grid;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}
.gallery__mosaic-stack {
  display: grid;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}
.gallery__tall img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.gallery__mosaic-stack img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
@media (min-width: 720px) {
  .gallery__mosaic {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: stretch;
  }
  .gallery__mosaic--reverse {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .gallery__mosaic--reverse .gallery__tall { order: 2; }
  /* Make the tall figure fill its grid cell so the portrait image
     covers the same height as the right-column stack. */
  .gallery__tall {
    height: 100%;
    align-self: stretch;
  }
  .gallery__tall picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .gallery__tall img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }
}

/* =============================================================
   ARCHITECTURE — horizontal slider
   ============================================================= */
.arch {
  padding-block: clamp(4rem, 10vw, 9rem);
  background: var(--bg-dark);
  color: #eae3d5;
}
.arch__viewport {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
}
.arch__track {
  display: flex;
  transition: transform 900ms var(--ease);
  will-change: transform;
}
.arch__slide {
  flex: 0 0 100%;
  padding-inline: var(--page-x);
}
.arch__slide img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
@media (min-width: 900px) {
  .arch__slide img { aspect-ratio: 16 / 9; }
}

.arch__controls {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  color: #cabfaa;
}
.arch__btn {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid rgba(234,227,213,0.35);
  border-radius: 50%;
  color: inherit;
  transition: background-color 400ms var(--ease), color 400ms var(--ease), border-color 400ms var(--ease);
}
.arch__btn:hover { background: #eae3d5; color: var(--bg-dark); border-color: #eae3d5; }
.arch__counter {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* =============================================================
   LIFESTYLE — 2x2 grid on tablet+, stacked cards on mobile
   ============================================================= */
.life { padding-inline: var(--page-x); }
.life__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.life__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}
.life__card {
  display: grid;
  gap: 1rem;
}
.life__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.life__copy {
  padding-inline: 0;
}
.life__copy .display--sm { margin: 0 0 0.25rem; }
.life__line { margin: 0; max-width: 22rem; }

@media (min-width: 760px) {
  .life__grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
  }
  .life__photo img { aspect-ratio: 4 / 5; }
  .life__card { gap: 1.25rem; }
}
@media (min-width: 1100px) {
  .life__photo img { aspect-ratio: 5 / 6; }
}

/* =============================================================
   TRUST
   ============================================================= */
.trust .measure { text-align: center; }
.rule {
  display: block;
  width: 1px; height: 56px;
  background: var(--line-strong);
  margin: 0 auto 2.5rem;
}
.trust__line { margin: 0 0 1.75rem; }
.trust__body { margin: 0 auto 1rem; max-width: 34rem; }
.trust__body--accent { color: var(--ink); font-style: italic; font-family: var(--serif); font-size: 1.25rem; margin-top: 1.5rem; }

/* =============================================================
   FACTS + LOCATION (merged into two columns on tablet+)
   ============================================================= */
.facts { background: var(--bg-2); }
.facts__wrap {
  max-width: 58rem;
  margin: 0 auto;
  padding-inline: var(--page-x);
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}
.facts__col .eyebrow { margin-bottom: 1.5rem; }
.facts__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.facts__list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.location__line   { margin: 0 0 1rem; }
.location__body   { margin: 0 0 0.6rem; max-width: 32rem; }
.location__body--accent {
  color: var(--ink); font-style: italic;
  font-family: var(--serif); font-size: 1.2rem;
  margin-top: 1rem;
}

@media (min-width: 760px) {
  .facts__wrap {
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(3rem, 7vw, 5.5rem);
    align-items: start;
  }
}

/* =============================================================
   CTA
   ============================================================= */
.cta {
  background: var(--bg-dark);
  color: #eae3d5;
  text-align: center;
}
.cta .eyebrow { color: rgba(234,227,213,0.6); }
.cta__price {
  color: #fff;
  margin: 0 0 1rem;
}
.cta__sub {
  color: rgba(234,227,213,0.7);
  max-width: 32rem;
  margin: 0 auto 2rem;
}
.cta__meta {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(234,227,213,0.55);
  margin-bottom: 2.5rem;
  display: inline-flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cta__buttons {
  display: inline-flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cta .btn--solid {
  background: #eae3d5;
  color: var(--bg-dark);
  border-color: #eae3d5;
}
.cta .btn--solid::before { background: var(--bg-dark); }
.cta .btn--solid:hover, .cta .btn--solid:focus-visible { color: #eae3d5; }

.cta .btn--quiet { color: #eae3d5; border-color: rgba(234,227,213,0.45); }
.cta .btn--quiet::before { background: #eae3d5; }
.cta .btn--quiet:hover, .cta .btn--quiet:focus-visible { color: var(--bg-dark); border-color: #eae3d5; }

/* =============================================================
   CONTACT
   ============================================================= */
.contact { text-align: center; }
.contact__name { margin: 0 0 1.25rem; }
.contact__line {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin: 0 0 2.5rem;
}
.contact__line a {
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: border-color 300ms var(--ease);
}
.contact__line a:hover { border-color: var(--ink); }
.contact__fine {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  padding-block: 2.5rem 3rem;
  border-top: 1px solid var(--line);
}
.footer__line {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}

/* =============================================================
   Small-screen refinements
   ============================================================= */
@media (max-width: 520px) {
  .hero__content { padding-inline: 0.5rem; }
  .cta__buttons { flex-direction: column; align-items: stretch; }
  .cta__buttons .btn { text-align: center; }
}
