/* ===================================================================
   EKRIA — site.css
   Table of Contents:
   1. Design Tokens (:root)
   2. Reset & Base
   3. Layout (shell, header, nav, grid)
   4. Typography
   5. Components (buttons, cards, panels, links)
   6. Page Sections (hero, services, why, about, pricing, contact)
   7. Reveal & Animation System (@keyframes, IntersectionObserver)
   8. Premium Homepage Overrides
   9. About Page
   10. Pricing Page
   11. Footer
   12. Responsive Breakpoints
   13. Reduced Motion
   =================================================================== */

/* === 1. Design Tokens === */
:root {
  /* Core palette */
  --color-ink: #10243a;
  --color-ink-muted: #2a3f57;
  --color-bg: #f6f0e8;
  --color-surface: #fffdfa;
  --color-surface-alt: #f0e6d8;
  --color-line: #d4c8b8;
  --color-accent: #b68b49;
  --color-accent-dark: #8f6a34;
  --color-white: #ffffff;
  --warm-75: #f4efe7;

  /* Ekria brand tokens */
  --ekria-gold: #b58b52;
  --ekria-navy: #0f2a3d;
  --ekria-text: #1f2a37;
  --ekria-text-muted: #4b5563;
  --ekria-surface: #fbf6f0;
  --ekria-bg: #f3ece2;
  --ekria-border: #e7d9cb;

  /* Shadows */
  --shadow-soft: 0 14px 40px rgba(16, 36, 58, 0.08);
  --shadow-card: 0 10px 30px rgba(16, 36, 58, 0.1);

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 10px;

  /* Spacing */
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;

  /* Layout */
  --max-width: 1150px;
  --container-max: 1100px;
  --container-pad: 32px;

  /* Easing */
  --ease-premium: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-reveal: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: var(--color-ink);
  background:
    radial-gradient(circle at 85% 8%, rgba(182, 139, 73, 0.18), transparent 28%),
    radial-gradient(circle at 5% 90%, rgba(42, 63, 87, 0.14), transparent 30%),
    var(--color-bg);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Libre Baskerville", serif;
}

h1 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.05;
}

h2 {
  font-size: 36px;
  line-height: 1.15;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: -1000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  background: var(--color-ink);
  color: var(--color-white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 99;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(246, 240, 232, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197, 159, 74, 0.22);
  transition: background-color 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(16, 36, 58, 0.14);
}

.shell {
  width: min(100% - 2.25rem, var(--max-width));
  margin-inline: auto;
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  font-size: 0;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark::before {
  content: "";
  width: clamp(8.2rem, 16vw, 10.8rem);
  height: clamp(1.45rem, 2.6vw, 1.9rem);
  margin-right: 0;
  background: url("../../logo%20design/final/ekria-wordmark-dark.svg") center / contain no-repeat;
  flex-shrink: 0;
}

.brand-tag {
  display: none;
}

.brand--footer-mark .brand-mark::before {
  width: 2.3rem;
  height: 2.3rem;
  background: url("../../logo%20design/ekria-monogram-ek02-03-dark.svg") center / contain no-repeat;
}

.nav-toggle {
  display: none;
  grid-column: 3;
  justify-self: end;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-ink);
  font: inherit;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
}

.site-nav {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--color-ink-muted);
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  color: var(--color-ink);
  background: rgba(16, 36, 58, 0.09);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  padding: 0.15rem;
}

.language-switch a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  border-radius: var(--radius-sm);
  padding: 0.38rem 0.6rem;
}

.language-switch a[aria-current="true"] {
  background: var(--color-ink);
  color: var(--color-white);
}

main {
  display: block;
}

.section {
  padding-block: 72px;
}

.section.tight {
  padding-block: var(--space-6);
}

.section-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--color-accent-dark);
}

.page-title,
.section-title,
.hero-title,
.card-title,
.service-title,
.cta-title {
  color: var(--color-ink);
  margin: 0;
}

.page-title,
.hero-title {
  letter-spacing: 0.01em;
}

.section-title {
  margin-top: var(--space-2);
}

.lead,
.hero-copy,
.page-lead {
  color: var(--color-ink-muted);
  font-size: clamp(1.03rem, 1.8vw, 1.22rem);
  max-width: 67ch;
  margin-top: var(--space-3);
}

.hero {
  padding-top: var(--space-7);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-5);
  align-items: start;
}

.hero-panel,
.info-panel,
.card,
.service-card,
.price-card,
.detail-box,
.contact-panel,
.cta-band,
.copy-block,
.value-card,
.about-grid article {
  background: rgba(255, 253, 250, 0.9);
  border: 1px solid rgba(16, 36, 58, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  padding: clamp(1.6rem, 3vw, 2.6rem);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.hero-stats div {
  padding: 0.9rem;
  border-radius: var(--radius-md);
  background: var(--color-surface-alt);
}

.hero-stats dt {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-ink-muted);
}

.hero-stats dd {
  margin: 0.3rem 0 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: var(--space-4);
}

.btn {
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  padding: 0.75rem 1.15rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-accent);
  color: #221a0f;
  box-shadow: 0 10px 22px rgba(182, 139, 73, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #c69a53;
}

.btn-secondary {
  border: 1px solid rgba(16, 36, 58, 0.28);
  color: var(--color-ink);
  background: transparent;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(16, 36, 58, 0.07);
}

.btn-text {
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 600;
}

.btn-text:hover,
.btn-text:focus-visible {
  text-decoration: underline;
}

.info-panel {
  padding: clamp(1.2rem, 2vw, 1.8rem);
}

.info-panel h2 {
  margin: 0;
}

.info-panel p {
  margin: 0.75rem 0 0;
  color: var(--color-ink-muted);
}

.info-panel + .info-panel {
  margin-top: 0.95rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.card,
.service-card,
.price-card,
.value-card {
  padding: 1.35rem;
}

a.service-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

a.service-card:hover,
a.service-card:focus-visible {
  transform: translateY(-2px);
  border-color: #c6b299;
  box-shadow: 0 16px 28px rgba(20, 38, 59, 0.12);
}

.card-title,
.service-title {
}

.card p,
.service-card p,
.price-card p,
.value-card p {
  margin: 0.7rem 0 0;
  color: var(--color-ink-muted);
}

.card-actions,
.service-actions {
  margin-top: 1rem;
}

.list-clean {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.list-clean li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--color-ink);
}

.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--color-accent);
}

.cta-band {
  padding: clamp(1.4rem, 2.8vw, 2.2rem);
  background: linear-gradient(120deg, rgba(16, 36, 58, 0.94), rgba(42, 63, 87, 0.92));
  color: var(--color-white);
}

.cta-title {
  color: var(--color-white);
}

.cta-band p {
  margin-top: 0.6rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.cta-band .btn-primary {
  margin-top: 1rem;
}

.contact-panel {
  padding: clamp(1.3rem, 2.4vw, 2rem);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-3);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.85rem;
  background: var(--color-surface);
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: var(--color-accent);
}

.page-hero {
  padding-top: var(--space-6);
  padding-bottom: var(--space-5);
}

.page-hero .hero-panel {
  max-width: 860px;
}

.service-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-5);
}

.hero-media,
.media-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(16, 36, 58, 0.12);
  box-shadow: var(--shadow-soft);
  background: var(--color-surface);
}

.hero-media img,
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  min-height: 280px;
}

.hero-media.tall {
  min-height: 440px;
}

.media-card-caption {
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(16, 36, 58, 0.1);
  color: var(--color-ink-muted);
  font-size: 0.92rem;
}

.media-card + .info-panel {
  margin-top: 0.95rem;
}

.qr-card {
  margin: 1rem 0 0;
  border: 1px solid rgba(16, 36, 58, 0.12);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  padding: 0.8rem;
  max-width: 280px;
}

.qr-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.qr-card figcaption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-ink-muted);
}

.service-thumb {
  margin: -1.35rem -1.35rem 1rem;
  border-bottom: 1px solid rgba(16, 36, 58, 0.12);
  overflow: hidden;
  background: #0f2338;
}

.service-thumb img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  opacity: 0.96;
}

.page-media {
  margin-top: var(--space-4);
}

.page-media img {
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 36, 58, 0.12);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.detail-box {
  padding: 1.4rem;
}

.detail-box h2 {
  margin: 0;
}

.detail-box p {
  margin: 0.8rem 0 0;
  color: var(--color-ink-muted);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.price-card {
  position: relative;
}

.price-label {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  color: var(--color-ink-muted);
}

.price-value {
  margin: 0.2rem 0 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--color-ink);
}

.price-note {
  font-size: 0.92rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.about-grid article {
  padding: 1.4rem;
}

.copy-block {
  padding: clamp(1.3rem, 2.2vw, 1.9rem);
}

.copy-block p {
  margin: 0.85rem 0 0;
  color: var(--color-ink-muted);
}

.copy-block p:first-of-type {
  margin-top: 0.4rem;
}

.placeholder {
  font-style: italic;
  color: var(--color-ink-muted);
}

.site-footer {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  padding-bottom: var(--space-4);
  border-top: 1px solid rgba(16, 36, 58, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: var(--space-4);
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-links a,
.footer-contact a {
  color: var(--color-ink-muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--color-ink);
  text-decoration: underline;
}

.footer-meta {
  margin-top: var(--space-4);
  font-size: 0.9rem;
  color: var(--color-ink-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: transform, opacity;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* === Reveal delay utilities === */
.reveal.reveal-delay-1 { transition-delay: 0.1s; }
.reveal.reveal-delay-2 { transition-delay: 0.2s; }
.reveal.reveal-delay-3 { transition-delay: 0.35s; }
.reveal.reveal-delay-4 { transition-delay: 0.5s; }
.reveal.reveal-delay-5 { transition-delay: 0.65s; }
.reveal.reveal-delay-6 { transition-delay: 0.8s; }

/* === Reveal directional & scale variants === */
.reveal.reveal-scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s var(--ease-premium), transform 0.7s var(--ease-premium);
}
.reveal.reveal-scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

.reveal.reveal-from-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s var(--ease-premium), transform 0.65s var(--ease-premium);
}
.reveal.reveal-from-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal.reveal-from-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s var(--ease-premium), transform 0.65s var(--ease-premium);
}
.reveal.reveal-from-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal.reveal-scale-out {
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.7s var(--ease-premium), transform 0.7s var(--ease-premium);
}
.reveal.reveal-scale-out.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* === Premium Hero cinematic reveal — @keyframes === */

@keyframes ekria-rise {
  0%   { opacity: 0; transform: translateY(22px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes ekria-eyebrow-in {
  0%   { opacity: 0; letter-spacing: 0.32em; transform: translateY(8px); }
  100% { opacity: 1; letter-spacing: 0.2em;  transform: translateY(0); }
}

@keyframes ekria-logo-in {
  0%   { opacity: 0; transform: scale(0.88) rotate(-1.5deg); }
  60%  { opacity: 1; transform: scale(1.01) rotate(0.3deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes ekria-quote-reveal {
  0%   { opacity: 0; transform: scaleX(0); }
  100% { opacity: 0.85; transform: scaleX(1); }
}

@keyframes ekria-btn-in {
  0%   { opacity: 0; transform: translateY(12px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ekria-gold-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes ekria-line-grow {
  0%   { opacity: 0; transform: scaleX(0); }
  100% { opacity: 1; transform: scaleX(1); }
}

@keyframes hero-type-caret {
  0%, 49% { opacity: 0.42; }
  50%, 100% { opacity: 0; }
}

/* --- Hero children: hidden until parent reveals --- */
.premium-hero .premium-eyebrow,
.premium-hero .premium-title,
.premium-hero .premium-subtitle,
.premium-hero .premium-quote,
.premium-hero .hero-actions,
.premium-hero .premium-hero-logo {
  opacity: 0;
}

/* Fallback: ensure content is visible even if animations unsupported */
.premium-hero.is-visible .premium-eyebrow,
.premium-hero.is-visible .premium-title,
.premium-hero.is-visible .premium-subtitle,
.premium-hero.is-visible .premium-quote,
.premium-hero.is-visible .hero-actions,
.premium-hero.is-visible .premium-hero-logo {
  opacity: 1;
}

/* --- Eyebrow gradient (always present, hidden by opacity:0 until reveal) --- */
.premium-hero .premium-eyebrow {
  background: linear-gradient(90deg, #d0ae71 0%, #d0ae71 40%, #f5deb3 50%, #d0ae71 60%, #d0ae71 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Staggered entrance animations on reveal --- */
.premium-hero.is-visible .premium-eyebrow {
  animation:
    ekria-eyebrow-in 0.7s var(--ease-premium) 0.15s forwards,
    ekria-gold-shimmer 1.8s ease 0.9s 1;
}

.premium-hero.is-visible .premium-title {
  animation: ekria-rise 0.75s var(--ease-premium) 0.35s forwards;
}

.premium-hero.is-visible .premium-subtitle {
  animation: ekria-rise 0.7s var(--ease-premium) 0.55s forwards;
}

.premium-hero.is-visible .premium-quote {
  animation: ekria-quote-reveal 0.9s var(--ease-reveal) 0.75s forwards;
}

.premium-hero.is-visible .hero-actions {
  animation: ekria-btn-in 0.6s var(--ease-premium) 0.95s forwards;
}

.premium-hero.is-visible .premium-hero-logo {
  animation: ekria-logo-in 1s var(--ease-premium) 1.1s forwards;
}

/* --- Gold accent line below eyebrow --- */
.premium-hero .premium-eyebrow::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 0.65rem;
  background: linear-gradient(90deg, rgba(208, 174, 113, 0.7), rgba(208, 174, 113, 0.15));
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.premium-hero.is-visible .premium-eyebrow::after {
  animation: ekria-line-grow 0.5s ease 0.7s forwards;
}

/* Hero section static (no animation) */
.home-page .premium-hero.reveal,
.home-page .premium-hero.reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  will-change: auto !important;
}

.home-page .premium-hero,
.home-page .premium-hero .premium-eyebrow,
.home-page .premium-hero .premium-title,
.home-page .premium-hero .premium-subtitle,
.home-page .premium-hero .premium-quote,
.home-page .premium-hero .hero-actions,
.home-page .premium-hero .premium-hero-logo,
.home-page .premium-hero .premium-eyebrow::after {
  animation: none !important;
  transition: none !important;
}

.home-page .premium-hero .premium-eyebrow,
.home-page .premium-hero .premium-title,
.home-page .premium-hero .premium-subtitle,
.home-page .premium-hero .premium-quote,
.home-page .premium-hero .hero-actions,
.home-page .premium-hero .premium-hero-logo {
  opacity: 1 !important;
  transform: none !important;
}

.home-page .premium-hero .premium-eyebrow::after {
  opacity: 1 !important;
  transform: none !important;
}

/* === Sitewide @keyframes === */

@keyframes ekria-card-in {
  0%   { opacity: 0; transform: translateY(18px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ekria-media-in {
  0%   { opacity: 0; transform: scale(0.94); }
  60%  { opacity: 1; transform: scale(1.005); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes ekria-panel-in {
  0%   { opacity: 0; transform: translateY(24px); box-shadow: none; }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes ekria-fade-in {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes ekria-slide-from-right {
  0%   { opacity: 0; transform: translateX(32px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes ekria-slide-from-left {
  0%   { opacity: 0; transform: translateX(-32px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes ekria-stagger-rise {
  0%   { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* === Page Hero staggered reveal (non-homepage) === */

.page-hero .hero-panel,
.page-hero .hero-media {
  opacity: 0;
}

.page-hero.is-visible .hero-panel,
.page-hero.reveal--visible .hero-panel,
.page-hero .hero-panel.is-visible {
  animation: ekria-rise 0.7s var(--ease-premium)0.1s forwards;
}

.page-hero.is-visible .hero-media,
.page-hero.reveal--visible .hero-media,
.page-hero .hero-media.is-visible {
  animation: ekria-media-in 0.85s var(--ease-premium)0.3s forwards;
}

/* Stagger hero-panel children */
.page-hero .hero-panel .section-label,
.page-hero .hero-panel .page-title,
.page-hero .hero-panel .hero-copy,
.page-hero .hero-panel .page-lead,
.page-hero .hero-panel .btn {
  opacity: 0;
}

.page-hero.is-visible .hero-panel .section-label,
.page-hero.reveal--visible .hero-panel .section-label,
.page-hero .hero-panel.is-visible .section-label {
  animation: ekria-eyebrow-in 0.6s var(--ease-premium)0.15s forwards;
}

.page-hero.is-visible .hero-panel .page-title,
.page-hero.reveal--visible .hero-panel .page-title,
.page-hero .hero-panel.is-visible .page-title {
  animation: ekria-rise 0.7s var(--ease-premium)0.25s forwards;
}

.page-hero.is-visible .hero-panel .hero-copy,
.page-hero.is-visible .hero-panel .page-lead,
.page-hero.reveal--visible .hero-panel .hero-copy,
.page-hero.reveal--visible .hero-panel .page-lead,
.page-hero .hero-panel.is-visible .hero-copy,
.page-hero .hero-panel.is-visible .page-lead {
  animation: ekria-rise 0.65s var(--ease-premium)0.4s forwards;
}

.page-hero.is-visible .hero-panel .btn,
.page-hero.reveal--visible .hero-panel .btn,
.page-hero .hero-panel.is-visible .btn {
  animation: ekria-btn-in 0.55s var(--ease-premium)0.55s forwards;
}

/* === Card entrance animations === */

/* Service cards */
.service-card.reveal {
  transition: none;
}
.service-card.reveal.is-visible {
  animation: ekria-card-in 0.65s var(--ease-premium)forwards;
  opacity: 1;
  transform: none;
}
.service-card.reveal.is-visible:nth-child(2) {
  animation-delay: 0.12s;
}

/* Premium product cards */
.premium-product-strip.is-visible .premium-product,
.services-grid.is-visible .premium-product {
  opacity: 0;
  animation: ekria-card-in 0.6s var(--ease-premium)forwards;
}
.premium-product-strip.is-visible .premium-product:nth-child(2),
.services-grid.is-visible .premium-product:nth-child(2) {
  animation-delay: 0.14s;
}

/* Dark panels (why card, premium-panel.dark) */
.premium-panel.dark.reveal {
  transition: none;
}
.premium-panel.dark.reveal.is-visible {
  animation: ekria-panel-in 0.8s var(--ease-premium)0.08s forwards;
  opacity: 1;
  transform: none;
}

/* Why card children stagger */
.why-card.is-visible .why-pill,
.why-card.is-visible .why-title,
.why-card.is-visible .why-list,
.why-card.is-visible .why-cta {
  animation: ekria-stagger-rise 0.55s var(--ease-premium)forwards;
}
.why-card .why-pill,
.why-card .why-title,
.why-card .why-list,
.why-card .why-cta {
  opacity: 0;
}
.why-card.is-visible .why-pill  { animation-delay: 0.15s; }
.why-card.is-visible .why-title { animation-delay: 0.28s; }
.why-card.is-visible .why-list  { animation-delay: 0.42s; }
.why-card.is-visible .why-cta   { animation-delay: 0.58s; }

/* Why list items stagger */
.why-card.is-visible .precision-step {
  opacity: 0;
  animation: ekria-stagger-rise 0.5s var(--ease-premium)forwards;
}
.why-card.is-visible .precision-step:nth-child(1) { animation-delay: 0.44s; }
.why-card.is-visible .precision-step:nth-child(2) { animation-delay: 0.54s; }
.why-card.is-visible .precision-step:nth-child(3) { animation-delay: 0.64s; }

/* Feature cards (premium-dark-section) */
.premium-dark-section.reveal {
  transition: none;
}
.premium-dark-section.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.premium-dark-section .premium-card,
.premium-dark-section .feature-card {
  opacity: 0;
}
.premium-dark-section.is-visible .premium-card,
.premium-dark-section.is-visible .feature-card {
  animation: ekria-panel-in 0.8s var(--ease-premium)0.1s forwards;
}

/* Feature card content stagger */
.premium-dark-section.is-visible .premium-card__kicker,
.premium-dark-section.is-visible .feature-card .premium-card__kicker {
  opacity: 0;
  animation: ekria-eyebrow-in 0.55s var(--ease-premium)0.2s forwards;
}

.premium-dark-section.is-visible .premium-card__title {
  opacity: 0;
  animation: ekria-stagger-rise 0.6s var(--ease-premium)0.32s forwards;
}

.premium-dark-section.is-visible .premium-card__text {
  opacity: 0;
  animation: ekria-stagger-rise 0.55s var(--ease-premium)0.44s forwards;
}

.premium-dark-section.is-visible .premium-card__media {
  opacity: 0;
  animation: ekria-media-in 0.85s var(--ease-premium)0.25s forwards;
}

/* Process steps stagger inside feature cards */
.premium-dark-section.is-visible .process-step {
  opacity: 0;
  animation: ekria-stagger-rise 0.5s var(--ease-premium)forwards;
}
.premium-dark-section.is-visible .process-step:nth-child(1) { animation-delay: 0.5s; }
.premium-dark-section.is-visible .process-step:nth-child(2) { animation-delay: 0.62s; }
.premium-dark-section.is-visible .process-step:nth-child(3) { animation-delay: 0.74s; }

/* Button inside feature cards */
.premium-dark-section.is-visible .btn-premium,
.premium-dark-section.is-visible .premium-card__content .btn {
  opacity: 0;
  animation: ekria-btn-in 0.5s var(--ease-premium)0.6s forwards;
}

/* CTA band */
.cta-band.reveal {
  transition: none;
}
.cta-band.reveal.is-visible {
  animation: ekria-panel-in 0.75s var(--ease-premium)0.08s forwards;
  opacity: 1;
  transform: none;
}

/* CTA band children stagger */
.cta-band .cta-title,
.cta-band > p,
.cta-band > .btn {
  opacity: 0;
}
.cta-band.is-visible .cta-title {
  animation: ekria-stagger-rise 0.55s var(--ease-premium)0.2s forwards;
}
.cta-band.is-visible > p {
  animation: ekria-stagger-rise 0.5s var(--ease-premium)0.34s forwards;
}
.cta-band.is-visible > .btn {
  animation: ekria-btn-in 0.5s var(--ease-premium)0.48s forwards;
}

/* About teaser / premium-about-plain */
.premium-about-plain.reveal {
  transition: none;
}
.premium-about-plain.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.premium-about-plain .pill,
.premium-about-plain .section-label,
.premium-about-plain .section-title,
.premium-about-plain .lead,
.premium-about-plain .text-link {
  opacity: 0;
}
.premium-about-plain.is-visible .pill,
.premium-about-plain.is-visible .section-label {
  animation: ekria-eyebrow-in 0.55s var(--ease-premium)0.1s forwards;
}
.premium-about-plain.is-visible .section-title {
  animation: ekria-rise 0.65s var(--ease-premium)0.22s forwards;
}
.premium-about-plain.is-visible .lead {
  animation: ekria-stagger-rise 0.6s var(--ease-premium)0.36s forwards;
}
.premium-about-plain.is-visible .lead + .lead {
  animation-delay: 0.48s;
}
.premium-about-plain.is-visible .text-link {
  animation: ekria-btn-in 0.5s var(--ease-premium)0.55s forwards;
}

/* Copy block */
.copy-block.reveal {
  transition: none;
}
.copy-block.reveal.is-visible {
  animation: ekria-card-in 0.65s var(--ease-premium)0.08s forwards;
  opacity: 1;
  transform: none;
}

/* Contact panel */
.contact-panel.reveal {
  transition: none;
}
.contact-panel.reveal.is-visible {
  animation: ekria-card-in 0.65s var(--ease-premium)0.08s forwards;
  opacity: 1;
  transform: none;
}

/* Detail box (service pages) */
.detail-box.reveal {
  transition: none;
}
.detail-box.reveal.is-visible {
  animation: ekria-slide-from-right 0.65s var(--ease-premium)0.15s forwards;
  opacity: 1;
  transform: none;
}

/* About trust cards */
.about-trust-card.reveal {
  transition: none;
}
.about-trust-card.reveal.is-visible {
  animation: ekria-card-in 0.6s var(--ease-premium)forwards;
  opacity: 1;
  transform: none;
}

/* Compare cards */
.compare-card {
  opacity: 0;
}
.premium-compare.is-visible .compare-card {
  animation: ekria-card-in 0.55s var(--ease-premium)forwards;
}
.premium-compare.is-visible .compare-card:nth-child(1) { animation-delay: 0.1s; }
.premium-compare.is-visible .compare-card:nth-child(2) { animation-delay: 0.22s; }

/* Price cards */
.price-card.reveal {
  transition: none;
}
.price-card.reveal.is-visible {
  animation: ekria-card-in 0.6s var(--ease-premium)forwards;
  opacity: 1;
  transform: none;
}

/* Pricing custom panel */
.pricing-custom-panel.reveal {
  transition: none;
}
.pricing-custom-panel.reveal.is-visible {
  animation: ekria-panel-in 0.7s var(--ease-premium)0.08s forwards;
  opacity: 1;
  transform: none;
}

/* Pricing hero inner */
.pricing-hero-inner.reveal {
  transition: none;
}
.pricing-hero-inner.reveal.is-visible {
  animation: ekria-rise 0.7s var(--ease-premium)0.08s forwards;
  opacity: 1;
  transform: none;
}

/* About company copy */
.about-company-copy.reveal {
  transition: none;
}
.about-company-copy.reveal.is-visible {
  animation: ekria-rise 0.7s var(--ease-premium)0.1s forwards;
  opacity: 1;
  transform: none;
}

/* About personal hero children */
.about-personal-copy.reveal {
  transition: none;
}
.about-personal-copy.reveal.is-visible {
  animation: ekria-rise 0.7s var(--ease-premium)0.1s forwards;
  opacity: 1;
  transform: none;
}
.about-personal-media.reveal {
  transition: none;
}
.about-personal-media.reveal.is-visible {
  animation: ekria-media-in 0.85s var(--ease-premium)0.25s forwards;
  opacity: 1;
  transform: none;
}

/* Collab section children */
.collab-surface.reveal {
  transition: none;
}
.collab-surface.reveal.is-visible {
  animation: ekria-card-in 0.7s var(--ease-premium)0.1s forwards;
  opacity: 1;
  transform: none;
}

/* Collab highlight */
.collab-highlight.reveal {
  transition: none;
}
.collab-highlight.reveal.is-visible {
  animation: ekria-panel-in 0.65s var(--ease-premium)0.1s forwards;
  opacity: 1;
  transform: none;
}

/* Collab quote */
.collab-quote.reveal {
  transition: none;
}
.collab-quote.reveal.is-visible {
  animation: ekria-slide-from-right 0.7s var(--ease-premium)0.1s forwards;
  opacity: 1;
  transform: none;
}

/* Collab signature */
.collab-signature.reveal {
  transition: none;
}
.collab-signature.reveal.is-visible {
  animation: ekria-fade-in 0.8s ease 0.1s forwards;
  opacity: 1;
}

/* Profile service value items */
.profile-value-item.reveal {
  transition: none;
}
.profile-value-item.reveal.is-visible {
  animation: ekria-stagger-rise 0.55s var(--ease-premium)forwards;
  opacity: 1;
  transform: none;
}

/* Profile service steps */
.profile-step.reveal {
  transition: none;
}
.profile-step.reveal.is-visible {
  animation: ekria-stagger-rise 0.55s var(--ease-premium)forwards;
  opacity: 1;
  transform: none;
}

/* Profile included media */
.profile-included-media.reveal {
  transition: none;
}
.profile-included-media.reveal.is-visible {
  animation: ekria-media-in 0.8s var(--ease-premium)0.15s forwards;
  opacity: 1;
  transform: none;
}

/* Profile consultation panel */
.profile-consultation-panel.reveal {
  transition: none;
}
.profile-consultation-panel.reveal.is-visible {
  animation: ekria-panel-in 0.7s var(--ease-premium)0.08s forwards;
  opacity: 1;
  transform: none;
}

/* Section label + title reveal (service detail pages) */
.section-label.reveal {
  transition: none;
}
.section-label.reveal.is-visible {
  animation: ekria-eyebrow-in 0.55s var(--ease-premium)0.05s forwards;
  opacity: 1;
  transform: none;
}

.section-title.reveal {
  transition: none;
}
.section-title.reveal.is-visible {
  animation: ekria-rise 0.65s var(--ease-premium)0.12s forwards;
  opacity: 1;
  transform: none;
}

/* Footer reveal */
.site-footer {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.site-footer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .service-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .header-inner {
    display: flex;
    flex-wrap: wrap;
    padding-block: 0.7rem;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-bottom: 0;
    transition: max-height 0.35s var(--ease-premium),
                opacity 0.25s ease,
                padding-bottom 0.35s ease;
  }

  .site-nav.is-open {
    max-height: 400px;
    opacity: 1;
    padding-bottom: 0.8rem;
  }

  .nav-list {
    width: 100%;
  }

  .nav-link {
    display: block;
    border-radius: var(--radius-sm);
  }

  .language-switch {
    align-self: flex-start;
  }

  .about-grid,
  .grid-2,
  .grid-3,
  .price-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Ensure all animated elements are visible immediately */
  .reveal,
  .reveal.reveal-scale-in,
  .reveal.reveal-from-right,
  .reveal.reveal-from-left,
  .reveal.reveal-scale-out,
  .premium-hero .premium-eyebrow,
  .premium-hero .premium-title,
  .premium-hero .premium-subtitle,
  .premium-hero .premium-quote,
  .premium-hero .hero-actions,
  .premium-hero .premium-hero-logo,
  .page-hero .hero-panel,
  .page-hero .hero-media,
  .page-hero .hero-panel .section-label,
  .page-hero .hero-panel .page-title,
  .page-hero .hero-panel .hero-copy,
  .page-hero .hero-panel .page-lead,
  .page-hero .hero-panel .btn,
  .why-card .why-pill,
  .why-card .why-title,
  .why-card .why-list,
  .why-card .why-cta,
  .why-card .precision-step,
  .premium-dark-section .premium-card,
  .premium-dark-section .feature-card,
  .premium-dark-section .premium-card__kicker,
  .premium-dark-section .premium-card__title,
  .premium-dark-section .premium-card__text,
  .premium-dark-section .premium-card__media,
  .premium-dark-section .process-step,
  .premium-dark-section .btn-premium,
  .premium-about-plain .pill,
  .premium-about-plain .section-label,
  .premium-about-plain .section-title,
  .premium-about-plain .lead,
  .premium-about-plain .text-link,
  .cta-band .cta-title,
  .cta-band > p,
  .cta-band > .btn,
  .site-footer {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    will-change: auto !important;
    -webkit-text-fill-color: unset !important;
  }

  /* Mobile menu: visible immediately, no slide animation */
  .site-nav.is-open {
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

/* Premium home layout */
.home-page {
  background: #f3ede4;
  color: #14263b;
}

.home-page .site-header {
  position: fixed;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(197, 159, 74, 0.22);
  backdrop-filter: none;
  box-shadow: none;
}

.home-page .site-header.is-scrolled {
  background: rgba(243, 237, 228, 0.94);
  border-bottom: 1px solid rgba(197, 159, 74, 0.22);
  backdrop-filter: blur(2px);
  box-shadow: 0 1px 6px rgba(20, 38, 59, 0.06);
}

.home-page .site-header.is-scrolled .brand {
  position: static;
  transform: none;
}

.home-page .site-header.is-scrolled .header-inner {
  position: static;
}

.home-page .header-inner {
  min-height: 78px;
}


.home-page .language-switch {
  background: #f8f1e7;
  border-color: rgba(20, 38, 59, 0.2);
}

.home-page .language-switch a {
  color: #22364b;
}

.home-page .language-switch a[aria-current="true"] {
  background: #1f3348;
  color: #ffffff;
}

.home-page .site-header:not(.is-scrolled) .language-switch {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.35);
}

.home-page .site-header:not(.is-scrolled) .language-switch a {
  color: #f7efe3;
}

.home-page .site-header:not(.is-scrolled) .language-switch a[aria-current="true"] {
  background: rgba(211, 171, 97, 0.28);
  color: #ffffff;
}

.home-page .site-header:not(.is-scrolled) .brand {
  visibility: hidden;
  pointer-events: none;
}

.premium-hero {
  margin-top: 0;
  padding-top: clamp(7rem, 13vw, 9rem);
  padding-bottom: 2.6rem;
  background: #000000;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.premium-hero::after {
  content: none;
}

.premium-hero.shell {
  width: 100%;
  margin-inline: 0;
}

.premium-hero .premium-hero-grid {
  width: min(100% - 2.25rem, var(--max-width));
  margin-inline: auto;
}

.premium-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  align-items: center;
  gap: 1.2rem;
}

.premium-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #d0ae71;
}

.premium-title {
  margin: 0.4rem 0 0;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.1;
  font-weight: 400;
  max-width: 24ch;
  letter-spacing: -0.01em;
  color: #f7efe3;
}

.premium-subtitle {
  margin: 0.92rem 0 0;
  max-width: 64ch;
  font-size: clamp(1rem, 1.85vw, 1.22rem);
  color: #d6cabf;
}

.premium-quote {
  margin: 1.35rem 0 1.15rem;
  opacity: 0.85;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.82rem, 1.25vw, 0.95rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.45;
  letter-spacing: 0;
  text-shadow: none;
  transform-origin: left;
}

.premium-quote .quote-white {
  color: #ffffff;
}

.premium-quote .quote-gold {
  color: #d3ab61;
}

.premium-hero-logo {
  margin: 0;
  justify-self: end;
  width: clamp(180px, 30vw, 290px);
}

.premium-hero-logo img {
  width: 100%;
  height: auto;
}

.home-page .hero-actions {
  justify-content: flex-start;
  margin-top: 1.25rem;
}

.premium-hero .btn-primary {
  background: #d0ae71;
  border-color: #d0ae71;
  color: #1f1910;
  box-shadow: 0 12px 26px rgba(208, 174, 113, 0.26);
}

.premium-hero .btn-primary:hover,
.premium-hero .btn-primary:focus-visible {
  background: #debd83;
  box-shadow: 0 12px 26px rgba(208, 174, 113, 0.26), 0 0 0 1px rgba(211, 171, 97, 0.38);
}

.premium-hero .btn-secondary {
  border-color: rgba(243, 231, 214, 0.46);
  background: rgba(255, 255, 255, 0.03);
  color: #efe3d2;
}

.premium-hero .btn-secondary:hover,
.premium-hero .btn-secondary:focus-visible {
  background: rgba(208, 174, 113, 0.14);
  border-color: rgba(211, 171, 97, 0.52);
  color: #f6ecde;
  box-shadow: 0 12px 26px rgba(208, 174, 113, 0.18), 0 0 0 1px rgba(211, 171, 97, 0.34);
}

.home-page .btn {
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.95rem;
  font-size: 0.92rem;
}

.home-page .btn-primary {
  background: #13283f;
  border-color: #13283f;
  color: #fff;
  box-shadow: none;
}

.home-page .btn-primary:hover,
.home-page .btn-primary:focus-visible {
  background: #1a3451;
}

.home-page .btn-secondary {
  border-color: #cbbba7;
  background: #f9f4ed;
  color: #14263b;
}

.premium-product-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.premium-product {
  background: #fffaf3;
  border: 0.9px solid rgba(182, 139, 73, 0.22);
  border-radius: 12px;
  overflow: hidden;
  padding: 1.45rem 1.5rem 1.4rem;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 7px 18px rgba(20, 38, 59, 0.055), 0 1px 2px rgba(20, 38, 59, 0.035);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.premium-product:hover,
.premium-product:focus-visible {
  transform: translateY(-2.5px);
  background: #fffbf4;
  border-color: rgba(182, 139, 73, 0.42);
  box-shadow: 0 13px 26px rgba(20, 38, 59, 0.1), 0 2px 5px rgba(20, 38, 59, 0.05);
}

.premium-product h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.32rem, 2vw, 1.58rem);
  line-height: 1.22;
}

.premium-product-value {
  margin: 0;
  color: #3c5169;
  font-size: 0.93rem;
  line-height: 1.72;
}

.premium-product-benefits {
  margin-top: 1.02rem;
  display: grid;
  gap: 0.38rem;
  font-size: 0.8rem;
  color: #6a7c90;
  letter-spacing: 0.01em;
}

.premium-product-benefits span {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.45;
}

.premium-product-benefits span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(182, 139, 73, 0.68);
  flex-shrink: 0;
  margin-top: 0.58em;
}

.premium-product-micro {
  display: inline-block;
  margin-top: 1.12rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: #5d7187;
  text-decoration: none;
  transition: color 0.22s ease;
}

.premium-product:hover .premium-product-micro,
.premium-product:focus-visible .premium-product-micro {
  color: #364d66;
}

.premium-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

.premium-about-plain {
  margin-top: 3.4rem;
  margin-bottom: 3.2rem;
}

.premium-about-plain .lead {
  margin-top: 0.9rem;
  max-width: 67ch;
}

.premium-about-plain .btn-text {
  display: inline-block;
  margin-top: 0.5rem;
}

.premium-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #d9cebf;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}

.premium-panel.light .panel-copy {
  padding: 1.9rem 1.9rem 1.5rem;
}

.premium-panel.light .panel-media {
  margin: 0;
}

.premium-panel.light .panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-panel.dark {
  grid-template-columns: 1fr;
  background: linear-gradient(145deg, #131c27 0%, #1a2737 55%, #182f47 100%);
  border-color: #24374d;
  color: #f3ece2;
}

.premium-panel.dark .panel-copy {
  padding: 1.9rem;
}

.premium-panel.dark .section-label,
.premium-panel.dark .section-title,
.premium-panel.dark .lead {
  color: #f3ece2;
}

.premium-panel.dark .list-clean li {
  color: #ece0d1;
}

.premium-panel.dark .btn-primary {
  margin-top: 0.35rem;
}

.premium-dark-section {
  position: relative;
  margin-top: 2.6rem;
  margin-bottom: 2.2rem;
  color: #f4ede3;
}

.premium-dark-section::before,
.premium-dark-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}

.premium-dark-section::before {
  top: -46px;
  height: 46px;
  background: linear-gradient(to bottom, #f3ede4 0%, rgba(243, 237, 228, 0) 100%);
}

.premium-dark-section::after {
  bottom: -46px;
  height: 46px;
  background: linear-gradient(to top, #f3ede4 0%, rgba(243, 237, 228, 0) 100%);
}

.premium-dark-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1.5rem;
  align-items: center;
  background:
    radial-gradient(circle at 14% 14%, rgba(182, 139, 73, 0.18), rgba(182, 139, 73, 0) 38%),
    linear-gradient(135deg, #121c28 0%, #1a2737 58%, #243342 100%);
  border: 1px solid rgba(188, 156, 108, 0.35);
  border-radius: 14px;
  padding: clamp(1.4rem, 2.4vw, 2rem);
  box-shadow: 0 22px 40px rgba(12, 20, 31, 0.24);
}

.premium-dark-inner.reverse {
  grid-template-columns: 0.88fr 1.12fr;
}

.premium-dark-section.alt .premium-dark-inner {
  background:
    radial-gradient(circle at 86% 12%, rgba(182, 139, 73, 0.16), rgba(182, 139, 73, 0) 36%),
    linear-gradient(145deg, #242221 0%, #2f2b29 52%, #20303f 100%);
}

.premium-dark-label {
  margin: 0;
  color: #d0ae71;
  letter-spacing: 0.11em;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
}

.premium-dark-copy h2 {
  margin: 0.55rem 0 0;
  color: #f8f0e2;
}

.premium-dark-copy p {
  margin: 0.9rem 0 0;
  color: rgba(248, 240, 228, 0.9);
}

.premium-dark-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.premium-dark-list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(248, 240, 228, 0.92);
}

.premium-dark-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #d0ae71;
}

.premium-dark-media {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(182, 139, 73, 0.35);
}

.premium-dark-media img {
  width: 100%;
  height: min(420px, 45vw);
  min-height: 280px;
  object-fit: cover;
}

.btn-gold {
  margin-top: 1.2rem;
  background: #d0ae71;
  color: #1e1912;
  border: 1px solid #d0ae71;
  box-shadow: 0 10px 24px rgba(208, 174, 113, 0.28);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: #dfbe85;
}

.premium-compare {
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.premium-services-intro {
  margin-top: 3.1rem;
  margin-bottom: 2.7rem;
}

.premium-services-intro .section-title {
  margin-top: 0.4rem;
}

.compare-table {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.8rem;
}

.compare-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compare-card {
  border: 1px solid #d9cebf;
  border-radius: var(--radius-md);
  background: #fff;
  padding: 1rem;
}

.compare-card h3 {
  margin: 0;
}

.compare-card p {
  margin: 0.35rem 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.home-page .cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, #111820 0%, #1a2330 60%, #182f47 100%);
}

.home-page .site-footer.footer-premium {
  position: relative;
  margin-top: 2rem;
  padding-top: clamp(2.3rem, 3.7vw, 3rem);
  padding-bottom: clamp(1.45rem, 2.8vw, 2rem);
  border-top: 1px solid rgba(176, 141, 87, 0.22);
  background:
    radial-gradient(120% 90% at 10% -20%, rgba(176, 141, 87, 0.08), rgba(176, 141, 87, 0) 58%),
    linear-gradient(180deg, #f4eee5 0%, #f2ebdf 100%);
}

.home-page .site-footer.footer-premium::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 56px));
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(176, 141, 87, 0) 0%,
    rgba(176, 141, 87, 0.22) 18%,
    rgba(176, 141, 87, 0.22) 82%,
    rgba(176, 141, 87, 0) 100%
  );
  pointer-events: none;
}

.home-page .site-footer.footer-premium .footer-grid--premium {
  align-items: start;
  grid-template-columns: 1.22fr 0.86fr 0.92fr;
  gap: clamp(1.45rem, 2.7vw, 2.5rem);
}

.home-page .site-footer.footer-premium .footer-col {
  min-width: 0;
}

.home-page .site-footer.footer-premium .section-label {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(176, 141, 87, 0.94);
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-page .site-footer.footer-premium .footer-payoff {
  margin: 0.72rem 0 0;
  color: #1f3244;
  font-weight: 600;
}

.home-page .site-footer.footer-premium .footer-copy {
  margin: 0.7rem 0 0;
  max-width: 46ch;
  color: #465764;
  line-height: 1.7;
}

.home-page .site-footer.footer-premium .footer-reassurance {
  margin: 0.82rem 0 0;
  color: rgba(127, 95, 47, 0.9);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-page .site-footer.footer-premium .footer-col-intro {
  margin: 0.58rem 0 0;
  color: rgba(79, 95, 109, 0.94);
  font-size: 0.9rem;
  line-height: 1.55;
}

.home-page .site-footer.footer-premium .footer-links,
.home-page .site-footer.footer-premium .footer-contact {
  margin-top: 0.62rem;
  gap: 0;
}

.home-page .site-footer.footer-premium .footer-links li,
.home-page .site-footer.footer-premium .footer-contact li {
  margin: 0;
  padding: 0.44rem 0;
}

.home-page .site-footer.footer-premium .footer-links li + li,
.home-page .site-footer.footer-premium .footer-contact li + li {
  border-top: 1px solid rgba(176, 141, 87, 0.15);
}

.home-page .site-footer.footer-premium .footer-links a,
.home-page .site-footer.footer-premium .footer-contact a {
  color: #465764;
  text-decoration: none;
  transition: color 180ms ease;
}

.home-page .site-footer.footer-premium .footer-links a:hover,
.home-page .site-footer.footer-premium .footer-links a:focus-visible,
.home-page .site-footer.footer-premium .footer-contact a:hover,
.home-page .site-footer.footer-premium .footer-contact a:focus-visible {
  color: #1e3448;
  text-decoration: none;
}

.home-page .site-footer.footer-premium .footer-meta {
  margin-top: clamp(1.35rem, 2.3vw, 1.8rem);
  padding-top: 0.96rem;
  border-top: 1px solid rgba(176, 141, 87, 0.2);
  color: #5f707d;
  font-size: 0.86rem;
}

@media (max-width: 1020px) {
  .premium-hero-grid,
  .premium-panel,
  .premium-dark-inner,
  .premium-dark-inner.reverse {
    grid-template-columns: 1fr;
  }

  .premium-hero {
    text-align: center;
  }

  .premium-hero-logo {
    justify-self: center;
    width: clamp(170px, 36vw, 250px);
  }

  .home-page .hero-actions {
    justify-content: center;
  }

  .premium-panel.light .panel-media {
    min-height: 220px;
  }

  .premium-dark-copy {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .premium-product-strip,
  .compare-two {
    grid-template-columns: 1fr;
  }

  .premium-hero {
    margin-top: 0;
    padding-top: 6.6rem;
  }

  .premium-dark-media img {
    height: 260px; 
  }
}

/* (Compatibility tokens merged into main :root) */

.container {
  width: min(var(--container-max), calc(100% - (var(--container-pad) * 2)));
  margin-inline: auto;
}

/* Shared inline link style used by "Se upplägg" + "Läs mer ..." */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  width: fit-content;
  padding: 0 0 6px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ekria-text-muted);
  text-decoration: none;
  transition: color 220ms ease;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgba(176, 141, 87, 0.9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.text-link .arrow {
  display: inline-block;
  transition: transform 220ms ease;
}

.premium-product:hover .text-link,
.premium-product:focus-visible .text-link,
.text-link:hover,
.text-link:focus-visible {
  color: var(--ekria-navy);
}

.premium-product:hover .text-link::after,
.premium-product:focus-visible .text-link::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.premium-product:hover .text-link .arrow,
.premium-product:focus-visible .text-link .arrow,
.text-link:hover .arrow,
.text-link:focus-visible .arrow {
  transform: translateX(3px);
}

.text-link:focus-visible {
  outline: 2px solid rgba(176, 141, 87, 0.34);
  outline-offset: 3px;
  border-radius: 8px;
}

.home-page .premium-product-micro.text-link {
  margin-top: 1.28rem;
  font-weight: 500;
}

/* About teaser fixes */
.about-teaser-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.about-teaser {
  max-width: 760px;
}

.about-teaser h2,
.about-teaser h1 {
  font-size: clamp(44px, 5vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 14px 0 18px;
}

.about-teaser .pill,
.about-teaser .section-pill {
  display: inline-block;
  margin-bottom: 12px;
}

.pill,
.why-pill,
.about-company-intro .section-label,
.about-personal-copy .section-label,
.about-trust-card > .section-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ekria-gold);
  background: var(--ekria-surface);
  border: 1px solid var(--ekria-border);
  border-radius: 999px;
  padding: 0.2rem 0.58rem;
}

/* Reusable premium dark cards (process + next-step sections) */
.premium-card {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 44px;
  border-radius: 22px;
  background:
    radial-gradient(120% 140% at 30% 0%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 45%),
    linear-gradient(135deg, #0f2a36 0%, #0b2230 100%);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(179, 138, 74, 0.18);
}

.premium-card__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
}

.premium-card__grid--reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.premium-card__kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  opacity: 0.9;
}

.premium-card__title {
  margin: 0 0 14px;
  color: #f5f1ea;
}

.premium-card__text {
  margin: 0 0 18px;
  color: rgba(245, 241, 234, 0.86);
  line-height: 1.65;
}

.premium-card__media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-card__media img {
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(10, 18, 24, 0.85);
  color: #ffffff;
  border: 1px solid rgba(179, 138, 74, 0.45);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  text-decoration: none;
  font-weight: 600;
}

.btn-premium:hover,
.btn-premium:focus-visible {
  transform: translateY(-2px);
  background: rgba(14, 26, 34, 0.92);
  border-color: rgba(179, 138, 74, 0.7);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26), 0 0 22px rgba(179, 138, 74, 0.18);
  color: #ffffff;
}

/* Feature card sizing/refinement */
.feature-card {
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
}

.feature-card__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: stretch;
}

.feature-card,
.feature-card__inner {
  height: auto !important;
  min-height: 0 !important;
}

.feature-card__content {
  padding: 48px 56px;
}

.feature-card__media {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__media img {
  width: 100%;
  max-height: 520px;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
}

/* Process section list (restored desired state) */
.process-steps {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  column-gap: 18px;
  align-items: start;
  position: relative;
  padding-bottom: 12px;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 70px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(201, 164, 98, 0.18);
}

.process-step__number {
  font-size: 28px;
  font-weight: 600;
  color: #c9a462;
  line-height: 1;
  text-align: left;
  letter-spacing: 0.5px;
  opacity: 0.95;
}

.process-step__text {
  margin: 0;
  margin-top: 2px;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(245, 241, 234, 0.9);
  opacity: 0.92;
}

@media (max-width: 980px) {
  .section {
    padding-block: 56px;
  }

  .premium-card {
    padding: 28px;
  }

  .premium-card__grid,
  .premium-card__grid--reverse,
  .feature-card__inner {
    grid-template-columns: 1fr;
  }

  .feature-card__content {
    padding: 32px 24px;
  }

  .feature-card__media {
    padding: 20px 24px 28px;
  }

  .feature-card__media img {
    max-height: 420px;
  }

  .process-step {
    grid-template-columns: 48px 1fr;
  }

  .process-step__number {
    font-size: 30px;
  }

  .process-step__text {
    font-size: 16px;
  }

  /* Tighter stagger delays on tablet for all page-hero children */
  .page-hero.is-visible .hero-panel .section-label,
  .page-hero .hero-panel.is-visible .section-label { animation-delay: 0.1s; }
  .page-hero.is-visible .hero-panel .page-title,
  .page-hero .hero-panel.is-visible .page-title { animation-delay: 0.18s; }
  .page-hero.is-visible .hero-panel .hero-copy,
  .page-hero.is-visible .hero-panel .page-lead,
  .page-hero .hero-panel.is-visible .hero-copy,
  .page-hero .hero-panel.is-visible .page-lead { animation-delay: 0.28s; }
  .page-hero.is-visible .hero-panel .btn,
  .page-hero .hero-panel.is-visible .btn { animation-delay: 0.38s; }

  /* Reduce translateY on tablet for subtlety */
  .reveal.reveal-from-right,
  .reveal.reveal-from-left { transition-duration: 0.55s; }
  .reveal.reveal-from-right { transform: translateX(20px); }
  .reveal.reveal-from-left { transform: translateX(-20px); }

  /* Tighter card stagger */
  .premium-dark-section.is-visible .process-step:nth-child(1) { animation-delay: 0.35s; }
  .premium-dark-section.is-visible .process-step:nth-child(2) { animation-delay: 0.45s; }
  .premium-dark-section.is-visible .process-step:nth-child(3) { animation-delay: 0.55s; }

  .why-card.is-visible .why-pill  { animation-delay: 0.1s; }
  .why-card.is-visible .why-title { animation-delay: 0.2s; }
  .why-card.is-visible .why-list  { animation-delay: 0.32s; }
  .why-card.is-visible .why-cta   { animation-delay: 0.44s; }
}

@media (max-width: 760px) {
  /* Shorter animation distances on mobile */
  .reveal { transform: translateY(10px); }
  .reveal.reveal-from-right { transform: translateX(16px); }
  .reveal.reveal-from-left { transform: translateX(-16px); }
  .reveal.reveal-scale-in { transform: scale(0.95); }
  .reveal.reveal-scale-out { transform: scale(1.04); }

  /* Even tighter stagger on mobile for page-hero */
  .page-hero.is-visible .hero-panel .section-label,
  .page-hero .hero-panel.is-visible .section-label { animation-delay: 0.06s; }
  .page-hero.is-visible .hero-panel .page-title,
  .page-hero .hero-panel.is-visible .page-title { animation-delay: 0.14s; }
  .page-hero.is-visible .hero-panel .hero-copy,
  .page-hero.is-visible .hero-panel .page-lead,
  .page-hero .hero-panel.is-visible .hero-copy,
  .page-hero .hero-panel.is-visible .page-lead { animation-delay: 0.22s; }
  .page-hero.is-visible .hero-panel .btn,
  .page-hero .hero-panel.is-visible .btn { animation-delay: 0.3s; }

  .page-hero.is-visible .hero-media,
  .page-hero .hero-media.is-visible { animation-delay: 0.18s; }

  /* Even tighter feature card children */
  .premium-dark-section.is-visible .premium-card__kicker { animation-delay: 0.12s; }
  .premium-dark-section.is-visible .premium-card__title { animation-delay: 0.22s; }
  .premium-dark-section.is-visible .premium-card__text { animation-delay: 0.32s; }
  .premium-dark-section.is-visible .premium-card__media { animation-delay: 0.15s; }
  .premium-dark-section.is-visible .process-step:nth-child(1) { animation-delay: 0.3s; }
  .premium-dark-section.is-visible .process-step:nth-child(2) { animation-delay: 0.38s; }
  .premium-dark-section.is-visible .process-step:nth-child(3) { animation-delay: 0.46s; }

  /* Tighter why card stagger */
  .why-card.is-visible .why-pill  { animation-delay: 0.08s; }
  .why-card.is-visible .why-title { animation-delay: 0.16s; }
  .why-card.is-visible .why-list  { animation-delay: 0.26s; }
  .why-card.is-visible .why-cta   { animation-delay: 0.36s; }
  .why-card.is-visible .precision-step:nth-child(1) { animation-delay: 0.28s; }
  .why-card.is-visible .precision-step:nth-child(2) { animation-delay: 0.34s; }
  .why-card.is-visible .precision-step:nth-child(3) { animation-delay: 0.4s; }

  /* CTA band tighter */
  .cta-band.is-visible .cta-title { animation-delay: 0.12s; }
  .cta-band.is-visible > p { animation-delay: 0.22s; }
  .cta-band.is-visible > .btn { animation-delay: 0.32s; }
}

/* (Restoration tokens merged into main :root) */

html,
body {
  background: var(--ekria-bg);
}

/* Shared navbar states (driven by site.js classes) */
body[data-page-key] .site-header {
  position: fixed;
  top: 0;
  width: 100%;
  transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease;
}

body[data-page-key] .header-inner {
  min-height: 78px;
}

body[data-page-key] main {
  padding-top: 0;
}

body[data-page-key] .site-header.navbar--dark {
  background: #000;
  border-bottom: 1px solid rgba(197, 159, 74, 0.22);
  backdrop-filter: none;
  box-shadow: none;
}

body[data-page-key] .site-header.navbar--dark .nav-link {
  color: #f6efe3;
}

body[data-page-key] .site-header.navbar--dark .language-switch {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.28);
}

body[data-page-key] .site-header.navbar--dark .language-switch a {
  color: #f6efe3;
}

body[data-page-key] .site-header.navbar--dark .language-switch a[aria-current="true"] {
  background: rgba(181, 139, 82, 0.24);
  color: #fff;
}

body[data-page-key] .site-header.navbar--light {
  background: rgba(246, 240, 232, 0.94);
  border-bottom: 1px solid rgba(197, 159, 74, 0.22);
  backdrop-filter: blur(2px);
  box-shadow: 0 1px 6px rgba(15, 42, 61, 0.06);
}

body[data-page-key] .site-header.navbar--light .nav-link {
  color: var(--ekria-navy);
}

body[data-page-key] .site-header.navbar--light .language-switch {
  background: var(--ekria-surface);
  border-color: rgba(31, 42, 55, 0.2);
}

body[data-page-key] .site-header.navbar--light .language-switch a {
  color: var(--ekria-navy);
}

body[data-page-key] .site-header.navbar--light .language-switch a[aria-current="true"] {
  background: var(--ekria-navy);
  color: #fff;
}

/* NAVBAR – perfectly centered static gold underline */
.nav-list{
  display:flex;
  gap:40px;
  list-style:none;
  margin:0;
  padding:0;
}

.nav-list li{ margin:0; padding:0; }

.nav-link{
  position:relative;
  display:inline-block;
  padding:0;
  background:transparent !important;
  text-decoration:none;
}

.nav-link:hover,
.nav-link:focus,
.nav-link:active,
.nav-link[aria-current="page"]{
  background:transparent !important;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:100%;
  height:0.8px;
  background:#d1ad6d;
  border-radius:0;
  opacity:0;
  transform: scaleX(0);
  transform-origin: center center;
  transition: transform 240ms ease, opacity 200ms ease;
}

.nav-link:not([aria-current="page"]):hover::after,
.nav-link:not([aria-current="page"]):focus-visible::after{
  opacity:0.74;
  transform: scaleX(1);
}

.nav-link[aria-current="page"]::after{
  opacity:0.92;
  transform: scaleX(1);
  transition:none;
}

/* Ensure modern homepage wrappers remain styled */
.services-section {
  padding-top: 96px;
  padding-bottom: 48px;
  background: var(--ekria-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.premium-about-plain {
  padding-top: 56px;
  padding-bottom: 56px;
  margin: 0;
  background: var(--ekria-bg);
}

.premium-about-plain .premium-about-inner {
  width: 100%;
  margin: 0;
}

.premium-about-plain .premium-about-inner > * {
  max-width: 780px;
}

.why-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.strategy-box {
  width: 100%;
  margin-top: 0;
}

/* About page section styles that were missing after rollback */
.about-company-intro {
  padding-top: 96px;
  padding-bottom: 56px;
  background: var(--ekria-bg);
}

.about-company-intro-inner {
  max-width: 1120px;
  margin-inline: auto;
}

.about-company-copy {
  max-width: 860px;
}

.about-company-title {
  margin: 0.65rem 0 0;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--ekria-text);
}

.about-company-lead {
  margin: 1.15rem 0 0;
  max-width: 70ch;
  color: var(--ekria-text-muted);
  line-height: 1.7;
}

.about-company-text {
  margin: 1rem 0 0;
  max-width: 70ch;
  color: var(--ekria-text-muted);
  line-height: 1.75;
}

.about-personal-hero {
  padding-top: 56px;
  padding-bottom: 72px;
  background: var(--ekria-bg);
}

.about-personal-hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.6rem;
  align-items: center;
}

.about-personal-copy .page-title {
  margin-top: 0.55rem;
  line-height: 1.08;
}

.about-personal-intro {
  margin: 1rem 0 0;
  color: var(--ekria-text-muted);
  line-height: 1.72;
  max-width: 66ch;
}

.about-personal-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(181, 139, 82, 0.18);
  box-shadow: 0 16px 38px rgba(15, 42, 61, 0.14);
}

.about-personal-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.collab-section {
  padding-top: 64px;
  padding-bottom: 72px;
}

.collab-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.collab-surface {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(198, 168, 120, 0.35);
  border-radius: 22px;
  padding: clamp(26px, 3.2vw, 40px);
  box-shadow: 0 18px 40px rgba(10, 20, 35, 0.06);
}

.collab-surface > .section-title {
  margin: 0 0 1.35rem;
}

.collab-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
}

.collab-lead {
  max-width: 58ch;
}

.collab-lead p {
  margin: 0 0 18px;
  line-height: 1.75;
  color: var(--ekria-text-muted);
}

.collab-highlight {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 2px solid rgba(198, 168, 120, 0.65);
  background: rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  display: grid;
  gap: 14px;
}

.collab-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.collab-step .section-label {
  margin-top: 0.1rem;
  color: #c9a462;
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.collab-step p {
  margin: 0;
  color: var(--ekria-text-muted);
  line-height: 1.7;
}

.collab-side {
  display: grid;
  gap: 18px;
}

.collab-quote {
  max-width: 460px;
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(198, 168, 120, 0.45);
  background: linear-gradient(180deg, rgba(255,255,255,0.65), rgba(255,255,255,0.35));
  box-shadow: 0 16px 34px rgba(10, 20, 35, 0.08);
}

.collab-quote p {
  margin: 0;
  color: var(--ekria-text);
  line-height: 1.4;
}

.collab-side > p {
  margin: 0;
  line-height: 1.75;
  max-width: 46ch;
  color: var(--ekria-text-muted);
}

.collab-signature {
  display: grid;
  gap: 10px;
  justify-items: end;
  padding-top: 6px;
  margin: 0;
}

.collab-signature .sig-line {
  width: 180px;
  height: 1px;
  background: rgba(198, 168, 120, 0.55);
}

.collab-signature img {
  height: 44px;
  width: auto;
  opacity: 0.95;
}

.about-trust {
  padding-top: 64px;
  padding-bottom: 72px;
}

.about-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.about-trust-card {
  background: rgba(255, 253, 250, 0.9);
  border: 1px solid rgba(182, 139, 73, 0.24);
  border-radius: 16px;
  padding: clamp(1.4rem, 2.2vw, 1.9rem);
  box-shadow: 0 8px 24px rgba(16, 36, 58, 0.08);
}

.about-trust-card .card-title {
  margin-top: 0.55rem;
}

.about-trust-card .list-clean {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.7rem;
}

.about-trust-card .list-clean li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.65;
  color: var(--ekria-text-muted);
}

.about-trust-card .list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--ekria-gold);
}

.about-trust-card p {
  color: var(--ekria-text-muted);
}

.about-emotional-cta {
  padding-top: 56px;
  padding-bottom: 64px;
}

.about-emotional-cta .cta-band {
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(15, 42, 61, 0.96) 0%, rgba(15, 42, 61, 0.88) 100%);
  box-shadow: 0 18px 50px rgba(15, 42, 61, 0.16);
}

.about-emotional-cta .cta-title,
.about-emotional-cta .cta-band p {
  color: #f6efe3;
}

/* === About page premium redesign (about.html) === */
body[data-page-key="about"] {
  --about-bg: #f3ece2;
  --about-surface: #fff8ef;
  --about-surface-strong: #fffdf9;
  --about-ink: #17222b;
  --about-muted: #4f5f6d;
  --about-gold: #b08d57;
  --about-line: rgba(176, 141, 87, 0.24);
  --about-line-soft: rgba(176, 141, 87, 0.14);
  background: var(--about-bg);
  color: var(--about-ink);
}

body[data-page-key="about"] main {
  background: var(--about-bg);
}

body[data-page-key="about"] main > section {
  background: var(--about-bg);
}

body[data-page-key="about"] .section {
  padding-block: clamp(4rem, 7.2vw, 5.9rem);
}

body[data-page-key="about"] .about-lux-hero {
  position: relative;
  padding-top: clamp(6.3rem, 10.1vw, 8.1rem);
  padding-bottom: clamp(4.7rem, 8.2vw, 6rem);
}

body[data-page-key="about"] .about-lux-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 56px));
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(176, 141, 87, 0) 0%,
    rgba(176, 141, 87, 0.18) 15%,
    rgba(176, 141, 87, 0.18) 85%,
    rgba(176, 141, 87, 0) 100%
  );
}

body[data-page-key="about"] .about-lux-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.8rem, 3.4vw, 3rem);
  align-items: start;
}

body[data-page-key="about"] .about-lux-label {
  color: rgba(209, 173, 109, 0.92);
  letter-spacing: 0.2em;
}

body[data-page-key="about"] .about-lux-title {
  margin-top: 0.7rem;
  max-width: 15ch;
  line-height: 1.08;
  color: var(--about-ink);
}

body[data-page-key="about"] .about-lux-lead {
  margin-top: 1.06rem;
  max-width: 60ch;
  color: var(--about-muted);
  font-size: clamp(1.03rem, 1.55vw, 1.17rem);
  line-height: 1.78;
}

body[data-page-key="about"] .about-lux-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin-top: 1.55rem;
}

body[data-page-key="about"] .about-lux-hero__panel {
  padding: clamp(1.25rem, 2.2vw, 1.8rem);
  border-radius: 20px;
  border: 1px solid var(--about-line);
  background:
    radial-gradient(circle at 86% 12%, rgba(176, 141, 87, 0.12), rgba(176, 141, 87, 0) 40%),
    var(--about-surface);
  box-shadow: 0 14px 34px rgba(16, 36, 58, 0.08);
}

body[data-page-key="about"] .about-lux-panel__title {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.28rem, 2vw, 1.62rem);
  line-height: 1.2;
  color: var(--about-ink);
}

body[data-page-key="about"] .about-lux-panel__list {
  list-style: none;
  margin: 0.95rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

body[data-page-key="about"] .about-lux-panel__list li {
  position: relative;
  margin: 0;
  padding: 0.56rem 0 0.56rem 0.94rem;
  color: rgba(79, 95, 109, 0.95);
  line-height: 1.66;
}

body[data-page-key="about"] .about-lux-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.03em;
  width: 0.5rem;
  height: 1px;
  background: rgba(176, 141, 87, 0.72);
}

body[data-page-key="about"] .about-lux-panel__list li + li {
  border-top: 1px solid var(--about-line-soft);
}

body[data-page-key="about"] .about-lux-hero__media {
  margin: 1.12rem 0 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(176, 141, 87, 0.22);
}

body[data-page-key="about"] .about-lux-hero__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

body[data-page-key="about"] .about-value {
  padding-top: clamp(4.2rem, 7vw, 5.6rem);
  padding-bottom: clamp(3.8rem, 6.2vw, 5.1rem);
}

body[data-page-key="about"] .about-value__header {
  max-width: 720px;
}

body[data-page-key="about"] .about-value__header .section-title {
  margin-top: 0.58rem;
}

body[data-page-key="about"] .about-value__lead {
  margin: 1.02rem 0 0;
  color: var(--about-muted);
  line-height: 1.76;
  max-width: 60ch;
}

body[data-page-key="about"] .about-value__grid {
  margin-top: 1.55rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

body[data-page-key="about"] .about-value-card {
  padding: 1.24rem 1.2rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--about-line);
  background: rgba(255, 251, 244, 0.82);
  box-shadow: 0 10px 26px rgba(16, 36, 58, 0.055);
}

body[data-page-key="about"] .about-value-card__title {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.12rem, 1.56vw, 1.3rem);
  line-height: 1.26;
  color: var(--about-ink);
}

body[data-page-key="about"] .about-value-card p {
  margin: 0.72rem 0 0;
  color: var(--about-muted);
  line-height: 1.68;
}

body[data-page-key="about"] .about-contrast {
  padding-top: clamp(3.9rem, 6.2vw, 5rem);
  padding-bottom: clamp(4.2rem, 6.7vw, 5.4rem);
}

body[data-page-key="about"] .about-contrast__inner {
  border-radius: 24px;
  border: 1px solid rgba(176, 141, 87, 0.22);
  background:
    radial-gradient(circle at 88% 14%, rgba(176, 141, 87, 0.17), rgba(176, 141, 87, 0) 42%),
    linear-gradient(140deg, #121d26 0%, #172533 100%);
  box-shadow: 0 22px 56px rgba(9, 17, 24, 0.32);
  padding: clamp(1.6rem, 3.2vw, 2.5rem);
}

body[data-page-key="about"] .about-contrast__inner .section-label {
  color: rgba(209, 173, 109, 0.92);
}

body[data-page-key="about"] .about-contrast__inner .section-title {
  margin-top: 0.54rem;
  color: #f5f1ea;
}

body[data-page-key="about"] .about-contrast__lead {
  margin: 0.96rem 0 0;
  max-width: 58ch;
  color: rgba(244, 239, 232, 0.82);
  line-height: 1.72;
}

body[data-page-key="about"] .about-contrast__grid {
  position: relative;
  margin-top: 1.32rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 2.7vw, 2.5rem);
}

body[data-page-key="about"] .about-contrast__grid::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(176, 141, 87, 0) 0%,
    rgba(176, 141, 87, 0.24) 16%,
    rgba(176, 141, 87, 0.24) 84%,
    rgba(176, 141, 87, 0) 100%
  );
}

body[data-page-key="about"] .about-contrast__label {
  margin: 0;
  color: rgba(209, 173, 109, 0.9);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page-key="about"] .about-contrast__list {
  list-style: none;
  margin: 0.72rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

body[data-page-key="about"] .about-contrast__list li {
  position: relative;
  margin: 0;
  padding: 0.5rem 0 0.5rem 0.92rem;
  color: rgba(244, 239, 232, 0.86);
  line-height: 1.64;
}

body[data-page-key="about"] .about-contrast__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.02em;
  width: 0.48rem;
  height: 1px;
  background: currentColor;
  opacity: 0.66;
}

body[data-page-key="about"] .about-contrast__list li + li {
  border-top: 1px solid rgba(176, 141, 87, 0.18);
}

body[data-page-key="about"] .about-contrast__col--muted .about-contrast__list li {
  color: rgba(244, 239, 232, 0.7);
}

body[data-page-key="about"] .about-method {
  padding-top: clamp(4.15rem, 6.8vw, 5.5rem);
  padding-bottom: clamp(4.2rem, 7vw, 5.8rem);
}

body[data-page-key="about"] .about-method__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.5rem, 3.1vw, 2.9rem);
  align-items: start;
}

body[data-page-key="about"] .about-method__intro .section-title {
  margin-top: 0.6rem;
}

body[data-page-key="about"] .about-method__intro p {
  margin: 1rem 0 0;
  max-width: 52ch;
  color: var(--about-muted);
  line-height: 1.72;
}

body[data-page-key="about"] .about-method__steps {
  list-style: none;
  margin: 0;
  padding: clamp(1.2rem, 2.2vw, 1.6rem);
  border-radius: 18px;
  border: 1px solid var(--about-line);
  background: rgba(255, 251, 244, 0.86);
  box-shadow: 0 10px 26px rgba(16, 36, 58, 0.055);
}

body[data-page-key="about"] .about-method__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 14px;
  align-items: start;
  padding: 0.38rem 0 0.62rem;
}

body[data-page-key="about"] .about-method__step + .about-method__step {
  border-top: 1px solid var(--about-line-soft);
  margin-top: 0.18rem;
}

body[data-page-key="about"] .about-method__num {
  font-family: "Libre Baskerville", serif;
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(176, 141, 87, 0.88);
  letter-spacing: 0.03em;
}

body[data-page-key="about"] .about-method__body h3 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--about-ink);
  line-height: 1.4;
}

body[data-page-key="about"] .about-method__body p {
  margin: 0.36rem 0 0;
  color: var(--about-muted);
  line-height: 1.64;
}

body[data-page-key="about"] .about-proof {
  padding-top: clamp(4rem, 6.5vw, 5.2rem);
  padding-bottom: clamp(4.3rem, 6.9vw, 5.6rem);
}

body[data-page-key="about"] .about-proof__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.12rem;
}

body[data-page-key="about"] .about-proof-card {
  padding: clamp(1.3rem, 2.3vw, 1.85rem);
  border-radius: 18px;
  border: 1px solid var(--about-line);
  background: rgba(255, 251, 244, 0.9);
  box-shadow: 0 10px 28px rgba(16, 36, 58, 0.06);
}

body[data-page-key="about"] .about-proof-card .card-title {
  margin-top: 0.56rem;
  line-height: 1.24;
}

body[data-page-key="about"] .about-proof__list {
  margin-top: 0.85rem;
}

body[data-page-key="about"] .about-proof__list li {
  color: var(--about-muted);
}

body[data-page-key="about"] .about-proof__note {
  margin-top: 0.95rem;
  color: var(--about-muted);
  line-height: 1.66;
}

body[data-page-key="about"] .about-proof-card--signature p {
  margin: 0.86rem 0 0;
  color: var(--about-muted);
  line-height: 1.7;
}

body[data-page-key="about"] .about-signature {
  margin: 1.12rem 0 0;
  display: grid;
  gap: 0.44rem;
  justify-items: start;
}

body[data-page-key="about"] .about-signature .sig-line {
  width: 166px;
  height: 1px;
  background: rgba(176, 141, 87, 0.56);
}

body[data-page-key="about"] .about-signature img {
  width: auto;
  height: 38px;
  opacity: 0.94;
}

body[data-page-key="about"] .about-emotional-cta {
  padding-top: clamp(3.7rem, 6.3vw, 4.9rem);
  padding-bottom: clamp(4.1rem, 6.7vw, 5.2rem);
}

body[data-page-key="about"] .about-emotional-cta .cta-band {
  border-radius: 18px;
  border: 1px solid rgba(176, 141, 87, 0.24);
  background:
    radial-gradient(circle at 80% 14%, rgba(176, 141, 87, 0.18), rgba(176, 141, 87, 0) 46%),
    linear-gradient(140deg, #111c26 0%, #162534 100%);
  box-shadow: 0 20px 52px rgba(9, 17, 24, 0.33);
}

body[data-page-key="about"] .about-cta-label {
  margin: 0;
  color: rgba(209, 173, 109, 0.92);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

body[data-page-key="about"] .about-emotional-cta .cta-title {
  margin-top: 0.56rem;
  color: #f6f1e8;
  max-width: 18ch;
}

body[data-page-key="about"] .about-cta-text {
  margin-top: 0.9rem;
  margin-bottom: 0;
  max-width: 56ch;
  color: rgba(244, 239, 232, 0.84);
  line-height: 1.72;
}

body[data-page-key="about"] .about-emotional-cta .btn-primary {
  margin-top: 1.16rem;
}

body[data-page-key="about"] .site-footer:not(.footer-lux) {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(176, 141, 87, 0.22);
  background: #f2ebdf;
}

@media (max-width: 1080px) {
  body[data-page-key="about"] .about-lux-hero__inner,
  body[data-page-key="about"] .about-method__inner,
  body[data-page-key="about"] .about-proof__grid {
    grid-template-columns: 1fr;
  }

  body[data-page-key="about"] .about-value__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page-key="about"] .about-contrast__grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  body[data-page-key="about"] .about-contrast__grid::before {
    content: none;
  }
}

@media (max-width: 760px) {
  body[data-page-key="about"] .section {
    padding-block: 58px;
  }

  body[data-page-key="about"] .about-lux-hero {
    padding-top: 92px;
    padding-bottom: 62px;
  }

  body[data-page-key="about"] .about-lux-title,
  body[data-page-key="about"] .about-lux-lead,
  body[data-page-key="about"] .about-value__lead,
  body[data-page-key="about"] .about-method__intro p,
  body[data-page-key="about"] .about-cta-text {
    max-width: none;
  }

  body[data-page-key="about"] .about-value__grid {
    grid-template-columns: 1fr;
    gap: 0.86rem;
  }

  body[data-page-key="about"] .about-method__step {
    grid-template-columns: 44px 1fr;
    column-gap: 11px;
  }

  body[data-page-key="about"] .about-method__num {
    font-size: 1.28rem;
  }

  body[data-page-key="about"] .about-proof-card,
  body[data-page-key="about"] .about-lux-hero__panel {
    padding: 1.18rem;
  }

  body[data-page-key="about"] .about-signature .sig-line {
    width: 132px;
  }

  body[data-page-key="about"] .about-signature img {
    height: 34px;
  }
}

/* === Services page premium redesign (services.html) === */
body[data-page-key="services"] {
  --services-bg: #f3ece2;
  --services-surface: #fff9f1;
  --services-ink: #17222b;
  --services-muted: #4f5f6d;
  --services-gold: #b08d57;
  --services-line: rgba(176, 141, 87, 0.24);
  --services-line-soft: rgba(176, 141, 87, 0.14);
  background: var(--services-bg);
  color: var(--services-ink);
}

body[data-page-key="services"] main {
  background: var(--services-bg);
}

body[data-page-key="services"] main > section {
  background: var(--services-bg);
}

body[data-page-key="services"] .section {
  padding-block: clamp(4rem, 7vw, 5.7rem);
}

body[data-page-key="services"] .services-lux-hero {
  position: relative;
  padding-top: clamp(6.25rem, 10.2vw, 8rem);
  padding-bottom: clamp(4.5rem, 7.8vw, 5.9rem);
}

body[data-page-key="services"] .services-lux-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 56px));
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(176, 141, 87, 0) 0%,
    rgba(176, 141, 87, 0.18) 15%,
    rgba(176, 141, 87, 0.18) 85%,
    rgba(176, 141, 87, 0) 100%
  );
}

body[data-page-key="services"] .services-lux-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(1.7rem, 3.3vw, 2.9rem);
  align-items: start;
}

body[data-page-key="services"] .services-lux-label {
  color: rgba(209, 173, 109, 0.92);
  letter-spacing: 0.2em;
}

body[data-page-key="services"] .services-lux-title {
  margin-top: 0.66rem;
  max-width: 16ch;
  line-height: 1.08;
  color: var(--services-ink);
}

body[data-page-key="services"] .services-lux-lead {
  margin-top: 1rem;
  max-width: 60ch;
  color: var(--services-muted);
  font-size: clamp(1.02rem, 1.55vw, 1.16rem);
  line-height: 1.76;
}

body[data-page-key="services"] .services-lux-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin-top: 1.52rem;
}

body[data-page-key="services"] .services-lux-hero__panel {
  padding: clamp(1.2rem, 2.2vw, 1.82rem);
  border-radius: 20px;
  border: 1px solid var(--services-line);
  background:
    radial-gradient(circle at 86% 12%, rgba(176, 141, 87, 0.12), rgba(176, 141, 87, 0) 40%),
    var(--services-surface);
  box-shadow: 0 14px 34px rgba(16, 36, 58, 0.08);
}

body[data-page-key="services"] .services-lux-panel__title {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.26rem, 1.95vw, 1.58rem);
  line-height: 1.2;
  color: var(--services-ink);
}

body[data-page-key="services"] .services-lux-panel__list {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

body[data-page-key="services"] .services-lux-panel__list li {
  position: relative;
  margin: 0;
  padding: 0.56rem 0 0.56rem 0.94rem;
  color: rgba(79, 95, 109, 0.95);
  line-height: 1.66;
}

body[data-page-key="services"] .services-lux-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.03em;
  width: 0.5rem;
  height: 1px;
  background: rgba(176, 141, 87, 0.72);
}

body[data-page-key="services"] .services-lux-panel__list li + li {
  border-top: 1px solid var(--services-line-soft);
}

body[data-page-key="services"] .services-lux-hero__media {
  margin: 1.04rem 0 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(176, 141, 87, 0.22);
}

body[data-page-key="services"] .services-lux-hero__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

body[data-page-key="services"] .services-catalog {
  padding-top: clamp(4.2rem, 7vw, 5.5rem);
  padding-bottom: clamp(4rem, 6.8vw, 5.2rem);
}

body[data-page-key="services"] .services-catalog__intro {
  max-width: 760px;
}

body[data-page-key="services"] .services-catalog__intro .section-title {
  margin-top: 0.56rem;
}

body[data-page-key="services"] .services-catalog__lead {
  margin: 0.96rem 0 0;
  max-width: 62ch;
  color: var(--services-muted);
  line-height: 1.74;
}

body[data-page-key="services"] .services-catalog__grid {
  margin-top: 1.46rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

body[data-page-key="services"] .services-catalog-card {
  position: relative;
  display: block;
  padding: 1.36rem 1.28rem 1.28rem;
  border-radius: 16px;
  border: 1px solid var(--services-line);
  background: rgba(255, 251, 244, 0.86);
  box-shadow: 0 10px 26px rgba(16, 36, 58, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body[data-page-key="services"] .services-catalog-card:hover,
body[data-page-key="services"] .services-catalog-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(176, 141, 87, 0.36);
  box-shadow: 0 16px 32px rgba(16, 36, 58, 0.11);
}

body[data-page-key="services"] .services-catalog-card__fit {
  margin: 0;
  color: rgba(146, 111, 58, 0.9);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body[data-page-key="services"] .services-catalog-card__title {
  margin: 0.62rem 0 0;
  line-height: 1.22;
  color: var(--services-ink);
}

body[data-page-key="services"] .services-catalog-card__text {
  margin: 0.78rem 0 0;
  color: var(--services-muted);
  line-height: 1.68;
}

body[data-page-key="services"] .services-catalog-card__list {
  list-style: none;
  margin: 0.82rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

body[data-page-key="services"] .services-catalog-card__list li {
  position: relative;
  margin: 0;
  padding: 0.48rem 0 0.48rem 0.92rem;
  color: rgba(79, 95, 109, 0.95);
  line-height: 1.62;
}

body[data-page-key="services"] .services-catalog-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.03em;
  width: 0.48rem;
  height: 1px;
  background: rgba(176, 141, 87, 0.72);
}

body[data-page-key="services"] .services-catalog-card__list li + li {
  border-top: 1px solid var(--services-line-soft);
}

body[data-page-key="services"] .services-catalog-card__link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.96rem;
  color: rgba(35, 56, 78, 0.92);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

body[data-page-key="services"] .services-match {
  padding-top: clamp(3.8rem, 6.4vw, 5rem);
  padding-bottom: clamp(4.1rem, 6.8vw, 5.4rem);
}

body[data-page-key="services"] .services-match__panel {
  border-radius: 20px;
  border: 1px solid rgba(176, 141, 87, 0.22);
  background:
    radial-gradient(circle at 86% 14%, rgba(176, 141, 87, 0.16), rgba(176, 141, 87, 0) 46%),
    linear-gradient(140deg, #121d27 0%, #172533 100%);
  box-shadow: 0 20px 52px rgba(9, 17, 24, 0.3);
  padding: clamp(1.5rem, 2.9vw, 2.3rem);
}

body[data-page-key="services"] .services-match__panel .section-label {
  color: rgba(209, 173, 109, 0.92);
}

body[data-page-key="services"] .services-match__panel .section-title {
  margin-top: 0.56rem;
  color: #f5f1ea;
  max-width: 20ch;
}

body[data-page-key="services"] .services-match__rows {
  margin-top: 1.18rem;
  display: grid;
  gap: 0.56rem;
}

body[data-page-key="services"] .services-match__row {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
  gap: 1rem;
  align-items: baseline;
  padding: 0.74rem 0;
}

body[data-page-key="services"] .services-match__row + .services-match__row {
  border-top: 1px solid rgba(176, 141, 87, 0.18);
}

body[data-page-key="services"] .services-match__need {
  margin: 0;
  color: rgba(244, 239, 232, 0.82);
  line-height: 1.64;
}

body[data-page-key="services"] .services-match__service {
  margin: 0;
  color: rgba(209, 173, 109, 0.94);
  font-weight: 600;
  letter-spacing: 0.03em;
}

body[data-page-key="services"] .services-cta {
  padding-top: clamp(3.7rem, 6.1vw, 4.9rem);
  padding-bottom: clamp(4.1rem, 6.7vw, 5.2rem);
}

body[data-page-key="services"] .services-cta .cta-band {
  border-radius: 18px;
  border: 1px solid rgba(176, 141, 87, 0.22);
  background:
    radial-gradient(circle at 80% 14%, rgba(176, 141, 87, 0.18), rgba(176, 141, 87, 0) 46%),
    linear-gradient(140deg, #111c26 0%, #162534 100%);
  box-shadow: 0 20px 52px rgba(9, 17, 24, 0.32);
}

body[data-page-key="services"] .services-cta__label {
  margin: 0;
  color: rgba(209, 173, 109, 0.92);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

body[data-page-key="services"] .services-cta .cta-title {
  margin-top: 0.56rem;
  color: #f6f1e8;
  max-width: 20ch;
}

body[data-page-key="services"] .services-cta__text {
  margin-top: 0.9rem;
  margin-bottom: 0;
  max-width: 56ch;
  color: rgba(244, 239, 232, 0.84);
  line-height: 1.72;
}

body[data-page-key="services"] .services-cta .btn-primary {
  margin-top: 1.14rem;
}

body[data-page-key="services"] .site-footer:not(.footer-lux) {
  margin-top: 1.4rem;
  border-top: 1px solid rgba(176, 141, 87, 0.22);
  background: #f2ebdf;
}

@media (max-width: 1080px) {
  body[data-page-key="services"] .services-lux-hero__inner {
    grid-template-columns: 1fr;
  }

  body[data-page-key="services"] .services-catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page-key="services"] .services-match__row {
    grid-template-columns: 1fr;
    gap: 0.44rem;
  }
}

@media (max-width: 760px) {
  body[data-page-key="services"] .section {
    padding-block: 58px;
  }

  body[data-page-key="services"] .services-lux-hero {
    padding-top: 92px;
    padding-bottom: 60px;
  }

  body[data-page-key="services"] .services-lux-title,
  body[data-page-key="services"] .services-lux-lead,
  body[data-page-key="services"] .services-catalog__lead,
  body[data-page-key="services"] .services-cta__text {
    max-width: none;
  }

  body[data-page-key="services"] .services-catalog__grid {
    grid-template-columns: 1fr;
    gap: 0.82rem;
  }

  body[data-page-key="services"] .services-lux-hero__panel,
  body[data-page-key="services"] .services-catalog-card {
    padding: 1.16rem;
  }
}

/* === Pricing page premium redesign (pricing.html) === */
body[data-page-key="pricing"] {
  --pricing-bg: #f3ece2;
  --pricing-surface: #fff9f1;
  --pricing-surface-soft: #fffdf8;
  --pricing-ink: #17222b;
  --pricing-muted: #4f5f6d;
  --pricing-gold: #b08d57;
  --pricing-line: rgba(176, 141, 87, 0.24);
  --pricing-line-soft: rgba(176, 141, 87, 0.14);
  background: var(--pricing-bg);
  color: var(--pricing-ink);
}

body[data-page-key="pricing"] main {
  background: var(--pricing-bg);
}

body[data-page-key="pricing"] main > section {
  background: var(--pricing-bg);
}

body[data-page-key="pricing"] .section {
  padding-block: clamp(4rem, 7vw, 5.8rem);
}

body[data-page-key="pricing"] .pricing-signature-hero {
  position: relative;
  padding-top: clamp(6.3rem, 10.2vw, 8rem);
  padding-bottom: clamp(4.5rem, 7.7vw, 5.8rem);
}

body[data-page-key="pricing"] .pricing-signature-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 56px));
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(176, 141, 87, 0) 0%,
    rgba(176, 141, 87, 0.18) 15%,
    rgba(176, 141, 87, 0.18) 85%,
    rgba(176, 141, 87, 0) 100%
  );
}

body[data-page-key="pricing"] .pricing-signature-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.8rem, 3.4vw, 3rem);
  align-items: start;
}

body[data-page-key="pricing"] .pricing-signature-label {
  color: rgba(209, 173, 109, 0.92);
  letter-spacing: 0.2em;
}

body[data-page-key="pricing"] .pricing-signature-title {
  margin-top: 0.68rem;
  max-width: 16ch;
  line-height: 1.08;
  color: var(--pricing-ink);
}

body[data-page-key="pricing"] .pricing-signature-lead {
  margin-top: 1.02rem;
  max-width: 60ch;
  color: var(--pricing-muted);
  font-size: clamp(1.02rem, 1.52vw, 1.16rem);
  line-height: 1.76;
}

body[data-page-key="pricing"] .pricing-signature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin-top: 1.54rem;
}

body[data-page-key="pricing"] .pricing-signature-hero__panel {
  padding: clamp(1.26rem, 2.2vw, 1.84rem);
  border-radius: 20px;
  border: 1px solid var(--pricing-line);
  background:
    radial-gradient(circle at 86% 12%, rgba(176, 141, 87, 0.1), rgba(176, 141, 87, 0) 42%),
    linear-gradient(160deg, rgba(255, 252, 246, 0.96) 0%, rgba(255, 248, 238, 0.9) 100%);
  box-shadow: 0 14px 34px rgba(16, 36, 58, 0.07);
}

body[data-page-key="pricing"] .pricing-signature-panel__title {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.26rem, 1.95vw, 1.58rem);
  line-height: 1.2;
  color: var(--pricing-ink);
}

body[data-page-key="pricing"] .pricing-signature-panel__list {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

body[data-page-key="pricing"] .pricing-signature-panel__list li {
  position: relative;
  margin: 0;
  padding: 0.56rem 0 0.56rem 0.94rem;
  color: rgba(79, 95, 109, 0.95);
  line-height: 1.66;
}

body[data-page-key="pricing"] .pricing-signature-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.03em;
  width: 0.5rem;
  height: 1px;
  background: rgba(176, 141, 87, 0.72);
}

body[data-page-key="pricing"] .pricing-signature-panel__list li + li {
  border-top: 1px solid var(--pricing-line-soft);
}

body[data-page-key="pricing"] .pricing-levels {
  padding-top: clamp(4.2rem, 7.1vw, 5.5rem);
  padding-bottom: clamp(4rem, 6.8vw, 5.3rem);
}

body[data-page-key="pricing"] .pricing-levels__intro {
  max-width: 760px;
}

body[data-page-key="pricing"] .pricing-levels__intro .section-title {
  margin-top: 0.58rem;
}

body[data-page-key="pricing"] .pricing-levels__lead {
  margin: 0.98rem 0 0;
  max-width: 62ch;
  color: var(--pricing-muted);
  line-height: 1.74;
}

body[data-page-key="pricing"] .pricing-levels__grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

body[data-page-key="pricing"] .pricing-level-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1.38rem 1.28rem 1.28rem;
  border-radius: 16px;
  border: 1px solid var(--pricing-line);
  background: rgba(255, 251, 244, 0.88);
  box-shadow: 0 10px 26px rgba(16, 36, 58, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body[data-page-key="pricing"] .pricing-level-card:hover,
body[data-page-key="pricing"] .pricing-level-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(176, 141, 87, 0.38);
  box-shadow: 0 16px 32px rgba(16, 36, 58, 0.11);
}

body[data-page-key="pricing"] .pricing-level-card__fit {
  margin: 0;
  color: rgba(146, 111, 58, 0.9);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body[data-page-key="pricing"] .pricing-level-card__title {
  margin: 0.62rem 0 0;
  line-height: 1.22;
  color: var(--pricing-ink);
}

body[data-page-key="pricing"] .pricing-level-card__amount {
  margin: 0.9rem 0 0;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.6rem, 2.25vw, 2.1rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(146, 111, 58, 0.94);
}

body[data-page-key="pricing"] .pricing-level-card__amount-note {
  margin: 0.28rem 0 0;
  color: rgba(79, 95, 109, 0.82);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page-key="pricing"] .pricing-level-card__list {
  list-style: none;
  margin: 0.88rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

body[data-page-key="pricing"] .pricing-level-card__list li {
  position: relative;
  margin: 0;
  padding: 0.48rem 0 0.48rem 0.92rem;
  color: rgba(79, 95, 109, 0.95);
  line-height: 1.62;
}

body[data-page-key="pricing"] .pricing-level-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.03em;
  width: 0.48rem;
  height: 1px;
  background: rgba(176, 141, 87, 0.72);
}

body[data-page-key="pricing"] .pricing-level-card__list li + li {
  border-top: 1px solid var(--pricing-line-soft);
}

body[data-page-key="pricing"] .pricing-level-card__link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.96rem;
  color: rgba(35, 56, 78, 0.92);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

body[data-page-key="pricing"] .pricing-framework {
  padding-top: clamp(3.8rem, 6.3vw, 5rem);
  padding-bottom: clamp(4rem, 6.6vw, 5.2rem);
}

body[data-page-key="pricing"] .pricing-framework__panel {
  border-radius: 20px;
  border: 1px solid rgba(176, 141, 87, 0.22);
  background:
    radial-gradient(circle at 84% 12%, rgba(176, 141, 87, 0.16), rgba(176, 141, 87, 0) 42%),
    linear-gradient(145deg, #101b25 0%, #172634 100%);
  box-shadow: 0 20px 52px rgba(9, 17, 24, 0.3);
  padding: clamp(1.5rem, 2.8vw, 2.3rem);
}

body[data-page-key="pricing"] .pricing-framework__panel .section-label {
  color: rgba(209, 173, 109, 0.92);
}

body[data-page-key="pricing"] .pricing-framework__panel .section-title {
  margin-top: 0.56rem;
  color: #f5f1ea;
  max-width: 20ch;
}

body[data-page-key="pricing"] .pricing-framework__rows {
  margin-top: 1.16rem;
  display: grid;
  gap: 0.56rem;
}

body[data-page-key="pricing"] .pricing-framework__row {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 1rem;
  align-items: baseline;
  padding: 0.74rem 0;
}

body[data-page-key="pricing"] .pricing-framework__row + .pricing-framework__row {
  border-top: 1px solid rgba(176, 141, 87, 0.18);
}

body[data-page-key="pricing"] .pricing-framework__key {
  margin: 0;
  color: rgba(209, 173, 109, 0.93);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body[data-page-key="pricing"] .pricing-framework__value {
  margin: 0;
  color: rgba(244, 239, 232, 0.84);
  line-height: 1.62;
}

body[data-page-key="pricing"] .pricing-next-step {
  padding-top: clamp(3.7rem, 6.1vw, 4.9rem);
  padding-bottom: clamp(4.1rem, 6.7vw, 5.3rem);
}

body[data-page-key="pricing"] .pricing-next-step__panel {
  border-radius: 18px;
  border: 1px solid rgba(176, 141, 87, 0.22);
  background:
    radial-gradient(circle at 84% 12%, rgba(176, 141, 87, 0.12), rgba(176, 141, 87, 0) 48%),
    rgba(255, 251, 244, 0.92);
  box-shadow: 0 14px 30px rgba(16, 36, 58, 0.08);
  padding: clamp(1.4rem, 2.4vw, 2rem);
}

body[data-page-key="pricing"] .pricing-next-step__label {
  margin: 0;
  color: rgba(146, 111, 58, 0.92);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

body[data-page-key="pricing"] .pricing-next-step .cta-title {
  margin-top: 0.56rem;
  color: var(--pricing-ink);
  max-width: 20ch;
}

body[data-page-key="pricing"] .pricing-next-step__text {
  margin-top: 0.9rem;
  margin-bottom: 0;
  max-width: 56ch;
  color: var(--pricing-muted);
  line-height: 1.72;
}

body[data-page-key="pricing"] .pricing-next-step .btn-primary {
  margin-top: 1.16rem;
}

body[data-page-key="pricing"] .site-footer:not(.footer-lux) {
  margin-top: 1.4rem;
  border-top: 1px solid rgba(176, 141, 87, 0.22);
  background: #f2ebdf;
}

/* === Contact page redesign === */
body.contact-page {
  --teal-950: #0d171c;
  --teal-900: #111d22;
  --teal-850: #13222a;
  --teal-800: #162730;
  --gold-400: #c4a265;
  --gold-300: #d4b87a;
  --gold-200: #e2cb96;
  --warm-950: #1a1611;
  --warm-800: #3d3630;
  --warm-700: #5a5047;
  --warm-600: #766c61;
  --warm-500: #958a7e;
  --warm-400: #b1a799;
  --warm-300: #cec5b8;
  --warm-200: #e4ddd3;
  --warm-100: #f0ebe4;
  --warm-75: #f4efe7;
  --warm-50: #f8f5f0;
  --white: #fffdf9;
  --shadow-sm: 0 1px 2px rgba(26, 22, 17, 0.04), 0 1px 3px rgba(26, 22, 17, 0.06);
  --shadow-md: 0 2px 4px rgba(26, 22, 17, 0.03), 0 6px 16px rgba(26, 22, 17, 0.06);
  --shadow-lg: 0 4px 8px rgba(26, 22, 17, 0.03), 0 12px 32px rgba(26, 22, 17, 0.08);
  background: var(--warm-50);
  color: var(--warm-950);
}

body.contact-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23grain)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

body.contact-page main {
  background: var(--warm-50);
}

body.contact-page .contact-page-shell,
body.contact-page .contact-page-cta__shell {
  width: min(100%, 1320px);
  margin-inline: auto;
  padding-inline: 72px;
  box-sizing: border-box;
}

body.contact-page .contact-page-label,
body.contact-page .contact-page-direct__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-400);
}

body.contact-page .contact-page-label--center::before,
body.contact-page .contact-page-label--center::after,
body.contact-page .contact-page-direct__label::before,
body.contact-page .contact-page-direct__label::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

body.contact-page .contact-page-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--warm-950);
}

body.contact-page .contact-page-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-400);
}

body.contact-page .contact-page-section-head {
  display: grid;
  gap: 20px;
}

body.contact-page .contact-page-section-head--center {
  justify-items: center;
  max-width: 560px;
  margin: 0 auto 64px;
  text-align: center;
}

body.contact-page .contact-page-section-intro {
  margin: 0 0 48px;
  max-width: 380px;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--warm-600);
}

body.contact-page .contact-page__reveal {
  opacity: 0;
  transform: translateY(24px);
}

body.contact-page .contact-page-observe.is-visible .contact-page__reveal {
  animation: contactPageFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--contact-delay, 0s);
}

@keyframes contactPageFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contactPageExpandLine {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 56px;
    opacity: 1;
  }
}

body.contact-page .contact-page-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 120px;
  background:
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(196, 162, 101, 0.04) 0%, transparent 70%),
    linear-gradient(176deg, #111d22 0%, #13222a 50%, #162730 100%);
}

body.contact-page .contact-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(196, 162, 101, 0.18) 50%, transparent 95%);
}

body.contact-page .contact-page-hero__inner {
  max-width: 680px;
}

body.contact-page .contact-page-hero__label,
body.contact-page .contact-page-hero__title,
body.contact-page .contact-page-hero__body {
  opacity: 0;
  animation: contactPageFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.contact-page .contact-page-hero__label {
  animation-delay: 0.2s;
}

body.contact-page .contact-page-hero__title {
  margin: 24px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  animation-delay: 0.3s;
}

body.contact-page .contact-page-hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-300);
}

body.contact-page .contact-page-hero__rule {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 36px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--gold-400), transparent);
  opacity: 0;
  animation: contactPageExpandLine 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.5s;
}

body.contact-page .contact-page-hero__body {
  margin: 0;
  max-width: 520px;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(248, 245, 240, 0.55);
  animation-delay: 0.45s;
}

body.contact-page .contact-page-connect {
  padding: 120px 0;
  background: var(--warm-50);
}

body.contact-page .contact-page-connect__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}

body.contact-page .contact-page-methods,
body.contact-page .contact-page-form-wrap {
  min-width: 0;
}

body.contact-page .contact-page-methods__list {
  border-top: 1px solid var(--warm-200);
}

body.contact-page .contact-page-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--warm-200);
}

body.contact-page .contact-page-method__icon,
body.contact-page .contact-page-response-note__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}

body.contact-page .contact-page-method__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  background: rgba(196, 162, 101, 0.08);
  border: 1px solid rgba(196, 162, 101, 0.18);
  transition:
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.contact-page .contact-page-method:hover .contact-page-method__icon,
body.contact-page .contact-page-method:focus-within .contact-page-method__icon {
  border-color: rgba(196, 162, 101, 0.25);
  box-shadow: 0 0 0 4px rgba(196, 162, 101, 0.035);
}

body.contact-page .contact-page-method__icon svg,
body.contact-page .contact-page-response-note__icon svg,
body.contact-page .contact-page-direct__email-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.contact-page .contact-page-method__content {
  min-width: 0;
}

body.contact-page .contact-page-method__label {
  margin: 0 0 8px;
  font-family: "Outfit", sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-400);
  opacity: 0.7;
}

body.contact-page .contact-page-method__value {
  display: inline-flex;
  align-items: center;
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--warm-950);
  text-decoration: none;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

body.contact-page .contact-page-direct__email {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

body.contact-page .contact-page-method {
  position: relative;
  z-index: 1;
}

body.contact-page .contact-page-method__value:hover,
body.contact-page .contact-page-method__value:focus-visible {
  color: var(--gold-400);
}

body.contact-page .contact-page-method__text {
  margin: 8px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--warm-500);
}

body.contact-page .contact-page-response-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

body.thank-you-page .thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}



  margin-top: 36px;
  padding: 22px 24px;
  border: 1px solid rgba(118, 108, 97, 0.14);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.92);
}

body.contact-page .contact-page-response-note__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 1px;
}

body.contact-page .contact-page-response-note__icon svg {
  width: 16px;
  height: 16px;
}

body.contact-page .contact-page-response-note p {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--warm-600);
}

body.contact-page .contact-page-form-card {
  padding: 52px 46px;
  border: 1px solid rgba(118, 108, 97, 0.14);
  border-radius: 16px;
  background: var(--white);
  box-shadow: none;
}

body.contact-page .contact-page-form-card__title,
body.contact-page .contact-page-step__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}

body.contact-page .contact-page-form-card__title {
  font-size: 1.5rem;
  color: var(--warm-950);
}

body.contact-page .contact-page-form-card__intro {
  margin: 10px 0 36px;
  max-width: 42ch;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--warm-600);
}

body.contact-page .contact-page-form {
  margin: 0;
  display: grid;
}

body.contact-page .contact-page-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.contact-page .contact-page-form__group {
  margin-bottom: 26px;
}

body.contact-page .contact-page-form__group--last {
  margin-bottom: 34px;
}

body.contact-page .contact-page-form__group label {
  display: block;
  margin-bottom: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-700);
}

body.contact-page .contact-page-form input,
body.contact-page .contact-page-form select,
body.contact-page .contact-page-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(118, 108, 97, 0.14);
  border-radius: 8px;
  background: rgba(248, 245, 240, 0.72);
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--warm-950);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

body.contact-page .contact-page-form input::placeholder,
body.contact-page .contact-page-form textarea::placeholder {
  color: var(--warm-400);
  font-weight: 300;
}

body.contact-page .contact-page-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 6.5 8 11l4.5-4.5' fill='none' stroke='%23958a7e' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px 12px;
}

body.contact-page .contact-page-form select:required:invalid {
  color: var(--warm-500);
}

body.contact-page .contact-page-form select option {
  color: var(--warm-950);
}

body.contact-page .contact-page-form textarea {
  min-height: 132px;
  resize: vertical;
}

body.contact-page .contact-page-form input:focus,
body.contact-page .contact-page-form select:focus,
body.contact-page .contact-page-form textarea:focus {
  outline: none;
  border-color: rgba(196, 162, 101, 0.4);
  box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.045);
  background: var(--white);
}

body.contact-page .contact-page-form__submit {
  position: relative;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 22px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #d4b87a, #c4a265);
  box-shadow: 0 2px 4px rgba(196, 162, 101, 0.2), 0 8px 24px rgba(196, 162, 101, 0.15);
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.2;
  color: #111d22;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.contact-page .contact-page-form__submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.contact-page .contact-page-form__submit::after {
  content: "→";
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.contact-page .contact-page-form__submit:hover,
body.contact-page .contact-page-form__submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(196, 162, 101, 0.22), 0 12px 30px rgba(196, 162, 101, 0.18);
}

body.contact-page .contact-page-form__submit:hover::before,
body.contact-page .contact-page-form__submit:focus-visible::before {
  opacity: 1;
}

body.contact-page .contact-page-form__submit:hover::after,
body.contact-page .contact-page-form__submit:focus-visible::after {
  transform: translateX(3px);
}

body.contact-page .contact-page-form__submit-text {
  position: relative;
  z-index: 1;
}

body.contact-page .contact-page-form__trust {
  margin: 18px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.7;
  text-align: center;
  color: var(--warm-500);
}

body.contact-page .contact-page-next {
  position: relative;
  padding: 120px 0;
  background:
    linear-gradient(180deg, rgba(244, 239, 231, 0.72) 0%, rgba(240, 235, 228, 0.94) 100%);
}

body.contact-page .contact-page-next::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--warm-200) 50%, transparent 90%);
}

body.contact-page .contact-page-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

body.contact-page .contact-page-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: var(--warm-300);
}

body.contact-page .contact-page-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

body.contact-page .contact-page-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--warm-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--gold-400);
  transition:
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.contact-page .contact-page-step:hover .contact-page-step__number,
body.contact-page .contact-page-step:focus-within .contact-page-step__number {
  border-color: rgba(196, 162, 101, 0.3);
  box-shadow: 0 0 18px rgba(196, 162, 101, 0.08);
}

body.contact-page .contact-page-step__content {
  display: grid;
  gap: 12px;
  max-width: 26ch;
}

body.contact-page .contact-page-step__title {
  font-size: 1.25rem;
  color: var(--warm-950);
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.contact-page .contact-page-step:hover .contact-page-step__title,
body.contact-page .contact-page-step:focus-within .contact-page-step__title {
  color: var(--gold-400);
}

body.contact-page .contact-page-step__text {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--warm-600);
}

body.contact-page .contact-page-direct {
  position: relative;
  overflow: hidden;
  padding: 120px 0 140px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(196, 162, 101, 0.03) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 80%, rgba(27, 50, 64, 0.36) 0%, transparent 60%),
    linear-gradient(178deg, #162730 0%, #13222a 40%, #111d22 100%);
}

body.contact-page .contact-page-direct::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(196, 162, 101, 0.06) 50%, transparent 90%);
}

body.contact-page .contact-page-direct::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23grain)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

body.contact-page .contact-page-direct__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  margin-inline: auto;
}

body.contact-page .contact-page-direct__label {
  margin-bottom: 28px;
}

body.contact-page .contact-page-direct__title {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
}

body.contact-page .contact-page-direct__body {
  margin: 0 auto;
  max-width: 480px;
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(248, 245, 240, 0.55);
}

body.contact-page .contact-page-direct__email {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-bottom: 4px;
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gold-300);
  text-decoration: none;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.contact-page .contact-page-direct__email::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.55;
}

body.contact-page .contact-page-direct__email:hover,
body.contact-page .contact-page-direct__email:focus-visible {
  color: var(--gold-200);
}

body.contact-page .contact-page-direct__email:hover::before,
body.contact-page .contact-page-direct__email:focus-visible::before {
  transform: scaleX(1);
}

body.contact-page .contact-page-direct__email-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: currentColor;
}

body.contact-page .contact-page-direct__alt {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-top: 28px;
}

body.contact-page .contact-page-direct__divider {
  width: 1px;
  height: 32px;
  background: rgba(248, 245, 240, 0.1);
}

body.contact-page .contact-page-direct__alt-text {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(248, 245, 240, 0.3);
}

body.contact-page .contact-page-direct__alt-text a {
  color: rgba(248, 245, 240, 0.45);
  text-decoration: none;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.contact-page .contact-page-direct__alt-text a:hover,
body.contact-page .contact-page-direct__alt-text a:focus-visible {
  color: var(--gold-300);
}

body.contact-page .site-footer.footer-lux {
  margin-top: 0;
  border-top: 1px solid rgba(196, 162, 101, 0.08);
  background: var(--teal-950);
}

body.legal-page {
  --teal-950: #0d171c;
  --teal-900: #111d22;
  --teal-850: #13222a;
  --teal-800: #162730;
  --gold-500: #b08d57;
  --gold-400: #c4a265;
  --gold-300: #d4b87a;
  --gold-200: #e2cb96;
  --warm-950: #1a1611;
  --warm-800: #3d3630;
  --warm-700: #5a5047;
  --warm-600: #766c61;
  --warm-500: #958a7e;
  --warm-400: #b1a799;
  --warm-300: #cec5b8;
  --warm-200: #e4ddd3;
  --warm-100: #f0ebe4;
  --warm-75: #f4efe7;
  --warm-50: #f8f5f0;
  --white: #fffdf9;
  background: var(--warm-50);
  color: var(--warm-950);
}

body.legal-page .legal-page-shell {
  width: min(100%, 1320px);
  margin-inline: auto;
  box-sizing: border-box;
  padding-inline: 72px;
}

body.legal-page .legal-page-label {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-400);
  text-decoration: none;
}

body.legal-page .legal-page-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 120px;
  background:
    radial-gradient(ellipse 60% 50% at 72% 34%, rgba(196, 162, 101, 0.04) 0%, transparent 70%),
    linear-gradient(176deg, #111d22 0%, #13222a 50%, #162730 100%);
}

body.legal-page .legal-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(196, 162, 101, 0.18) 50%, transparent 95%);
}

body.legal-page .legal-page-hero__inner {
  max-width: 780px;
  margin-inline: auto;
}

body.legal-page .legal-page-hero__label {
  color: var(--gold-300) !important;
}

body.legal-page .legal-page-hero__title {
  margin: 24px 0 0;
  max-width: 620px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white) !important;
  text-decoration: none;
  text-wrap: balance;
}

body.legal-page .legal-page-hero__rule {
  display: block;
  width: 64px;
  height: 1px;
  margin-top: 28px;
  background: linear-gradient(90deg, rgba(212, 184, 122, 0.95), rgba(212, 184, 122, 0.08));
  border-radius: 999px;
}

body.legal-page .legal-page-hero__body {
  margin: 28px 0 0;
  max-width: 560px;
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(248, 245, 240, 0.6);
}

body.legal-page .legal-page-content {
  padding: 96px 0 140px;
  background: linear-gradient(180deg, var(--warm-50) 0%, var(--warm-75) 100%);
}

body.legal-page .legal-page-content__panel {
  max-width: 900px;
  margin-inline: auto;
  padding: 52px 56px;
  border: 1px solid rgba(118, 108, 97, 0.14);
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.94);
}

body.legal-page .legal-page-content__title {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--warm-950);
  text-decoration: none;
}

body.legal-page .legal-page-label a,
body.legal-page .legal-page-hero__title a,
body.legal-page .legal-page-content__title a {
  color: inherit !important;
  text-decoration: none;
}

body.legal-page .legal-page-content__updated {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--warm-500);
}

body.legal-page .legal-page-content__updated-value {
  font-size: 1em;
  font-variant-numeric: oldstyle-nums proportional-nums;
}

body.legal-page .legal-page-content__body {
  display: grid;
  gap: 28px;
  margin: 28px auto 0;
  max-width: 72ch;
}

body.legal-page .legal-page-content__section {
  display: grid;
  gap: 12px;
}

body.legal-page .legal-page-content__section h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--warm-950);
}

body.legal-page .legal-page-content__body p {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--warm-600);
}

body.legal-page .legal-page-content__body a {
  color: var(--gold-400);
  text-decoration: none;
}

body.legal-page .legal-page-content__body a:hover,
body.legal-page .legal-page-content__body a:focus-visible {
  color: var(--gold-500);
}

body.legal-page .legal-page-content__body ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 8px;
}

body.legal-page .legal-page-content__body li {
  font-family: "Outfit", sans-serif;
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--warm-600);
}

@media (max-width: 1024px) {
  body.contact-page .contact-page-shell,
  body.contact-page .contact-page-cta__shell {
    padding-inline: 40px;
  }

  body.contact-page .contact-page-connect__grid,
  body.contact-page .contact-page-steps {
    grid-template-columns: 1fr;
  }

  body.contact-page .contact-page-connect__grid {
    gap: 56px;
  }

  body.contact-page .contact-page-steps {
    max-width: 400px;
    gap: 24px;
  }

  body.contact-page .contact-page-steps::before {
    display: none;
  }

  body.contact-page .contact-page-step {
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: start;
    gap: 18px;
    text-align: left;
  }

  body.contact-page .contact-page-step__content {
    gap: 8px;
  }

  body.legal-page .legal-page-shell {
    padding-inline: 32px;
  }

  body.legal-page .legal-page-content__panel {
    padding: 40px 36px;
  }
}

@media (max-width: 600px) {
  body.contact-page .contact-page-shell,
  body.contact-page .contact-page-cta__shell {
    padding-inline: 24px;
  }

  body.contact-page .contact-page-hero,
  body.contact-page .contact-page-connect,
  body.contact-page .contact-page-next,
  body.contact-page .contact-page-direct {
    padding: 80px 0;
  }

  body.contact-page .contact-page-hero__title,
  body.contact-page .contact-page-title,
  body.contact-page .contact-page-direct__title {
    font-size: 2.4rem;
  }

  body.contact-page .contact-page-form-card {
    padding: 36px 28px;
  }

  body.contact-page .contact-page-form__row {
    grid-template-columns: 1fr;
  }

  body.legal-page .legal-page-hero {
    padding: 152px 0 96px;
  }

  body.legal-page .legal-page-shell {
    padding-inline: 20px;
  }

  body.legal-page .legal-page-content {
    padding: 72px 0 104px;
  }

  body.legal-page .legal-page-content__panel {
    padding: 32px 24px;
  }

  body.legal-page .legal-page-hero__body,
  body.legal-page .legal-page-content__body p {
    font-size: 0.94rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.contact-page .contact-page__reveal,
  body.contact-page .contact-page-hero__label,
  body.contact-page .contact-page-hero__title,
  body.contact-page .contact-page-hero__body,
  body.contact-page .contact-page-hero__rule {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  body.contact-page .contact-page-hero__rule {
    width: 56px;
  }
}

body.website-promo-page {
  --promo-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --promo-copy: rgba(248, 245, 240, 0.72);
  --promo-muted: rgba(248, 245, 240, 0.4);
  --promo-border: rgba(212, 184, 122, 0.12);
  --promo-surface: rgba(255, 253, 249, 0.05);
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(212, 184, 122, 0.07), transparent 28%),
    radial-gradient(circle at 80% 16%, rgba(255, 253, 249, 0.04), transparent 26%),
    linear-gradient(180deg, #0c151a 0%, #0f1b21 38%, #122029 100%);
  color: var(--white);
}

body.website-promo-page .website-promo-experience {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 28px;
  box-sizing: border-box;
}

body.website-promo-page .website-promo-frame {
  width: min(92vw, calc((100svh - 56px) * 16 / 9));
  aspect-ratio: 16 / 9;
  max-height: calc(100svh - 56px);
}

body.website-promo-page .website-promo-stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(212, 184, 122, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.06) 0%, rgba(255, 253, 249, 0.025) 100%),
    rgba(7, 13, 17, 0.82);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 253, 249, 0.02);
  backdrop-filter: blur(18px);
}

body.website-promo-page .website-promo-stage__atmosphere,
body.website-promo-page .website-promo-scene {
  position: absolute;
  inset: 0;
}

body.website-promo-page .website-promo-stage__atmosphere {
  pointer-events: none;
}

body.website-promo-page .website-promo-stage__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.6;
}

body.website-promo-page .website-promo-stage__glow--one {
  width: 32vw;
  height: 32vw;
  top: -12%;
  left: -8%;
  background: rgba(212, 184, 122, 0.12);
}

body.website-promo-page .website-promo-stage__glow--two {
  width: 26vw;
  height: 26vw;
  right: -8%;
  bottom: -12%;
  background: rgba(255, 253, 249, 0.07);
}

body.website-promo-page .website-promo-stage__grain {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23grain)' opacity='0.2'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

body.website-promo-page .website-promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
}

body.website-promo-page .website-promo-overlay__meta {
  display: grid;
  gap: 6px;
}

body.website-promo-page .website-promo-kicker {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.66rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-300);
}

body.website-promo-page .website-promo-overlay__brand {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.74rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.4);
}

body.website-promo-page .website-promo-overlay__replay {
  border: 1px solid rgba(212, 184, 122, 0.12);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 253, 249, 0.04);
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.62);
  cursor: pointer;
  transition:
    border-color 0.35s var(--promo-ease),
    color 0.35s var(--promo-ease),
    background-color 0.35s var(--promo-ease);
}

body.website-promo-page .website-promo-overlay__replay:hover,
body.website-promo-page .website-promo-overlay__replay:focus-visible {
  border-color: rgba(212, 184, 122, 0.22);
  color: var(--gold-300);
  background: rgba(255, 253, 249, 0.06);
}

body.website-promo-page .website-promo-scene {
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.85s var(--promo-ease),
    visibility 0s linear 0.85s;
}

body.website-promo-page .website-promo-scene.is-current {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 1s var(--promo-ease),
    visibility 0s;
}

body.website-promo-page .website-promo-scene__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 84px 96px 88px;
  box-sizing: border-box;
}

body.website-promo-page .website-promo-scene__inner--center {
  display: grid;
  justify-items: center;
  text-align: center;
}

body.website-promo-page .website-promo-scene__inner--wide {
  display: grid;
  align-items: center;
}

body.website-promo-page .promo-motion {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  filter: blur(14px);
  transition:
    opacity 1.05s var(--promo-ease),
    transform 1.05s var(--promo-ease),
    filter 1.15s var(--promo-ease);
  transition-delay: var(--promo-item-delay, 0s);
}

body.website-promo-page .website-promo-scene.is-current .promo-motion {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

body.website-promo-page .website-promo-scene__mark {
  display: grid;
  place-items: center;
  width: 154px;
  aspect-ratio: 1;
  margin: 0;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.09), rgba(255, 253, 249, 0.02)),
    rgba(10, 18, 23, 0.5);
  border: 1px solid rgba(212, 184, 122, 0.14);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.22),
    0 0 80px rgba(212, 184, 122, 0.06);
}

body.website-promo-page .website-promo-scene__mark img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

body.website-promo-page .website-promo-scene__wordmark {
  width: min(100%, 360px);
  margin: 18px 0 0;
}

body.website-promo-page .website-promo-scene__wordmark img {
  display: block;
  width: 100%;
  height: auto;
}

body.website-promo-page .website-promo-scene__title {
  margin: 22px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--white);
  text-wrap: balance;
}

body.website-promo-page .website-promo-scene__title--hero {
  max-width: 7.6ch;
  font-size: clamp(3.8rem, 8vw, 7rem);
  line-height: 0.92;
}

body.website-promo-page .website-promo-scene__title--statement {
  max-width: 8ch;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  line-height: 0.9;
}

body.website-promo-page .website-promo-scene__title--closing {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5.8vw, 5rem);
  line-height: 0.96;
}

body.website-promo-page .website-promo-scene__line {
  margin: 20px 0 0;
  max-width: 28ch;
  font-family: "Outfit", sans-serif;
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--promo-copy);
}

body.website-promo-page .website-promo-scene__rule {
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 30px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212, 184, 122, 0.95), rgba(212, 184, 122, 0));
}

body.website-promo-page .website-promo-scene--intro::before,
body.website-promo-page .website-promo-scene--statement::before,
body.website-promo-page .website-promo-scene--closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(212, 184, 122, 0.1), transparent 28%),
    linear-gradient(90deg, rgba(255, 253, 249, 0.015) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 253, 249, 0.015) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.04));
  pointer-events: none;
}

body.website-promo-page .website-promo-fragments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: end;
}

body.website-promo-page .website-promo-fragment {
  min-width: 0;
  padding: 28px 24px 24px;
  border-radius: 20px;
  border: 1px solid var(--promo-border);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.055) 0%, rgba(255, 253, 249, 0.025) 100%);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
}

body.website-promo-page .website-promo-fragment__label {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-300);
}

body.website-promo-page .website-promo-fragment__screen {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  margin-top: 20px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 253, 249, 0.06);
  background: rgba(9, 16, 21, 0.56);
  filter: blur(12px);
  transform: scale(0.985);
  transition:
    filter 1.25s var(--promo-ease),
    transform 1.25s var(--promo-ease);
}

body.website-promo-page .website-promo-scene.is-current .website-promo-fragment__screen {
  filter: blur(0);
  transform: scale(1);
}

body.website-promo-page .website-promo-fragment__screen--soft {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.1), rgba(255, 253, 249, 0.04));
}

body.website-promo-page .website-promo-fragment__screen--featured {
  background:
    linear-gradient(180deg, rgba(212, 184, 122, 0.12), rgba(255, 253, 249, 0.03)),
    rgba(9, 16, 21, 0.58);
}

body.website-promo-page .website-promo-fragment__line,
body.website-promo-page .website-promo-fragment__panel,
body.website-promo-page .website-promo-fragment__chip,
body.website-promo-page .website-promo-fragment__badge {
  display: block;
}

body.website-promo-page .website-promo-fragment__line {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 253, 249, 0.06), rgba(255, 253, 249, 0.42), rgba(255, 253, 249, 0.06));
}

body.website-promo-page .website-promo-fragment__line--short {
  width: 74%;
}

body.website-promo-page .website-promo-fragment__panel {
  height: 92px;
  margin-top: 8px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 253, 249, 0.1), rgba(255, 253, 249, 0.02));
  border: 1px solid rgba(255, 253, 249, 0.05);
}

body.website-promo-page .website-promo-fragment__chip {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212, 184, 122, 0.14);
  background: rgba(212, 184, 122, 0.08);
}

body.website-promo-page .website-promo-fragment__chip:nth-child(2) {
  width: 58%;
}

body.website-promo-page .website-promo-fragment__badge {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212, 184, 122, 0.14);
  background: rgba(212, 184, 122, 0.12);
  font-family: "Outfit", sans-serif;
  font-size: 0.56rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--gold-300);
}

body.website-promo-page .website-promo-themes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: end;
}

body.website-promo-page .website-promo-theme {
  min-width: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 184, 122, 0.14);
}

body.website-promo-page .website-promo-theme__index {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212, 184, 122, 0.7);
}

body.website-promo-page .website-promo-theme h2 {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--white);
}

body.website-promo-page .website-promo-preview {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(212, 184, 122, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.09) 0%, rgba(255, 253, 249, 0.035) 100%),
    rgba(9, 16, 21, 0.78);
  box-shadow:
    0 30px 76px rgba(0, 0, 0, 0.22),
    0 0 90px rgba(212, 184, 122, 0.05);
  backdrop-filter: blur(18px);
  transform:
    perspective(1400px)
    rotateX(1.6deg)
    translate3d(
      var(--promo-parallax-x, 0px),
      calc(var(--promo-parallax-y, 0px) + (var(--promo-parallax-shift, 0px) * -1)),
      0
    );
}

body.website-promo-page .website-promo-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 253, 249, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}

body.website-promo-page .website-promo-preview__chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 253, 249, 0.06);
}

body.website-promo-page .website-promo-preview__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.26);
}

body.website-promo-page .website-promo-preview__brand {
  margin-left: auto;
  font-family: "Outfit", sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.42);
}

body.website-promo-page .website-promo-preview__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 26px;
  align-items: center;
  padding: 40px 42px 30px;
}

body.website-promo-page .website-promo-preview__eyebrow,
body.website-promo-page .website-promo-preview__card-label {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-300);
}

body.website-promo-page .website-promo-preview__hero-copy h3,
body.website-promo-page .website-promo-preview__card h4 {
  margin: 14px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 400;
  line-height: 1.02;
  color: var(--white);
}

body.website-promo-page .website-promo-preview__hero-copy h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-300);
}

body.website-promo-page .website-promo-preview__hero-copy p {
  margin: 14px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(248, 245, 240, 0.58);
}

body.website-promo-page .website-promo-preview__hero-mark {
  display: grid;
  place-items: center;
  min-height: 196px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 40%, rgba(212, 184, 122, 0.14), transparent 36%),
    rgba(255, 253, 249, 0.04);
  border: 1px solid rgba(212, 184, 122, 0.12);
}

body.website-promo-page .website-promo-preview__hero-mark img {
  width: 78px;
  height: 78px;
}

body.website-promo-page .website-promo-preview__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 42px 42px;
}

body.website-promo-page .website-promo-preview__card {
  min-width: 0;
  padding: 24px 22px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 253, 249, 0.06);
  background: rgba(255, 253, 249, 0.03);
}

body.website-promo-page .website-promo-preview__card--featured {
  background:
    linear-gradient(180deg, rgba(212, 184, 122, 0.11), rgba(255, 253, 249, 0.03)),
    rgba(255, 253, 249, 0.03);
  border-color: rgba(212, 184, 122, 0.14);
}

body.website-promo-page .website-promo-preview__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212, 184, 122, 0.14);
  background: rgba(212, 184, 122, 0.12);
  font-family: "Outfit", sans-serif;
  font-size: 0.56rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--gold-300);
}

body.website-promo-page .website-promo-preview__rule {
  display: block;
  width: 36px;
  height: 1px;
  margin-top: 18px;
  background: rgba(212, 184, 122, 0.48);
}

body.website-promo-page .website-promo-progress {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

body.website-promo-page .website-promo-progress__segment {
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.14);
  overflow: hidden;
}

body.website-promo-page .website-promo-progress__segment::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(212, 184, 122, 0.85), rgba(212, 184, 122, 0.35));
}

body.website-promo-page .website-promo-progress__segment.is-active::after {
  transform: scaleX(1);
  transition: transform var(--promo-scene-duration, 3000ms) linear;
}

body.website-promo-page .website-promo-progress__segment.is-complete::after {
  transform: scaleX(1);
}

@media (max-width: 1180px) {
  body.website-promo-page .website-promo-frame {
    width: min(94vw, calc((100svh - 48px) * 16 / 9));
  }

  body.website-promo-page .website-promo-scene__inner {
    padding: 80px 72px 84px;
  }

  body.website-promo-page .website-promo-fragments,
  body.website-promo-page .website-promo-themes,
  body.website-promo-page .website-promo-preview__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body.website-promo-page .website-promo-experience {
    padding: 18px;
  }

  body.website-promo-page .website-promo-frame {
    width: min(96vw, calc((100svh - 36px) * 16 / 9));
  }

  body.website-promo-page .website-promo-scene__inner {
    padding: 70px 40px 74px;
  }

  body.website-promo-page .website-promo-preview__hero {
    grid-template-columns: 1fr;
  }

  body.website-promo-page .website-promo-preview__hero-mark {
    min-height: 160px;
  }

  body.website-promo-page .website-promo-preview__hero,
  body.website-promo-page .website-promo-preview__cards {
    padding-inline: 28px;
  }
}

@media (max-width: 640px) {
  body.website-promo-page {
    overflow: auto;
  }

  body.website-promo-page .website-promo-experience {
    min-height: auto;
    padding: 0;
  }

  body.website-promo-page .website-promo-frame {
    width: 100vw;
    max-height: none;
    aspect-ratio: auto;
    min-height: 100svh;
  }

  body.website-promo-page .website-promo-stage {
    border-radius: 0;
  }

  body.website-promo-page .website-promo-scene__inner {
    padding: 92px 24px 82px;
  }

  body.website-promo-page .website-promo-scene__title--hero {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  body.website-promo-page .website-promo-scene__title--statement,
  body.website-promo-page .website-promo-scene__title--closing,
  body.website-promo-page .website-promo-theme h2 {
    font-size: clamp(2.3rem, 11vw, 3.6rem);
  }

  body.website-promo-page .website-promo-overlay {
    padding: 18px 20px;
  }

  body.website-promo-page .website-promo-progress {
    left: 20px;
    right: 20px;
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.website-promo-page .website-promo-scene,
  body.website-promo-page .promo-motion,
  body.website-promo-page .website-promo-fragment__screen,
  body.website-promo-page .website-promo-preview,
  body.website-promo-page .website-promo-progress__segment.is-active::after {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }

  body.website-promo-page .website-promo-scene {
    opacity: 0;
    visibility: hidden;
  }

  body.website-promo-page .website-promo-scene.is-current {
    opacity: 1;
    visibility: visible;
  }

  body.website-promo-page .promo-motion {
    opacity: 1 !important;
  }
}

/* Footer heading alignment fix */
.site-footer .section-label {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ekria-gold);
  background: var(--ekria-surface);
  border: 1px solid var(--ekria-border);
  border-radius: 999px;
  padding: 0.2rem 0.58rem;
  margin: 0 0 0.7rem;
}

@media (max-width: 980px) {
  .about-personal-hero-inner,
  .collab-grid,
  .about-trust-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  body[data-page-key="pricing"] .pricing-signature-hero__inner {
    grid-template-columns: 1fr;
  }

  body[data-page-key="pricing"] .pricing-levels__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page-key="pricing"] .pricing-framework__row {
    grid-template-columns: 1fr;
    gap: 0.46rem;
  }

  .collab-signature {
    justify-items: start;
  }

  .collab-step {
    grid-template-columns: 38px 1fr;
  }

  .pricing-hero,
  .about-company-intro {
    padding-top: 84px;
  }
}

@media (max-width: 760px) {
  body[data-page-key="pricing"] .section {
    padding-block: 58px;
  }

  body[data-page-key="pricing"] .pricing-signature-hero {
    padding-top: 92px;
    padding-bottom: 60px;
  }

  body[data-page-key="pricing"] .pricing-signature-title,
  body[data-page-key="pricing"] .pricing-signature-lead,
  body[data-page-key="pricing"] .pricing-levels__lead,
  body[data-page-key="pricing"] .pricing-next-step__text {
    max-width: none;
  }

  body[data-page-key="pricing"] .pricing-levels__grid {
    grid-template-columns: 1fr;
    gap: 0.82rem;
  }

  body[data-page-key="pricing"] .pricing-signature-hero__panel,
  body[data-page-key="pricing"] .pricing-level-card,
  body[data-page-key="pricing"] .pricing-framework__panel,
  body[data-page-key="pricing"] .pricing-next-step__panel {
    padding: 1.16rem;
  }
}

/* === Homepage quiet-luxury redesign (SV home only) === */
.home-page {
  --home-bg: #f3ece2;
  --home-page-bg: #fffaf4;
  --home-surface: #fff9f2;
  --home-surface-soft: #f8efe4;
  --home-line: rgba(176, 141, 87, 0.26);
  --home-line-strong: rgba(176, 141, 87, 0.42);
  --home-ink: #17222b;
  --home-muted: #4f5f6d;
  --home-gold: #b08d57;
  --home-dark-1: #102734;
  --home-dark-2: #0c1d28;
  --home-shadow-soft: 0 16px 36px rgba(10, 20, 29, 0.1);
  --home-shadow-card: 0 22px 58px rgba(10, 20, 29, 0.16);
  --home-shadow-dark: 0 28px 72px rgba(8, 13, 18, 0.32);
  --home-container-max: 1120px;
  --home-container-pad: 28px;
  --home-space-tight: 68px;
  --home-space-normal: 92px;
  --home-space-loose: 118px;
  background: var(--home-page-bg);
}

.home-page main {
  background: var(--home-page-bg);
}

.home-page main .container,
.home-page main .shell {
  width: min(var(--home-container-max), calc(100% - (var(--home-container-pad) * 2)));
  margin-inline: auto;
}

.home-page main > section {
  padding-block: var(--home-space-normal);
}

.home-page .services-section,
.home-page .insight-section,
.home-page .why-section,
.home-page .about-teaser-section,
.home-page .final-cta-section {
  background: var(--home-page-bg);
}

.home-page .insight-section {
  position: relative;
  padding-top: clamp(6.05rem, 9.4vw, 7.5rem);
  padding-bottom: clamp(5.9rem, 9.1vw, 7.3rem);
  background: var(--home-page-bg);
}

.home-page .insight-section::before,
.home-page .insight-section::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--home-container-max), calc(100% - (var(--home-container-pad) * 2)));
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(176, 141, 87, 0) 0%,
    rgba(176, 141, 87, 0.14) 16%,
    rgba(176, 141, 87, 0.14) 84%,
    rgba(176, 141, 87, 0) 100%
  );
  pointer-events: none;
}

.home-page .insight-section::before {
  top: 0;
}

.home-page .insight-section::after {
  bottom: 0;
}

.home-page .insight-inner {
  max-width: 1120px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(2.6rem, 3.8vw, 4rem);
  align-items: start;
}

.home-page .insight-story {
  min-width: 0;
  padding-right: clamp(0rem, 1vw, 0.65rem);
}

.home-page .insight-label {
  margin: 0;
  color: rgba(209, 173, 109, 0.92);
  letter-spacing: 0.22em;
  font-size: 0.77rem;
}

.home-page .insight-title {
  margin-top: 0.7rem;
  max-width: 15ch;
  color: var(--home-ink);
  line-height: 1.16;
}

.home-page .insight-copy {
  margin-top: 1.14rem;
  max-width: 56ch;
  color: var(--home-muted);
  font-size: clamp(1rem, 1.38vw, 1.08rem);
  line-height: 1.74;
}

.home-page .insight-copy + .insight-copy {
  margin-top: 1rem;
}

.home-page .insight-transition {
  margin: 2.22rem 0 0;
  padding-top: 1.04rem;
  max-width: 58ch;
  color: rgba(23, 34, 43, 0.88);
  line-height: 1.72;
  font-weight: 500;
  border-top: 1px solid rgba(176, 141, 87, 0.16);
}

.home-page .insight-compare {
  position: relative;
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3.8rem, 5.2vw, 4.6rem);
  align-items: stretch;
  justify-self: stretch;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .insight-compare::before {
  content: none;
}

.home-page .insight-transform__col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.95rem, 2.7vw, 2.3rem) clamp(1.4rem, 2.2vw, 1.75rem);
  border-radius: 24px;
  background: var(--home-surface-soft);
  border: 0;
  box-shadow: none;
}

.home-page .insight-transform__col + .insight-transform__col {
  position: static;
  padding-top: clamp(1.95rem, 2.7vw, 2.3rem);
  border-top: 0;
}

.home-page .insight-transform__col + .insight-transform__col::before {
  content: none;
}

.home-page .insight-transform__label {
  width: 100%;
  max-width: 16.5rem;
  margin: 0 auto;
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(23, 34, 43, 0.78);
}

.home-page .insight-transform__list {
  list-style: none;
  width: 100%;
  max-width: 16.5rem;
  margin: 1.15rem auto 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.home-page .insight-connector {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 14px;
  pointer-events: none;
  z-index: 1;
}

.home-page .insight-connector svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 2px rgba(176, 141, 87, 0.12));
}

.home-page .insight-connector__line {
  stroke: rgba(176, 141, 87, 0.24);
  stroke-width: 1;
  stroke-linecap: round;
}

.home-page .insight-connector__head {
  fill: none;
  stroke: rgba(176, 141, 87, 0.48);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .insight-transform__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0;
  padding-left: 0;
  padding-block: 0;
  line-height: 1.64;
}

.home-page .insight-transform__list li::before {
  content: "";
  position: static;
  width: 0.35rem;
  height: 0.35rem;
  flex: 0 0 auto;
  margin-top: 0.55em;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.46;
}

.home-page .insight-transform__list li + li {
  border-top: 0;
}

.home-page .insight-transform__col--muted {
  color: rgba(23, 34, 43, 0.66);
}

.home-page .insight-transform__col--accent {
  color: rgba(146, 111, 58, 0.94);
}

.home-page .insight-transform__col--accent .insight-transform__label {
  color: rgba(128, 97, 54, 0.94);
}

.home-page .insight-transform__col--accent .insight-transform__list li::before {
  opacity: 0.56;
}

.home-page .services-section {
  padding-top: calc(var(--home-space-tight) + 18px);
  padding-bottom: var(--home-space-tight);
}

.home-page .why-section {
  --why-container-max: calc(var(--home-container-max) * 1.1);
  --why-container-pad: calc(var(--home-container-pad) * 0.64);
  position: relative;
  padding-top: 80px;
  padding-bottom: 76px;
}

@media (min-width: 1021px) {
  .home-page .why-section {
    --why-container-max: calc(var(--home-container-max) * 1.17);
    --why-container-pad: calc(var(--home-container-pad) * 0.47);
  }
}

.home-page .why-section::before,
.home-page .why-section::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--why-container-max), calc(100% - (var(--why-container-pad) * 2)));
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(176, 141, 87, 0) 0%,
    rgba(176, 141, 87, 0.16) 14%,
    rgba(176, 141, 87, 0.16) 86%,
    rgba(176, 141, 87, 0) 100%
  );
  pointer-events: none;
}

.home-page .why-section::before {
  top: 0;
}

.home-page .why-section::after {
  bottom: 0;
}

.home-page .about-teaser-section {
  padding-top: 62px;
  padding-bottom: 72px;
}

.home-page .premium-dark-section {
  margin: 0;
  padding-block: 62px;
}

.home-page .next-step,
.home-page .about-ekria {
  margin-top: 12px;
}

.home-page .premium-dark-section::before,
.home-page .premium-dark-section::after {
  content: none;
}

.home-page .premium-hero {
  position: relative;
  isolation: isolate;
  margin-top: 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height, 80px) + 24px);
  padding-bottom: 48px;
  background:
    radial-gradient(ellipse 38% 34% at 80% 28%, rgba(176, 141, 87, 0.045), rgba(176, 141, 87, 0) 72%),
    radial-gradient(ellipse 70% 60% at 8% 20%, rgba(176, 141, 87, 0.04), transparent 70%),
    radial-gradient(ellipse 50% 50% at 85% 75%, rgba(16, 39, 52, 0.3), transparent 65%),
    #000000;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-page .premium-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(220px, 28vw, 380px);
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(243, 236, 226, 0) 0%,
    rgba(243, 236, 226, 0.02) 36%,
    rgba(243, 236, 226, 0.055) 58%,
    rgba(243, 236, 226, 0.11) 80%,
    rgba(243, 236, 226, 0.2) 100%
  );
  opacity: 0.92;
}

.home-page .premium-hero.shell {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.home-page .premium-hero-grid {
  display: grid;
  width: min(var(--home-container-max), calc(100% - (var(--home-container-pad) * 2)));
  margin-inline: auto;
  padding-inline: 0;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  align-items: center;
  gap: clamp(1.75rem, 3.4vw, 2.55rem);
  position: relative;
  z-index: 1;
}

.home-page .premium-hero-grid > div:first-child {
  max-width: 90%;
}

.home-page .premium-eyebrow {
  color: rgba(209, 173, 109, 0.92);
  letter-spacing: 0.2em;
}

.home-page .premium-title {
  margin: 0.92rem 0 0;
  max-width: 16ch;
  color: #f7efe2;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.home-page .premium-title .hero-type-wrap {
  position: relative;
  display: inline-block;
}

.home-page .premium-title .hero-type-base {
  display: block;
  opacity: 0;
}

.home-page .premium-title .hero-type-overlay {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.home-page .premium-title .hero-type-overlay::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.9em;
  margin-left: 0.08em;
  background: currentColor;
  opacity: 0.42;
  vertical-align: -0.08em;
  animation: hero-type-caret 0.9s steps(1, end) infinite;
}

.home-page .premium-title .hero-type-overlay.is-done::after {
  opacity: 0;
  animation: none;
}

.home-page .hero-description {
  margin-top: 2.55rem;
  max-width: 51ch;
  color: rgba(244, 241, 234, 0.88);
  line-height: 1.58;
}

.home-page .hero-tagline {
  margin: 1.84rem 0 0;
  color: rgba(244, 241, 234, 0.88);
  line-height: 1.35;
  opacity: 1;
}

.home-page .hero-tagline .quote-white {
  color: currentColor;
}

.home-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 2.2rem;
}

.home-page .hero-trust-microcopy {
  margin: 24px 0 0;
  max-width: 51ch;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(244, 241, 234, 0.72);
  letter-spacing: 0.01em;
}

.home-page .premium-hero-logo {
  width: clamp(134px, 22vw, 198px);
  justify-self: end;
  align-self: center;
  margin-right: clamp(22px, 3vw, 40px);
  margin-top: 0;
  position: relative;
  isolation: isolate;
}

.home-page .premium-hero-logo img {
  opacity: 0.94;
  filter:
    drop-shadow(0 0 8px rgba(176, 141, 87, 0.085))
    drop-shadow(0 1px 5px rgba(176, 141, 87, 0.05));
}

.home-page .premium-hero-logo::before {
  content: "";
  position: absolute;
  inset: -62% -56% -70%;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 62% 66%,
    rgba(221, 188, 136, 0.16) 0%,
    rgba(204, 167, 109, 0.11) 22%,
    rgba(186, 149, 94, 0.07) 40%,
    rgba(176, 141, 87, 0.04) 56%,
    rgba(176, 141, 87, 0.02) 70%,
    rgba(176, 141, 87, 0.008) 82%,
    rgba(176, 141, 87, 0) 96%
  );
  opacity: 0.17;
  filter: blur(24px);
  z-index: -1;
}

.home-page .premium-hero-logo::after {
  content: "";
  position: absolute;
  inset: 10% 11% 14%;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 42% 30%,
    rgba(251, 236, 204, 0.18) 0%,
    rgba(251, 236, 204, 0.08) 26%,
    rgba(251, 236, 204, 0) 62%
  );
  mix-blend-mode: screen;
  opacity: 0.27;
}

.home-page .btn,
.home-page .btn-premium,
.home-page .why-cta {
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease, color 220ms ease;
}

.home-page .cta-primary,
.home-page .why-cta,
.home-page .final-cta-section .btn-primary {
  background: #121d26;
  color: #f4f1ea;
  border: 1px solid rgba(176, 141, 87, 0.44);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.home-page .cta-primary:hover,
.home-page .cta-primary:focus-visible,
.home-page .why-cta:hover,
.home-page .why-cta:focus-visible,
.home-page .final-cta-section .btn-primary:hover,
.home-page .final-cta-section .btn-primary:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(176, 141, 87, 0.64);
  background: #172533;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28), 0 0 16px rgba(176, 141, 87, 0.14);
}

.home-page .cta-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #f4f1ea;
  border: 1px solid rgba(176, 141, 87, 0.44);
}

.home-page .cta-secondary:hover,
.home-page .cta-secondary:focus-visible {
  background: rgba(176, 141, 87, 0.14);
  border-color: rgba(176, 141, 87, 0.64);
  color: #fbf8f3;
  transform: translateY(-1px);
}

.home-page .hero-actions .cta {
  --hero-cta-lift-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  --hero-cta-glow-shadow: 0 0 0 1px rgba(212, 175, 55, 0.16);
  border-radius: 13px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.home-page .hero-actions .cta-primary {
  background: #d0ae71;
  color: #181209;
  border-color: #d0ae71;
  padding: 0.9rem 1.4rem;
  --hero-cta-lift-shadow: 0 12px 28px rgba(39, 27, 9, 0.28);
  --hero-cta-glow-shadow:
    0 0 0 1px rgba(222, 194, 141, 0.34),
    0 0 10px rgba(212, 175, 55, 0.14);
  box-shadow: 0 10px 24px rgba(39, 27, 9, 0.24);
}

.home-page .hero-actions .cta-secondary {
  background: transparent;
  border-color: rgba(244, 241, 234, 0.34);
  color: rgba(244, 241, 234, 0.92);
  padding: 0.76rem 1.16rem;
  --hero-cta-lift-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  --hero-cta-glow-shadow:
    0 0 0 1px rgba(244, 241, 234, 0.16),
    0 0 6px rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.home-page .hero-actions .cta:hover,
.home-page .hero-actions .cta:focus-visible {
  transform: translateY(-1px);
  color: #f4f1ea;
  border-color: rgba(212, 175, 55, 0.58);
  box-shadow: var(--hero-cta-glow-shadow), var(--hero-cta-lift-shadow);
}

.home-page .hero-actions .cta:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(212, 175, 55, 0.24),
    var(--hero-cta-glow-shadow),
    var(--hero-cta-lift-shadow);
}

.home-page .hero-actions .cta-primary:hover,
.home-page .hero-actions .cta-primary:focus-visible {
  background: #ddbe83;
  color: #161007;
  border-color: #ddbe83;
}

.home-page .hero-actions .cta-secondary:hover,
.home-page .hero-actions .cta-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(244, 241, 234, 0.95);
  border-color: rgba(244, 241, 234, 0.44);
  transform: translateY(0);
  box-shadow: 0 0 0 1px rgba(244, 241, 234, 0.18);
}

.home-page .premium-services-intro {
  margin: 0 0 1.2rem;
  text-align: left;
}

.centered-section-title {
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.home-page .premium-services-intro .section-title {
  margin-top: 0.45rem;
  color: var(--home-ink);
}

.home-page .premium-services-intro-copy {
  margin: 0.86rem auto 0;
  max-width: 64ch;
  color: var(--home-muted);
  font-size: 0.97rem;
  line-height: 1.72;
  text-align: center;
}

.home-page .premium-services-intro .premium-eyebrow.centered-section-title {
  font-family: "Inter", sans-serif;
}

.home-page .premium-product-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
}

.home-page .premium-product {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 1.65rem 1.7rem 1.6rem;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  text-decoration: none;
  transition: color 220ms ease;
}

.home-page .premium-product:first-child::after,
.home-page .premium-product:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  right: -0.5px;
  width: 1px;
  height: calc(100% - 0.4rem);
  background: linear-gradient(
    180deg,
    rgba(176, 141, 87, 0) 0%,
    rgba(176, 141, 87, 0.16) 12%,
    rgba(176, 141, 87, 0.16) 88%,
    rgba(176, 141, 87, 0) 100%
  );
  pointer-events: none;
}

.home-page .premium-product:hover,
.home-page .premium-product:focus-visible {
  transform: none;
  border-color: transparent;
  box-shadow: none;
  background: transparent;
}

.home-page .premium-product h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 2vw, 1.62rem);
  line-height: 1.2;
  color: var(--home-ink);
}

.home-page .premium-product .ekria-underline-title {
  display: inline-block;
  position: relative;
  padding-bottom: 9px;
}

.home-page .premium-product .ekria-underline-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 1px;
  background: rgba(176, 141, 87, 0.85);
}

.home-page .premium-product-fit {
  margin: 0 0 0.72rem;
  color: rgba(146, 111, 58, 0.9);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.home-page .premium-product-value {
  margin: 0;
  max-width: 34ch;
  color: var(--home-muted);
  font-size: 0.96rem;
  line-height: 1.74;
}

.home-page .premium-product-benefits {
  margin-top: 1.08rem;
  display: grid;
  gap: 0.52rem;
  color: #627385;
  font-size: 0.85rem;
}

.home-page .premium-product-benefits span {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.home-page .premium-product-benefits span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(176, 141, 87, 0.78);
  flex-shrink: 0;
  margin-top: 0.58em;
}

.home-page .premium-product-micro {
  margin-top: 1.2rem;
}

.home-page .text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding-bottom: 4px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #485e75;
  text-decoration: none;
  transition: color 240ms ease;
}

.home-page .text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(176, 141, 87, 0.9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.home-page .text-link .arrow {
  display: inline-block;
  transition: transform 240ms ease;
}

.home-page .premium-product:hover .text-link,
.home-page .premium-product:focus-visible .text-link,
.home-page .text-link:hover,
.home-page .text-link:focus-visible {
  color: #22384e;
}

.home-page .premium-product:hover .text-link::after,
.home-page .premium-product:focus-visible .text-link::after,
.home-page .text-link:hover::after,
.home-page .text-link:focus-visible::after {
  transform: scaleX(1);
}

.home-page .premium-product:hover .text-link .arrow,
.home-page .premium-product:focus-visible .text-link .arrow,
.home-page .text-link:hover .arrow,
.home-page .text-link:focus-visible .arrow {
  transform: translateX(4px);
}

.home-page .text-link:focus-visible {
  outline: 2px solid rgba(176, 141, 87, 0.36);
  outline-offset: 3px;
  border-radius: 8px;
}

.home-page .pill,
.home-page .why-pill,
.home-page .section-label.pill {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.24rem 0.62rem;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  background: var(--home-surface-soft);
  color: rgba(127, 95, 47, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
}

.home-page .why-card {
  width: 100%;
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(176, 141, 87, 0.14);
  background: linear-gradient(180deg, #111820 0%, #0f151c 100%);
  box-shadow: none;
}

.home-page .why-section .container {
  width: min(var(--why-container-max), calc(100% - (var(--why-container-pad) * 2)));
  overflow: visible;
}

.home-page .why-inner {
  padding: clamp(2.45rem, 4.9vw, 3.45rem);
}

.home-page .why-title {
  margin-top: 0;
  color: #f5f1ea;
  max-width: 16ch;
}

.home-page .why-intro {
  margin: 1.18rem 0 0;
  max-width: 62ch;
  color: rgba(241, 235, 226, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.09rem);
  line-height: 1.74;
}

.home-page .why-list {
  margin-top: 2.24rem;
  display: grid;
  gap: 1.78rem;
}

.home-page .precision-steps .precision-step {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: clamp(1.28rem, 2.5vw, 1.9rem);
  cursor: default;
  padding-block: 0.14rem;
  color: rgba(241, 235, 226, 0.9);
  pointer-events: auto;
}

.home-page .precision-steps .precision-step__num {
  flex: 0 0 clamp(3.8rem, 8.6vw, 5.55rem);
  margin: 0;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2.24rem, 5.25vw, 3.58rem);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: 0.085em;
  color: rgba(209, 173, 109, 0.14);
  text-shadow:
    0 0 18px rgba(209, 173, 109, 0.06),
    0 1px 0 rgba(14, 22, 30, 0.22);
  opacity: 0.92;
  transition: opacity 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-page .precision-steps .precision-step__body {
  display: grid;
  gap: 0.28rem;
  flex: 1 1 auto;
  min-width: 0;
}

.home-page .precision-steps .precision-step__title {
  margin: 0;
  color: #f5f1ea;
  font-size: inherit;
  font-family: inherit;
  font-weight: 600;
  line-height: 1.34;
  opacity: 0.98;
  transition: opacity 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: 70ms;
}

.home-page .precision-steps .precision-step__text {
  margin: 0;
  max-width: 62ch;
  color: rgba(241, 235, 226, 0.9);
  line-height: 1.62;
  opacity: 0.96;
  transition: opacity 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: 70ms;
}

.home-page .precision-steps .precision-step:hover .precision-step__num,
.home-page .precision-steps .precision-step:focus-within .precision-step__num {
  opacity: 1;
}

.home-page .precision-steps .precision-step:hover .precision-step__title,
.home-page .precision-steps .precision-step:focus-within .precision-step__title,
.home-page .precision-steps .precision-step:hover .precision-step__text,
.home-page .precision-steps .precision-step:focus-within .precision-step__text {
  opacity: 1;
}

.home-page .why-cta {
  margin-top: 2.25rem;
  padding: 0.72rem 1.08rem;
}

.home-page .why-card .why-cta {
  background: rgba(15, 24, 33, 0.72);
  color: rgba(244, 241, 234, 0.94);
  border: 1px solid rgba(176, 141, 87, 0.34);
  box-shadow: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.home-page .why-card .why-cta:hover,
.home-page .why-card .why-cta:focus-visible {
  transform: none;
  box-shadow: none;
  background: rgba(21, 32, 44, 0.86);
  border-color: rgba(176, 141, 87, 0.46);
  color: #f4f1ea;
}

.home-page .about-teaser {
  max-width: 760px;
}

.home-page .about-teaser .section-label.pill {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(209, 173, 109, 0.92);
}

.home-page .about-teaser .section-title {
  margin-top: 0.58rem;
  color: var(--home-ink);
}

.home-page .about-teaser-intro {
  margin: 1.18rem 0 0;
  max-width: 60ch;
  color: rgba(23, 34, 43, 0.9);
  font-size: clamp(1.04rem, 1.58vw, 1.18rem);
  line-height: 1.7;
}

.home-page .about-teaser .lead {
  margin-top: 1rem;
  max-width: 62ch;
  color: var(--home-muted);
  font-size: clamp(1.02rem, 1.65vw, 1.16rem);
  line-height: 1.74;
}

.home-page .about-teaser .section-title + .lead {
  margin-top: 1.22rem;
}

.home-page .about-teaser-principles {
  margin-top: 1.36rem;
  max-width: 62ch;
}

.home-page .about-teaser-principles__title {
  margin: 0;
  color: rgba(209, 173, 109, 0.92);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-page .about-teaser-principles__list {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.home-page .about-teaser-principles__list li {
  position: relative;
  margin: 0;
  padding: 0.46rem 0 0.46rem 0.92rem;
  color: rgba(79, 95, 109, 0.96);
  line-height: 1.62;
}

.home-page .about-teaser-principles__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.03em;
  width: 0.48rem;
  height: 1px;
  background: rgba(176, 141, 87, 0.7);
}

.home-page .about-teaser-principles__list li + li {
  border-top: 1px solid rgba(176, 141, 87, 0.14);
}

.home-page .premium-about-inner .text-link {
  margin-top: 1.2rem;
}

.home-page .premium-card {
  border-radius: 24px;
  border: 1px solid rgba(176, 141, 87, 0.24);
  background:
    radial-gradient(120% 110% at 20% 0%, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0) 50%),
    linear-gradient(135deg, #102837 0%, #0d1f2a 100%);
  box-shadow: var(--home-shadow-dark);
  padding: clamp(1.85rem, 3.5vw, 2.5rem);
}

.home-page .feature-card {
  max-width: var(--home-container-max);
}

.home-page .feature-card__inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.8rem;
  align-items: center;
}

.home-page .premium-card__grid--reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.home-page .feature-card__content {
  padding: 0;
}

.home-page .premium-card__kicker {
  margin: 0 0 0.78rem;
  color: rgba(246, 241, 233, 0.82);
  letter-spacing: 0.12em;
  font-size: 0.77rem;
  text-transform: uppercase;
}

.home-page .premium-card__kicker.process-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(209, 173, 109, 0.92);
  text-transform: uppercase;
  margin: 0 0 0.92rem;
  padding: 0;
  text-indent: 0;
}

.home-page .process-card,
.home-page .next-step {
  --split-card-kicker-gap: 0.92rem;
  --split-card-copy-gap: 1.18rem;
  --split-card-action-gap: 1.98rem;
}

.home-page .process-card .premium-card__kicker.process-label,
.home-page .next-step .premium-card__kicker.process-label {
  margin: 0 0 var(--split-card-kicker-gap);
}

.home-page .premium-card__kicker.process-label::before,
.home-page .premium-card__kicker.process-label::after {
  content: none !important;
}

.home-page .premium-card__title {
  margin: 0;
  color: #f6f1e8;
}

.home-page .premium-card__text {
  margin-top: 1.08rem;
  color: rgba(244, 239, 232, 0.86);
  line-height: 1.68;
}

.home-page .process-card .premium-card__text,
.home-page .next-step .premium-card__text {
  margin-top: var(--split-card-copy-gap);
}

.home-page .next-step .next-step-intro {
  margin: 1.02rem 0 0;
  color: rgba(244, 239, 232, 0.9);
  font-size: clamp(1rem, 1.35vw, 1.09rem);
  line-height: 1.72;
  max-width: 58ch;
}

.home-page .next-step .next-step-signals {
  margin-top: 1.16rem;
  max-width: 58ch;
}

.home-page .next-step .next-step-signals__title {
  margin: 0;
  color: rgba(209, 173, 109, 0.9);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-page .next-step .next-step-signals__list {
  list-style: none;
  margin: 0.66rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.home-page .next-step .next-step-signals__list li {
  position: relative;
  margin: 0;
  padding: 0.46rem 0 0.46rem 0.92rem;
  color: rgba(244, 239, 232, 0.84);
  line-height: 1.6;
}

.home-page .next-step .next-step-signals__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.03em;
  width: 0.48rem;
  height: 1px;
  background: rgba(176, 141, 87, 0.72);
}

.home-page .next-step .next-step-signals__list li + li {
  border-top: 1px solid rgba(176, 141, 87, 0.14);
}

.home-page .process-card .process-steps-intro {
  margin: 1.02rem 0 0;
  color: rgba(209, 173, 109, 0.9);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-page .feature-card__media {
  padding: 0;
}

.home-page .premium-card__media {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.home-page .premium-card__media img {
  width: 100%;
  height: min(490px, 42vw);
  object-fit: cover;
  transform: none;
}

/* Next-step card: premium spacing/width refinements (scoped to this block only) */
.home-page .next-step.next-step-block {
  --next-step-block-radius: 24px;
  margin-top: 80px;
  margin-bottom: 80px;
}

.home-page .next-step-block > .container {
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

.home-page .next-step-block .feature-card {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 56px 72px;
  border-radius: var(--next-step-block-radius);
  overflow: hidden;
}

.home-page .next-step-block .feature-card__inner {
  grid-template-columns: minmax(0, 1.32fr) minmax(0, 1fr);
  gap: 56px;
  align-items: stretch;
}

.home-page .next-step-block .feature-card__content {
  display: flex;
  padding: 0;
  padding-top: 6px;
}

.home-page .next-step-block .text-panel .text-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  max-width: 540px;
  width: 100%;
}

.home-page .next-step-block .premium-card__kicker.process-label {
  margin: 0 0 12px;
}

.home-page .next-step-block .premium-card__title {
  margin: 0 0 24px;
}

.home-page .next-step-block .next-step-intro {
  margin: 0;
}

.home-page .next-step-block .premium-card__text {
  margin: 16px 0 0;
}

.home-page .next-step-block .next-step-signals {
  margin-top: auto;
  padding-top: 42px;
}

.home-page .next-step-block .next-step-signals__title {
  font-size: 12px;
  margin: 0 0 10px;
}

.home-page .next-step-block .next-step-signals__list {
  margin: 0;
}

.home-page .next-step-block .next-step-signals__list li + li {
  margin-top: 12px;
}

.home-page .next-step-block .next-step-signals__list li {
  padding-top: 14px;
  padding-bottom: 14px;
}

.home-page .next-step-block .image-column {
  padding: 0;
  margin: 0;
  height: auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.home-page .next-step-block .image-wrap {
  background: transparent;
  border: 0;
  border-radius: var(--next-step-block-radius);
  box-shadow: none;
  overflow: hidden;
  height: 100%;
}

.home-page .next-step-block .image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-page .process-steps {
  gap: 0.92rem;
  margin-top: 1.16rem;
}

.home-page .process-step {
  grid-template-columns: 52px 1fr;
  column-gap: 16px;
  align-items: start;
  padding-bottom: 9px;
}

.home-page .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 62px;
  right: 10px;
  bottom: 0;
  height: 1px;
  background: rgba(176, 141, 87, 0.15);
}

.home-page .process-step__number {
  font-family: "Libre Baskerville", serif;
  font-size: 1.54rem;
  font-weight: 500;
  line-height: 1;
  color: var(--home-gold);
  font-variant-numeric: tabular-nums;
  opacity: 0.8;
  letter-spacing: 0.02em;
}

.home-page .process-step__text {
  margin: 0;
  color: rgba(245, 241, 234, 0.9);
  font-size: 0.98rem;
  line-height: 1.6;
  font-weight: 500;
}

.home-page .premium-dark-section:not(.alt) .premium-card__media {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Process card: mirror next-step premium layout system (image stays on right) */
.home-page .process-card.process-block {
  --next-step-block-radius: 24px;
  margin-top: 80px;
  margin-bottom: 80px;
}

.home-page .process-block > .container {
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

.home-page .process-block .feature-card {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 56px 72px;
  border-radius: var(--next-step-block-radius);
  overflow: hidden;
}

.home-page .process-block .feature-card__inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.32fr);
  gap: 56px;
  align-items: stretch;
}

.home-page .process-block .feature-card__content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  padding-top: 6px;
}

.home-page .process-block .text-panel > * {
  max-width: 540px;
}

.home-page .process-block .process-steps-intro {
  margin-top: auto;
  margin-bottom: 10px;
  padding-top: 42px;
}

.home-page .process-block .process-steps {
  margin-top: 0;
}

.home-page .process-block .process-step {
  padding-top: 14px;
  padding-bottom: 14px;
}

.home-page .process-block .image-column {
  padding: 0;
  margin: 0;
  height: auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.home-page .process-block .image-wrap {
  background: transparent;
  border: 0;
  border-radius: var(--next-step-block-radius);
  box-shadow: none;
  overflow: hidden;
  height: 100%;
}

.home-page .process-block .image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-page .btn-premium {
  margin-top: 1.15rem;
  padding: 0.78rem 1.22rem;
  background: #121d26;
  border: 1px solid rgba(176, 141, 87, 0.45);
  color: #f4f1ea;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.home-page .next-step .btn-premium {
  margin-top: var(--split-card-action-gap);
}

.home-page .btn-premium:hover,
.home-page .btn-premium:focus-visible {
  transform: translateY(-1px);
  background: #172533;
  border-color: rgba(176, 141, 87, 0.66);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3), 0 0 14px rgba(176, 141, 87, 0.15);
}

.home-page .final-cta-section {
  padding-top: 74px;
  padding-bottom: 92px;
}

.home-page .final-cta-section .cta-band {
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 14%, rgba(176, 141, 87, 0.16), rgba(176, 141, 87, 0) 42%),
    linear-gradient(140deg, #121d27 0%, #172533 100%);
  border: 1px solid rgba(176, 141, 87, 0.22);
  box-shadow: 0 18px 48px rgba(9, 17, 24, 0.3);
}

.home-page .final-cta-section .final-cta-kicker {
  margin: 0;
  color: rgba(209, 173, 109, 0.9);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-page .final-cta-section .cta-title {
  margin-top: 0.56rem;
  color: #f6f1e8;
  max-width: 20ch;
}

.home-page .final-cta-section .final-cta-lead {
  margin-top: 0.92rem;
  margin-bottom: 0;
  max-width: 58ch;
  color: rgba(244, 239, 232, 0.84);
  line-height: 1.7;
}

.home-page .final-cta-section .final-cta-support {
  margin-top: 0.72rem;
  margin-bottom: 0;
  max-width: 58ch;
  color: rgba(244, 239, 232, 0.72);
  font-size: 0.92rem;
  line-height: 1.64;
}

.home-page .final-cta-section .cta-band .btn-primary {
  margin-top: 1.22rem;
}

@media (max-width: 1020px) {
  .home-page .premium-hero-grid,
  .home-page .feature-card__inner,
  .home-page .premium-card__grid,
  .home-page .premium-card__grid--reverse {
    grid-template-columns: 1fr;
  }

  .home-page .process-block .feature-card__inner {
    grid-template-columns: 1fr;
  }

  .home-page .premium-product-strip,
  .home-page .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .premium-product:nth-child(2)::after {
    content: none;
  }

  .home-page .premium-hero {
    min-height: 85vh;
    padding-top: calc(var(--nav-height, 80px) + 24px);
    padding-bottom: 48px;
    text-align: center;
  }

  .home-page .premium-title {
    max-width: none;
  }

  .home-page .premium-hero-grid > div:first-child {
    max-width: none;
  }

  .home-page .hero-description {
    max-width: 48ch;
    margin-inline: auto;
  }

  .home-page .insight-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-page .insight-story {
    max-width: 760px;
  }

  .home-page .hero-trust-microcopy {
    max-width: 48ch;
    margin-inline: auto;
  }

  .home-page .hero-actions {
    justify-content: center;
  }

  .home-page .premium-hero-logo {
    justify-self: center;
    align-self: center;
    width: clamp(120px, 32vw, 176px);
    margin-right: 0;
    margin-top: 0.35rem;
  }

  .premium-hero .premium-eyebrow::after {
    margin-inline: auto;
    transform-origin: center;
  }

  /* Tighter stagger on tablet */
  .premium-hero.is-visible .premium-eyebrow { animation-delay: 0.1s; }
  .premium-hero.is-visible .premium-title { animation-delay: 0.25s; }
  .premium-hero.is-visible .premium-subtitle { animation-delay: 0.4s; }
  .premium-hero.is-visible .premium-quote { animation-delay: 0.55s; }
  .premium-hero.is-visible .hero-actions { animation-delay: 0.7s; }
  .premium-hero.is-visible .premium-hero-logo { animation-delay: 0.85s; }
  .premium-hero.is-visible .premium-eyebrow::after { animation-delay: 0.5s; }

  .home-page .premium-services-intro {
    text-align: left;
  }

  .home-page .premium-services-intro-copy {
    margin-inline: 0;
    text-align: left;
  }

  .home-page .site-footer.footer-premium .footer-grid--premium {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .home-page .next-step.next-step-block {
    --next-step-block-radius: 20px;
  }

  .home-page .process-card.process-block {
    --next-step-block-radius: 20px;
  }

  .home-page main .container,
  .home-page main .shell {
    width: min(var(--home-container-max), calc(100% - 36px));
  }

  .home-page main > section {
    padding-block: 58px;
  }

  .home-page .insight-section {
    padding-top: 72px;
    padding-bottom: 70px;
  }

  .home-page .insight-title {
    max-width: none;
  }

  .home-page .insight-copy,
  .home-page .insight-transition {
    max-width: none;
  }

  .home-page .insight-compare {
    grid-template-columns: 1fr;
    max-width: none;
    gap: 1rem;
    padding: 0;
    margin-top: 0;
    border-radius: 0;
  }

  .home-page .insight-compare::before {
    content: none;
  }

  .home-page .insight-connector {
    display: none;
  }

  .home-page .insight-transform__col {
    border-radius: 20px;
  }

  .home-page .premium-product-strip,
  .home-page .services-grid {
    grid-template-columns: 1fr;
  }

  .home-page .premium-product {
    padding: 1.4rem 1.25rem 1.3rem;
  }

  .home-page .premium-product-strip {
    row-gap: 1rem;
  }

  .home-page .premium-product:first-child::after {
    content: none;
  }

  .home-page .site-footer.footer-premium {
    margin-top: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 1.35rem;
  }

  .home-page .site-footer.footer-premium .footer-grid--premium {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .home-page .site-footer.footer-premium .footer-copy,
  .home-page .site-footer.footer-premium .footer-col-intro {
    max-width: none;
  }

  .home-page .why-list {
    gap: 1.35rem;
  }

  .home-page .why-intro {
    margin-top: 1rem;
    max-width: none;
  }

  .home-page .about-teaser-intro,
  .home-page .about-teaser-principles {
    max-width: none;
  }

  .home-page .next-step .next-step-intro,
  .home-page .next-step .next-step-signals {
    max-width: none;
  }

  .home-page .precision-steps .precision-step {
    flex-direction: column;
    gap: 0.5rem;
  }

  .home-page .precision-steps .precision-step__num {
    flex-basis: auto;
    font-size: clamp(2rem, 9.8vw, 2.72rem);
  }

  .home-page .why-section {
    padding-top: 68px;
    padding-bottom: 66px;
  }

  .home-page .next-step,
  .home-page .about-ekria {
    margin-top: 10px;
  }

  .home-page .premium-card {
    padding: 1.35rem;
    border-radius: 20px;
  }

  .home-page .premium-card__media img {
    height: 320px;
  }

  .home-page .process-step {
    grid-template-columns: 44px 1fr;
    column-gap: 13px;
  }

  .home-page .process-card .process-steps-intro {
    margin-top: 0.92rem;
  }

  .home-page .process-step:not(:last-child)::after {
    left: 52px;
    right: 8px;
  }

  .home-page .process-step__number {
    font-size: 1.4rem;
  }

  /* --- Hero mobile refinements --- */
  .home-page .premium-hero {
    min-height: 85vh;
    padding-top: calc(var(--nav-height, 80px) + 24px);
    padding-bottom: 48px;
  }

  .home-page .premium-title {
    font-size: clamp(30px, 7.5vw, 42px);
  }

  .home-page .hero-description {
    max-width: none;
    font-size: clamp(0.92rem, 3.5vw, 1.08rem);
  }

  .home-page .premium-quote {
    font-size: clamp(0.78rem, 3vw, 0.88rem);
  }

  .home-page .premium-hero .btn {
    min-height: 44px;
    padding: 0.72rem 1.1rem;
    font-size: 0.9rem;
  }

  .home-page .hero-actions .cta-primary {
    padding: 0.8rem 1.18rem;
  }

  .home-page .hero-actions .cta-secondary {
    padding: 0.68rem 1rem;
  }

  .home-page .premium-hero-logo {
    width: clamp(96px, 26vw, 136px);
    margin-top: 0.8rem;
  }

  /* Even tighter stagger on mobile */
  .premium-hero.is-visible .premium-eyebrow { animation-delay: 0.08s; }
  .premium-hero.is-visible .premium-title { animation-delay: 0.2s; }
  .premium-hero.is-visible .premium-subtitle { animation-delay: 0.32s; }
  .premium-hero.is-visible .premium-quote { animation-delay: 0.44s; }
  .premium-hero.is-visible .hero-actions { animation-delay: 0.56s; }
  .premium-hero.is-visible .premium-hero-logo { animation-delay: 0.68s; }
  .premium-hero.is-visible .premium-eyebrow::after { animation-delay: 0.35s; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .reveal,
  .home-page .text-link,
  .home-page .text-link::after,
  .home-page .text-link .arrow,
  .home-page .premium-product,
  .home-page .btn,
  .home-page .btn-premium,
  .home-page .why-cta,
  .home-page .cta-primary,
  .home-page .cta-secondary,
  .home-page .hero-actions .cta,
  .home-page .premium-hero .premium-eyebrow,
  .home-page .premium-hero .premium-eyebrow::after,
  .home-page .premium-hero .premium-title,
  .home-page .premium-title .hero-type-base,
  .home-page .premium-hero .premium-subtitle,
  .home-page .premium-hero .premium-quote,
  .home-page .premium-hero .hero-actions,
  .home-page .premium-hero .premium-hero-logo {
    transition: none !important;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
    clip-path: none !important;
    will-change: auto !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
  }

  .home-page .premium-title .hero-type-overlay {
    display: none !important;
  }

  .home-page .hero-actions .cta:hover,
  .home-page .hero-actions .cta:focus-visible {
    transform: none !important;
  }
}

/* === Insight luxury editorial redesign (home only) === */
.home-page {
  background-color: #f8f5f0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.home-page .insight-lux {
  --teal-900: #111d22;
  --teal-800: #162730;
  --teal-700: #1b3240;
  --gold-400: #c4a265;
  --gold-300: #d4b87a;
  --gold-200: #e2cb96;
  --gold-100: #f0e0bf;
  --gold-50: #faf5eb;
  --warm-950: #1a1611;
  --warm-900: #2d2820;
  --warm-800: #3d3630;
  --warm-700: #5a5047;
  --warm-600: #766c61;
  --warm-500: #958a7e;
  --warm-400: #b0a698;
  --warm-300: #cec5b8;
  --warm-200: #e4ddd3;
  --warm-100: #f0ebe4;
  --warm-50: #f8f5f0;
  --white: #fffdf9;
  --insight-ease: cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  padding: 0;
  background: var(--warm-50);
  overflow: clip;
  font-family: "Outfit", sans-serif;
}

.home-page .insight-lux::before,
.home-page .insight-lux::after {
  content: none;
}

.home-page .insight-lux__shell {
  width: min(100%, 1320px);
  margin-inline: auto;
  box-sizing: border-box;
  padding: 100px 72px 100px;
}

.home-page .insight-lux__header {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: start;
  margin-bottom: 96px;
}

.home-page .insight-lux__intro {
  position: relative;
  min-width: 0;
}

.home-page .insight-lux__number {
  position: absolute;
  top: -80px;
  left: -8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--warm-200);
  opacity: 0.5;
  pointer-events: none;
}

.home-page .insight-lux__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.home-page .insight-lux__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-400);
  flex: 0 0 auto;
}

.home-page .insight-lux__title {
  margin: 1.35rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--warm-950);
}

.home-page .insight-lux__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-400);
}

.home-page .insight-lux__rule {
  display: block;
  width: 56px;
  height: 1px;
  margin-top: 1.55rem;
  background: linear-gradient(90deg, var(--gold-400), transparent);
  transform: scaleX(0);
  transform-origin: left;
}

.home-page .insight-lux__copy {
  min-width: 0;
  align-self: end;
}

.home-page .insight-lux__copy p {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--warm-600);
}

.home-page .insight-lux__copy p + p {
  margin-top: 1rem;
}

.home-page .insight-lux__copy strong {
  font-weight: 500;
  color: var(--warm-950);
}

.home-page .insight-lux__cards {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1080px;
  margin-inline: auto;
}

.home-page .insight-lux__card {
  position: relative;
  min-width: 0;
  padding: 52px 48px 56px;
  font-family: "Outfit", sans-serif;
}

.home-page .insight-lux__card--before {
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-right: 0;
  border-radius: 16px 0 0 16px;
}

.home-page .insight-lux__card--after {
  background: var(--teal-800);
  border-top: 2px solid var(--gold-400);
  border-radius: 0 16px 16px 0;
  box-shadow:
    0 8px 16px rgba(26, 22, 17, 0.04),
    0 24px 56px rgba(26, 22, 17, 0.1);
  overflow: hidden;
}

.home-page .insight-lux__card--after::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.06) 0%, rgba(196, 162, 101, 0) 72%);
  pointer-events: none;
}

.home-page .insight-lux__card-head {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.home-page .insight-lux__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .insight-lux__card--before .insight-lux__icon {
  color: var(--warm-400);
}

.home-page .insight-lux__card--after .insight-lux__icon {
  color: var(--gold-400);
}

.home-page .insight-lux__card-label {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.home-page .insight-lux__card--before .insight-lux__card-label {
  color: var(--warm-600);
}

.home-page .insight-lux__card--after .insight-lux__card-label {
  color: var(--gold-300);
}

.home-page .insight-lux__list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-page .insight-lux__list li {
  position: relative;
  margin: 0;
  padding: 16px 0 16px 16px;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
}

.home-page .insight-lux__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(16px + 0.6em);
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.home-page .insight-lux__list li + li {
  border-top: 1px solid var(--warm-100);
}

.home-page .insight-lux__list--before li {
  color: var(--warm-600);
}

.home-page .insight-lux__list--before li::before {
  background: var(--warm-300);
}

.home-page .insight-lux__list--after li {
  color: rgba(248, 245, 240, 0.82);
}

.home-page .insight-lux__list--after li + li {
  border-top-color: rgba(255, 255, 255, 0.05);
}

.home-page .insight-lux__list--after li::before {
  background: var(--gold-400);
  box-shadow: 0 0 8px rgba(196, 162, 101, 0.3);
}

.home-page .insight-lux__connector {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  box-shadow:
    0 2px 6px rgba(196, 162, 101, 0.18),
    0 6px 18px rgba(196, 162, 101, 0.1),
    0 0 0 6px rgba(196, 162, 101, 0.04);
  pointer-events: none;
  user-select: none;
  cursor: default;
}

.home-page .insight-lux__connector-arrow {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--teal-900);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .insight-lux__tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 80px 0 0;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: var(--warm-500);
}

.home-page .insight-lux__tagline-line {
  width: 24px;
  height: 1px;
  background: rgba(196, 162, 101, 0.5);
  flex: 0 0 24px;
}

.home-page .insight-lux__number,
.home-page .insight-lux__eyebrow,
.home-page .insight-lux__title,
.home-page .insight-lux__copy,
.home-page .insight-lux__card,
.home-page .insight-lux__connector,
.home-page .insight-lux__tagline {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.9s var(--insight-ease),
    transform 0.9s var(--insight-ease);
}

.home-page .insight-lux__rule {
  opacity: 1;
  transition: transform 0.9s var(--insight-ease);
}

.home-page .insight-lux__connector {
  transition:
    opacity 0.9s var(--insight-ease),
    transform 0.9s var(--insight-ease),
    box-shadow 4s var(--insight-ease);
}

.home-page .insight-lux__list li {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s var(--insight-ease),
    transform 0.8s var(--insight-ease);
}

.home-page .insight-lux.is-visible .insight-lux__number {
  opacity: 0.5;
  transform: translateY(0);
  transition-delay: 0.02s;
}

.home-page .insight-lux.is-visible .insight-lux__eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.home-page .insight-lux.is-visible .insight-lux__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.home-page .insight-lux.is-visible .insight-lux__copy {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.16s;
}

.home-page .insight-lux.is-visible .insight-lux__rule {
  transform: scaleX(1);
  transition-delay: 0.4s;
}

.home-page .insight-lux.is-visible .insight-lux__card--before {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.home-page .insight-lux.is-visible .insight-lux__card--after {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.home-page .insight-lux.is-visible .insight-lux__connector {
  opacity: 1;
  transform: translate(-50%, -50%);
  transition-delay: 0.6s;
  animation: insight-lux-connector-pulse 4s var(--insight-ease) 0.6s infinite;
}

.home-page .insight-lux.is-visible .insight-lux__tagline {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.home-page .insight-lux.is-visible .insight-lux__card--before .insight-lux__list li:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.home-page .insight-lux.is-visible .insight-lux__card--before .insight-lux__list li:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

.home-page .insight-lux.is-visible .insight-lux__card--before .insight-lux__list li:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.36s;
}

.home-page .insight-lux.is-visible .insight-lux__card--before .insight-lux__list li:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.44s;
}

.home-page .insight-lux.is-visible .insight-lux__card--before .insight-lux__list li:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.52s;
}

.home-page .insight-lux.is-visible .insight-lux__card--after .insight-lux__list li:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.home-page .insight-lux.is-visible .insight-lux__card--after .insight-lux__list li:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.38s;
}

.home-page .insight-lux.is-visible .insight-lux__card--after .insight-lux__list li:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.46s;
}

.home-page .insight-lux.is-visible .insight-lux__card--after .insight-lux__list li:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.54s;
}

.home-page .insight-lux.is-visible .insight-lux__card--after .insight-lux__list li:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.62s;
}

@keyframes insight-lux-connector-pulse {
  0%,
  100% {
    box-shadow:
      0 2px 8px rgba(196, 162, 101, 0.25),
      0 8px 24px rgba(196, 162, 101, 0.15),
      0 0 0 6px rgba(196, 162, 101, 0.06);
  }

  50% {
    box-shadow:
      0 3px 10px rgba(196, 162, 101, 0.3),
      0 12px 30px rgba(196, 162, 101, 0.18),
      0 0 0 8px rgba(196, 162, 101, 0.08);
  }
}

@media (max-width: 1024px) {
  .home-page .insight-lux.insight-section {
    padding: 0;
  }

  .home-page .insight-lux__shell {
    width: min(100%, 1320px);
    padding: 100px 40px 100px;
  }

  .home-page .insight-lux__header {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 72px;
  }

  .home-page .insight-lux__number {
    top: -64px;
    left: 0;
    font-size: clamp(5.25rem, 12vw, 7rem);
  }

  .home-page .insight-lux__cards {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .home-page .insight-lux__card {
    padding: 44px 36px 48px;
  }

  .home-page .insight-lux__card--before {
    border-right: 1px solid var(--warm-200);
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
  }

  .home-page .insight-lux__card--after {
    border-radius: 0 0 16px 16px;
  }

  .home-page .insight-lux__connector {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .home-page .insight-lux.is-visible .insight-lux__connector {
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

@media (max-width: 600px) {
  .home-page .insight-lux__shell {
    width: min(100%, 1320px);
    padding: 80px 20px 100px;
  }

  .home-page .insight-lux__title {
    font-size: 2.2rem;
  }

  .home-page .insight-lux__number {
    top: -44px;
    font-size: 4.2rem;
  }

  .home-page .insight-lux__card {
    padding: 36px 28px 40px;
  }

  .home-page .insight-lux__tagline {
    gap: 12px;
    font-size: 1.15rem;
    margin-top: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .insight-lux__number,
  .home-page .insight-lux__eyebrow,
  .home-page .insight-lux__title,
  .home-page .insight-lux__copy,
  .home-page .insight-lux__card,
  .home-page .insight-lux__connector,
  .home-page .insight-lux__tagline,
  .home-page .insight-lux__list li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .home-page .insight-lux__rule {
    transform: scaleX(1) !important;
    transition: none !important;
  }
}

/* === Services luxury editorial redesign (home only) === */
.home-page .services-lux {
  --teal-800: #162730;
  --gold-400: #c4a265;
  --gold-300: #d4b87a;
  --gold-200: #e2cb96;
  --warm-950: #1a1611;
  --warm-700: #5a5047;
  --warm-600: #766c61;
  --warm-300: #cec5b8;
  --warm-200: #e4ddd3;
  --warm-100: #f0ebe4;
  --warm-50: #f8f5f0;
  --white: #fffdf9;
  --services-ease: cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
  background: var(--warm-50);
  font-family: "Outfit", sans-serif;
}

.home-page .services-lux::before,
.home-page .services-lux::after {
  content: none;
}

.home-page .services-lux__shell {
  width: min(100%, 1320px);
  margin-inline: auto;
  box-sizing: border-box;
  padding: 100px 72px 120px;
}

.home-page .services-lux__header {
  max-width: 640px;
  margin: 0 auto 88px;
  text-align: center;
}

.home-page .services-lux__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 24px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.home-page .services-lux__eyebrow::before,
.home-page .services-lux__eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(196, 162, 101, 0.5);
  flex: 0 0 24px;
}

.home-page .services-lux__title {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--warm-950);
}

.home-page .services-lux__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-400);
}

.home-page .services-lux__intro {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--warm-600);
}

.home-page .services-lux__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.home-page .services-lux__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 48px 40px 44px;
  border-radius: 16px;
  text-decoration: none;
  overflow: hidden;
  transition:
    opacity 0.9s var(--services-ease),
    transform 0.9s var(--services-ease),
    box-shadow 0.5s var(--services-ease),
    border-color 0.5s var(--services-ease),
    background-color 0.5s var(--services-ease),
    color 0.5s var(--services-ease);
}

.home-page .services-lux__card > * {
  position: relative;
  z-index: 1;
}

.home-page .services-lux__card--standard {
  background: var(--white);
  border: 1px solid var(--warm-200);
  box-shadow:
    0 1px 2px rgba(26, 22, 17, 0.04),
    0 1px 3px rgba(26, 22, 17, 0.06);
}

.home-page .services-lux__card--featured {
  background: var(--teal-800);
  border: 1px solid rgba(196, 162, 101, 0.15);
  border-top: 2px solid var(--gold-400);
  box-shadow:
    0 8px 16px rgba(26, 22, 17, 0.04),
    0 24px 56px rgba(26, 22, 17, 0.1);
}

.home-page .services-lux__card--featured::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.05) 0%, rgba(196, 162, 101, 0) 72%);
  pointer-events: none;
}

.home-page .services-lux__badge {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  max-width: calc(100% - 48px);
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid rgba(196, 162, 101, 0.15);
  background: rgba(196, 162, 101, 0.1);
  font-size: 0.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  color: var(--gold-400);
}

.home-page .services-lux__number {
  display: block;
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 0.9;
}

.home-page .services-lux__card--standard .services-lux__number {
  color: var(--warm-200);
}

.home-page .services-lux__card--featured .services-lux__number {
  color: rgba(196, 162, 101, 0.15);
}

.home-page .services-lux__card-title {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.1;
}

.home-page .services-lux__card--standard .services-lux__card-title {
  color: var(--warm-950);
}

.home-page .services-lux__card--featured .services-lux__card-title {
  color: var(--white);
}

.home-page .services-lux__card-subtitle {
  margin: 0 0 24px;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.home-page .services-lux__rule {
  display: block;
  width: 32px;
  height: 1px;
  margin-bottom: 24px;
  transition: width 0.5s var(--services-ease);
}

.home-page .services-lux__card--standard .services-lux__rule {
  background: var(--warm-300);
}

.home-page .services-lux__card--featured .services-lux__rule {
  background: rgba(196, 162, 101, 0.4);
}

.home-page .services-lux__description {
  margin: 0 0 28px;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
}

.home-page .services-lux__card--standard .services-lux__description {
  color: var(--warm-700);
}

.home-page .services-lux__card--featured .services-lux__description {
  color: rgba(248, 245, 240, 0.76);
}

.home-page .services-lux__list {
  --services-list-marker-column: 5px;
  --services-list-marker-size: 5px;
  --services-list-marker-gap: 12px;
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 0;
  flex: 1 1 auto;
}

.home-page .services-lux__list li {
  margin: 0;
  display: grid;
  grid-template-columns: var(--services-list-marker-column) minmax(0, 1fr);
  column-gap: var(--services-list-marker-gap);
  align-items: start;
  padding: 10px 0;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.5;
}

.home-page .services-lux__list li::before {
  content: "";
  display: block;
  width: var(--services-list-marker-size);
  height: var(--services-list-marker-size);
  margin-top: calc((1.5em - var(--services-list-marker-size)) / 2);
  border-radius: 50%;
}

.home-page .services-lux__card--standard .services-lux__list li {
  color: var(--warm-700);
}

.home-page .services-lux__card--standard .services-lux__list li::before {
  background: var(--warm-300);
}

.home-page .services-lux__card--featured .services-lux__list li {
  color: rgba(248, 245, 240, 0.8);
}

.home-page .services-lux__card--featured .services-lux__list li::before {
  background: var(--gold-400);
  box-shadow: 0 0 6px rgba(196, 162, 101, 0.3);
}

.home-page .services-lux__cta {
  display: inline-flex;
  align-items: center;
  width: 100%;
  margin-top: auto;
  padding-top: 20px;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.4;
  transition: color 0.5s var(--services-ease);
}

.home-page .services-lux__cta::after {
  content: "→";
  display: inline-block;
  margin-left: 0.45rem;
  transition: transform 0.5s var(--services-ease);
}

.home-page .services-lux__card--standard .services-lux__cta {
  color: var(--warm-700);
  border-top: 1px solid var(--warm-100);
}

.home-page .services-lux__card--featured .services-lux__cta {
  color: var(--gold-300);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.home-page .services-lux__eyebrow,
.home-page .services-lux__title,
.home-page .services-lux__intro,
.home-page .services-lux__card {
  opacity: 0;
  transform: translateY(24px);
}

.home-page .services-lux__eyebrow,
.home-page .services-lux__title,
.home-page .services-lux__intro {
  transition:
    opacity 0.9s var(--services-ease),
    transform 0.9s var(--services-ease);
}

.home-page .services-lux.is-visible .services-lux__eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.home-page .services-lux.is-visible .services-lux__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.home-page .services-lux.is-visible .services-lux__intro {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.16s;
}

.home-page .services-lux.is-visible .services-lux__card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

.home-page .services-lux.is-visible .services-lux__card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.24s;
}

.home-page .services-lux.is-visible .services-lux__card:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.36s;
}

.home-page .services-lux__card:hover,
.home-page .services-lux__card:focus-visible {
  transition-delay: 0s;
}

.home-page .services-lux__card--standard:hover,
.home-page .services-lux__card--standard:focus-visible {
  transform: translateY(-4px);
  border-color: var(--warm-300);
  box-shadow:
    0 4px 8px rgba(26, 22, 17, 0.03),
    0 12px 32px rgba(26, 22, 17, 0.08);
}

.home-page .services-lux__card--featured:hover,
.home-page .services-lux__card--featured:focus-visible {
  transform: translateY(-6px);
  box-shadow:
    0 8px 20px rgba(26, 22, 17, 0.06),
    0 28px 64px rgba(26, 22, 17, 0.14);
}

.home-page .services-lux__card:hover .services-lux__rule,
.home-page .services-lux__card:focus-visible .services-lux__rule {
  width: 48px;
}

.home-page .services-lux__card--standard:hover .services-lux__cta,
.home-page .services-lux__card--standard:focus-visible .services-lux__cta {
  color: var(--gold-400);
}

.home-page .services-lux__card--featured:hover .services-lux__cta,
.home-page .services-lux__card--featured:focus-visible .services-lux__cta {
  color: var(--gold-200);
}

.home-page .services-lux__card:hover .services-lux__cta::after,
.home-page .services-lux__card:focus-visible .services-lux__cta::after {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .home-page .services-lux__shell {
    padding: 100px 40px 120px;
  }

  .home-page .services-lux__header {
    margin-bottom: 72px;
  }

  .home-page .services-lux__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
    gap: 20px;
  }

  .home-page .services-lux__card {
    padding: 40px 36px 38px;
  }

}

@media (max-width: 600px) {
  .home-page .services-lux__shell {
    padding: 80px 20px 100px;
  }

  .home-page .services-lux__header {
    margin-bottom: 56px;
  }

  .home-page .services-lux__card {
    padding: 36px 28px 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .services-lux__eyebrow,
  .home-page .services-lux__title,
  .home-page .services-lux__intro,
  .home-page .services-lux__card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .home-page .services-lux__rule,
  .home-page .services-lux__cta::after {
    transition: none !important;
  }
}

/* Home navbar: keep frosted scroll state, switch beige tint to black */
body.home-page[data-page-key] .site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid rgba(197, 159, 74, 0.22);
  backdrop-filter: blur(2px);
  box-shadow: 0 1px 6px rgba(20, 38, 59, 0.06);
}

body.home-page[data-page-key] .site-header.is-scrolled .nav-link {
  color: #f6efe3;
}

body.home-page[data-page-key] .site-header.is-scrolled .nav-link:hover,
body.home-page[data-page-key] .site-header.is-scrolled .nav-link:focus-visible,
body.home-page[data-page-key] .site-header.is-scrolled .nav-link[aria-current="page"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

body.home-page[data-page-key] .site-header.is-scrolled .language-switch {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.28);
}

body.home-page[data-page-key] .site-header.is-scrolled .language-switch a {
  color: #f6efe3;
}

body.home-page[data-page-key] .site-header.is-scrolled .language-switch a[aria-current="true"] {
  background: rgba(181, 139, 82, 0.24);
  color: #ffffff;
}

/* === Hero cinema redesign (home only) === */
.home-page .premium-hero.hero-cinema {
  --hero-cinema-ease: cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(196, 162, 101, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 20% 80%, rgba(27, 50, 64, 0.6) 0%, transparent 60%),
    linear-gradient(175deg, #111d22 0%, #13222a 40%, #162730 100%);
}

.home-page .premium-hero.hero-cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.9;
}

.home-page .premium-hero.hero-cinema::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 5%, #c4a265 50%, transparent 95%);
  opacity: 0.2;
}

.home-page .hero-cinema__shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  margin-inline: auto;
  box-sizing: border-box;
  padding: 160px 72px 100px;
}

.home-page .hero-cinema__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
  align-items: center;
  gap: 84px;
}

.home-page .hero-cinema__content {
  min-width: 0;
}

.home-page .hero-cinema__label,
.home-page .hero-cinema__body,
.home-page .hero-cinema__actions,
.home-page .hero-cinema__trust,
.home-page .hero-cinema__glow,
.home-page .hero-cinema__logo,
.home-page .hero-cinema__ring,
.home-page .hero-cinema__dot,
.home-page .hero-cinema__scroll {
  opacity: 0;
  animation-fill-mode: forwards;
}

.home-page .hero-cinema__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c4a265;
  animation: heroCinemaFadeSlideUp 0.8s var(--hero-cinema-ease) 0.2s forwards;
}

.home-page .hero-cinema__label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #c4a265;
  flex: 0 0 28px;
}

.home-page .hero-cinema__title {
  margin: 24px 0 32px;
  max-width: 660px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #fffdf9;
}

.home-page .hero-cinema__title .hero-type-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 100%;
}

.home-page .hero-cinema__title .hero-type-base {
  display: block;
  opacity: 0;
  transition: opacity 0.25s var(--hero-cinema-ease);
}

.home-page .hero-cinema__title .hero-type-overlay {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
  white-space: normal;
  opacity: 1;
  transition: opacity 0.25s var(--hero-cinema-ease);
}

.home-page .hero-cinema__title .hero-type-fragment {
  display: inline;
}

.home-page .hero-cinema__title .hero-type-caret {
  display: inline-block;
  width: 1px;
  height: 0.9em;
  margin-left: 0.08em;
  background: currentColor;
  opacity: 0.42;
  vertical-align: -0.08em;
  animation: hero-type-caret 0.9s steps(1, end) infinite;
}

.home-page .hero-cinema__title .hero-type-overlay.is-done {
  opacity: 0;
}

.home-page .hero-cinema__title .hero-type-overlay.is-done .hero-type-caret {
  opacity: 0;
  animation: none;
}

.home-page .hero-cinema__title em {
  font-style: italic;
  font-weight: 300;
  color: #d4b87a;
}

.home-page .hero-cinema__body {
  margin: 0 0 40px;
  max-width: 550px;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(248, 245, 240, 0.68);
  animation: heroCinemaFadeSlideUp 0.8s var(--hero-cinema-ease) 0.7s forwards;
}

.home-page .hero-cinema__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 32px;
  animation: heroCinemaFadeSlideUp 0.8s var(--hero-cinema-ease) 0.85s forwards;
}

.home-page .hero-cinema__button,
body.thank-you-page .hero-cinema__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition:
    transform 0.35s var(--hero-cinema-ease),
    box-shadow 0.35s var(--hero-cinema-ease),
    border-color 0.35s var(--hero-cinema-ease),
    color 0.35s var(--hero-cinema-ease),
    background-color 0.35s var(--hero-cinema-ease);
}

.home-page .hero-cinema__button-text,
body.thank-you-page .hero-cinema__button-text {
  position: relative;
  z-index: 1;
}

.home-page .hero-cinema__button--primary,
body.thank-you-page .hero-cinema__button--primary {
  padding: 16px 32px;
  background: linear-gradient(135deg, #d4b87a, #c4a265);
  color: #111d22;
  box-shadow:
    0 2px 4px rgba(196, 162, 101, 0.2),
    0 8px 20px rgba(196, 162, 101, 0.12);
}

.home-page .hero-cinema__button--primary::before,
body.thank-you-page .hero-cinema__button--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #e2cb96, #d4b87a);
  opacity: 0;
  transition: opacity 0.35s var(--hero-cinema-ease);
}

.home-page .hero-cinema__button--primary::after,
body.thank-you-page .hero-cinema__button--primary::after {
  content: "→";
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.35s var(--hero-cinema-ease);
}

.home-page .hero-cinema__button--primary:hover,
.home-page .hero-cinema__button--primary:focus-visible,
body.thank-you-page .hero-cinema__button--primary:hover,
body.thank-you-page .hero-cinema__button--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 4px 8px rgba(196, 162, 101, 0.22),
    0 14px 28px rgba(196, 162, 101, 0.16);
}

.home-page .hero-cinema__button--primary:hover::before,
.home-page .hero-cinema__button--primary:focus-visible::before,
body.thank-you-page .hero-cinema__button--primary:hover::before,
body.thank-you-page .hero-cinema__button--primary:focus-visible::before {
  opacity: 1;
}

.home-page .hero-cinema__button--primary:hover::after,
.home-page .hero-cinema__button--primary:focus-visible::after {
  transform: translateX(3px);
}

.home-page .hero-cinema__button--secondary,
body.thank-you-page .hero-cinema__button--secondary {
  padding: 16px 32px;
  border: 1px solid rgba(248, 245, 240, 0.18);
  background: transparent;
  color: rgba(248, 245, 240, 0.78);
}

.home-page .hero-cinema__button--secondary:hover,
.home-page .hero-cinema__button--secondary:focus-visible,
body.thank-you-page .hero-cinema__button--secondary:hover,
body.thank-you-page .hero-cinema__button--secondary:focus-visible {
  border-color: rgba(196, 162, 101, 0.35);
  background: rgba(196, 162, 101, 0.04);
  color: #d4b87a;
}

.home-page .hero-cinema__trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  max-width: 700px;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(248, 245, 240, 0.46);
  animation: heroCinemaFadeSlideUp 0.8s var(--hero-cinema-ease) 1s forwards;
}

.home-page .hero-cinema__trust-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: #c4a265;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.5;
}

.home-page .hero-cinema__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 460px;
  transform: translateX(16px);
}

.home-page .hero-cinema__glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.06) 0%, transparent 70%);
  animation: heroCinemaGlowIn 1.5s var(--hero-cinema-ease) 0.6s forwards;
}

.home-page .hero-cinema__ring {
  position: absolute;
  border-radius: 50%;
  transform: scale(0.9);
}

.home-page .hero-cinema__ring--outer {
  width: 320px;
  height: 320px;
  border: 1px solid rgba(196, 162, 101, 0.08);
  animation: heroCinemaScaleIn 1.2s var(--hero-cinema-ease) 0.8s forwards;
}

.home-page .hero-cinema__ring--inner {
  width: 260px;
  height: 260px;
  border: 1px solid rgba(196, 162, 101, 0.05);
  animation: heroCinemaScaleIn 1.2s var(--hero-cinema-ease) 0.95s forwards;
}

.home-page .hero-cinema__dot {
  position: absolute;
  border-radius: 50%;
  background: #c4a265;
  opacity: 0;
}

.home-page .hero-cinema__dot--one {
  top: 92px;
  right: 88px;
  width: 4px;
  height: 4px;
  animation:
    heroCinemaFadeIn 0.8s var(--hero-cinema-ease) 1.2s forwards,
    heroCinemaDotPulse 3.4s ease-in-out 1.55s infinite;
}

.home-page .hero-cinema__dot--two {
  bottom: 92px;
  left: 96px;
  width: 4px;
  height: 4px;
  animation:
    heroCinemaFadeIn 0.8s var(--hero-cinema-ease) 1.28s forwards,
    heroCinemaDotPulse 3.6s ease-in-out 1.7s infinite;
}

.home-page .hero-cinema__dot--three {
  top: 50%;
  right: 62px;
  width: 3px;
  height: 3px;
  animation:
    heroCinemaFadeIn 0.8s var(--hero-cinema-ease) 1.36s forwards,
    heroCinemaDotPulse 3.8s ease-in-out 1.85s infinite;
}

.home-page .hero-cinema__logo {
  position: relative;
  z-index: 2;
  margin: 0;
  width: 180px;
  transform: scale(0.92);
  animation: heroCinemaLogoIn 1.2s var(--hero-cinema-ease) 0.5s forwards;
}

.home-page .hero-cinema__logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(196, 162, 101, 0.15));
}

.home-page .hero-cinema__scroll {
  position: absolute;
  left: 50%;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
  animation: heroCinemaFadeSlideUp 0.8s var(--hero-cinema-ease) 1.4s forwards;
}

.home-page .hero-cinema__scroll-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.2);
}

.home-page .hero-cinema__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, rgba(196, 162, 101, 0.3) 0%, rgba(196, 162, 101, 0) 100%);
  transform-origin: top center;
  animation: heroCinemaScrollPulse 2s ease-in-out 1.8s infinite;
}

@keyframes heroCinemaFadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCinemaLineIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCinemaGlowIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroCinemaScaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroCinemaLogoIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroCinemaFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.22;
  }
}

@keyframes heroCinemaDotPulse {
  0%,
  100% {
    opacity: 0.1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes heroCinemaScrollPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleY(0.9);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 1100px) {
  .home-page .premium-hero.hero-cinema {
    min-height: 100vh;
    padding: 0;
    text-align: left;
  }

  .home-page .hero-cinema__shell {
    padding: 140px 40px 100px;
  }

  .home-page .hero-cinema__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-page .hero-cinema__visual {
    display: none;
  }

  .home-page .hero-cinema__title,
  .home-page .hero-cinema__body {
    max-width: 100%;
  }

  .home-page .hero-cinema__body {
    max-width: 560px;
  }
}

@media (max-width: 600px) {
  .home-page .premium-hero.hero-cinema {
    min-height: 100vh;
  }

  .home-page .hero-cinema__shell {
    padding: 120px 24px 80px;
  }

  .home-page .hero-cinema__title {
    font-size: 2.4rem;
  }

  .home-page .hero-cinema__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-page .hero-cinema__button {
    width: 100%;
  }

  .home-page .hero-cinema__scroll {
    bottom: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-cinema__label,
  .home-page .hero-cinema__title .hero-type-base,
  .home-page .hero-cinema__title .hero-type-overlay,
  .home-page .hero-cinema__body,
  .home-page .hero-cinema__actions,
  .home-page .hero-cinema__trust,
  .home-page .hero-cinema__glow,
  .home-page .hero-cinema__logo,
  .home-page .hero-cinema__ring,
  .home-page .hero-cinema__dot,
  .home-page .hero-cinema__scroll {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .home-page .hero-cinema__scroll-line {
    animation: none !important;
  }

  .home-page .hero-cinema__title .hero-type-overlay {
    display: none !important;
  }
}

/* === Shared navbar redesign === */
.site-header.navbar {
  --navbar-ease: cubic-bezier(0.16, 1, 0.3, 1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(196, 162, 101, 0.06);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background-color 0.5s var(--navbar-ease),
    border-color 0.5s var(--navbar-ease),
    box-shadow 0.5s var(--navbar-ease),
    backdrop-filter 0.5s var(--navbar-ease),
    -webkit-backdrop-filter 0.5s var(--navbar-ease);
}

.site-header.navbar::before,
.site-header.navbar::after {
  content: none;
}

.site-header.navbar.is-top {
  background: transparent;
  border-bottom-color: rgba(196, 162, 101, 0.06);
}

.site-header.navbar.is-scrolled {
  background: rgba(17, 29, 34, 0.72);
  border-bottom-color: rgba(196, 162, 101, 0.1);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04);
}

.site-header.navbar .navbar-inner {
  position: relative;
  z-index: 1000;
  box-sizing: border-box;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1.5rem;
  width: min(100%, 1320px);
  margin-inline: auto;
  padding: 0 72px;
  transition: height 0.5s var(--navbar-ease), padding 0.5s var(--navbar-ease);
}

.site-header.navbar.is-top .navbar-inner {
  height: 80px;
}

.site-header.navbar.is-scrolled .navbar-inner {
  height: 64px;
}

.site-header.navbar .navbar-logo,
.site-header.navbar .nav-link,
.site-header.navbar .lang-switcher {
  opacity: 0;
  animation: navFadeIn 0.8s var(--navbar-ease) forwards;
  animation-delay: var(--nav-delay, 0s);
}

.site-header.navbar .navbar-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  justify-self: start;
  text-decoration: none;
}

.site-header.navbar .navbar-logo img {
  display: block;
  width: auto;
  height: 34px;
  filter: drop-shadow(0 1px 4px rgba(196, 162, 101, 0.1));
  transition: height 0.5s var(--navbar-ease);
}

.site-header.navbar.is-scrolled .navbar-logo img {
  height: 30px;
}

.site-header.navbar .navbar-links {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header.navbar .nav-item {
  position: relative;
  margin: 0;
  padding: 0;
}

.site-header.navbar .nav-item--dropdown {
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.site-header.navbar .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(248, 245, 240, 0.6);
  transition: color 0.4s var(--navbar-ease);
}

.site-header.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #c4a265;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--navbar-ease);
}

.site-header.navbar .nav-link:hover,
.site-header.navbar .nav-link:focus-visible,
.site-header.navbar .nav-link.active,
.site-header.navbar .nav-link[aria-current="page"] {
  color: #fffdf9;
  background: transparent;
}

.site-header.navbar .nav-link:hover::after,
.site-header.navbar .nav-link:focus-visible::after,
.site-header.navbar .nav-link.active::after,
.site-header.navbar .nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-header.navbar .nav-link--dropdown {
  gap: 5px;
}

.site-header.navbar .nav-link--dropdown .chevron {
  width: 10px;
  height: 10px;
  margin-top: 1px;
  flex: 0 0 10px;
  color: rgba(248, 245, 240, 0.35);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    color 0.3s var(--navbar-ease),
    transform 0.3s var(--navbar-ease);
}

.site-header.navbar .nav-item--dropdown:hover .nav-link--dropdown .chevron,
.site-header.navbar .nav-item--dropdown:focus-within .nav-link--dropdown .chevron {
  color: #fffdf9;
  transform: rotate(180deg);
}

.site-header.navbar .nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 20;
  width: 280px;
  padding: 8px;
  border: 1px solid rgba(196, 162, 101, 0.08);
  border-radius: 14px;
  background: rgba(17, 29, 34, 0.88);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.08),
    0 16px 48px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(32px) saturate(1.6);
  -webkit-backdrop-filter: blur(32px) saturate(1.6);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition:
    opacity 0.35s var(--navbar-ease),
    transform 0.35s var(--navbar-ease);
}

.site-header.navbar .nav-dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 32px;
  height: 1px;
  border-radius: 0 0 1px 1px;
  background: linear-gradient(90deg, #c4a265, transparent);
}

.site-header.navbar .nav-item--dropdown:hover .nav-dropdown,
.site-header.navbar .nav-item--dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-header.navbar .dropdown-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background-color 0.25s var(--navbar-ease),
    color 0.25s var(--navbar-ease);
}

.site-header.navbar .dropdown-link:hover,
.site-header.navbar .dropdown-link:focus-visible,
.site-header.navbar .dropdown-link.active,
.site-header.navbar .dropdown-link[aria-current="page"] {
  background: rgba(196, 162, 101, 0.06);
}

.site-header.navbar .dropdown-num {
  width: 20px;
  flex-shrink: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(196, 162, 101, 0.3);
  transition: color 0.25s var(--navbar-ease);
}

.site-header.navbar .dropdown-link:hover .dropdown-num,
.site-header.navbar .dropdown-link:focus-visible .dropdown-num,
.site-header.navbar .dropdown-link.active .dropdown-num,
.site-header.navbar .dropdown-link[aria-current="page"] .dropdown-num {
  color: #c4a265;
}

.site-header.navbar .dropdown-content {
  min-width: 0;
}

.site-header.navbar .dropdown-title {
  margin-bottom: 2px;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(248, 245, 240, 0.75);
  transition: color 0.25s var(--navbar-ease);
}

.site-header.navbar .dropdown-link:hover .dropdown-title,
.site-header.navbar .dropdown-link:focus-visible .dropdown-title,
.site-header.navbar .dropdown-link.active .dropdown-title,
.site-header.navbar .dropdown-link[aria-current="page"] .dropdown-title {
  color: #fffdf9;
}

.site-header.navbar .dropdown-desc {
  font-family: "Outfit", sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(248, 245, 240, 0.3);
}

.site-header.navbar .dropdown-arrow {
  width: 14px;
  height: 14px;
  margin-left: auto;
  flex-shrink: 0;
  color: rgba(248, 245, 240, 0.1);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    color 0.25s var(--navbar-ease),
    transform 0.25s var(--navbar-ease);
}

.site-header.navbar .dropdown-link:hover .dropdown-arrow,
.site-header.navbar .dropdown-link:focus-visible .dropdown-arrow,
.site-header.navbar .dropdown-link.active .dropdown-arrow,
.site-header.navbar .dropdown-link[aria-current="page"] .dropdown-arrow {
  color: #c4a265;
  transform: translateX(3px);
}

.site-header.navbar .dropdown-separator {
  height: 1px;
  margin: 4px 16px;
  background: rgba(248, 245, 240, 0.04);
}

.site-header.navbar .dropdown-footer {
  padding: 10px 16px 8px;
  margin-top: 4px;
  border-top: 1px solid rgba(248, 245, 240, 0.04);
}

.site-header.navbar .dropdown-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(248, 245, 240, 0.3);
  transition: color 0.25s var(--navbar-ease);
}

.site-header.navbar .dropdown-footer-link:hover,
.site-header.navbar .dropdown-footer-link:focus-visible {
  color: #d4b87a;
}

.site-header.navbar .dropdown-footer-link svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s var(--navbar-ease);
}

.site-header.navbar .dropdown-footer-link:hover svg,
.site-header.navbar .dropdown-footer-link:focus-visible svg {
  transform: translateX(2px);
}

.site-header.navbar .lang-switcher {
  grid-column: 3;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  justify-content: flex-end;
  flex: 0 0 auto;
  border: 1px solid rgba(196, 162, 101, 0.15);
  border-radius: 6px;
  overflow: hidden;
  background: transparent;
}

.site-header.navbar .lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(248, 245, 240, 0.45);
  background: transparent;
  transition:
    color 0.35s var(--navbar-ease),
    background-color 0.35s var(--navbar-ease),
    border-color 0.35s var(--navbar-ease);
}

.site-header.navbar .lang-btn:first-child {
  border-right: 1px solid rgba(196, 162, 101, 0.1);
}

.site-header.navbar .lang-btn:hover,
.site-header.navbar .lang-btn:focus-visible {
  color: rgba(248, 245, 240, 0.7);
  background: rgba(255, 255, 255, 0.03);
}

.site-header.navbar .lang-btn.active,
.site-header.navbar .lang-btn[aria-current="true"] {
  color: #c4a265;
  background: rgba(196, 162, 101, 0.08);
}

.site-header.navbar .navbar-hamburger {
  display: none;
  grid-column: 3;
  justify-self: end;
  position: relative;
  z-index: 1001;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.site-header.navbar .hamburger-line {
  display: block;
  width: 100%;
  height: 1.5px;
  border-radius: 2px;
  background: rgba(248, 245, 240, 0.6);
  transform-origin: center;
  transition:
    transform 0.35s var(--navbar-ease),
    opacity 0.35s var(--navbar-ease),
    background-color 0.35s var(--navbar-ease);
}

.site-header.navbar .navbar-hamburger:hover .hamburger-line,
.site-header.navbar .navbar-hamburger:focus-visible .hamburger-line {
  background: #c4a265;
}

.site-header.navbar .navbar-hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.site-header.navbar .navbar-hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.site-header.navbar .navbar-hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.site-header.navbar .mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 24px 3rem;
  background: rgba(17, 29, 34, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--navbar-ease);
}

.site-header.navbar .mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.site-header.navbar .mobile-nav-link,
.site-header.navbar .mobile-sub-links,
.site-header.navbar .mobile-lang {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.45s var(--navbar-ease),
    transform 0.45s var(--navbar-ease);
}

.site-header.navbar .mobile-menu.open .mobile-nav-link,
.site-header.navbar .mobile-menu.open .mobile-sub-links,
.site-header.navbar .mobile-menu.open .mobile-lang {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--mobile-delay, 0s);
}

.site-header.navbar .mobile-nav-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-header.navbar .mobile-nav-link {
  padding: 20px 0;
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
  color: rgba(248, 245, 240, 0.5);
  transition:
    color 0.35s var(--navbar-ease),
    opacity 0.45s var(--navbar-ease),
    transform 0.45s var(--navbar-ease);
}

.site-header.navbar .mobile-nav-link:hover,
.site-header.navbar .mobile-nav-link:focus-visible,
.site-header.navbar .mobile-nav-link.active,
.site-header.navbar .mobile-nav-link[aria-current="page"] {
  color: #d4b87a;
}

.site-header.navbar .mobile-sub-links {
  display: grid;
  gap: 4px;
  margin-top: -2px;
  padding-bottom: 12px;
}

.site-header.navbar .mobile-sub-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(248, 245, 240, 0.34);
  transition: color 0.35s var(--navbar-ease);
}

.site-header.navbar .mobile-sub-link:hover,
.site-header.navbar .mobile-sub-link:focus-visible,
.site-header.navbar .mobile-sub-link.active,
.site-header.navbar .mobile-sub-link[aria-current="page"] {
  color: #fffdf9;
}

.site-header.navbar .mobile-sub-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(196, 162, 101, 0.45);
}

.site-header.navbar .mobile-lang {
  margin-top: 40px;
  display: flex;
  gap: 16px;
}

.site-header.navbar .mobile-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 1px solid rgba(196, 162, 101, 0.12);
  border-radius: 6px;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(248, 245, 240, 0.45);
  background: transparent;
  transition:
    color 0.35s var(--navbar-ease),
    border-color 0.35s var(--navbar-ease),
    background-color 0.35s var(--navbar-ease);
}

.site-header.navbar .mobile-lang-btn:hover,
.site-header.navbar .mobile-lang-btn:focus-visible {
  color: rgba(248, 245, 240, 0.72);
  background: rgba(255, 255, 255, 0.03);
}

.site-header.navbar .mobile-lang-btn.active,
.site-header.navbar .mobile-lang-btn[aria-current="true"] {
  color: #c4a265;
  border-color: rgba(196, 162, 101, 0.3);
  background: rgba(196, 162, 101, 0.06);
}

@keyframes navFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .site-header.navbar .navbar-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 0 24px;
  }

  .site-header.navbar.is-top .navbar-inner {
    height: 68px;
  }

  .site-header.navbar.is-scrolled .navbar-inner {
    height: 60px;
  }

  .site-header.navbar .navbar-logo img {
    height: 30px;
  }

  .site-header.navbar.is-scrolled .navbar-logo img {
    height: 26px;
  }

  .site-header.navbar .navbar-links,
  .site-header.navbar .lang-switcher {
    display: none;
  }

  .site-header.navbar .navbar-hamburger {
    grid-column: 2;
    display: inline-flex;
  }
}

@media (max-width: 1024px) {
  .site-header.navbar .nav-item--dropdown {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .site-header.navbar .nav-dropdown {
    display: none;
  }

  .site-header.navbar .nav-link--dropdown .chevron {
    display: none;
  }
}

@media (min-width: 901px) {
  .site-header.navbar .mobile-menu {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header.navbar,
  .site-header.navbar .navbar-inner,
  .site-header.navbar .navbar-logo,
  .site-header.navbar .nav-link,
  .site-header.navbar .lang-switcher,
  .site-header.navbar .mobile-menu,
  .site-header.navbar .mobile-nav-link,
  .site-header.navbar .mobile-sub-links,
  .site-header.navbar .mobile-sub-link,
  .site-header.navbar .mobile-lang,
  .site-header.navbar .hamburger-line,
  .site-header.navbar .nav-dropdown,
  .site-header.navbar .nav-link--dropdown .chevron,
  .site-header.navbar .dropdown-link,
  .site-header.navbar .dropdown-num,
  .site-header.navbar .dropdown-title,
  .site-header.navbar .dropdown-arrow,
  .site-header.navbar .dropdown-footer-link,
  .site-header.navbar .dropdown-footer-link svg {
    transition: none !important;
    animation: none !important;
  }

  .site-header.navbar .navbar-logo,
  .site-header.navbar .nav-link,
  .site-header.navbar .lang-switcher {
    opacity: 1 !important;
  }
}

body.home-page[data-page-key] .site-header.navbar {
  background: transparent;
  border-bottom: 1px solid rgba(196, 162, 101, 0.06);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.home-page[data-page-key] .site-header.navbar.is-top {
  background: transparent;
  border-bottom-color: rgba(196, 162, 101, 0.06);
}

body.home-page[data-page-key] .site-header.navbar.is-scrolled {
  background: rgba(17, 29, 34, 0.72);
  border-bottom-color: rgba(196, 162, 101, 0.1);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04);
}

body:not(.home-page)[data-page-key] .site-header.navbar,
body:not(.home-page)[data-page-key] .site-header.navbar.is-top {
  background: rgba(17, 29, 34, 0.72);
  border-bottom-color: rgba(196, 162, 101, 0.1);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04);
}

/* === Method luxury redesign (home only) === */
.home-page .method-lux {
  --method-ease: cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  padding: 120px 0 160px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(196, 162, 101, 0.03) 0%, transparent 70%),
    linear-gradient(178deg, #111d22 0%, #13222a 50%, #162730 100%);
}

.home-page .method-lux::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(196, 162, 101, 0.12) 50%, transparent 90%);
  pointer-events: none;
}

.home-page .method-lux::after {
  content: none;
}

.home-page .method-lux__shell {
  width: min(100%, 1320px);
  margin-inline: auto;
  box-sizing: border-box;
  padding: 0 72px;
}

.home-page .method-lux__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 96px;
}

.home-page .method-lux__label,
.home-page .method-lux__title,
.home-page .method-lux__copy,
.home-page .method-lux__step {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.9s var(--method-ease),
    transform 0.9s var(--method-ease);
}

.home-page .method-lux__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c4a265;
}

.home-page .method-lux__label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #c4a265;
  flex: 0 0 28px;
}

.home-page .method-lux__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.08;
  color: #fffdf9;
}

.home-page .method-lux__title em {
  font-style: italic;
  font-weight: 300;
  color: #d4b87a;
}

.home-page .method-lux__rule {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 36px;
  background: linear-gradient(90deg, #c4a265, transparent);
  transition: width 0.9s var(--method-ease);
}

.home-page .method-lux__copy {
  min-width: 0;
}

.home-page .method-lux__copy p {
  margin: 0;
  max-width: 460px;
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(248, 245, 240, 0.62);
}

.home-page .method-lux__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.home-page .method-lux__steps::before {
  content: "";
  position: absolute;
  top: 52px;
  left: calc(16.666% + 16px);
  right: calc(16.666% + 16px);
  z-index: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(196, 162, 101, 0.12) 20%,
    rgba(196, 162, 101, 0.12) 80%,
    transparent
  );
}

.home-page .method-lux__step {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.home-page .method-lux__step-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.home-page .method-lux__step-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  border: 1px solid rgba(196, 162, 101, 0.2);
  background: rgba(196, 162, 101, 0.04);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
  color: #c4a265;
  transition:
    background-color 0.4s var(--method-ease),
    border-color 0.4s var(--method-ease),
    box-shadow 0.4s var(--method-ease);
}

.home-page .method-lux__step-line {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(196, 162, 101, 0.15), transparent);
}

.home-page .method-lux__step-title {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.25;
  color: #fffdf9;
  transition: color 0.4s var(--method-ease);
}

.home-page .method-lux__step-text {
  margin: 0;
  max-width: 340px;
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(248, 245, 240, 0.64);
}

.home-page .method-lux__step:hover .method-lux__step-marker,
.home-page .method-lux__step:focus-within .method-lux__step-marker {
  background: rgba(196, 162, 101, 0.08);
  border-color: rgba(196, 162, 101, 0.35);
  box-shadow: 0 0 20px rgba(196, 162, 101, 0.08);
}

.home-page .method-lux__step:hover .method-lux__step-title,
.home-page .method-lux__step:focus-within .method-lux__step-title {
  color: #e2cb96;
}

.home-page .method-lux.is-visible .method-lux__label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.home-page .method-lux.is-visible .method-lux__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.home-page .method-lux.is-visible .method-lux__copy {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.16s;
}

.home-page .method-lux.is-visible .method-lux__rule {
  width: 56px;
  transition-delay: 0.3s;
}

.home-page .method-lux.is-visible .method-lux__step:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

.home-page .method-lux.is-visible .method-lux__step:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.24s;
}

.home-page .method-lux.is-visible .method-lux__step:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.36s;
}

@media (max-width: 1024px) {
  .home-page .method-lux {
    padding: 100px 0 120px;
  }

  .home-page .method-lux__shell {
    padding: 0 40px;
  }

  .home-page .method-lux__header {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 72px;
  }

  .home-page .method-lux__steps {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
    gap: 48px;
  }

  .home-page .method-lux__steps::before,
  .home-page .method-lux__step-line {
    display: none;
  }

  .home-page .method-lux__copy p {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .home-page .method-lux {
    padding: 80px 0 100px;
  }

  .home-page .method-lux__shell {
    padding: 0 24px;
  }

  .home-page .method-lux__step-text {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .method-lux__label,
  .home-page .method-lux__title,
  .home-page .method-lux__copy,
  .home-page .method-lux__step {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .home-page .method-lux__rule {
    width: 56px !important;
    transition: none !important;
  }
}

/* === Process luxury redesign (home only) === */
.home-page .process-lux {
  --process-ease: cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 60% at 30% 70%, rgba(27, 50, 64, 0.5) 0%, transparent 70%),
    linear-gradient(176deg, #162730 0%, #13222a 50%, #111d22 100%);
}

.home-page .process-lux::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(196, 162, 101, 0.1) 50%, transparent 90%);
  pointer-events: none;
}

.home-page .process-lux::after {
  content: none;
}

.home-page .process-lux__shell {
  width: min(1320px, calc(100% - 144px));
  min-height: 720px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.home-page .process-lux__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 72px;
  min-width: 0;
}

.home-page .process-lux__label,
.home-page .process-lux__title,
.home-page .process-lux__body,
.home-page .process-lux__sublabel,
.home-page .process-lux__step {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.9s var(--process-ease),
    transform 0.9s var(--process-ease);
}

.home-page .process-lux__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c4a265;
}

.home-page .process-lux__label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #c4a265;
  flex: 0 0 28px;
}

.home-page .process-lux__title {
  margin: 0 0 28px;
  max-width: 460px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: #fffdf9;
}

.home-page .process-lux__title em {
  font-style: italic;
  font-weight: 300;
  color: #d4b87a;
}

.home-page .process-lux__body {
  margin: 0 0 48px;
  max-width: 440px;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(248, 245, 240, 0.62);
}

.home-page .process-lux__sublabel {
  margin: 0 0 32px;
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(196, 162, 101, 0.72);
}

.home-page .process-lux__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-page .process-lux__step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
  margin: 0;
  padding: 28px 0;
  border-bottom: 1px solid rgba(196, 162, 101, 0.06);
}

.home-page .process-lux__step:last-child {
  border-bottom: 0;
}

.home-page .process-lux__step-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  border: 1px solid rgba(196, 162, 101, 0.2);
  background: rgba(196, 162, 101, 0.04);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  color: #c4a265;
  transition:
    background-color 0.4s var(--process-ease),
    border-color 0.4s var(--process-ease),
    box-shadow 0.4s var(--process-ease);
}

.home-page .process-lux__step-copy {
  min-width: 0;
}

.home-page .process-lux__step-title {
  margin: 0 0 6px;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fffdf9;
  transition: color 0.4s var(--process-ease);
}

.home-page .process-lux__step-text {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(248, 245, 240, 0.56);
}

.home-page .process-lux__step:hover .process-lux__step-marker,
.home-page .process-lux__step:focus-within .process-lux__step-marker {
  background: rgba(196, 162, 101, 0.08);
  border-color: rgba(196, 162, 101, 0.35);
  box-shadow: 0 0 16px rgba(196, 162, 101, 0.08);
}

.home-page .process-lux__step:hover .process-lux__step-title,
.home-page .process-lux__step:focus-within .process-lux__step-title {
  color: #e2cb96;
}

.home-page .process-lux__media {
  position: relative;
  margin: 0;
  min-height: 720px;
  opacity: 0;
  transition: opacity 1.2s var(--process-ease);
}

.home-page .process-lux__media::before,
.home-page .process-lux__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.home-page .process-lux__media::before {
  background: linear-gradient(90deg, #13222a 0%, rgba(19, 34, 42, 0.3) 30%, transparent 60%);
}

.home-page .process-lux__media::after {
  background:
    linear-gradient(180deg, #162730 0%, transparent 8%),
    linear-gradient(0deg, #111d22 0%, transparent 8%);
}

.home-page .process-lux__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home-page .process-lux__media-frame {
  position: absolute;
  top: 40px;
  right: 40px;
  bottom: 40px;
  width: 50%;
  border: 1px solid rgba(196, 162, 101, 0.1);
  border-left: 0;
  border-radius: 0 8px 8px 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.9s var(--process-ease);
}

.home-page .process-lux.is-visible .process-lux__label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.home-page .process-lux.is-visible .process-lux__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.home-page .process-lux.is-visible .process-lux__body {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.16s;
}

.home-page .process-lux.is-visible .process-lux__sublabel {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.24s;
}

.home-page .process-lux.is-visible .process-lux__step:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.home-page .process-lux.is-visible .process-lux__step:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.home-page .process-lux.is-visible .process-lux__step:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.home-page .process-lux.is-visible .process-lux__media {
  opacity: 1;
  transition-delay: 0.3s;
}

.home-page .process-lux.is-visible .process-lux__media-frame {
  opacity: 1;
  transition-delay: 0.8s;
}

@media (max-width: 1024px) {
  .home-page .process-lux__shell {
    width: min(1320px, calc(100% - 80px));
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .home-page .process-lux__media {
    order: 1;
    min-height: 0;
    height: 400px;
  }

  .home-page .process-lux__media::before {
    background: linear-gradient(0deg, #13222a 0%, rgba(19, 34, 42, 0.2) 40%, transparent 70%);
  }

  .home-page .process-lux__media-frame {
    display: none;
  }

  .home-page .process-lux__content {
    order: 2;
    padding: 100px 40px 60px;
  }
}

@media (max-width: 600px) {
  .home-page .process-lux__shell {
    width: min(1320px, calc(100% - 48px));
  }

  .home-page .process-lux__content {
    padding: 80px 24px 60px;
  }

  .home-page .process-lux__media {
    height: 320px;
  }

  .home-page .process-lux__step {
    grid-template-columns: 36px 1fr;
    gap: 16px;
  }

  .home-page .process-lux__step-marker {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .process-lux__label,
  .home-page .process-lux__title,
  .home-page .process-lux__body,
  .home-page .process-lux__sublabel,
  .home-page .process-lux__step,
  .home-page .process-lux__media,
  .home-page .process-lux__media-frame {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* === About luxury redesign (home only) === */
.home-page .about-lux {
  --about-ease: cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  padding: 0;
  background: #f8f5f0;
  overflow: hidden;
}

.home-page .about-lux::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23grain)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.8;
}

.home-page .about-lux__shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  margin-inline: auto;
  box-sizing: border-box;
  padding: 140px 72px 160px;
}

.home-page .about-lux__shell::before {
  content: '"';
  position: absolute;
  top: 100px;
  right: 72px;
  font-family: "Cormorant Garamond", serif;
  font-size: 18rem;
  font-weight: 300;
  line-height: 0.7;
  color: #e4ddd3;
  opacity: 0.35;
  pointer-events: none;
}

.home-page .about-lux__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 100px;
  align-items: start;
}

.home-page .about-lux__label,
.home-page .about-lux__title,
.home-page .about-lux__copy,
.home-page .about-lux__link,
.home-page .about-lux__card,
.home-page .about-lux__principle {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.9s var(--about-ease),
    transform 0.9s var(--about-ease);
}

.home-page .about-lux__main {
  min-width: 0;
}

.home-page .about-lux__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c4a265;
}

.home-page .about-lux__label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #c4a265;
  flex: 0 0 28px;
}

.home-page .about-lux__title {
  margin: 0 0 48px;
  max-width: 560px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: #1a1611;
}

.home-page .about-lux__title em {
  font-style: italic;
  font-weight: 300;
  color: #c4a265;
}

.home-page .about-lux__rule {
  display: block;
  width: 0;
  height: 1px;
  margin-bottom: 48px;
  background: linear-gradient(90deg, #c4a265, transparent);
  transition: width 0.9s var(--about-ease);
}

.home-page .about-lux__copy {
  max-width: 520px;
}

.home-page .about-lux__copy p {
  margin: 0 0 24px;
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.85;
  color: #5a5047;
}

.home-page .about-lux__copy p:last-child {
  margin-bottom: 0;
}

.home-page .about-lux__copy strong {
  font-weight: 500;
  color: #3d3630;
}

.home-page .about-lux__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 36px;
  padding-bottom: 4px;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: #5a5047;
  transition: color 0.35s var(--about-ease);
}

.home-page .about-lux__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #c4a265;
  transition: width 0.35s var(--about-ease);
}

.home-page .about-lux__link::after {
  content: "→";
  display: inline-block;
  margin-left: 12px;
  transition: transform 0.35s var(--about-ease);
}

.home-page .about-lux__link:hover,
.home-page .about-lux__link:focus-visible {
  color: #c4a265;
}

.home-page .about-lux__link:hover::before,
.home-page .about-lux__link:focus-visible::before {
  width: calc(100% - 28px);
}

.home-page .about-lux__link:hover::after,
.home-page .about-lux__link:focus-visible::after {
  transform: translateX(4px);
}

.home-page .about-lux__sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
}

.home-page .about-lux__card {
  max-width: 100%;
  background: #fffdf9;
  border: 1px solid #e4ddd3;
  border-left: 2px solid #c4a265;
  border-radius: 2px 12px 12px 2px;
  padding: 44px 40px;
  box-shadow:
    0 2px 4px rgba(26, 22, 17, 0.03),
    0 8px 24px rgba(26, 22, 17, 0.05);
}

.home-page .about-lux__card-label {
  margin: 0 0 32px;
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c4a265;
}

.home-page .about-lux__principle {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #f0ebe4;
}

.home-page .about-lux__principle:last-child {
  border-bottom: 0;
}

.home-page .about-lux__icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 8px;
  border: 1px solid rgba(196, 162, 101, 0.1);
  background: rgba(196, 162, 101, 0.06);
}

.home-page .about-lux__icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #c4a265;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .about-lux__principle-copy {
  min-width: 0;
}

.home-page .about-lux__principle-copy strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
  color: #1a1611;
}

.home-page .about-lux__principle-copy span {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.6;
  color: #4f463d;
}

.home-page .about-lux.is-visible .about-lux__label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.home-page .about-lux.is-visible .about-lux__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.home-page .about-lux.is-visible .about-lux__rule {
  width: 56px;
  transition-delay: 0.3s;
}

.home-page .about-lux.is-visible .about-lux__copy {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.home-page .about-lux.is-visible .about-lux__link {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.home-page .about-lux.is-visible .about-lux__card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.home-page .about-lux.is-visible .about-lux__principle:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.home-page .about-lux.is-visible .about-lux__principle:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.home-page .about-lux.is-visible .about-lux__principle:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

@media (max-width: 1024px) {
  .home-page .about-lux__shell {
    padding: 100px 40px 120px;
  }

  .home-page .about-lux__shell::before {
    top: 100px;
    right: 40px;
    font-size: 10rem;
  }

  .home-page .about-lux__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .home-page .about-lux__sidebar {
    position: static;
    max-width: 480px;
  }
}

@media (max-width: 600px) {
  .home-page .about-lux__shell {
    padding: 80px 24px 100px;
  }

  .home-page .about-lux__shell::before {
    right: 20px;
    font-size: 7rem;
  }

  .home-page .about-lux__card {
    padding: 32px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .about-lux__label,
  .home-page .about-lux__title,
  .home-page .about-lux__copy,
  .home-page .about-lux__link,
  .home-page .about-lux__card,
  .home-page .about-lux__principle {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .home-page .about-lux__rule {
    width: 56px !important;
    transition: none !important;
  }
}

/* === Next step luxury redesign (home only) === */
.home-page .next-step-lux {
  --next-step-ease: cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  padding: 0;
  background: var(--warm-75);
  overflow: hidden;
}

.home-page .next-step-lux::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, #e4ddd3 50%, transparent 90%);
  pointer-events: none;
}

.home-page .next-step-lux::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23grain)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.8;
}

.home-page .next-step-lux__shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  margin-inline: auto;
  box-sizing: border-box;
  padding: 100px 72px 100px;
}

.home-page .next-step-lux__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: center;
}

.home-page .next-step-lux__media,
.home-page .next-step-lux__label,
.home-page .next-step-lux__title,
.home-page .next-step-lux__copy,
.home-page .next-step-lux__check-label,
.home-page .next-step-lux__checklist li {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.9s var(--next-step-ease),
    transform 0.9s var(--next-step-ease);
}

.home-page .next-step-lux__media {
  position: relative;
  margin: 12px 0 0 12px;
}

.home-page .next-step-lux__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  border-radius: 12px;
  box-shadow:
    0 4px 8px rgba(26, 22, 17, 0.04),
    0 16px 40px rgba(26, 22, 17, 0.08);
}

.home-page .next-step-lux__media-frame {
  position: absolute;
  inset: -12px 12px 12px -12px;
  z-index: 0;
  border: 1px solid rgba(196, 162, 101, 0.15);
  border-radius: 12px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.9s var(--next-step-ease),
    transform 0.9s var(--next-step-ease);
}

.home-page .next-step-lux__media-frame::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c4a265;
  opacity: 0.5;
}

.home-page .next-step-lux__content {
  min-width: 0;
}

.home-page .next-step-lux__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c4a265;
}

.home-page .next-step-lux__label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #c4a265;
  flex: 0 0 28px;
}

.home-page .next-step-lux__title {
  margin: 0 0 32px;
  max-width: 480px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: #1a1611;
}

.home-page .next-step-lux__title em {
  font-style: italic;
  font-weight: 300;
  color: #c4a265;
}

.home-page .next-step-lux__copy {
  max-width: 460px;
}

.home-page .next-step-lux__copy p {
  margin: 0 0 20px;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #5a5047;
}

.home-page .next-step-lux__copy p:last-child {
  margin-bottom: 0;
}

.home-page .next-step-lux__check-label {
  margin: 40px 0 24px;
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #b99658;
}

.home-page .next-step-lux__checklist {
  margin: 0;
  padding: 0;
  max-width: 480px;
  list-style: none;
}

.home-page .next-step-lux__checklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e4ddd3;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  color: #4f463d;
}

.home-page .next-step-lux__checklist li:last-child {
  border-bottom: 0;
}

.home-page .next-step-lux__check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  border: 1px solid rgba(196, 162, 101, 0.15);
  background: rgba(196, 162, 101, 0.08);
}

.home-page .next-step-lux__check-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #c4a265;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .next-step-lux.is-visible .next-step-lux__media {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.home-page .next-step-lux.is-visible .next-step-lux__media-frame {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.home-page .next-step-lux.is-visible .next-step-lux__label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.home-page .next-step-lux.is-visible .next-step-lux__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.home-page .next-step-lux.is-visible .next-step-lux__copy {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.16s;
}

.home-page .next-step-lux.is-visible .next-step-lux__check-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.24s;
}

.home-page .next-step-lux.is-visible .next-step-lux__checklist li:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.32s;
}

.home-page .next-step-lux.is-visible .next-step-lux__checklist li:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.42s;
}

.home-page .next-step-lux.is-visible .next-step-lux__checklist li:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.52s;
}

@media (max-width: 1024px) {
  .home-page .next-step-lux__shell {
    padding: 100px 40px 100px;
  }

  .home-page .next-step-lux__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .home-page .next-step-lux__media {
    max-width: 560px;
  }

  .home-page .next-step-lux__media-frame {
    display: none;
  }
}

@media (max-width: 600px) {
  .home-page .next-step-lux__shell {
    padding: 80px 24px 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .next-step-lux__media,
  .home-page .next-step-lux__label,
  .home-page .next-step-lux__title,
  .home-page .next-step-lux__copy,
  .home-page .next-step-lux__check-label,
  .home-page .next-step-lux__checklist li,
  .home-page .next-step-lux__media-frame {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* === Final CTA luxury redesign (home only) === */
.home-page .final-cta-lux {
  --final-cta-ease: cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  padding: 0;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(196, 162, 101, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 80%, rgba(27, 50, 64, 0.4) 0%, transparent 60%),
    linear-gradient(178deg, #162730 0%, #13222a 40%, #111d22 100%);
  overflow: hidden;
}

.home-page .final-cta-lux::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(196, 162, 101, 0.12) 50%, transparent 90%);
  pointer-events: none;
}

.home-page .final-cta-lux::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23grain)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.9;
}

.home-page .final-cta-lux__shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  margin-inline: auto;
  box-sizing: border-box;
  padding: 120px 72px 160px;
}

.home-page .final-cta-lux__inner {
  position: relative;
  width: min(100%, 680px);
  margin-inline: auto;
}

.home-page .final-cta-lux__label,
.home-page .final-cta-lux__title,
.home-page .final-cta-lux__body,
.home-page .final-cta-lux__button,
.home-page .final-cta-lux__trust,
.home-page .final-cta-lux__side {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.9s var(--final-cta-ease),
    transform 0.9s var(--final-cta-ease);
}

.home-page .final-cta-lux__side {
  position: absolute;
  top: 50%;
  width: 1px;
  height: 120px;
  transform: translateY(calc(-50% + 18px));
  background: linear-gradient(180deg, transparent, rgba(196, 162, 101, 0.15), transparent);
  pointer-events: none;
}

.home-page .final-cta-lux__side--left {
  left: -60px;
}

.home-page .final-cta-lux__side--right {
  right: -60px;
}

.home-page .final-cta-lux__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c4a265;
}

.home-page .final-cta-lux__label::before,
.home-page .final-cta-lux__label::after {
  content: "";
  width: 24px;
  height: 1px;
  background: #c4a265;
  opacity: 0.5;
  flex: 0 0 24px;
}

.home-page .final-cta-lux__title {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #fffdf9;
}

.home-page .final-cta-lux__title em {
  font-style: italic;
  font-weight: 300;
  color: #d4b87a;
}

.home-page .final-cta-lux__body {
  margin: 0 auto 44px;
  max-width: 520px;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(248, 245, 240, 0.62);
}

.home-page .final-cta-lux__button {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 28px;
  padding: 18px 44px;
  border-radius: 8px;
  overflow: hidden;
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #111d22;
  text-decoration: none;
  background: linear-gradient(135deg, #d4b87a, #c4a265);
  box-shadow:
    0 2px 4px rgba(196, 162, 101, 0.2),
    0 8px 24px rgba(196, 162, 101, 0.15);
  transition:
    transform 0.5s var(--final-cta-ease),
    box-shadow 0.5s var(--final-cta-ease),
    color 0.5s var(--final-cta-ease);
}

.home-page .final-cta-lux__button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #e2cb96, #d4b87a);
  opacity: 0;
  transition: opacity 0.5s var(--final-cta-ease);
}

.home-page .final-cta-lux__button::after {
  content: "→";
  transition: transform 0.5s var(--final-cta-ease);
}

.home-page .final-cta-lux__button:hover,
.home-page .final-cta-lux__button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 4px 8px rgba(196, 162, 101, 0.22),
    0 12px 30px rgba(196, 162, 101, 0.18);
}

.home-page .final-cta-lux__button:hover::before,
.home-page .final-cta-lux__button:focus-visible::before {
  opacity: 1;
}

.home-page .final-cta-lux__button:hover::after,
.home-page .final-cta-lux__button:focus-visible::after {
  transform: translateX(3px);
}

.home-page .final-cta-lux__trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(248, 245, 240, 0.4);
}

.home-page .final-cta-lux__trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: rgba(196, 162, 101, 0.4);
}

.home-page .final-cta-lux__trust-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .final-cta-lux.is-visible .final-cta-lux__label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.home-page .final-cta-lux.is-visible .final-cta-lux__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.home-page .final-cta-lux.is-visible .final-cta-lux__body {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.16s;
}

.home-page .final-cta-lux.is-visible .final-cta-lux__button {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

.home-page .final-cta-lux.is-visible .final-cta-lux__trust {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.36s;
}

.home-page .final-cta-lux.is-visible .final-cta-lux__side {
  opacity: 1;
  transform: translateY(-50%);
  transition-delay: 0.6s;
}

@media (max-width: 1024px) {
  .home-page .final-cta-lux__shell {
    padding: 100px 40px 120px;
  }

  .home-page .final-cta-lux__side {
    display: none;
  }
}

@media (max-width: 600px) {
  .home-page .final-cta-lux__shell {
    padding: 80px 24px 100px;
  }

  .home-page .final-cta-lux__button {
    width: 100%;
    padding: 18px 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .final-cta-lux__label,
  .home-page .final-cta-lux__title,
  .home-page .final-cta-lux__body,
  .home-page .final-cta-lux__button,
  .home-page .final-cta-lux__trust,
  .home-page .final-cta-lux__side {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .home-page .final-cta-lux__button::before,
  .home-page .final-cta-lux__button::after {
    transition: none !important;
  }
}

/* === Social proof luxury insert (home only) === */
.home-page .proof-section {
  --gold-400: #c4a265;
  --warm-950: #1a1611;
  --warm-700: #5a5047;
  --warm-500: #958a7e;
  --warm-200: #e4ddd3;
  --warm-100: #f0ebe4;
  --warm-50: #f8f5f0;
  --white: #fffdf9;
  --shadow-sm: 0 1px 2px rgba(26, 22, 17, 0.04), 0 1px 3px rgba(26, 22, 17, 0.06);
  --shadow-md: 0 2px 4px rgba(26, 22, 17, 0.03), 0 6px 16px rgba(26, 22, 17, 0.06);
  --proof-ease: cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: var(--warm-50);
}

.home-page .proof-section::after {
  content: '"';
  position: absolute;
  top: -20px;
  right: 8%;
  z-index: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 28rem;
  font-weight: 300;
  line-height: 1;
  color: var(--warm-200);
  opacity: 0.25;
  pointer-events: none;
}

.home-page .proof-shell {
  width: min(100%, 1320px);
  margin-inline: auto;
  box-sizing: border-box;
  padding-inline: 72px;
}

.home-page .proof-inner {
  position: relative;
  z-index: 1;
}

.home-page .proof-head {
  max-width: 480px;
  margin-bottom: 64px;
}

.home-page .proof-label,
.home-page .proof-title,
.home-page .proof-card,
.home-page .proof-summary {
  opacity: 0;
  transform: translateY(18px);
}

.home-page .proof-label,
.home-page .proof-title,
.home-page .proof-summary {
  transition:
    opacity 0.9s var(--proof-ease),
    transform 0.9s var(--proof-ease);
}

.home-page .proof-card {
  transition:
    opacity 0.7s var(--proof-ease) var(--proof-delay, 0s),
    transform 0.5s var(--proof-ease),
    box-shadow 0.5s var(--proof-ease);
}

.home-page .proof-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.home-page .proof-label::before {
  content: "";
  width: 28px;
  height: 1px;
  flex: 0 0 28px;
  background: currentColor;
}

.home-page .proof-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--warm-950);
}

.home-page .proof-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-400);
}

.home-page .proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.home-page .proof-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 44px 40px 40px;
  border: 1px solid var(--warm-200);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.home-page .proof-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  width: 32px;
  height: 2px;
  background: var(--gold-400);
  border-radius: 0 0 2px 2px;
}

.home-page .proof-grid .proof-card:nth-child(1) {
  --proof-delay: 0.18s;
}

.home-page .proof-grid .proof-card:nth-child(2) {
  --proof-delay: 0.26s;
}

.home-page .proof-grid .proof-card:nth-child(3) {
  --proof-delay: 0.34s;
}

.home-page .proof-grid .proof-card:nth-child(4) {
  --proof-delay: 0.42s;
}

.home-page .proof-card:hover,
.home-page .proof-card:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.home-page .proof-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  color: var(--gold-400);
}

.home-page .proof-stars svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.home-page .proof-quote {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--warm-700);
}

.home-page .proof-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--warm-100);
}

.home-page .proof-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  border: 1px solid rgba(196, 162, 101, 0.12);
  background: linear-gradient(135deg, rgba(196, 162, 101, 0.08), rgba(196, 162, 101, 0.15));
}

.home-page .proof-avatar-initials {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  color: var(--gold-400);
}

.home-page .proof-author-meta {
  min-width: 0;
}

.home-page .proof-author-name,
.home-page .proof-author-role,
.home-page .proof-stat-value,
.home-page .proof-stat-label {
  margin: 0;
}

.home-page .proof-author-name {
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--warm-950);
}

.home-page .proof-author-role {
  margin-top: 2px;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--warm-500);
}

.home-page .proof-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding: 28px 0;
  border-top: 1px solid var(--warm-200);
  border-bottom: 1px solid var(--warm-200);
}

.home-page .proof-stat {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.home-page .proof-stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--warm-950);
}

.home-page .proof-stat-accent {
  color: var(--gold-400);
}

.home-page .proof-stat-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-500);
}

.home-page .proof-stat-divider {
  width: 1px;
  height: 36px;
  flex: 0 0 1px;
  background: var(--warm-200);
}

.home-page .proof-section.is-visible .proof-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.home-page .proof-section.is-visible .proof-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.home-page .proof-section.is-visible .proof-card {
  opacity: 1;
  transform: translateY(0);
}

.home-page .proof-section.is-visible .proof-summary {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

@media (max-width: 1024px) {
  .home-page .proof-shell {
    padding-inline: 40px;
  }

  .home-page .proof-section::after {
    font-size: 18rem;
    right: 4%;
  }

  .home-page .proof-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .home-page .proof-section {
    padding: 80px 0;
  }

  .home-page .proof-section::after {
    display: none;
  }

  .home-page .proof-shell {
    padding-inline: 24px;
  }

  .home-page .proof-head {
    margin-bottom: 48px;
  }

  .home-page .proof-card {
    padding: 36px 28px 32px;
  }

  .home-page .proof-card::before {
    left: 28px;
  }

  .home-page .proof-summary {
    flex-direction: column;
    gap: 24px;
  }

  .home-page .proof-stat-divider {
    width: 36px;
    height: 1px;
    flex: 0 0 1px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .proof-label,
  .home-page .proof-title,
  .home-page .proof-card,
  .home-page .proof-summary {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* === Shared footer redesign === */
.site-footer.footer-lux {
  position: relative;
  margin-top: 0;
  padding: 0;
  border-top: 0;
  background: #0d171c;
  overflow: hidden;
}

.site-footer.footer-lux::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(196, 162, 101, 0.1) 50%, transparent 95%);
  pointer-events: none;
}

.site-footer.footer-lux::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23grain)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.9;
}

.site-footer.footer-lux .footer-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  margin-inline: auto;
  box-sizing: border-box;
  padding: 80px 72px 0;
}

.site-footer.footer-lux .footer-grid--lux {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr) minmax(0, 0.9fr);
  gap: 80px;
  padding-bottom: 64px;
}

.site-footer.footer-lux .footer-col {
  min-width: 0;
}

.site-footer.footer-lux .footer-logo {
  display: inline-flex;
  margin-bottom: 28px;
  text-decoration: none;
}

.site-footer.footer-lux .footer-logo img {
  display: block;
  height: 34px;
  width: 34px;
  filter: drop-shadow(0 1px 4px rgba(196, 162, 101, 0.1));
}

.site-footer.footer-lux .footer-payoff {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.25;
  color: #fffdf9;
}

.site-footer.footer-lux .footer-copy {
  margin: 0 0 24px;
  max-width: 340px;
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(248, 245, 240, 0.4);
}

.site-footer.footer-lux .footer-reassurance {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  line-height: 1.8;
  color: rgba(196, 162, 101, 0.6);
}

.site-footer.footer-lux .footer-heading {
  margin: 0 0 8px;
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c4a265;
}

.site-footer.footer-lux .footer-col-intro {
  margin: 0 0 28px;
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(248, 245, 240, 0.3);
}

.site-footer.footer-lux .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer.footer-lux .footer-links li {
  margin: 0;
}

.site-footer.footer-lux .footer-links li:last-child a {
  border-bottom: 0;
}

.site-footer.footer-lux .footer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(196, 162, 101, 0.05);
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(248, 245, 240, 0.5);
  text-decoration: none;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-footer.footer-lux .footer-links a::after {
  content: "→";
  opacity: 0;
  transform: translateX(-6px);
  color: #c4a265;
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-footer.footer-lux .footer-links a:hover,
.site-footer.footer-lux .footer-links a:focus-visible {
  color: #fffdf9;
}

.site-footer.footer-lux .footer-links a:hover::after,
.site-footer.footer-lux .footer-links a:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.site-footer.footer-lux .footer-contact-list {
  display: grid;
  gap: 14px;
}

.site-footer.footer-lux .footer-contact-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding-bottom: 4px;
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(248, 245, 240, 0.5);
  text-decoration: none;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-footer.footer-lux .footer-contact-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(196, 162, 101, 0.4);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-footer.footer-lux .footer-contact-link:hover,
.site-footer.footer-lux .footer-contact-link:focus-visible {
  color: #fffdf9;
}

.site-footer.footer-lux .footer-contact-link:hover::before,
.site-footer.footer-lux .footer-contact-link:focus-visible::before {
  transform: scaleX(1);
}

.site-footer.footer-lux .footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: rgba(196, 162, 101, 0.5);
}

.site-footer.footer-lux .footer-contact-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer.footer-lux .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(196, 162, 101, 0.06);
}

.site-footer.footer-lux .footer-meta {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(248, 245, 240, 0.25);
}

.site-footer.footer-lux .footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-footer.footer-lux .footer-utility-link {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(248, 245, 240, 0.2);
  text-decoration: none;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-footer.footer-lux .footer-utility-link:hover,
.site-footer.footer-lux .footer-utility-link:focus-visible {
  color: rgba(248, 245, 240, 0.5);
}

@media (max-width: 1024px) {
  .site-footer.footer-lux .footer-shell {
    padding: 64px 40px 0;
  }

  .site-footer.footer-lux .footer-grid--lux {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px 60px;
  }

  .site-footer.footer-lux .footer-col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .site-footer.footer-lux .footer-shell {
    padding: 56px 24px 0;
  }

  .site-footer.footer-lux .footer-grid--lux {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .site-footer.footer-lux .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* === Home section index numerals === */
.home-page .insight-lux__intro,
.home-page .method-lux__intro,
.home-page .services-lux__header,
.home-page .process-lux__intro,
.home-page .about-lux__main,
.home-page .next-step-lux__content,
.home-page .final-cta-lux__inner,
.home-page .proof-inner {
  position: relative;
}

.home-page .insight-lux__number,
.home-page .method-lux__intro::before,
.home-page .services-lux__header::before,
.home-page .process-lux__intro::before,
.home-page .about-lux__main::before,
.home-page .next-step-lux__content::before,
.home-page .final-cta-lux__inner::before,
.home-page .proof-inner::before {
  position: absolute;
  pointer-events: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 8rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.home-page .insight-lux__number,
.home-page .method-lux__intro::before,
.home-page .process-lux__intro::before,
.home-page .about-lux__main::before,
.home-page .next-step-lux__content::before,
.home-page .proof-inner::before {
  top: -80px;
  left: -8px;
}

.home-page .services-lux__header::before,
.home-page .final-cta-lux__inner::before {
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}

.home-page .method-lux__intro::before {
  content: "02";
  color: rgba(196, 162, 101, 0.14);
}

.home-page .services-lux__header::before {
  content: "03";
  color: #e4ddd3;
  opacity: 0.5;
}

.home-page .process-lux__intro::before {
  content: "04";
  color: rgba(196, 162, 101, 0.12);
}

.home-page .about-lux__main::before {
  content: "05";
  color: #e4ddd3;
  opacity: 0.5;
}

.home-page .next-step-lux__content::before {
  content: "06";
  color: #e4ddd3;
  opacity: 0.5;
}

.home-page .final-cta-lux__inner::before {
  content: "07";
  color: rgba(196, 162, 101, 0.14);
}

.home-page .proof-inner::before {
  content: "08";
  color: #e4ddd3;
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .home-page .insight-lux__number,
  .home-page .method-lux__intro::before,
  .home-page .services-lux__header::before,
  .home-page .process-lux__intro::before,
  .home-page .about-lux__main::before,
  .home-page .next-step-lux__content::before,
  .home-page .final-cta-lux__inner::before,
  .home-page .proof-inner::before {
    font-size: clamp(5.25rem, 12vw, 7rem);
  }

  .home-page .insight-lux__number,
  .home-page .method-lux__intro::before,
  .home-page .process-lux__intro::before,
  .home-page .about-lux__main::before,
  .home-page .next-step-lux__content::before,
  .home-page .proof-inner::before {
    top: -64px;
    left: 0;
  }

  .home-page .services-lux__header::before,
  .home-page .final-cta-lux__inner::before {
    top: -64px;
  }
}

@media (max-width: 600px) {
  .home-page .insight-lux__number,
  .home-page .method-lux__intro::before,
  .home-page .services-lux__header::before,
  .home-page .process-lux__intro::before,
  .home-page .about-lux__main::before,
  .home-page .next-step-lux__content::before,
  .home-page .final-cta-lux__inner::before,
  .home-page .proof-inner::before {
    font-size: 4.2rem;
  }

  .home-page .insight-lux__number,
  .home-page .method-lux__intro::before,
  .home-page .process-lux__intro::before,
  .home-page .about-lux__main::before,
  .home-page .next-step-lux__content::before,
  .home-page .services-lux__header::before,
  .home-page .final-cta-lux__inner::before,
  .home-page .proof-inner::before {
    top: -44px;
  }
}

/* === About page redesign === */
body.about-page {
  --teal-950: #0d171c;
  --teal-900: #111d22;
  --teal-850: #13222a;
  --teal-800: #162730;
  --gold-400: #c4a265;
  --gold-300: #d4b87a;
  --gold-200: #e2cb96;
  --warm-950: #1a1611;
  --warm-800: #3d3630;
  --warm-700: #5a5047;
  --warm-600: #766c61;
  --warm-300: #cec5b8;
  --warm-200: #e4ddd3;
  --warm-100: #f0ebe4;
  --warm-75: #f4efe7;
  --warm-50: #f8f5f0;
  --white: #fffdf9;
  --shadow-sm: 0 1px 2px rgba(26, 22, 17, 0.04), 0 1px 3px rgba(26, 22, 17, 0.06);
  --shadow-md: 0 2px 4px rgba(26, 22, 17, 0.03), 0 6px 16px rgba(26, 22, 17, 0.06);
  --shadow-lg: 0 4px 8px rgba(26, 22, 17, 0.03), 0 12px 32px rgba(26, 22, 17, 0.08);
  background: var(--warm-50);
  color: var(--warm-950);
}

body.about-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23grain)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

body.about-page main {
  background: var(--warm-50);
}

body.about-page .about-page-shell {
  width: min(100%, 1320px);
  margin-inline: auto;
  padding-inline: 72px;
  box-sizing: border-box;
}

body.about-page .about-page-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-400);
}

body.about-page .about-page-label::before,
body.about-page .about-page-label--center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

body.about-page .about-page-label--center::before,
body.about-page .about-page-label--center::after {
  width: 24px;
  opacity: 0.5;
}

body.about-page .about-page-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--warm-950);
}

body.about-page .about-page-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-400);
}

body.about-page .about-page-title--light {
  color: var(--white);
}

body.about-page .about-page-title--light em {
  color: var(--gold-300);
}

body.about-page .about-page-section-head {
  margin-bottom: 64px;
}

body.about-page .about-page-section-head--left {
  display: grid;
  gap: 24px;
}

body.about-page .about-page-section-head--center {
  display: grid;
  justify-items: center;
  gap: 24px;
  margin-inline: auto;
  max-width: 640px;
  text-align: center;
  margin-bottom: 72px;
}

body.about-page .about-page-section-intro {
  margin: 0;
  max-width: 600px;
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--warm-600);
}

body.about-page .about-page__reveal {
  opacity: 0;
  transform: translateY(24px);
}

body.about-page .about-page-observe.is-visible .about-page__reveal {
  animation: aboutPageFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--about-delay, 0s);
}

@keyframes aboutPageFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutPageExpandLine {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 56px;
    opacity: 1;
  }
}

body.about-page .about-page-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 120px;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(196, 162, 101, 0.03) 0%, transparent 70%),
    linear-gradient(176deg, #111d22 0%, #13222a 50%, #162730 100%);
}

body.about-page .about-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(196, 162, 101, 0.18) 50%, transparent 95%);
}

body.about-page .about-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 80px;
  align-items: end;
}

body.about-page .about-page-hero__intro,
body.about-page .about-page-hero__copy {
  min-width: 0;
}

body.about-page .about-page-hero__label,
body.about-page .about-page-hero__title,
body.about-page .about-page-hero__copy {
  opacity: 0;
  animation: aboutPageFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.about-page .about-page-hero__label {
  animation-delay: 0.2s;
}

body.about-page .about-page-hero__title {
  margin-top: 24px;
  max-width: 640px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  animation-delay: 0.3s;
}

body.about-page .about-page-hero__title em {
  color: var(--gold-300);
}

body.about-page .about-page-hero__rule {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 36px;
  background: linear-gradient(90deg, var(--gold-400), transparent);
  opacity: 0;
  animation: aboutPageExpandLine 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.5s;
}

body.about-page .about-page-hero__copy {
  max-width: 520px;
  justify-self: end;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(248, 245, 240, 0.62);
  animation-delay: 0.45s;
}

body.about-page .about-page-hero__body {
  margin: 0;
}

body.about-page .about-page-hero__body + .about-page-hero__body {
  margin-top: 20px;
}

body.about-page .about-page-why {
  padding: 120px 0;
  background: var(--warm-50);
}

body.about-page .about-page-why__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

body.about-page .about-page-why__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 36px;
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-top: 2px solid var(--gold-400);
  border-radius: 2px 2px 12px 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body.about-page .about-page-why__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

body.about-page .about-page-why__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  margin: 0 auto 18px;
  background: rgba(196, 162, 101, 0.05);
  border: 1px solid rgba(196, 162, 101, 0.11);
  color: rgba(196, 162, 101, 0.9);
}

body.about-page .about-page-why__icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.about-page .about-page-why__title,
body.about-page .about-page-value__title,
body.about-page .about-page-method__title,
body.about-page .about-page-proof__degree-title,
body.about-page .about-page-proof__signature-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: var(--warm-950);
}

body.about-page .about-page-why__title {
  font-size: 1.4rem;
}

body.about-page .about-page-why__text {
  max-width: 30ch;
}

body.about-page .about-page-why__text,
body.about-page .about-page-value__text,
body.about-page .about-page-method__text,
body.about-page .about-page-proof__degree-text,
body.about-page .about-page-proof__signature-text {
  margin: 14px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--warm-600);
}

body.about-page .about-page-value {
  position: relative;
  padding: 120px 0;
  background: var(--warm-75);
}

body.about-page .about-page-value::before,
body.about-page .about-page-proof::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--warm-200) 50%, transparent 90%);
}

body.about-page .about-page-value__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

body.about-page .about-page-value__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 36px;
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

body.about-page .about-page-value__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

body.about-page .about-page-value__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0 auto 18px;
  border-radius: 10px;
  background: rgba(196, 162, 101, 0.05);
  border: 1px solid rgba(196, 162, 101, 0.11);
  color: rgba(196, 162, 101, 0.9);
}

body.about-page .about-page-value__icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.about-page .about-page-value__title {
  font-size: 1.35rem;
}

body.about-page .about-page-value__text {
  font-size: 0.88rem;
  max-width: 30ch;
}

body.about-page .about-page-contrast {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(196, 162, 101, 0.03) 0%, transparent 70%),
    linear-gradient(178deg, #111d22 0%, #13222a 50%, #162730 100%);
}

body.about-page .about-page-contrast::before,
body.about-page .about-page-cta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(196, 162, 101, 0.12) 50%, transparent 90%);
}

body.about-page .about-page-contrast__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

body.about-page .about-page-contrast__card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 48px 44px;
  border-radius: 16px;
}

body.about-page .about-page-contrast__card--generic {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body.about-page .about-page-contrast__card--ekria {
  background: var(--teal-800);
  border: 1px solid rgba(196, 162, 101, 0.15);
  border-top: 2px solid var(--gold-400);
  box-shadow: 0 8px 16px rgba(26, 22, 17, 0.04), 0 24px 56px rgba(26, 22, 17, 0.1);
}

body.about-page .about-page-contrast__card--ekria::before {
  content: "";
  position: absolute;
  top: -28%;
  right: -16%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.05) 0%, transparent 72%);
  pointer-events: none;
}

body.about-page .about-page-contrast__label {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.34);
}

body.about-page .about-page-contrast__label--gold {
  color: var(--gold-400);
}

body.about-page .about-page-contrast__list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

body.about-page .about-page-contrast__list li {
  position: relative;
  padding-left: 28px;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
}

body.about-page .about-page-contrast__list--generic li {
  color: rgba(248, 245, 240, 0.5);
}

body.about-page .about-page-contrast__list--ekria li {
  color: rgba(248, 245, 240, 0.75);
}

body.about-page .about-page-contrast__list li::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
}

body.about-page .about-page-contrast__list--generic li::before {
  content: "✕";
  color: rgba(248, 245, 240, 0.18);
}

body.about-page .about-page-contrast__list--ekria li::before {
  content: "✓";
  color: var(--gold-400);
}

body.about-page .about-page-method {
  padding: 120px 0;
  background: var(--warm-50);
}

body.about-page .about-page-method__head {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

body.about-page .about-page-method__head-main {
  display: grid;
  gap: 24px;
}

body.about-page .about-page-method__lead {
  margin: 0;
  max-width: 460px;
  justify-self: end;
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--warm-600);
}

body.about-page .about-page-method__timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

body.about-page .about-page-method__timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  right: calc(25% - 45px);
  height: 1px;
  background: var(--warm-300);
}

body.about-page .about-page-method__step {
  position: relative;
  min-width: 0;
}

body.about-page .about-page-method__num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--warm-200);
  box-shadow: var(--shadow-sm);
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--gold-400);
  transition:
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.about-page .about-page-method__step:hover .about-page-method__num {
  border-color: rgba(196, 162, 101, 0.3);
  box-shadow: 0 0 18px rgba(196, 162, 101, 0.1);
}

body.about-page .about-page-method__title {
  font-size: 1.25rem;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.about-page .about-page-method__step:hover .about-page-method__title {
  color: var(--gold-400);
}

body.about-page .about-page-method__text {
  margin-top: 12px;
  font-size: 0.85rem;
}

body.about-page .about-page-proof {
  position: relative;
  padding: 120px 0;
  background: var(--warm-75);
}

body.about-page .about-page-proof__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: start;
}

body.about-page .about-page-proof__main {
  min-width: 0;
}

body.about-page .about-page-proof__main .about-page-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-top: 24px;
  text-wrap: balance;
}

body.about-page .about-page-proof__degrees {
  margin-top: 36px;
}

body.about-page .about-page-proof__degree {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--warm-200);
}

body.about-page .about-page-proof__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 8px;
  background: rgba(196, 162, 101, 0.06);
  border: 1px solid rgba(196, 162, 101, 0.12);
  color: var(--gold-400);
}

body.about-page .about-page-proof__icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.about-page .about-page-proof__degree-title {
  font-size: 1.2rem;
}

body.about-page .about-page-proof__degree-text {
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--warm-700);
}

body.about-page .about-page-proof__skills {
  margin-top: 32px;
}

body.about-page .about-page-proof__skills-label,
body.about-page .about-page-proof__signature-label {
  margin: 0 0 16px;
  font-family: "Outfit", sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(196, 162, 101, 0.7);
}

body.about-page .about-page-proof__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.about-page .about-page-proof__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 11px;
  background: rgba(248, 245, 240, 0.74);
  border: 1px solid rgba(196, 162, 101, 0.14);
  font-family: "Outfit", sans-serif;
  font-size: 0.76rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.015em;
  color: rgba(98, 88, 77, 0.9);
}

body.about-page .about-page-proof__aside {
  position: relative;
}

body.about-page .about-page-proof__signature-card {
  position: sticky;
  top: 120px;
  padding: 48px 44px;
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-left: 2px solid var(--gold-400);
  border-radius: 2px 12px 12px 2px;
  box-shadow: var(--shadow-md);
}

body.about-page .about-page-proof__signature-title {
  font-size: 1.5rem;
}

body.about-page .about-page-proof__signature-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--warm-700);
}

body.about-page .about-page-proof__pledge {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--warm-100);
}

body.about-page .about-page-proof__pledge-quote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.74;
  color: #6b6055;
  text-wrap: pretty;
}

body.about-page .about-page-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0 140px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(196, 162, 101, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 80%, rgba(27, 50, 64, 0.4) 0%, transparent 60%),
    linear-gradient(178deg, #162730 0%, #13222a 40%, #111d22 100%);
}

body.about-page .about-page-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23grain)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

body.about-page .about-page-cta__shell {
  width: min(100%, 1320px);
  margin-inline: auto;
  padding-inline: 72px;
  box-sizing: border-box;
}

body.about-page .about-page-cta__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.about-page .about-page-cta__side {
  position: absolute;
  top: 50%;
  width: 1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(196, 162, 101, 0.15), transparent);
  opacity: 0;
  transform: translateY(calc(-50% + 18px));
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.6s;
}

body.about-page .about-page-cta__side--left {
  left: -60px;
}

body.about-page .about-page-cta__side--right {
  right: -60px;
}

body.about-page .about-page-observe.is-visible .about-page-cta__side {
  opacity: 1;
  transform: translateY(-50%);
}

body.about-page .about-page-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-400);
}

body.about-page .about-page-cta__label::before,
body.about-page .about-page-cta__label::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

body.about-page .about-page-cta__title {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
}

body.about-page .about-page-cta__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-300);
}

body.about-page .about-page-cta__body {
  margin: 0 auto 44px;
  max-width: 520px;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(248, 245, 240, 0.55);
}

body.about-page .about-page-cta__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, #d4b87a, #c4a265);
  box-shadow: 0 2px 4px rgba(196, 162, 101, 0.2), 0 8px 24px rgba(196, 162, 101, 0.15);
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.2;
  color: #111d22;
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.about-page .about-page-cta__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.about-page .about-page-cta__button::after {
  content: "→";
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.about-page .about-page-cta__button:hover,
body.about-page .about-page-cta__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(196, 162, 101, 0.22), 0 12px 30px rgba(196, 162, 101, 0.18);
}

body.about-page .about-page-cta__button:hover::before,
body.about-page .about-page-cta__button:focus-visible::before {
  opacity: 1;
}

body.about-page .about-page-cta__button:hover::after,
body.about-page .about-page-cta__button:focus-visible::after {
  transform: translateX(3px);
}

body.about-page .about-page-cta__button-text {
  position: relative;
  z-index: 1;
}

body.about-page .about-page-cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 10px;
  margin: 18px auto 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(248, 245, 240, 0.3);
}

body.about-page .about-page-cta__trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: rgba(196, 162, 101, 0.4);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.about-page .about-page-cta__trust-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1024px) {
  body.about-page .about-page-shell,
  body.about-page .about-page-cta__shell {
    padding-inline: 40px;
  }

  body.about-page .about-page-hero {
    padding: 140px 0 100px;
  }

  body.about-page .about-page-hero__grid,
  body.about-page .about-page-method__head,
  body.about-page .about-page-proof__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  body.about-page .about-page-hero__copy,
  body.about-page .about-page-method__lead {
    justify-self: start;
    max-width: 560px;
  }

  body.about-page .about-page-why__grid,
  body.about-page .about-page-value__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  body.about-page .about-page-contrast__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  body.about-page .about-page-method__timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.about-page .about-page-method__timeline::before,
  body.about-page .about-page-cta__side {
    display: none;
  }

  body.about-page .about-page-proof__signature-card {
    position: static;
  }

  body.about-page .about-page-why,
  body.about-page .about-page-value,
  body.about-page .about-page-contrast,
  body.about-page .about-page-method,
  body.about-page .about-page-proof {
    padding: 100px 0 120px;
  }

  body.about-page .about-page-cta {
    padding: 100px 0 120px;
  }
}

@media (max-width: 600px) {
  body.about-page .about-page-shell,
  body.about-page .about-page-cta__shell {
    padding-inline: 24px;
  }

  body.about-page .about-page-hero {
    padding: 120px 0 80px;
  }

  body.about-page .about-page-hero__title,
  body.about-page .about-page-title,
  body.about-page .about-page-cta__title {
    font-size: 2.4rem;
  }

  body.about-page .about-page-why,
  body.about-page .about-page-value,
  body.about-page .about-page-contrast,
  body.about-page .about-page-method,
  body.about-page .about-page-proof,
  body.about-page .about-page-cta {
    padding: 80px 0;
  }

  body.about-page .about-page-why__card,
  body.about-page .about-page-value__card,
  body.about-page .about-page-contrast__card,
  body.about-page .about-page-proof__signature-card {
    padding: 32px 28px;
  }

  body.about-page .about-page-method__timeline {
    grid-template-columns: 1fr;
  }

  body.about-page .about-page-method__num {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  body.about-page .about-page-cta__button {
    width: 100%;
    padding: 18px 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.about-page .about-page__reveal,
  body.about-page .about-page-hero__label,
  body.about-page .about-page-hero__title,
  body.about-page .about-page-hero__copy,
  body.about-page .about-page-hero__rule,
  body.about-page .about-page-cta__side {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  body.about-page .about-page-hero__rule {
    width: 56px;
  }
}

/* === Services page redesign === */
body.services-page {
  --teal-950: #0d171c;
  --teal-900: #111d22;
  --teal-850: #13222a;
  --teal-800: #162730;
  --gold-400: #c4a265;
  --gold-300: #d4b87a;
  --gold-200: #e2cb96;
  --warm-950: #1a1611;
  --warm-800: #3d3630;
  --warm-700: #5a5047;
  --warm-600: #766c61;
  --warm-300: #cec5b8;
  --warm-200: #e4ddd3;
  --warm-100: #f0ebe4;
  --warm-75: #f4efe7;
  --warm-50: #f8f5f0;
  --white: #fffdf9;
  --shadow-sm: 0 1px 2px rgba(26, 22, 17, 0.04), 0 1px 3px rgba(26, 22, 17, 0.06);
  --shadow-md: 0 2px 4px rgba(26, 22, 17, 0.03), 0 6px 16px rgba(26, 22, 17, 0.06);
  --shadow-lg: 0 4px 8px rgba(26, 22, 17, 0.03), 0 12px 32px rgba(26, 22, 17, 0.08);
  background: var(--warm-50);
  color: var(--warm-950);
}

body.services-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23grain)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

body.services-page main {
  background: var(--warm-50);
}

body.services-page .services-page-shell,
body.services-page .services-page-cta__shell {
  width: min(100%, 1320px);
  margin-inline: auto;
  padding-inline: 72px;
  box-sizing: border-box;
}

body.services-page .services-page-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-400);
}

body.services-page .services-page-label::before,
body.services-page .services-page-label--center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

body.services-page .services-page-label--center::before,
body.services-page .services-page-label--center::after {
  width: 24px;
  opacity: 0.5;
}

body.services-page .services-page-label--light {
  color: var(--gold-400);
}

body.services-page .services-page-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--warm-950);
}

body.services-page .services-page-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-400);
}

body.services-page .services-page-title--light {
  color: var(--white);
}

body.services-page .services-page-title--light em {
  color: var(--gold-300);
}

body.services-page .services-page-section-head {
  margin-bottom: 56px;
}

body.services-page .services-page-section-head--left {
  display: grid;
  gap: 24px;
}

body.services-page .services-page-section-head--center {
  display: grid;
  justify-items: center;
  gap: 24px;
  max-width: 640px;
  margin: 0 auto 72px;
  text-align: center;
}

body.services-page .services-page-section-intro {
  margin: 0;
  max-width: 600px;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--warm-600);
}

body.services-page .services-page__reveal {
  opacity: 0;
  transform: translateY(24px);
}

body.services-page .services-page-observe.is-visible .services-page__reveal {
  animation: servicesPageFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--services-delay, 0s);
}

@keyframes servicesPageFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes servicesPageExpandLine {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 56px;
    opacity: 1;
  }
}

body.services-page .services-page-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 120px;
  background:
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(196, 162, 101, 0.04) 0%, transparent 70%),
    linear-gradient(176deg, #111d22 0%, #13222a 50%, #162730 100%);
}

body.services-page .services-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(196, 162, 101, 0.18) 50%, transparent 95%);
}

body.services-page .services-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 80px;
  align-items: end;
}

body.services-page .services-page-hero__intro,
body.services-page .services-page-hero__content {
  min-width: 0;
}

body.services-page .services-page-hero__label,
body.services-page .services-page-hero__title,
body.services-page .services-page-hero__content {
  opacity: 0;
  animation: servicesPageFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.services-page .services-page-hero__label {
  animation-delay: 0.2s;
}

body.services-page .services-page-hero__title {
  margin-top: 24px;
  max-width: 640px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  animation-delay: 0.3s;
}

body.services-page .services-page-hero__title em {
  color: var(--gold-300);
}

body.services-page .services-page-hero__rule {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 36px;
  background: linear-gradient(90deg, var(--gold-400), transparent);
  opacity: 0;
  animation: servicesPageExpandLine 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.5s;
}

body.services-page .services-page-hero__content {
  display: grid;
  gap: 32px;
  max-width: 520px;
  justify-self: end;
  animation-delay: 0.45s;
}

body.services-page .services-page-hero__body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(248, 245, 240, 0.55);
}

body.services-page .services-page-hero__body + .services-page-hero__body {
  margin-top: 18px;
}

body.services-page .services-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

body.services-page .services-page-hero__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.services-page .services-page-hero__button-text {
  position: relative;
  z-index: 1;
}

body.services-page .services-page-hero__button--primary {
  background: linear-gradient(135deg, #d4b87a, #c4a265);
  box-shadow: 0 2px 4px rgba(196, 162, 101, 0.2), 0 8px 20px rgba(196, 162, 101, 0.12);
  color: #111d22;
}

body.services-page .services-page-hero__button--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.services-page .services-page-hero__button--primary::after,
body.services-page .services-page-cta__button::after,
body.services-page .services-page-card__link::after {
  content: "→";
}

body.services-page .services-page-hero__button--primary::after {
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.services-page .services-page-hero__button--primary:hover,
body.services-page .services-page-hero__button--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(196, 162, 101, 0.22), 0 12px 28px rgba(196, 162, 101, 0.18);
}

body.services-page .services-page-hero__button--primary:hover::before,
body.services-page .services-page-hero__button--primary:focus-visible::before {
  opacity: 1;
}

body.services-page .services-page-hero__button--primary:hover::after,
body.services-page .services-page-hero__button--primary:focus-visible::after {
  transform: translateX(3px);
}

body.services-page .services-page-hero__button--secondary {
  border-color: rgba(248, 245, 240, 0.12);
  background: transparent;
  color: rgba(248, 245, 240, 0.7);
}

body.services-page .services-page-hero__button--secondary:hover,
body.services-page .services-page-hero__button--secondary:focus-visible {
  border-color: rgba(196, 162, 101, 0.35);
  background: rgba(196, 162, 101, 0.04);
  color: var(--gold-300);
}

body.services-page .services-page-diff {
  padding: 120px 0;
  background: var(--warm-50);
}

body.services-page .services-page-diff__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

body.services-page .services-page-diff__card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.services-page .services-page-diff__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

body.services-page .services-page-diff__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 10px;
  background: rgba(196, 162, 101, 0.06);
  border: 1px solid rgba(196, 162, 101, 0.12);
  color: var(--gold-400);
}

body.services-page .services-page-diff__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.services-page .services-page-diff__title,
body.services-page .services-page-card__title,
body.services-page .services-page-decision__answer {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}

body.services-page .services-page-diff__title {
  font-size: 1.32rem;
  color: var(--warm-950);
}

body.services-page .services-page-diff__text,
body.services-page .services-page-card__body,
body.services-page .services-page-card__features li,
body.services-page .services-page-decision__need,
body.services-page .services-page-cta__body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
}

body.services-page .services-page-diff__text {
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--warm-600);
}

body.services-page .services-page-cards {
  position: relative;
  padding: 120px 0 140px;
  background: var(--warm-75);
}

body.services-page .services-page-cards::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--warm-200) 50%, transparent 90%);
}

body.services-page .services-page-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

body.services-page .services-page-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 48px 36px 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

body.services-page .services-page-card:hover {
  transform: translateY(-6px);
}

body.services-page .services-page-card--standard {
  background: var(--white);
  border: 1px solid var(--warm-200);
}

body.services-page .services-page-card--standard:hover {
  box-shadow: var(--shadow-lg);
}

body.services-page .services-page-card--featured {
  background: var(--teal-800);
  border: 1px solid rgba(196, 162, 101, 0.15);
  border-top: 3px solid var(--gold-400);
  box-shadow: 0 4px 8px rgba(26, 22, 17, 0.06), 0 16px 48px rgba(26, 22, 17, 0.12);
}

body.services-page .services-page-card--featured::before {
  content: "";
  position: absolute;
  top: -26%;
  right: -15%;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.05) 0%, transparent 72%);
  pointer-events: none;
}

body.services-page .services-page-card--featured:hover {
  box-shadow: 0 8px 16px rgba(26, 22, 17, 0.06), 0 24px 56px rgba(26, 22, 17, 0.14);
}

body.services-page .services-page-card__badge {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 48px);
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid rgba(196, 162, 101, 0.15);
  background: rgba(196, 162, 101, 0.1);
  font-family: "Outfit", sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  color: var(--gold-400);
}

body.services-page .services-page-card__num {
  display: block;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
}

body.services-page .services-page-card--standard .services-page-card__num {
  color: var(--warm-200);
}

body.services-page .services-page-card--featured .services-page-card__num {
  color: rgba(196, 162, 101, 0.15);
}

body.services-page .services-page-card__kicker {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

body.services-page .services-page-card--standard .services-page-card__kicker {
  color: var(--gold-400);
}

body.services-page .services-page-card--featured .services-page-card__kicker {
  color: var(--gold-300);
}

body.services-page .services-page-card__title {
  margin-top: 10px;
  font-size: 1.8rem;
}

body.services-page .services-page-card--standard .services-page-card__title {
  color: var(--warm-950);
}

body.services-page .services-page-card--featured .services-page-card__title {
  color: var(--white);
}

body.services-page .services-page-card__rule {
  display: block;
  width: 32px;
  height: 1px;
  margin-top: 24px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.services-page .services-page-card:hover .services-page-card__rule {
  width: 48px;
}

body.services-page .services-page-card--standard .services-page-card__rule {
  background: var(--gold-400);
}

body.services-page .services-page-card--featured .services-page-card__rule {
  background: rgba(212, 184, 122, 0.7);
}

body.services-page .services-page-card__body {
  margin-top: 24px;
  font-size: 0.9rem;
  line-height: 1.75;
}

body.services-page .services-page-card--standard .services-page-card__body {
  color: var(--warm-600);
}

body.services-page .services-page-card--featured .services-page-card__body {
  color: rgba(248, 245, 240, 0.55);
}

body.services-page .services-page-card__features {
  --services-list-marker-column: 6px;
  --services-list-marker-size: 6px;
  --services-list-marker-gap: 12px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  flex: 1 1 auto;
}

body.services-page .services-page-card__features li {
  display: grid;
  grid-template-columns: var(--services-list-marker-column) minmax(0, 1fr);
  column-gap: var(--services-list-marker-gap);
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid var(--warm-100);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--warm-700);
}

body.services-page .services-page-card__features li::before {
  content: "";
  display: block;
  width: var(--services-list-marker-size);
  height: var(--services-list-marker-size);
  margin-top: calc((1.55em - var(--services-list-marker-size)) / 2);
  border-radius: 50%;
  background: var(--warm-300);
}

body.services-page .services-page-card--featured .services-page-card__features li {
  border-bottom-color: rgba(196, 162, 101, 0.06);
  color: rgba(248, 245, 240, 0.6);
}

body.services-page .services-page-card--featured .services-page-card__features li::before {
  background: var(--gold-400);
}

body.services-page .services-page-card__link {
  display: inline-flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.services-page .services-page-card__link::after {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.services-page .services-page-card--standard .services-page-card__link {
  color: var(--warm-700);
  border-top: 1px solid var(--warm-100);
}

body.services-page .services-page-card--standard .services-page-card__link:hover,
body.services-page .services-page-card--standard .services-page-card__link:focus-visible {
  color: var(--gold-400);
}

body.services-page .services-page-card--featured .services-page-card__link {
  color: var(--gold-300);
  border-top: 1px solid rgba(196, 162, 101, 0.1);
}

body.services-page .services-page-card--featured .services-page-card__link:hover,
body.services-page .services-page-card--featured .services-page-card__link:focus-visible {
  color: var(--gold-200);
}

body.services-page .services-page-card__link:hover::after,
body.services-page .services-page-card__link:focus-visible::after {
  transform: translateX(4px);
}

body.services-page .services-page-decision {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(ellipse 50% 60% at 30% 70%, rgba(27, 50, 64, 0.4) 0%, transparent 60%),
    linear-gradient(178deg, #111d22 0%, #13222a 50%, #162730 100%);
}

body.services-page .services-page-decision::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(196, 162, 101, 0.12) 50%, transparent 90%);
}

body.services-page .services-page-decision__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

body.services-page .services-page-decision__card {
  display: block;
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.services-page .services-page-decision__card:hover,
body.services-page .services-page-decision__card:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(196, 162, 101, 0.14);
  box-shadow: 0 8px 22px rgba(8, 14, 18, 0.16);
}

body.services-page .services-page-decision__card:focus-visible {
  outline: none;
}

body.services-page .services-page-decision__need {
  min-height: 52px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(248, 245, 240, 0.6);
}

body.services-page .services-page-decision__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0;
  color: rgba(196, 162, 101, 0.5);
  transition:
    color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.services-page .services-page-decision__arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.services-page .services-page-decision__answer {
  font-size: 1.35rem;
  color: var(--white);
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.services-page .services-page-decision__card:hover .services-page-decision__arrow,
body.services-page .services-page-decision__card:focus-visible .services-page-decision__arrow {
  color: rgba(196, 162, 101, 0.72);
  transform: translateY(2px);
}

body.services-page .services-page-decision__card:hover .services-page-decision__answer,
body.services-page .services-page-decision__card:focus-visible .services-page-decision__answer {
  color: var(--gold-200);
}

body.services-page .services-page-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0 140px;
  text-align: center;
  background:
    radial-gradient(ellipse 62% 54% at 50% 18%, rgba(196, 162, 101, 0.08) 0%, transparent 72%),
    radial-gradient(ellipse 44% 60% at 8% 86%, rgba(16, 36, 58, 0.08) 0%, transparent 62%),
    linear-gradient(180deg, var(--warm-50) 0%, var(--warm-75) 100%);
}

body.services-page .services-page-cta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(196, 162, 101, 0.18) 50%, transparent 90%);
}

body.services-page .services-page-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23grain)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

body.services-page .services-page-cta__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  margin-inline: auto;
}

body.services-page .services-page-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(185, 150, 88, 0.92);
}

body.services-page .services-page-cta__label::before,
body.services-page .services-page-cta__label::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

body.services-page .services-page-cta__title {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--warm-950);
}

body.services-page .services-page-cta__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-400);
}

body.services-page .services-page-cta__body {
  margin: 0 auto 44px;
  max-width: 520px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #62584d;
}

body.services-page .services-page-cta__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, #d4b87a, #c4a265);
  box-shadow: 0 2px 4px rgba(196, 162, 101, 0.16), 0 10px 24px rgba(17, 29, 34, 0.08);
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.2;
  color: #111d22;
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.services-page .services-page-cta__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.services-page .services-page-cta__button::after {
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.services-page .services-page-cta__button:hover,
body.services-page .services-page-cta__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(196, 162, 101, 0.18), 0 14px 30px rgba(17, 29, 34, 0.1);
}

body.services-page .services-page-cta__button:hover::before,
body.services-page .services-page-cta__button:focus-visible::before {
  opacity: 1;
}

body.services-page .services-page-cta__button:hover::after,
body.services-page .services-page-cta__button:focus-visible::after {
  transform: translateX(3px);
}

body.services-page .services-page-cta__button-text {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  body.services-page .services-page-shell,
  body.services-page .services-page-cta__shell {
    padding-inline: 40px;
  }

  body.services-page .services-page-hero {
    padding: 140px 0 100px;
  }

  body.services-page .services-page-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  body.services-page .services-page-hero__content {
    justify-self: start;
    max-width: 560px;
  }

  body.services-page .services-page-diff__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  body.services-page .services-page-cards__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }

  body.services-page .services-page-decision__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  body.services-page .services-page-diff,
  body.services-page .services-page-cards,
  body.services-page .services-page-decision {
    padding: 100px 0 120px;
  }

  body.services-page .services-page-cards {
    padding-bottom: 120px;
  }

  body.services-page .services-page-cta {
    padding: 100px 0 120px;
  }
}

@media (max-width: 600px) {
  body.services-page .services-page-shell,
  body.services-page .services-page-cta__shell {
    padding-inline: 24px;
  }

  body.services-page .services-page-hero,
  body.services-page .services-page-diff,
  body.services-page .services-page-cards,
  body.services-page .services-page-decision,
  body.services-page .services-page-cta {
    padding: 80px 0;
  }

  body.services-page .services-page-hero__title,
  body.services-page .services-page-title,
  body.services-page .services-page-cta__title {
    font-size: 2.4rem;
  }

  body.services-page .services-page-hero__actions {
    flex-direction: column;
  }

  body.services-page .services-page-hero__button,
  body.services-page .services-page-cta__button {
    width: 100%;
  }

  body.services-page .services-page-card,
  body.services-page .services-page-diff__card,
  body.services-page .services-page-decision__card {
    padding: 32px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.services-page .services-page__reveal,
  body.services-page .services-page-hero__label,
  body.services-page .services-page-hero__title,
  body.services-page .services-page-hero__content,
  body.services-page .services-page-hero__rule {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  body.services-page .services-page-hero__rule {
    width: 56px;
  }
}

/* === Pricing page redesign === */
body.pricing-page {
  --teal-950: #0d171c;
  --teal-900: #111d22;
  --teal-850: #13222a;
  --teal-800: #162730;
  --gold-400: #c4a265;
  --gold-300: #d4b87a;
  --gold-200: #e2cb96;
  --warm-950: #1a1611;
  --warm-800: #3d3630;
  --warm-700: #5a5047;
  --warm-600: #766c61;
  --warm-500: #958a7e;
  --warm-300: #cec5b8;
  --warm-200: #e4ddd3;
  --warm-100: #f0ebe4;
  --warm-75: #f4efe7;
  --warm-50: #f8f5f0;
  --white: #fffdf9;
  --shadow-sm: 0 1px 2px rgba(26, 22, 17, 0.04), 0 1px 3px rgba(26, 22, 17, 0.06);
  --shadow-md: 0 2px 4px rgba(26, 22, 17, 0.03), 0 6px 16px rgba(26, 22, 17, 0.06);
  --shadow-lg: 0 4px 8px rgba(26, 22, 17, 0.03), 0 12px 32px rgba(26, 22, 17, 0.08);
  background: var(--warm-50);
  color: var(--warm-950);
}

body.pricing-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23grain)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

body.pricing-page main {
  background: var(--warm-50);
}

body.pricing-page .pricing-page-shell,
body.pricing-page .pricing-page-cta__shell {
  width: min(100%, 1320px);
  margin-inline: auto;
  padding-inline: 72px;
  box-sizing: border-box;
}

body.pricing-page .pricing-page-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-400);
}

body.pricing-page .pricing-page-label::before,
body.pricing-page .pricing-page-label--center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

body.pricing-page .pricing-page-label--center::before,
body.pricing-page .pricing-page-label--center::after {
  width: 24px;
  opacity: 0.5;
}

body.pricing-page .pricing-page-label--light {
  color: var(--gold-400);
}

body.pricing-page .pricing-page-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--warm-950);
  text-wrap: balance;
}

body.pricing-page .pricing-page-title em,
body.pricing-page .pricing-page-hero__title em,
body.pricing-page .pricing-page-cta__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-300);
}

body.pricing-page .pricing-page-title--light {
  color: var(--white);
}

body.pricing-page .pricing-page-section-head {
  margin-bottom: 56px;
}

body.pricing-page .pricing-page-section-head--left {
  display: grid;
  gap: 24px;
}

body.pricing-page .pricing-page-section-head--center {
  display: grid;
  justify-items: center;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto 72px;
  text-align: center;
}

body.pricing-page .pricing-page-section-intro {
  margin: 0;
  max-width: 620px;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--warm-600);
}

body.pricing-page .pricing-page__reveal {
  opacity: 0;
  transform: translateY(24px);
}

body.pricing-page .pricing-page-observe.is-visible .pricing-page__reveal {
  animation: pricingPageFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--pricing-delay, 0s);
}

@keyframes pricingPageFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pricingPageExpandLine {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 56px;
    opacity: 1;
  }
}

body.pricing-page .pricing-page-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 120px;
  background:
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(196, 162, 101, 0.04) 0%, transparent 70%),
    linear-gradient(176deg, #111d22 0%, #13222a 50%, #162730 100%);
}

body.pricing-page .pricing-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(196, 162, 101, 0.18) 50%, transparent 95%);
}

body.pricing-page .pricing-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 80px;
  align-items: end;
}

body.pricing-page .pricing-page-hero__intro,
body.pricing-page .pricing-page-hero__content {
  min-width: 0;
}

body.pricing-page .pricing-page-hero__label,
body.pricing-page .pricing-page-hero__title,
body.pricing-page .pricing-page-hero__content {
  opacity: 0;
  animation: pricingPageFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.pricing-page .pricing-page-hero__label {
  animation-delay: 0.2s;
}

body.pricing-page .pricing-page-hero__title {
  margin-top: 24px;
  max-width: 600px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  text-wrap: balance;
  animation-delay: 0.3s;
}

body.pricing-page .pricing-page-hero__rule {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 36px;
  background: linear-gradient(90deg, var(--gold-400), transparent);
  opacity: 0;
  animation: pricingPageExpandLine 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.5s;
}

body.pricing-page .pricing-page-hero__content {
  display: grid;
  gap: 32px;
  max-width: 520px;
  justify-self: end;
  animation-delay: 0.45s;
}

body.pricing-page .pricing-page-hero__body,
body.pricing-page .pricing-page-cta__body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.8;
}

body.pricing-page .pricing-page-hero__body {
  color: rgba(248, 245, 240, 0.55);
}

body.pricing-page .pricing-page-hero__body + .pricing-page-hero__body {
  margin-top: 18px;
}

body.pricing-page .pricing-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

body.pricing-page .pricing-page-hero__button,
body.pricing-page .pricing-page-cta__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  overflow: hidden;
}

body.pricing-page .pricing-page-hero__button {
  padding: 16px 32px;
  font-size: 0.88rem;
  border: 1px solid transparent;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.pricing-page .pricing-page-hero__button-text,
body.pricing-page .pricing-page-cta__button-text {
  position: relative;
  z-index: 1;
}

body.pricing-page .pricing-page-hero__button--primary,
body.pricing-page .pricing-page-cta__button {
  background: linear-gradient(135deg, #d4b87a, #c4a265);
  box-shadow: 0 2px 4px rgba(196, 162, 101, 0.2), 0 8px 24px rgba(196, 162, 101, 0.15);
  color: #111d22;
}

body.pricing-page .pricing-page-hero__button--primary::before,
body.pricing-page .pricing-page-cta__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.pricing-page .pricing-page-hero__button--primary::after,
body.pricing-page .pricing-page-cta__button::after,
body.pricing-page .pricing-page-card__link::after {
  content: "→";
}

body.pricing-page .pricing-page-hero__button--primary::after,
body.pricing-page .pricing-page-cta__button::after {
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.pricing-page .pricing-page-hero__button--primary:hover,
body.pricing-page .pricing-page-hero__button--primary:focus-visible,
body.pricing-page .pricing-page-cta__button:hover,
body.pricing-page .pricing-page-cta__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(196, 162, 101, 0.22), 0 12px 30px rgba(196, 162, 101, 0.18);
}

body.pricing-page .pricing-page-hero__button--primary:hover::before,
body.pricing-page .pricing-page-hero__button--primary:focus-visible::before,
body.pricing-page .pricing-page-cta__button:hover::before,
body.pricing-page .pricing-page-cta__button:focus-visible::before {
  opacity: 1;
}

body.pricing-page .pricing-page-hero__button--primary:hover::after,
body.pricing-page .pricing-page-hero__button--primary:focus-visible::after,
body.pricing-page .pricing-page-cta__button:hover::after,
body.pricing-page .pricing-page-cta__button:focus-visible::after {
  transform: translateX(3px);
}

body.pricing-page .pricing-page-hero__button--secondary {
  background: transparent;
  border-color: rgba(248, 245, 240, 0.18);
  color: rgba(248, 245, 240, 0.78);
}

body.pricing-page .pricing-page-hero__button--secondary:hover,
body.pricing-page .pricing-page-hero__button--secondary:focus-visible {
  background: rgba(196, 162, 101, 0.04);
  border-color: rgba(196, 162, 101, 0.35);
  color: var(--gold-300);
}

body.pricing-page .pricing-page-how {
  padding: 120px 0;
  background: var(--warm-50);
}

body.pricing-page .pricing-page-how__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

body.pricing-page .pricing-page-how__card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  height: 100%;
  padding: 40px 36px;
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid rgba(118, 108, 97, 0.16);
  border-radius: 12px;
  box-shadow: none;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.pricing-page .pricing-page-how__card:hover {
  transform: translateY(-2px);
  border-color: rgba(176, 141, 87, 0.24);
  background: var(--white);
}

body.pricing-page .pricing-page-how__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 10px;
  background: rgba(196, 162, 101, 0.06);
  border: 1px solid rgba(196, 162, 101, 0.12);
  color: var(--gold-400);
}

body.pricing-page .pricing-page-how__icon svg,
body.pricing-page .pricing-page-included__icon svg,
body.pricing-page .pricing-page-cta__trust-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.pricing-page .pricing-page-how__icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.6;
}

body.pricing-page .pricing-page-how__title,
body.pricing-page .pricing-page-card__title,
body.pricing-page .pricing-page-included__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}

body.pricing-page .pricing-page-how__title {
  font-size: 1.32rem;
  color: var(--warm-950);
}

body.pricing-page .pricing-page-how__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

body.pricing-page .pricing-page-how__text,
body.pricing-page .pricing-page-card__features li,
body.pricing-page .pricing-page-included__text,
body.pricing-page .pricing-page-cta__trust {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
}

body.pricing-page .pricing-page-how__text {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--warm-600);
}

body.pricing-page .pricing-page-levels {
  position: relative;
  padding: 120px 0 140px;
  background: var(--warm-75);
}

body.pricing-page .pricing-page-levels::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--warm-200) 50%, transparent 90%);
}

body.pricing-page .pricing-page-levels__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

body.pricing-page .pricing-page-levels__note {
  margin: 32px 0 0;
  max-width: 720px;
  font-family: "Outfit", sans-serif;
  font-size: 0.76rem;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--pricing-muted);
}

body.pricing-page .pricing-page-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 46px 36px 40px;
  border-radius: 16px;
  box-shadow: none;
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

body.pricing-page .pricing-page-card:hover {
  transform: translateY(-6px);
}

body.pricing-page .pricing-page-card--standard {
  background: var(--white);
  border: 1px solid rgba(118, 108, 97, 0.14);
}

body.pricing-page .pricing-page-card--standard:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(176, 141, 87, 0.2);
}

body.pricing-page .pricing-page-card--featured {
  background: linear-gradient(180deg, rgba(22, 39, 48, 0.97) 0%, rgba(19, 34, 42, 0.98) 100%);
  border: 1px solid rgba(196, 162, 101, 0.12);
  box-shadow: 0 4px 12px rgba(17, 29, 34, 0.08), 0 12px 30px rgba(17, 29, 34, 0.1);
}

body.pricing-page .pricing-page-card--featured::before {
  content: "";
  position: absolute;
  top: -26%;
  right: -15%;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.05) 0%, transparent 72%);
  pointer-events: none;
}

body.pricing-page .pricing-page-card--featured:hover {
  box-shadow: 0 6px 16px rgba(17, 29, 34, 0.08), 0 18px 38px rgba(17, 29, 34, 0.12);
}

body.pricing-page .pricing-page-card__badge {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 48px);
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid rgba(196, 162, 101, 0.15);
  background: rgba(196, 162, 101, 0.1);
  font-family: "Outfit", sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  color: var(--gold-400);
}

body.pricing-page .pricing-page-card__head {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 92px;
}

body.pricing-page .pricing-page-card__context {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

body.pricing-page .pricing-page-card--standard .pricing-page-card__context {
  color: var(--gold-400);
}

body.pricing-page .pricing-page-card--featured .pricing-page-card__context {
  color: var(--gold-300);
}

body.pricing-page .pricing-page-card__title {
  margin-top: 0;
  font-size: 1.8rem;
}

body.pricing-page .pricing-page-card--standard .pricing-page-card__title {
  color: var(--warm-950);
}

body.pricing-page .pricing-page-card--featured .pricing-page-card__title {
  color: var(--white);
}

body.pricing-page .pricing-page-card__price-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 122px;
  padding: 22px 0;
  margin: 18px 0 22px;
}

body.pricing-page .pricing-page-card--standard .pricing-page-card__price-block {
  border-top: 1px solid var(--warm-100);
  border-bottom: 1px solid var(--warm-100);
}

body.pricing-page .pricing-page-card--featured .pricing-page-card__price-block {
  border-top: 1px solid rgba(196, 162, 101, 0.1);
  border-bottom: 1px solid rgba(196, 162, 101, 0.1);
}

body.pricing-page .pricing-page-card__price {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
}

body.pricing-page .pricing-page-card--standard .pricing-page-card__price {
  color: var(--warm-950);
}

body.pricing-page .pricing-page-card--featured .pricing-page-card__price {
  color: var(--gold-300);
}

body.pricing-page .pricing-page-card__price-note {
  margin: 8px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.6;
}

body.pricing-page .pricing-page-card--standard .pricing-page-card__price-note {
  color: var(--warm-500);
}

body.pricing-page .pricing-page-card--featured .pricing-page-card__price-note {
  color: rgba(248, 245, 240, 0.35);
}

body.pricing-page .pricing-page-card__features {
  --services-list-marker-column: 16px;
  --services-list-marker-size: 16px;
  --services-list-marker-gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  align-content: start;
  flex: 1 1 auto;
}

body.pricing-page .pricing-page-card__features li {
  display: grid;
  grid-template-columns: var(--services-list-marker-column) minmax(0, 1fr);
  column-gap: var(--services-list-marker-gap);
  align-items: start;
  padding: 10px 0;
  font-size: 0.85rem;
  line-height: 1.55;
  border-bottom: 1px solid var(--warm-100);
}

body.pricing-page .pricing-page-card__features li:last-child {
  border-bottom: 0;
}

body.pricing-page .pricing-page-card__features li::before {
  content: "";
  display: block;
  width: var(--services-list-marker-size);
  height: var(--services-list-marker-size);
  margin-top: calc((1.55em - var(--services-list-marker-size)) / 2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: var(--services-list-marker-size) var(--services-list-marker-size);
}

body.pricing-page .pricing-page-card--standard .pricing-page-card__features li {
  color: var(--warm-700);
}

body.pricing-page .pricing-page-card--standard .pricing-page-card__features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.2 8.4l2.1 2.1 4.9-5.2' fill='none' stroke='%23cec5b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

body.pricing-page .pricing-page-card--featured .pricing-page-card__features li {
  color: rgba(248, 245, 240, 0.6);
  border-bottom-color: rgba(196, 162, 101, 0.06);
}

body.pricing-page .pricing-page-card--featured .pricing-page-card__features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.2 8.4l2.1 2.1 4.9-5.2' fill='none' stroke='%23c4a265' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

body.pricing-page .pricing-page-card__link {
  display: inline-flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  align-self: flex-start;
  margin-top: 30px;
  padding-top: 20px;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.pricing-page .pricing-page-card__link::after {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.pricing-page .pricing-page-card--standard .pricing-page-card__link {
  color: var(--warm-700);
  border-top: 1px solid var(--warm-100);
}

body.pricing-page .pricing-page-card--standard .pricing-page-card__link:hover,
body.pricing-page .pricing-page-card--standard .pricing-page-card__link:focus-visible {
  color: var(--gold-400);
}

body.pricing-page .pricing-page-card--featured .pricing-page-card__link {
  color: var(--gold-300);
  border-top: 1px solid rgba(196, 162, 101, 0.1);
}

body.pricing-page .pricing-page-card--featured .pricing-page-card__link:hover,
body.pricing-page .pricing-page-card--featured .pricing-page-card__link:focus-visible {
  color: var(--gold-200);
}

body.pricing-page .pricing-page-card__link:hover::after,
body.pricing-page .pricing-page-card__link:focus-visible::after {
  transform: translateX(4px);
}

body.pricing-page .pricing-page-included {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(ellipse 50% 60% at 30% 70%, rgba(27, 50, 64, 0.4) 0%, transparent 60%),
    linear-gradient(178deg, #111d22 0%, #13222a 50%, #162730 100%);
}

body.pricing-page .pricing-page-included::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(196, 162, 101, 0.12) 50%, transparent 90%);
}

body.pricing-page .pricing-page-included__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

body.pricing-page .pricing-page-included__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: 44px 36px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.pricing-page .pricing-page-included__card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(196, 162, 101, 0.15);
}

body.pricing-page .pricing-page-included__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(196, 162, 101, 0.06);
  border: 1px solid rgba(196, 162, 101, 0.12);
  color: var(--gold-400);
}

body.pricing-page .pricing-page-included__icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

body.pricing-page .pricing-page-included__title {
  font-size: 1.3rem;
  color: var(--white);
}

body.pricing-page .pricing-page-included__text {
  margin-top: 12px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(248, 245, 240, 0.45);
}

body.pricing-page .pricing-page-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0 140px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 36%, rgba(196, 162, 101, 0.05) 0%, transparent 72%),
    radial-gradient(ellipse 40% 60% at 82% 82%, rgba(196, 162, 101, 0.03) 0%, transparent 62%),
    linear-gradient(180deg, var(--warm-50) 0%, var(--warm-75) 100%);
}

body.pricing-page .pricing-page-cta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(176, 141, 87, 0.14) 50%, transparent 90%);
}

body.pricing-page .pricing-page-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23grain)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.35;
}

body.pricing-page .pricing-page-cta__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.pricing-page .pricing-page-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-400);
}

body.pricing-page .pricing-page-cta__label::before,
body.pricing-page .pricing-page-cta__label::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

body.pricing-page .pricing-page-cta__title {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--warm-950);
  text-wrap: balance;
}

body.pricing-page .pricing-page-cta__body {
  margin: 0 auto 44px;
  max-width: 520px;
  color: var(--warm-600);
}

body.pricing-page .pricing-page-cta__button {
  padding: 18px 44px;
  font-size: 0.92rem;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.pricing-page .pricing-page-cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 10px;
  margin: 18px auto 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(118, 108, 97, 0.86);
}

body.pricing-page .pricing-page-cta__trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: rgba(176, 141, 87, 0.62);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

body.pricing-page svg.pricing-page-cta__trust-icon {
  width: 14px;
  height: 14px;
}

@media (max-width: 1024px) {
  body.pricing-page .pricing-page-shell,
  body.pricing-page .pricing-page-cta__shell {
    padding-inline: 40px;
  }

  body.pricing-page .pricing-page-hero {
    padding: 140px 0 100px;
  }

  body.pricing-page .pricing-page-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  body.pricing-page .pricing-page-hero__content {
    justify-self: start;
    max-width: 560px;
  }

  body.pricing-page .pricing-page-how__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  body.pricing-page .pricing-page-levels__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }

  body.pricing-page .pricing-page-levels__note {
    max-width: 440px;
    margin: 28px auto 0;
  }

  body.pricing-page .pricing-page-included__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  body.pricing-page .pricing-page-how,
  body.pricing-page .pricing-page-levels,
  body.pricing-page .pricing-page-included {
    padding: 100px 0 120px;
  }

  body.pricing-page .pricing-page-levels {
    padding-bottom: 120px;
  }

  body.pricing-page .pricing-page-cta {
    padding: 100px 0 120px;
  }
}

@media (max-width: 600px) {
  body.pricing-page .pricing-page-shell,
  body.pricing-page .pricing-page-cta__shell {
    padding-inline: 24px;
  }

  body.pricing-page .pricing-page-hero,
  body.pricing-page .pricing-page-how,
  body.pricing-page .pricing-page-levels,
  body.pricing-page .pricing-page-included,
  body.pricing-page .pricing-page-cta {
    padding: 80px 0;
  }

  body.pricing-page .pricing-page-hero__title,
  body.pricing-page .pricing-page-title,
  body.pricing-page .pricing-page-cta__title {
    font-size: 2.4rem;
  }

  body.pricing-page .pricing-page-hero__actions {
    flex-direction: column;
  }

  body.pricing-page .pricing-page-hero__button,
  body.pricing-page .pricing-page-cta__button {
    width: 100%;
  }

  body.pricing-page .pricing-page-how__card,
  body.pricing-page .pricing-page-card,
  body.pricing-page .pricing-page-included__card {
    padding: 32px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.pricing-page .pricing-page__reveal,
  body.pricing-page .pricing-page-hero__label,
  body.pricing-page .pricing-page-hero__title,
  body.pricing-page .pricing-page-hero__content,
  body.pricing-page .pricing-page-hero__rule {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  body.pricing-page .pricing-page-hero__rule {
    width: 56px;
  }
}

/* === Service detail redesign: Profiloptimering === */
body.service-profile-page {
  --teal-950: #0d171c;
  --teal-900: #111d22;
  --teal-850: #13222a;
  --teal-800: #162730;
  --gold-400: #c4a265;
  --gold-300: #d4b87a;
  --gold-200: #e2cb96;
  --warm-950: #1a1611;
  --warm-800: #3d3630;
  --warm-700: #5a5047;
  --warm-600: #7a6d61;
  --warm-500: #958a7e;
  --warm-400: #b7ac9e;
  --warm-300: #d1c6b9;
  --warm-200: #e4ddd3;
  --warm-100: #f0ebe4;
  --warm-75: #f4f0e8;
  --warm-50: #f8f5f0;
  --white: #fffdf9;
  --shadow-sm: 0 1px 2px rgba(26, 22, 17, 0.04), 0 1px 3px rgba(26, 22, 17, 0.06);
  --shadow-md: 0 2px 4px rgba(26, 22, 17, 0.03), 0 6px 16px rgba(26, 22, 17, 0.06);
  --shadow-lg: 0 6px 16px rgba(26, 22, 17, 0.05), 0 20px 42px rgba(26, 22, 17, 0.08);
  --service-profile-ease: cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--teal-950);
}

body.service-profile-page .service-profile-page-shell {
  width: min(100%, 1320px);
  margin-inline: auto;
  box-sizing: border-box;
  padding-inline: 72px;
}

body.service-profile-page .service-profile-page__eyebrow,
body.service-profile-page .service-profile-page__micro-label {
  margin: 0;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
}

body.service-profile-page .service-profile-page__eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--gold-400);
}

body.service-profile-page .service-profile-page__eyebrow--light {
  color: var(--gold-300);
}

body.service-profile-page .service-profile-page__eyebrow--center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

body.service-profile-page .service-profile-page__eyebrow--center::before,
body.service-profile-page .service-profile-page__eyebrow--center::after {
  content: "";
  width: 24px;
  height: 1px;
  flex: 0 0 24px;
  background: currentColor;
  opacity: 0.45;
}

body.service-profile-page .service-profile-page__micro-label {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(248, 245, 240, 0.3);
}

body.service-profile-page .service-profile-page__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--warm-950);
}

body.service-profile-page .service-profile-page__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-400);
}

body.service-profile-page .service-profile-page__title--light {
  color: var(--white);
}

body.service-profile-page .service-profile-page__title--light em {
  color: var(--gold-300);
}

body.service-profile-page .service-profile-page__reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--service-profile-ease),
    transform 0.8s var(--service-profile-ease);
}

body.service-profile-page .service-profile-page-observe.is-visible .service-profile-page__reveal {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--service-profile-delay, 0s);
}

body.service-profile-page .service-profile-page__button {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 8px;
  overflow: hidden;
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #111d22;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  box-shadow:
    0 2px 4px rgba(196, 162, 101, 0.2),
    0 8px 24px rgba(196, 162, 101, 0.15);
  transition:
    transform 0.5s var(--service-profile-ease),
    box-shadow 0.5s var(--service-profile-ease),
    color 0.5s var(--service-profile-ease);
}

body.service-profile-page .service-profile-page__button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, var(--gold-200), var(--gold-300));
  opacity: 0;
  transition: opacity 0.5s var(--service-profile-ease);
}

body.service-profile-page .service-profile-page__button::after {
  content: "→";
  transition: transform 0.5s var(--service-profile-ease);
}

body.service-profile-page .service-profile-page__button:hover,
body.service-profile-page .service-profile-page__button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 4px 8px rgba(196, 162, 101, 0.22),
    0 12px 30px rgba(196, 162, 101, 0.18);
}

body.service-profile-page .service-profile-page__button:hover::before,
body.service-profile-page .service-profile-page__button:focus-visible::before {
  opacity: 1;
}

body.service-profile-page .service-profile-page__button:hover::after,
body.service-profile-page .service-profile-page__button:focus-visible::after {
  transform: translateX(3px);
}

body.service-profile-page .service-profile-page__button--full {
  width: 100%;
}

body.service-profile-page .service-profile-page__button-text {
  position: relative;
}

body.service-profile-page .service-profile-page-hero,
body.service-profile-page .service-profile-page-process,
body.service-profile-page .service-profile-page-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 16% 22%, rgba(196, 162, 101, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 42% 56% at 82% 72%, rgba(27, 50, 64, 0.5) 0%, transparent 62%),
    linear-gradient(178deg, var(--teal-800) 0%, var(--teal-850) 42%, var(--teal-900) 100%);
}

body.service-profile-page .service-profile-page-hero::after,
body.service-profile-page .service-profile-page-process::before,
body.service-profile-page .service-profile-page-cta::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
}

body.service-profile-page .service-profile-page-hero::after {
  bottom: 0;
  background: linear-gradient(90deg, transparent 10%, rgba(196, 162, 101, 0.14) 50%, transparent 90%);
}

body.service-profile-page .service-profile-page-process::before,
body.service-profile-page .service-profile-page-cta::before {
  top: 0;
  background: linear-gradient(90deg, transparent 10%, rgba(196, 162, 101, 0.12) 50%, transparent 90%);
}

body.service-profile-page .service-profile-page-hero__shell {
  padding-top: 180px;
  padding-bottom: 120px;
}

body.service-profile-page .service-profile-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 80px;
  align-items: end;
}

body.service-profile-page .service-profile-page-hero__intro {
  max-width: 680px;
}

body.service-profile-page .service-profile-page-hero__breadcrumb,
body.service-profile-page .service-profile-page-hero__label,
body.service-profile-page .service-profile-page-hero__title,
body.service-profile-page .service-profile-page-hero__content,
body.service-profile-page .service-profile-page-hero__meta {
  opacity: 0;
  transform: translateY(18px);
  animation: service-profile-page-fade-up 0.9s var(--service-profile-ease) forwards;
}

body.service-profile-page .service-profile-page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(248, 245, 240, 0.36);
  animation-delay: 0.1s;
}

body.service-profile-page .service-profile-page-hero__breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.35s var(--service-profile-ease);
}

body.service-profile-page .service-profile-page-hero__breadcrumb a:hover,
body.service-profile-page .service-profile-page-hero__breadcrumb a:focus-visible {
  color: var(--gold-300);
}

body.service-profile-page .service-profile-page-hero__breadcrumb svg {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.service-profile-page .service-profile-page-hero__label {
  margin-bottom: 18px;
  color: var(--gold-300);
  animation-delay: 0.18s;
}

body.service-profile-page .service-profile-page-hero__title {
  margin: 0;
  max-width: 620px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--white);
  animation-delay: 0.28s;
}

body.service-profile-page .service-profile-page-hero__rule {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 28px;
  background: linear-gradient(90deg, rgba(212, 184, 122, 0.95), rgba(212, 184, 122, 0.08));
  border-radius: 999px;
  animation: service-profile-page-rule-in 0.9s var(--service-profile-ease) 0.42s forwards;
}

body.service-profile-page .service-profile-page-hero__content {
  animation-delay: 0.26s;
}

body.service-profile-page .service-profile-page-hero__copy {
  display: grid;
  gap: 20px;
}

body.service-profile-page .service-profile-page-hero__copy p {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(248, 245, 240, 0.62);
}

body.service-profile-page .service-profile-page-hero__meta {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(248, 245, 240, 0.08);
  animation-delay: 0.36s;
}

body.service-profile-page .service-profile-page-hero__meta-item {
  min-width: 0;
}

body.service-profile-page .service-profile-page-hero__meta-value {
  margin: 8px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(248, 245, 240, 0.7);
}

body.service-profile-page .service-profile-page-included,
body.service-profile-page .service-profile-page-process,
body.service-profile-page .service-profile-page-deliverables,
body.service-profile-page .service-profile-page-fit,
body.service-profile-page .service-profile-page-cta {
  padding: 120px 0;
}

body.service-profile-page .service-profile-page-cta {
  padding-bottom: 140px;
}

body.service-profile-page .service-profile-page-included,
body.service-profile-page .service-profile-page-fit {
  background: var(--warm-50);
}

body.service-profile-page .service-profile-page-deliverables {
  position: relative;
  background: var(--warm-75);
}

body.service-profile-page .service-profile-page-deliverables::before,
body.service-profile-page .service-profile-page-fit::before {
  content: "";
  display: block;
  width: min(100%, 1320px);
  height: 1px;
  margin: 0 auto 120px;
  background: linear-gradient(90deg, transparent 0%, rgba(209, 198, 185, 0.5) 12%, rgba(209, 198, 185, 0.9) 50%, rgba(209, 198, 185, 0.5) 88%, transparent 100%);
}

body.service-profile-page .service-profile-page-included__head,
body.service-profile-page .service-profile-page-process__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

body.service-profile-page .service-profile-page-included__head .service-profile-page__title,
body.service-profile-page .service-profile-page-process__head .service-profile-page__title {
  margin-top: 18px;
}

body.service-profile-page .service-profile-page-included__intro,
body.service-profile-page .service-profile-page-process__intro,
body.service-profile-page .service-profile-page-deliverables__intro {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
}

body.service-profile-page .service-profile-page-included__intro {
  max-width: 480px;
  color: var(--warm-600);
}

body.service-profile-page .service-profile-page-included__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

body.service-profile-page .service-profile-page-included__card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-top: 2px solid var(--gold-400);
  border-radius: 2px 2px 12px 12px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.5s var(--service-profile-ease),
    box-shadow 0.5s var(--service-profile-ease);
}

body.service-profile-page .service-profile-page-included__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

body.service-profile-page .service-profile-page-included__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border-radius: 10px;
  border: 1px solid rgba(196, 162, 101, 0.14);
  background: linear-gradient(135deg, rgba(196, 162, 101, 0.06), rgba(196, 162, 101, 0.14));
  color: var(--gold-400);
}

body.service-profile-page .service-profile-page-included__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.service-profile-page .service-profile-page-included__card-title {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--warm-950);
}

body.service-profile-page .service-profile-page-included__card-copy {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--warm-600);
}

body.service-profile-page .service-profile-page-process__intro {
  max-width: 460px;
  color: rgba(248, 245, 240, 0.45);
}

body.service-profile-page .service-profile-page-process__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

body.service-profile-page .service-profile-page-process__timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: rgba(248, 245, 240, 0.08);
  pointer-events: none;
}

body.service-profile-page .service-profile-page-process__timeline--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.service-profile-page .service-profile-page-process__timeline--three::before {
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
}

body.service-profile-page .service-profile-page-process__step {
  position: relative;
  text-align: center;
}

body.service-profile-page .service-profile-page-process__circle {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--teal-800);
  border: 1px solid rgba(196, 162, 101, 0.15);
  box-shadow: 0 2px 6px rgba(9, 16, 21, 0.24);
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--gold-400);
  transition:
    border-color 0.35s var(--service-profile-ease),
    box-shadow 0.35s var(--service-profile-ease);
}

body.service-profile-page .service-profile-page-process__step:hover .service-profile-page-process__circle {
  border-color: rgba(196, 162, 101, 0.3);
  box-shadow: 0 0 0 6px rgba(196, 162, 101, 0.04);
}

body.service-profile-page .service-profile-page-process__step-title {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
  transition: color 0.35s var(--service-profile-ease);
}

body.service-profile-page .service-profile-page-process__step:hover .service-profile-page-process__step-title {
  color: var(--gold-300);
}

body.service-profile-page .service-profile-page-process__step-copy {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(248, 245, 240, 0.45);
}

body.service-profile-page .service-profile-page-deliverables__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

body.service-profile-page .service-profile-page-deliverables__content .service-profile-page__title {
  margin-top: 18px;
}

body.service-profile-page .service-profile-page-deliverables__intro {
  max-width: 440px;
  margin-top: 20px;
  margin-bottom: 40px;
  color: var(--warm-600);
}

body.service-profile-page .service-profile-page-deliverables__list {
  display: grid;
}

body.service-profile-page .service-profile-page-deliverables__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--warm-200);
}

body.service-profile-page .service-profile-page-deliverables__item:first-child {
  border-top: 1px solid var(--warm-200);
}

body.service-profile-page .service-profile-page-deliverables__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  border: 1px solid rgba(196, 162, 101, 0.12);
  background: rgba(196, 162, 101, 0.06);
}

body.service-profile-page .service-profile-page-deliverables__check svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--gold-400);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.service-profile-page .service-profile-page-deliverables__item-title {
  margin: 0 0 6px;
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--warm-950);
}

body.service-profile-page .service-profile-page-deliverables__item-copy {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--warm-500);
}

body.service-profile-page .service-profile-page-summary-card {
  position: sticky;
  top: 120px;
  padding: 44px 40px;
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-left: 2px solid var(--gold-400);
  border-radius: 2px 12px 12px 2px;
  box-shadow: var(--shadow-md);
}

body.service-profile-page .service-profile-page-summary-card__label {
  margin: 0 0 14px;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-400);
}

body.service-profile-page .service-profile-page-summary-card__title {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--warm-950);
}

body.service-profile-page .service-profile-page-summary-card__rows {
  display: grid;
}

body.service-profile-page .service-profile-page-summary-card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--warm-100);
}

body.service-profile-page .service-profile-page-summary-card__key {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--warm-500);
}

body.service-profile-page .service-profile-page-summary-card__value {
  text-align: right;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--warm-950);
}

body.service-profile-page .service-profile-page-summary-card .service-profile-page__button {
  margin-top: 28px;
}

body.service-profile-page .service-profile-page-summary-card__trust {
  margin: 16px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
  color: var(--warm-500);
}

body.service-profile-page .service-profile-page-fit__head {
  max-width: 560px;
  margin: 0 auto 64px;
  text-align: center;
}

body.service-profile-page .service-profile-page-fit__title {
  margin-top: 20px;
}

body.service-profile-page .service-profile-page-fit__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

body.service-profile-page .service-profile-page-fit__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-radius: 12px;
  transition:
    transform 0.5s var(--service-profile-ease),
    box-shadow 0.5s var(--service-profile-ease);
}

body.service-profile-page .service-profile-page-fit__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

body.service-profile-page .service-profile-page-fit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  border: 1px solid rgba(196, 162, 101, 0.12);
  background: rgba(196, 162, 101, 0.06);
}

body.service-profile-page .service-profile-page-fit__icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--gold-400);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.service-profile-page .service-profile-page-fit__card p {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--warm-700);
}

body.service-ghostwriting-page .service-ghostwriting-page-examples {
  position: relative;
  padding: 120px 0;
  background: var(--warm-50);
}

body.service-ghostwriting-page .service-ghostwriting-page-examples::before {
  content: "";
  display: block;
  width: min(100%, 1320px);
  height: 1px;
  margin: 0 auto 120px;
  background: linear-gradient(90deg, transparent 0%, rgba(209, 198, 185, 0.5) 12%, rgba(209, 198, 185, 0.9) 50%, rgba(209, 198, 185, 0.5) 88%, transparent 100%);
}

body.service-ghostwriting-page .service-ghostwriting-page-examples__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

body.service-ghostwriting-page .service-ghostwriting-page-examples__head .service-profile-page__title {
  margin-top: 18px;
}

body.service-ghostwriting-page .service-ghostwriting-page-examples__intro {
  max-width: 500px;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--warm-600);
}

body.service-ghostwriting-page .service-ghostwriting-page-examples__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

body.service-ghostwriting-page .service-ghostwriting-page-examples__item {
  padding: 34px 30px 32px;
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-top: 2px solid rgba(196, 162, 101, 0.7);
  border-radius: 2px 2px 12px 12px;
  box-shadow: var(--shadow-sm);
}

body.service-ghostwriting-page .service-ghostwriting-page-examples__title {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--warm-950);
}

body.service-ghostwriting-page .service-ghostwriting-page-examples__copy {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--warm-600);
}

body.service-ghostwriting-page .service-ghostwriting-page-examples__note {
  max-width: 680px;
  margin: 28px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--warm-500);
}

body.service-profile-page .service-profile-page-cta {
  text-align: center;
}

body.service-profile-page .service-profile-page-cta__inner {
  width: min(100%, 680px);
  margin-inline: auto;
}

body.service-profile-page .service-profile-page-cta__title {
  margin-top: 20px;
}

body.service-profile-page .service-profile-page-cta__body {
  margin: 24px auto 36px;
  max-width: 520px;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(248, 245, 240, 0.62);
}

body.service-profile-page .service-profile-page-cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 10px;
  margin: 18px auto 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(248, 245, 240, 0.38);
}

body.service-profile-page .service-profile-page-cta__trust svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: none;
  stroke: rgba(196, 162, 101, 0.4);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.service-profile-page .service-profile-page-cta__alt {
  margin: 14px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(248, 245, 240, 0.28);
}

body.service-profile-page .service-profile-page-cta__alt a {
  color: rgba(248, 245, 240, 0.4);
  text-decoration: none;
  transition: color 0.35s var(--service-profile-ease);
}

body.service-profile-page .service-profile-page-cta__alt a:hover,
body.service-profile-page .service-profile-page-cta__alt a:focus-visible {
  color: var(--gold-300);
}

@keyframes service-profile-page-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes service-profile-page-rule-in {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 56px;
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  body.service-profile-page .service-profile-page-shell {
    padding-inline: 40px;
  }

  body.service-profile-page .service-profile-page-hero__grid,
  body.service-profile-page .service-profile-page-included__head,
  body.service-profile-page .service-profile-page-process__head,
  body.service-profile-page .service-profile-page-deliverables__grid {
    grid-template-columns: 1fr;
  }

  body.service-profile-page .service-profile-page-hero__grid,
  body.service-profile-page .service-profile-page-included__head,
  body.service-profile-page .service-profile-page-process__head,
  body.service-profile-page .service-profile-page-deliverables__grid {
    gap: 56px;
  }

  body.service-profile-page .service-profile-page-included__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  body.service-profile-page .service-profile-page-process__timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.service-profile-page .service-profile-page-process__timeline::before {
    display: none;
  }

  body.service-profile-page .service-profile-page-summary-card {
    position: static;
  }

  body.service-profile-page .service-profile-page-fit__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  body.service-ghostwriting-page .service-ghostwriting-page-examples__head,
  body.service-ghostwriting-page .service-ghostwriting-page-examples__grid {
    grid-template-columns: 1fr;
  }

  body.service-ghostwriting-page .service-ghostwriting-page-examples__head,
  body.service-ghostwriting-page .service-ghostwriting-page-examples__grid {
    gap: 56px;
  }

  body.service-ghostwriting-page .service-ghostwriting-page-examples__grid,
  body.service-ghostwriting-page .service-ghostwriting-page-examples__note {
    max-width: 480px;
    margin-inline: auto;
  }

  body.service-profile-page .service-profile-page-deliverables::before,
  body.service-profile-page .service-profile-page-fit::before {
    margin-bottom: 100px;
  }

  body.service-ghostwriting-page .service-ghostwriting-page-examples::before {
    margin-bottom: 100px;
  }
}

@media (max-width: 600px) {
  body.service-profile-page .service-profile-page-shell {
    padding-inline: 24px;
  }

  body.service-profile-page .service-profile-page-hero__shell {
    padding-top: 150px;
    padding-bottom: 80px;
  }

  body.service-profile-page .service-profile-page-included,
  body.service-profile-page .service-profile-page-process,
  body.service-profile-page .service-profile-page-deliverables,
  body.service-profile-page .service-profile-page-fit,
  body.service-profile-page .service-profile-page-cta {
    padding: 80px 0;
  }

  body.service-ghostwriting-page .service-ghostwriting-page-examples {
    padding: 80px 0;
  }

  body.service-profile-page .service-profile-page-hero__meta {
    flex-direction: column;
    gap: 20px;
  }

  body.service-profile-page .service-profile-page-process__timeline {
    grid-template-columns: 1fr;
  }

  body.service-profile-page .service-profile-page-summary-card {
    padding: 36px 28px;
  }

  body.service-profile-page .service-profile-page-included__card,
  body.service-profile-page .service-profile-page-fit__card {
    padding: 32px 28px;
  }

  body.service-profile-page .service-profile-page-deliverables::before,
  body.service-profile-page .service-profile-page-fit::before {
    margin-bottom: 80px;
  }

  body.service-ghostwriting-page .service-ghostwriting-page-examples::before {
    margin-bottom: 80px;
  }

  body.service-ghostwriting-page .service-ghostwriting-page-examples__item {
    padding: 32px 28px;
  }

  body.service-profile-page .service-profile-page__title {
    font-size: 2.4rem;
  }

  body.service-profile-page .service-profile-page__button {
    width: 100%;
    padding-inline: 32px;
  }

  body.service-profile-page .service-profile-page-cta__trust {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.service-profile-page .service-profile-page__reveal,
  body.service-profile-page .service-profile-page-hero__breadcrumb,
  body.service-profile-page .service-profile-page-hero__label,
  body.service-profile-page .service-profile-page-hero__title,
  body.service-profile-page .service-profile-page-hero__content,
  body.service-profile-page .service-profile-page-hero__meta {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  body.service-profile-page .service-profile-page-hero__rule {
    width: 56px;
    animation: none !important;
  }

  body.service-profile-page .service-profile-page__button::before,
  body.service-profile-page .service-profile-page__button::after {
    transition: none !important;
  }
}

/* === Responsive optimization pass === */
html,
body {
  max-width: 100%;
}

body {
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

.site-header.navbar .nav-dropdown {
  width: min(280px, calc(100vw - 48px));
}

.site-header.navbar .mobile-menu {
  justify-content: flex-start;
  align-items: stretch;
  overflow-y: auto;
}

.site-header.navbar .mobile-nav-group {
  width: min(100%, 440px);
  margin-inline: auto;
  align-items: flex-start;
}

.site-header.navbar .mobile-nav-link,
.site-header.navbar .mobile-sub-links {
  width: 100%;
}

.site-header.navbar .mobile-sub-links {
  padding-left: 4px;
}

.site-footer.footer-lux .footer-contact-link,
body.contact-page .contact-page-method__value,
body.contact-page .contact-page-direct__email,
body.legal-page .legal-page-content__body a {
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .site-header.navbar .navbar-inner {
    padding: 0 40px;
    gap: 1rem;
  }

  .site-header.navbar .navbar-links {
    gap: 28px;
  }

  .site-header.navbar .nav-link {
    font-size: 0.78rem;
  }

  .home-page .hero-cinema__shell,
  .site-footer.footer-lux .footer-shell,
  body.about-page .about-page-shell,
  body.about-page .about-page-cta__shell,
  body.services-page .services-page-shell,
  body.services-page .services-page-cta__shell,
  body.pricing-page .pricing-page-shell,
  body.pricing-page .pricing-page-cta__shell,
  body.service-profile-page .service-profile-page-shell,
  body.contact-page .contact-page-shell,
  body.contact-page .contact-page-cta__shell,
  body.legal-page .legal-page-shell {
    padding-inline: 56px;
  }

  .home-page .hero-cinema__grid,
  .home-page .next-step-lux__grid,
  .home-page .about-lux__grid,
  .home-page .process-lux__content,
  body.about-page .about-page-hero__grid,
  body.about-page .about-page-method__head,
  body.about-page .about-page-proof__grid,
  body.services-page .services-page-hero__grid,
  body.pricing-page .pricing-page-hero__grid,
  body.service-profile-page .service-profile-page-hero__grid,
  body.service-profile-page .service-profile-page-included__head,
  body.service-profile-page .service-profile-page-process__head,
  body.service-profile-page .service-profile-page-deliverables__grid,
  body.service-ghostwriting-page .service-ghostwriting-page-examples__head {
    gap: 56px;
  }

  .site-footer.footer-lux .footer-grid--lux {
    gap: 56px;
  }
}

@media (max-width: 820px) {
  .site-header.navbar .mobile-menu {
    padding: 88px 32px 28px;
  }

  .site-header.navbar .mobile-nav-link {
    padding: 18px 0;
    font-size: 1.8rem;
  }

  .site-header.navbar .mobile-sub-links {
    gap: 6px;
    padding-bottom: 14px;
  }

  .site-header.navbar .mobile-sub-link {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .home-page .hero-cinema__shell,
  .site-footer.footer-lux .footer-shell,
  body.about-page .about-page-shell,
  body.about-page .about-page-cta__shell,
  body.services-page .services-page-shell,
  body.services-page .services-page-cta__shell,
  body.pricing-page .pricing-page-shell,
  body.pricing-page .pricing-page-cta__shell,
  body.service-profile-page .service-profile-page-shell,
  body.contact-page .contact-page-shell,
  body.contact-page .contact-page-cta__shell,
  body.legal-page .legal-page-shell {
    padding-inline: 32px;
  }

  .home-page .hero-cinema__shell {
    padding-top: 136px;
    padding-bottom: 88px;
  }

  .home-page .hero-cinema__title {
    max-width: 620px;
    font-size: clamp(2.45rem, 7vw, 3.5rem);
  }

  .home-page .hero-cinema__body {
    max-width: 560px;
    margin-bottom: 36px;
  }

  .home-page .final-cta-lux__shell,
  .home-page .next-step-lux__shell,
  .home-page .proof-section,
  body.about-page .about-page-hero,
  body.about-page .about-page-why,
  body.about-page .about-page-value,
  body.about-page .about-page-contrast,
  body.about-page .about-page-method,
  body.about-page .about-page-proof,
  body.about-page .about-page-cta,
  body.services-page .services-page-hero,
  body.services-page .services-page-diff,
  body.services-page .services-page-cards,
  body.services-page .services-page-decision,
  body.services-page .services-page-cta,
  body.pricing-page .pricing-page-hero,
  body.pricing-page .pricing-page-how,
  body.pricing-page .pricing-page-levels,
  body.pricing-page .pricing-page-included,
  body.pricing-page .pricing-page-cta,
  body.contact-page .contact-page-hero,
  body.contact-page .contact-page-connect,
  body.contact-page .contact-page-next,
  body.contact-page .contact-page-direct,
  body.legal-page .legal-page-hero,
  body.service-profile-page .service-profile-page-hero__shell,
  body.service-profile-page .service-profile-page-included,
  body.service-profile-page .service-profile-page-process,
  body.service-profile-page .service-profile-page-deliverables,
  body.service-profile-page .service-profile-page-fit,
  body.service-profile-page .service-profile-page-cta,
  body.service-ghostwriting-page .service-ghostwriting-page-examples {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .site-footer.footer-lux .footer-grid--lux {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer.footer-lux .footer-col--brand {
    grid-column: auto;
  }

  .site-footer.footer-lux .footer-copy {
    max-width: 100%;
  }

  body.contact-page .contact-page-form__row {
    grid-template-columns: 1fr;
  }

  body.service-profile-page .service-profile-page-hero__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
  }

  body.service-profile-page .service-profile-page-summary-card__row {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .site-header.navbar .navbar-inner {
    padding: 0 20px;
  }

  .site-header.navbar.is-top .navbar-inner {
    height: 64px;
  }

  .site-header.navbar.is-scrolled .navbar-inner {
    height: 58px;
  }

  .site-header.navbar .navbar-logo img {
    height: 28px;
  }

  .site-header.navbar.is-scrolled .navbar-logo img {
    height: 24px;
  }

  .site-header.navbar .mobile-menu {
    padding: 82px 20px 24px;
  }

  .site-header.navbar .mobile-nav-link {
    font-size: 1.6rem;
    line-height: 1.15;
    padding: 16px 0;
  }

  .site-header.navbar .mobile-sub-link {
    gap: 8px;
    font-size: 0.76rem;
  }

  .site-header.navbar .mobile-sub-num {
    font-size: 0.74rem;
  }

  .home-page .hero-cinema__shell,
  .site-footer.footer-lux .footer-shell,
  body.about-page .about-page-shell,
  body.about-page .about-page-cta__shell,
  body.services-page .services-page-shell,
  body.services-page .services-page-cta__shell,
  body.pricing-page .pricing-page-shell,
  body.pricing-page .pricing-page-cta__shell,
  body.service-profile-page .service-profile-page-shell,
  body.contact-page .contact-page-shell,
  body.contact-page .contact-page-cta__shell,
  body.legal-page .legal-page-shell {
    padding-inline: 20px;
  }

  .home-page .hero-cinema__shell {
    padding-top: 112px;
    padding-bottom: 72px;
  }

  .home-page .hero-cinema__title {
    margin: 20px 0 24px;
    font-size: 2.15rem;
    line-height: 1.08;
  }

  .home-page .hero-cinema__body {
    margin-bottom: 32px;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .home-page .hero-cinema__button--primary,
  .home-page .hero-cinema__button--secondary,
  body.about-page .about-page-cta__button,
  body.services-page .services-page-hero__button,
  body.services-page .services-page-cta__button,
  body.pricing-page .pricing-page-hero__button,
  body.pricing-page .pricing-page-cta__button,
  body.service-profile-page .service-profile-page__button,
  body.contact-page .contact-page-form__submit,
  .home-page .final-cta-lux__button {
    min-height: 52px;
  }

  .home-page .hero-cinema__trust,
  .home-page .final-cta-lux__trust,
  body.about-page .about-page-cta__trust,
  body.pricing-page .pricing-page-cta__trust,
  body.service-profile-page .service-profile-page-cta__trust {
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
  }

  .home-page .hero-cinema__scroll {
    display: none;
  }

  .home-page .insight-lux__shell,
  .home-page .method-lux__shell,
  .home-page .services-lux__shell,
  .home-page .process-lux__shell,
  .home-page .about-lux__shell,
  .home-page .next-step-lux__shell,
  .home-page .final-cta-lux__shell {
    padding-inline: 20px;
  }

  .home-page .insight-lux__title,
  .home-page .method-lux__title,
  .home-page .services-lux__title,
  .home-page .process-lux__title,
  .home-page .about-lux__title,
  .home-page .next-step-lux__title,
  .home-page .proof-title,
  .home-page .final-cta-lux__title,
  body.about-page .about-page-hero__title,
  body.about-page .about-page-title,
  body.about-page .about-page-cta__title,
  body.services-page .services-page-hero__title,
  body.services-page .services-page-title,
  body.services-page .services-page-cta__title,
  body.pricing-page .pricing-page-hero__title,
  body.pricing-page .pricing-page-title,
  body.pricing-page .pricing-page-cta__title,
  body.contact-page .contact-page-hero__title,
  body.contact-page .contact-page-title,
  body.contact-page .contact-page-direct__title,
  body.legal-page .legal-page-hero__title,
  body.service-profile-page .service-profile-page__title,
  body.service-profile-page .service-profile-page-hero__title {
    font-size: 2.15rem;
    line-height: 1.08;
  }

  .home-page .insight-lux__cards,
  .home-page .services-lux__grid,
  .home-page .proof-grid,
  body.services-page .services-page-diff__grid,
  body.services-page .services-page-cards__grid,
  body.services-page .services-page-decision__grid,
  body.pricing-page .pricing-page-how__grid,
  body.pricing-page .pricing-page-levels__grid,
  body.pricing-page .pricing-page-included__grid,
  body.service-profile-page .service-profile-page-included__grid,
  body.service-profile-page .service-profile-page-fit__grid,
  body.service-ghostwriting-page .service-ghostwriting-page-examples__grid {
    gap: 18px;
  }

  .home-page .insight-lux__card,
  .home-page .services-lux__card,
  .home-page .proof-card,
  body.about-page .about-page-why__card,
  body.about-page .about-page-value__card,
  body.about-page .about-page-contrast__card,
  body.about-page .about-page-proof__signature-card,
  body.services-page .services-page-diff__card,
  body.services-page .services-page-card,
  body.services-page .services-page-decision__card,
  body.pricing-page .pricing-page-how__card,
  body.pricing-page .pricing-page-card,
  body.pricing-page .pricing-page-included__card,
  body.contact-page .contact-page-form-card,
  body.contact-page .contact-page-method,
  body.contact-page .contact-page-step,
  body.legal-page .legal-page-content__panel,
  body.service-profile-page .service-profile-page-included__card,
  body.service-profile-page .service-profile-page-fit__card,
  body.service-profile-page .service-profile-page-summary-card,
  body.service-ghostwriting-page .service-ghostwriting-page-examples__item {
    padding: 28px 22px;
  }

  .home-page .services-lux__badge,
  body.services-page .services-page-card__badge,
  body.pricing-page .pricing-page-card__badge {
    max-width: calc(100% - 40px);
    padding: 5px 10px;
    font-size: 0.56rem;
    letter-spacing: 0.12em;
    line-height: 1.35;
    white-space: normal;
  }

  body.services-page .services-page-card__badge,
  body.pricing-page .pricing-page-card__badge {
    right: 20px;
  }

  body.contact-page .contact-page-form input,
  body.contact-page .contact-page-form select,
  body.contact-page .contact-page-form textarea {
    font-size: 16px;
  }

  body.contact-page .contact-page-form__submit {
    width: 100%;
  }

  body.contact-page .contact-page-direct__email {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  body.contact-page .contact-page-method__value,
  body.contact-page .contact-page-method__text,
  body.legal-page .legal-page-hero__body,
  body.legal-page .legal-page-content__body p,
  body.legal-page .legal-page-content__body li {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  body.service-profile-page .service-profile-page-hero__breadcrumb {
    flex-wrap: wrap;
    row-gap: 4px;
  }

  body.service-profile-page .service-profile-page-hero__meta,
  body.service-profile-page .service-profile-page-summary-card__row {
    grid-template-columns: 1fr;
  }

  body.service-profile-page .service-profile-page-hero__meta {
    display: grid;
    gap: 16px;
  }

  body.service-profile-page .service-profile-page-summary-card__row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  body.service-profile-page .service-profile-page-summary-card__value {
    text-align: left;
  }

  body.service-profile-page .service-profile-page-deliverables__item,
  .home-page .next-step-lux__checklist li,
  .home-page .proof-author {
    align-items: flex-start;
  }

  .site-footer.footer-lux .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .site-header.navbar .navbar-inner {
    padding: 0 18px;
  }

  .site-header.navbar .mobile-menu {
    padding-inline: 18px;
  }

  .site-header.navbar .mobile-nav-link {
    font-size: 1.45rem;
  }

  .home-page .hero-cinema__title,
  .home-page .insight-lux__title,
  .home-page .method-lux__title,
  .home-page .services-lux__title,
  .home-page .process-lux__title,
  .home-page .about-lux__title,
  .home-page .next-step-lux__title,
  .home-page .proof-title,
  .home-page .final-cta-lux__title,
  body.about-page .about-page-hero__title,
  body.about-page .about-page-title,
  body.about-page .about-page-cta__title,
  body.services-page .services-page-hero__title,
  body.services-page .services-page-title,
  body.services-page .services-page-cta__title,
  body.pricing-page .pricing-page-hero__title,
  body.pricing-page .pricing-page-title,
  body.pricing-page .pricing-page-cta__title,
  body.contact-page .contact-page-hero__title,
  body.contact-page .contact-page-title,
  body.contact-page .contact-page-direct__title,
  body.legal-page .legal-page-hero__title,
  body.service-profile-page .service-profile-page__title,
  body.service-profile-page .service-profile-page-hero__title {
    font-size: 1.95rem;
  }

  .home-page .hero-cinema__label,
  .home-page .insight-lux__eyebrow,
  .home-page .method-lux__label,
  .home-page .services-lux__eyebrow,
  .home-page .process-lux__label,
  .home-page .about-lux__label,
  .home-page .next-step-lux__label,
  .home-page .final-cta-lux__label,
  .home-page .proof-label,
  body.about-page .about-page-label,
  body.services-page .services-page-label,
  body.pricing-page .pricing-page-label,
  body.contact-page .contact-page-label,
  body.contact-page .contact-page-direct__label,
  body.legal-page .legal-page-label,
  body.service-profile-page .service-profile-page__eyebrow {
    gap: 10px;
    font-size: 0.64rem;
    letter-spacing: 0.24em;
  }

  .home-page .hero-cinema__label::before,
  .home-page .insight-lux__eyebrow::before,
  .home-page .method-lux__label::before,
  .home-page .next-step-lux__label::before,
  .home-page .proof-label::before,
  body.about-page .about-page-label::before,
  body.services-page .services-page-label::before,
  body.pricing-page .pricing-page-label::before,
  body.contact-page .contact-page-label--center::before,
  body.contact-page .contact-page-label--center::after,
  body.contact-page .contact-page-direct__label::before,
  body.contact-page .contact-page-direct__label::after,
  body.service-profile-page .service-profile-page__eyebrow--center::before,
  body.service-profile-page .service-profile-page__eyebrow--center::after {
    width: 18px;
    flex-basis: 18px;
  }

  .home-page .hero-cinema__body,
  body.about-page .about-page-hero__body,
  body.services-page .services-page-hero__body,
  body.pricing-page .pricing-page-hero__body,
  body.contact-page .contact-page-hero__body,
  body.service-profile-page .service-profile-page-hero__copy p {
    font-size: 0.94rem;
    line-height: 1.7;
  }
}
