:root {
  --bg: #050403;
  --bg-soft: #0f0b09;
  --surface: #17110f;
  --surface-soft: #211915;
  --border: rgba(255, 244, 236, 0.1);
  --border-strong: rgba(255, 244, 236, 0.16);
  --text: #f5ede6;
  --muted: #bba99a;
  --brand: #d4a27c;
  --brand-deep: #b37a55;
  --success: #d7c6b9;
  --shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1280px;
  --page-gutter: 32px;
  --section-space: 72px;
  --transition: 180ms ease;
  --text-main: #f1ebe6;
  --text-muted: rgba(241, 235, 230, 0.68);
  --text-soft: rgba(241, 235, 230, 0.52);
  --accent: #d6a77a;
  --accent-strong: #e8bb8e;
}

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

html {
  max-width: 100%;
  scroll-padding-top: 110px;
  scroll-behavior: smooth;
  background:
    radial-gradient(circle at 20% 0%, rgba(90, 55, 34, 0.18), transparent 38%),
    radial-gradient(circle at 85% 30%, rgba(120, 70, 38, 0.11), transparent 34%),
    linear-gradient(180deg, #0a0604 0%, #100905 45%, #070403 100%);
}

body {
  margin: 0;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(90, 55, 34, 0.18), transparent 38%),
    radial-gradient(circle at 85% 30%, rgba(120, 70, 38, 0.11), transparent 34%),
    linear-gradient(180deg, #0a0604 0%, #100905 45%, #070403 100%);
  color: var(--text-main);
  font-family: "Inter", "Manrope", Arial, sans-serif;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.55) 1px, transparent 0);
  background-size: 4px 4px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
}

a {
  color: inherit;
  text-decoration: none;
}

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

main,
section,
article,
aside,
header,
footer,
.page-frame,
.site-shell,
.header-shell,
.header-card,
.service-card,
.blog-card,
.result-card,
.admin-card {
  min-width: 0;
}

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

button {
  border: 0;
}

.brand-body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(90, 55, 34, 0.18), transparent 38%),
    radial-gradient(circle at 85% 30%, rgba(120, 70, 38, 0.11), transparent 34%),
    linear-gradient(180deg, #0a0604 0%, #100905 45%, #070403 100%);
}

.mobile-only {
  display: none !important;
}

.page-frame,
.site-shell {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max-width));
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 12px 0 128px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0 0 12px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 1;
}

.header-shell {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max-width));
  max-width: var(--max-width);
  margin-inline: auto;
  background: transparent;
  position: relative;
  z-index: 1;
}

main,
.header-spacer {
  background: transparent;
  position: relative;
  z-index: 1;
}

.site-header::before,
.site-header::after,
.header-shell::before,
.header-shell::after,
.page-frame::before,
.page-frame::after {
  background: transparent !important;
}

.header-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: rgba(14, 10, 8, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (min-width: 769px) {
  .header-card {
    background: rgba(14, 10, 8, 0.82) !important;
  }
}

/* Mobile menu in header-card flow. Keep as EOF. */
@media (max-width: 768px) {
  .site-header .header-card {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 52px !important;
    grid-template-rows: 52px auto !important;
    align-items: center !important;
    column-gap: 12px !important;
    row-gap: 10px !important;
    min-height: 64px !important;
    padding: 10px 14px !important;
    overflow: visible !important;
  }

  .site-header .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: center !important;
    min-width: 0 !important;
  }

  .site-header .nav-toggle,
  .site-header[data-nav-open="true"] .nav-toggle,
  [data-nav-root][data-nav-open="true"] .nav-toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 52px !important;
    min-width: 52px !important;
    height: 52px !important;
    transform: none !important;
    margin: 0 !important;
    z-index: 2 !important;
  }

  .site-header .site-nav {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    z-index: 1 !important;
    transform: none !important;
  }

  .site-header[data-nav-open="true"] .site-nav,
  [data-nav-root][data-nav-open="true"] .site-nav {
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    max-height: min(70dvh, 520px) !important;
    overflow-y: auto !important;
  }
}

/* Mobile header-card menu ownership: override scrolled/open states. Keep as EOF. */
@media (max-width: 768px) {
  header.site-header .header-card,
  header.site-header.is-scrolled .header-card,
  header.site-header[data-nav-open="true"] .header-card,
  header.site-header.is-scrolled[data-nav-open="true"] .header-card {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 52px !important;
    grid-template-rows: 52px auto !important;
    align-items: center !important;
    column-gap: 12px !important;
    row-gap: 10px !important;
    min-height: 64px !important;
    padding: 10px 14px !important;
    overflow: visible !important;
    transform: none !important;
  }

  header.site-header .header-card > .brand,
  header.site-header.is-scrolled .header-card > .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: center !important;
    min-width: 0 !important;
  }

  header.site-header .header-card > .nav-toggle,
  header.site-header.is-scrolled .header-card > .nav-toggle,
  header.site-header[data-nav-open="true"] .header-card > .nav-toggle,
  header.site-header.is-scrolled[data-nav-open="true"] .header-card > .nav-toggle,
  header.site-header[data-nav-root][data-nav-open="true"] .header-card > .nav-toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 52px !important;
    min-width: 52px !important;
    height: 52px !important;
    margin: 0 !important;
    transform: none !important;
    translate: none !important;
    z-index: 2 !important;
  }

  header.site-header .header-card > nav.site-nav,
  header.site-header.is-scrolled .header-card > nav.site-nav {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    display: none !important;
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    transform: none !important;
    z-index: 1 !important;
  }

  header.site-header[data-nav-open="true"] .header-card > nav.site-nav,
  header.site-header.is-scrolled[data-nav-open="true"] .header-card > nav.site-nav,
  header.site-header[data-nav-root][data-nav-open="true"] .header-card > nav.site-nav {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    max-height: min(70dvh, 520px) !important;
    overflow-y: auto !important;
    z-index: 1 !important;
  }
}

/* Mobile menu follows the current header-card viewport position. True final override. */
@media (max-width: 768px) {
  header.site-header[data-nav-open="true"] .header-card > nav.site-nav,
  header.site-header.is-scrolled[data-nav-open="true"] .header-card > nav.site-nav,
  header.site-header[data-nav-root][data-nav-open="true"] .header-card > nav.site-nav {
    position: fixed !important;
    top: var(--mobile-nav-top, calc(env(safe-area-inset-top, 0px) + 86px)) !important;
    left: var(--mobile-nav-left, 14px) !important;
    right: auto !important;
    bottom: auto !important;
    width: var(--mobile-nav-width, min(220px, calc(100vw - 28px))) !important;
    max-width: calc(100vw - 28px) !important;
    margin: 0 !important;
    z-index: 10000 !important;
  }
}

/* Mobile menu follows the current header-card viewport position. True EOF. */
@media (max-width: 768px) {
  header.site-header[data-nav-open="true"] .header-card > nav.site-nav,
  header.site-header.is-scrolled[data-nav-open="true"] .header-card > nav.site-nav,
  header.site-header[data-nav-root][data-nav-open="true"] .header-card > nav.site-nav {
    position: fixed !important;
    top: var(--mobile-nav-top, calc(env(safe-area-inset-top, 0px) + 86px)) !important;
    left: var(--mobile-nav-left, 14px) !important;
    right: auto !important;
    bottom: auto !important;
    width: var(--mobile-nav-width, min(220px, calc(100vw - 28px))) !important;
    max-width: calc(100vw - 28px) !important;
    margin: 0 !important;
    z-index: 10000 !important;
  }
}

.brand {
  display: grid;
  gap: 0;
  min-width: 0;
}

.brand-mark,
h1,
h2,
h3,
.section-title,
.hero-title,
.footer-title,
.metric-card strong,
.admin-sidebar h1 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.brand-mark {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.nav-toggle {
  display: none;
  min-width: 46px;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
  justify-self: center;
}

.site-nav a {
  max-width: 100%;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
  transition: background var(--transition), color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.header-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-self: end;
  min-width: 0;
}

.header-contact {
  max-width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.section,
.page-hero,
.article-shell,
.section-shell,
.hero-grid,
.page-grid,
.cta-banner {
  margin-top: var(--section-space);
}

#booking {
  scroll-margin-top: 118px;
}

.page-frame > .hero-grid:first-child,
.page-frame > .page-hero:first-child,
.page-frame > .service-hero:first-child,
.page-frame > .about-hero:first-child,
.page-frame > .section-shell:first-child,
.page-frame > .article-shell:first-child {
  margin-top: 0;
}

.page-hero {
  display: grid;
  gap: 16px;
  padding: 8px 0 0;
}

.page-hero-card,
.hero-card,
.section-shell,
.article-shell,
.admin-card,
.admin-login-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow);
}

.page-hero-card,
.hero-card,
.section-shell,
.article-shell,
.admin-card,
.admin-login-card {
  padding: 28px;
}

.nested-card {
  margin-top: 0;
}

.page-hero-copy {
  max-width: 760px;
}

.home-hero-shell {
  padding: 28px;
}

.home-hero-shell .hero-grid {
  margin-top: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(48px, 5vw, 82px);
  line-height: 1.08;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.1;
  margin-bottom: 12px;
}

h3 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
  margin-bottom: 10px;
}

body,
p,
span,
a,
button,
input,
textarea,
select {
  font-family: "Inter", "Manrope", Arial, sans-serif;
}

.lead,
.article-content p,
.faq-item p,
.contact-card span,
.service-card p,
.mini-panel p,
.blog-card p,
.result-copy p,
.detail-card p,
.stat-card p,
.review-card p,
.footer-card p,
.admin-card p,
.admin-sidebar p,
.admin-login-card p,
.booking-form label {
  color: var(--text-muted);
  line-height: 1.58;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section-heading.tight {
  margin-bottom: 16px;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading.row {
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
}

.button,
.filter-pill,
.text-link {
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), opacity var(--transition);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.filter-pill:hover,
.filter-pill:focus-visible {
  transform: translate3d(0, -1px, 0);
}

.luxe-button {
  background: linear-gradient(135deg, #efc39f 0%, #d59e75 50%, #b77b56 100%);
  color: #1a120d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 34px rgba(201, 137, 95, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.ghost-button,
.filter-pill {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--text-main);
  border-radius: 999px;
}

.full-width {
  width: 100%;
}

.cta-row,
.card-actions,
.footer-links,
.service-meta,
.filter-bar,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.hero-grid,
.split-layout,
.contact-layout,
.service-hero,
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.service-hero-copy,
.about-hero-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  background: var(--surface-soft);
}

.service-card > .image-frame,
.blog-card > .image-frame,
.team-card > .image-frame,
.certificate-card > .image-frame {
  border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0;
}

.service-image {
  aspect-ratio: 4 / 3;
}

.result-image {
  aspect-ratio: 4 / 3;
}

.hero-image {
  aspect-ratio: 4 / 5;
}

.admin-preview-image {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  max-width: 320px;
  width: 100%;
}

.hero-visual,
.service-visual,
.about-visual,
.media-frame {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
}

.hero-visual,
.service-visual,
.about-visual {
  min-height: 100%;
}

.hero-video,
.hero-poster,
.image-frame > img,
.image-frame > video,
.article-cover,
.contact-map img,
.result-media img,
.result-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-position, center center);
}

.hero-video {
  aspect-ratio: 4 / 5;
}

.hero-poster {
  aspect-ratio: 4 / 5;
}

.mobile-poster {
  display: none;
}

.hero-highlights,
.trust-grid,
.stats-grid,
.detail-grid,
.faq-grid,
.review-grid,
.value-grid,
.journey-grid,
.pill-grid,
.blog-grid,
.services-grid,
.results-grid {
  display: grid;
  gap: 24px;
}

.hero-highlights,
.trust-grid,
.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-grid,
.review-grid,
.journey-grid,
.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.single-column-grid {
  grid-template-columns: 1fr;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  visibility: visible;
  opacity: 1;
  align-items: stretch;
}

.results-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.stat-card,
.detail-card,
.review-card,
.service-card,
.blog-card,
.result-card,
.mini-panel,
.contact-card,
.faq-item,
.faq-category-card,
.booking-form-panel,
.footer-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 26px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 80px rgba(0, 0, 0, 0.22);
}

.stat-card,
.detail-card,
.review-card,
.mini-panel,
.contact-card,
.faq-item,
.faq-category-card {
  padding: 20px;
}

.metric-card {
  padding: 20px;
  border-radius: var(--radius-lg);
}

.stat-card strong,
.detail-card strong,
.review-card strong,
.service-card h3,
.mini-panel strong,
.contact-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.stat-card strong {
  display: block;
  font-size: clamp(24px, 2.2vw, 32px);
  margin-bottom: 6px;
}

.stat-number {
  display: block;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.08;
}

.trust-grid .stat-card {
  text-align: center;
}

.service-card,
.blog-card,
.team-card,
.certificate-card {
  overflow: hidden;
  height: 100%;
}

.service-card-copy,
.blog-card-copy,
.result-copy {
  padding: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  visibility: visible;
  opacity: 1;
}

.service-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 18px;
}

.result-card {
  display: flex;
  flex-direction: column;
}

.result-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
}

.result-copy .text-link {
  margin-top: auto;
}

.result-copy p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card-copy .text-link {
  margin-top: 12px;
}

.home-booking-links {
  margin-top: 18px;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
}

.service-card .service-meta {
  order: 1;
}

.service-card .service-detail-button {
  order: 2;
  width: 100%;
  min-height: 44px;
  justify-content: center;
  text-align: center;
}

.service-card .service-book-button {
  order: 3;
  min-width: 132px;
  min-height: 44px;
  width: fit-content;
  justify-content: center;
}

.service-meta span,
.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.84rem;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  height: 34px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
  color: var(--text-main);
}

.price-chip,
.duration-chip {
  height: 34px;
  min-height: 34px;
  font-size: 14px;
}

@media (hover: hover) {
  .luxe-button:hover,
  .booking-secondary-btn:hover,
  .booking-form button[type="submit"]:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 18px 44px rgba(201, 137, 95, 0.24);
  }

  .service-card:hover,
  .result-card:hover,
  .review-card:hover,
  .detail-card:hover,
  .mini-panel:hover {
    border-color: rgba(232, 187, 142, 0.22);
    transform: translateY(-2px);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-hero {
  position: relative;
  align-items: center;
}

.home-hero-shell .hero-copy {
  padding-right: 8px;
}

.hero-brand-mark {
  margin-bottom: 28px;
}

.hero-brand-mark span {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1;
  color: #f5eee8;
  letter-spacing: 0.02em;
}

.hero-brand-mark small {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(220, 170, 120, 0.75);
}

.hero-title-line {
  display: block;
}

@media (min-width: 1024px) {
  .home-hero .hero-copy .hero-title {
    max-width: none;
    font-size: clamp(42px, 3.45vw, 50px);
    line-height: 1.04;
  }

  .home-hero .hero-copy .hero-title-line--wide {
    white-space: nowrap;
  }

  #home-services .section-heading.row > div {
    min-width: 0;
  }

  #home-services .section-heading.row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
  }

  #home-services .home-services-title {
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.15;
    white-space: nowrap;
    letter-spacing: -0.02em;
    width: 100%;
  }

  #home-services .text-link {
    white-space: nowrap;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .hero-actions .button,
  .hero-actions a {
    min-width: 170px;
    height: 52px;
    justify-content: center;
    text-align: center;
  }

  .home-hero .cta-row:first-of-type .luxe-button {
    min-width: 170px;
    padding-inline: 26px;
  }

  .home-hero .cta-row:first-of-type .hero-services-link {
    min-width: 170px;
    padding-inline: 24px;
  }
}

@media (max-width: 1024px) {
  #home-services .home-services-title {
    white-space: normal;
  }
}

.hero-copy--animated > * {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: heroRise 720ms ease forwards;
}

.hero-copy--animated > *:nth-child(1) {
  animation-delay: 80ms;
}

.hero-copy--animated > *:nth-child(2) {
  animation-delay: 180ms;
}

.hero-copy--animated > *:nth-child(3) {
  animation-delay: 280ms;
}

.hero-copy--animated > *:nth-child(4) {
  animation-delay: 380ms;
}

.hero-copy--animated > *:nth-child(5) {
  animation-delay: 480ms;
}

.hero-copy--animated > *:nth-child(6) {
  animation-delay: 580ms;
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust-strip span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.84rem;
  color: var(--muted);
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  animation: heroRise 720ms ease forwards;
  animation-delay: 680ms;
}

.hero-trust-strip strong {
  color: var(--text);
  font-weight: 700;
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--muted);
  font-size: 0.84rem;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  animation: heroRise 720ms ease forwards, scrollHintBob 2.6s ease-in-out infinite;
  animation-delay: 760ms, 1.4s;
}

.scroll-hint-mouse {
  position: relative;
  width: 24px;
  height: 38px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
}

.scroll-hint-mouse::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  transform: translateX(-50%);
  animation: scrollWheel 1.8s ease-in-out infinite;
}

.hero-visual--animated {
  position: relative;
  isolation: isolate;
}

.hero-light {
  position: absolute;
  inset: auto;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 999px;
  opacity: 0.28;
  background: radial-gradient(circle, rgba(212, 162, 124, 0.28) 0%, rgba(212, 162, 124, 0) 72%);
  pointer-events: none;
  z-index: 1;
}

.hero-light--one {
  top: 8%;
  left: -8%;
  animation: floatLight 9s ease-in-out infinite;
}

.hero-light--two {
  right: -6%;
  bottom: 6%;
  animation: floatLight 11s ease-in-out infinite reverse;
}

.hero-visual--animated .hero-video,
.hero-visual--animated .mobile-poster {
  position: relative;
  z-index: 2;
  animation: heroMediaShift 14s ease-in-out infinite;
  transform-origin: center center;
}

.pulse-cta {
  animation: ctaPulse 5.2s ease-in-out 1.8s infinite;
}

.service-result {
  margin-bottom: 14px;
}

.service-result strong {
  color: var(--text);
}

.bullet-list {
  display: grid;
  gap: 8px;
  color: var(--muted);
  margin-bottom: 18px;
}

.filter-bar {
  margin-bottom: 18px;
}

.filter-pill {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.filter-pill.is-active {
  border-color: rgba(212, 162, 124, 0.3);
  background: rgba(212, 162, 124, 0.12);
  color: var(--text);
}

.result-card {
  overflow: hidden;
}

.result-media,
.before-after-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-soft);
}

.before-after-slider > img,
.after-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-layer {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
}

.before-after-labels {
  position: absolute;
  inset: 16px 16px auto 16px;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.before-after-slider input[type="range"] {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  width: calc(100% - 32px);
  accent-color: var(--brand);
}

.article-shell {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.article-cover {
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  margin: 20px 0 24px;
}

.article-content {
  display: grid;
  gap: 16px;
}

.article-content ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.text-link {
  color: var(--brand);
  font-size: 0.92rem;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
}

.contact-stack,
.contact-details,
.panel-contact-stack {
  display: grid;
  gap: 14px;
}

.booking-section {
  border-radius: 28px;
  border-color: rgba(220, 170, 120, 0.22);
  background: rgba(255, 255, 255, 0.02);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: 24px;
  align-items: start;
}

.booking-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.booking-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-socials {
  margin-top: 6px;
}

.booking-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.booking-secondary-btn {
  background: linear-gradient(135deg, #d6a77a 0%, #b8835a 100%);
  color: #1a1a1a;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.booking-secondary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(214, 167, 122, 0.25);
}

.booking-secondary-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.booking-form-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
}

.booking-form-content {
  display: grid;
  gap: 16px;
}

.booking-success {
  display: grid;
  gap: 10px;
  align-content: start;
}

.booking-success[hidden] {
  display: none !important;
}

.service-link-card {
  display: grid;
  gap: 8px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.booking-form--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-form label,
.admin-form label,
.admin-login-card label {
  display: grid;
  gap: 8px;
  font-size: 0.96rem;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.admin-form input,
.admin-form select,
.admin-form textarea,
.admin-login-card input {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #151217;
  color: var(--text);
}

.booking-form textarea,
.admin-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus,
.admin-login-card input:focus {
  outline: none;
  border-color: rgba(220, 170, 120, 0.45);
  box-shadow: 0 0 0 3px rgba(220, 170, 120, 0.12);
}

.booking-form input.is-invalid {
  border-color: rgba(214, 104, 104, 0.9);
  box-shadow: 0 0 0 3px rgba(214, 104, 104, 0.14);
}

.booking-form select,
.admin-form select {
  appearance: none;
  color-scheme: dark;
  background: #151217;
  color: #f4eee8;
  border: 1px solid rgba(220, 170, 120, 0.35);
  border-radius: 14px;
  line-height: 1.4;
  font-size: 16px;
  padding: 14px 16px;
}

.booking-form select option,
.admin-form select option {
  background: #151217;
  color: #f4eee8;
}

.checkbox-row,
.checkbox-grid label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-row input[type="checkbox"],
.checkbox-grid input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: 0 0 18px;
  accent-color: var(--brand);
}

.checkbox-row span {
  color: var(--muted);
  line-height: 1.55;
}

.full-span {
  grid-column: 1 / -1;
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  max-width: min(320px, calc(100vw - 32px));
  z-index: 24;
  display: flex;
  flex-wrap: wrap;
  padding: 8px;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(220, 170, 120, 0.18);
  border-radius: 20px;
  background: rgba(12, 10, 12, 0.95);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.sticky-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  max-width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  overflow-wrap: normal;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.sticky-cta-link:hover,
.sticky-cta-link:focus-visible {
  transform: translate3d(0, -2px, 0);
}

.sticky-cta-link--ghost {
  background: rgba(21, 18, 25, 0.94);
  color: var(--text);
}

.sticky-cta-link--primary {
  background: linear-gradient(135deg, #efc39f 0%, #d59e75 50%, #b77b56 100%);
  color: #1a120d;
}

.site-footer {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 18px;
}

.footer-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow);
  padding: 24px;
}

.footer-links a {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.contact-list li {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.preview-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(212, 162, 124, 0.14);
  border: 1px solid rgba(212, 162, 124, 0.24);
}

.hover-glow {
  transition: border-color 0.3s ease, background 0.3s ease;
}

@media (hover: hover) {
  .hover-glow:hover,
  .hover-glow:focus-within,
  .service-card:hover,
  .blog-card:hover,
  .result-card:hover,
  .review-card:hover,
  .detail-card:hover,
  .mini-panel:hover,
  .contact-card:hover,
  .faq-item:hover,
  .faq-category-card:hover,
  .booking-form-panel:hover,
  .footer-card:hover,
  .stat-card:hover {
    border-color: rgba(220, 170, 120, 0.18);
    background: rgba(255, 255, 255, 0.04);
  }
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body[data-page-path="/services"] .services-grid {
  display: grid;
  visibility: visible;
  opacity: 1;
}

body[data-page-path="/services"] .service-card {
  display: flex;
  visibility: visible;
  opacity: 1;
}

body[data-page-path="/services"] [data-filter-item] {
  display: flex;
  visibility: visible;
  opacity: 1;
}

body[data-page-path="/services"] [data-filter-item][hidden] {
  display: none !important;
}

@keyframes heroRise {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes floatLight {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.18;
  }
  50% {
    transform: translate3d(10px, -14px, 0) scale(1.08);
    opacity: 0.32;
  }
}

@keyframes heroMediaShift {
  0%,
  100% {
    transform: scale(1.01) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.045) translate3d(0, -10px, 0);
  }
}

@keyframes ctaPulse {
  0%,
  86%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  90% {
    transform: translate3d(0, -1px, 0) scale(1.025);
  }
  94% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes scrollHintBob {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 6px, 0);
  }
}

@keyframes scrollWheel {
  0% {
    opacity: 0;
    transform: translate(-50%, -2px);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

.admin-body {
  background:
    radial-gradient(circle at top left, rgba(212, 162, 124, 0.12), transparent 24%),
    linear-gradient(180deg, #08070a 0%, #0b0910 100%);
}

.admin-shell {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
}

.admin-sidebar,
.admin-main,
.admin-hero,
.metric-card,
.admin-card,
.admin-login-card {
  border: 1px solid var(--border);
  background: rgba(21, 18, 25, 0.94);
  box-shadow: var(--shadow);
}

.admin-sidebar,
.admin-main {
  border-radius: var(--radius-xl);
  padding: 24px;
}

.admin-nav,
.admin-main,
.admin-section,
.metric-row,
.admin-card-grid,
.admin-form {
  display: grid;
  gap: 18px;
}

.admin-nav a {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.admin-nav a.is-active {
  color: var(--text);
  background: rgba(212, 162, 124, 0.12);
  border: 1px solid rgba(212, 162, 124, 0.2);
}

.admin-hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-xl);
}

.metric-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-width: 420px;
}

.metric-card {
  padding: 18px;
  border-radius: var(--radius-lg);
}

.metric-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.metric-card strong {
  font-size: 2rem;
  line-height: 1;
}

.admin-form,
.admin-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

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

.admin-form h3,
.admin-form .admin-actions,
.admin-form .checkbox-grid,
.admin-form .button,
.admin-form > p,
.admin-card > h3 {
  grid-column: 1 / -1;
}

.compact-form {
  grid-template-columns: 1fr 1fr;
}

.table-wrap {
  overflow-x: auto;
}

.lead-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.lead-table th,
.lead-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 0.9rem;
}

.inline-delete {
  margin-top: -6px;
}

.admin-login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-login-card {
  width: min(480px, 100%);
  display: grid;
  gap: 18px;
}

.owner-admin-body {
  color: var(--text);
}

.owner-admin-shell {
  align-items: start;
}

.owner-admin-sidebar {
  position: sticky;
  top: 18px;
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.owner-admin-sidebar::-webkit-scrollbar {
  width: 8px;
}

.owner-admin-sidebar::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(245, 237, 230, 0.18);
}

.owner-admin-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.owner-admin-brand {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.owner-admin-brand h1,
.owner-login-card h1,
.owner-admin-hero h2 {
  margin: 0;
}

.owner-admin-nav {
  gap: 10px;
}

.owner-admin-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.owner-admin-sidebar-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.owner-admin-main {
  gap: 22px;
}

.owner-admin-hero {
  align-items: stretch;
}

.owner-admin-hero > div:first-child {
  max-width: 640px;
}

.owner-metric-row {
  grid-template-columns: repeat(3, minmax(150px, 1fr));
}

.owner-metric-card span,
.owner-section-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.owner-dashboard-section {
  gap: 22px;
}

.owner-section-grid,
.owner-field-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.owner-section-card,
.owner-field-preview,
.owner-lead-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(245, 237, 230, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.owner-section-card {
  color: var(--text);
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.owner-section-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 162, 124, 0.28);
  background: rgba(212, 162, 124, 0.08);
}

.owner-section-card strong {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
}

.owner-panel-card {
  display: grid;
  gap: 18px;
}

.owner-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.owner-card-heading h3,
.owner-card-heading h4 {
  margin: 0;
}

.owner-lead-list {
  display: grid;
  gap: 14px;
}

.owner-lead-card p,
.owner-step-list p,
.owner-simple-list p,
.owner-photo-guidance p,
.owner-field-preview p {
  margin: 0;
}

.owner-status-pill,
.owner-date-pill,
.owner-choice-row span {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(212, 162, 124, 0.18);
  border-radius: 999px;
  background: rgba(212, 162, 124, 0.1);
  color: #e8c5a2;
  font-size: 0.82rem;
  font-weight: 800;
}

.owner-simple-list {
  display: grid;
  gap: 10px;
}

.owner-simple-list p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(245, 237, 230, 0.08);
}

.owner-simple-list p:last-child {
  border-bottom: 0;
}

.owner-editor-placeholder {
  min-height: 420px;
}

.owner-field-preview span,
.owner-photo-guidance h4 {
  color: var(--text);
  font-weight: 800;
}

.owner-photo-guidance {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(212, 162, 124, 0.16);
  border-radius: 22px;
  background: rgba(212, 162, 124, 0.06);
}

.owner-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.owner-warning-text,
.admin-help-text {
  color: #e8c5a2;
}

.admin-toast,
.admin-alert {
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 800;
}

.admin-toast.is-success {
  border: 1px solid rgba(145, 210, 160, 0.24);
  background: rgba(145, 210, 160, 0.1);
  color: #cce9d2;
}

.admin-toast.is-error,
.admin-alert-error {
  border: 1px solid rgba(232, 150, 130, 0.28);
  background: rgba(232, 150, 130, 0.1);
  color: #f1c4b8;
}

.owner-admin-actions {
  flex-wrap: wrap;
}

.owner-admin-actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.owner-admin-actions .danger-button {
  border-color: rgba(232, 150, 130, 0.28);
  color: #f1c4b8;
}

.owner-admin-actions .danger-button:hover {
  background: rgba(232, 150, 130, 0.1);
}

.owner-edit-form {
  align-items: start;
}

.owner-edit-form .span-2,
.owner-edit-form .owner-image-editor,
.owner-edit-form .owner-toggle-row,
.owner-edit-form .owner-check-row,
.owner-edit-form .owner-admin-actions {
  grid-column: 1 / -1;
}

/* Absolute final desktop reference lock. Mobile remains untouched. */
@media (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    width: min(1480px, calc(100vw - 48px)) !important;
    max-width: 1480px !important;
    height: 600px !important;
    min-height: 0 !important;
    max-height: 600px !important;
    margin: 24px auto 22px !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 34px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    display: grid !important;
    grid-template-columns: minmax(0, 0.965fr) minmax(560px, 1.095fr) !important;
    align-items: stretch !important;
    gap: 0 !important;
    height: 100% !important;
    max-width: none !important;
    overflow: hidden !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
    align-self: stretch !important;
    justify-content: center !important;
    max-width: 690px !important;
    height: 100% !important;
    padding: 64px 0 46px clamp(56px, 5vw, 72px) !important;
    gap: 0 !important;
    overflow: visible !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-label {
    min-height: 42px !important;
    margin: 0 0 28px !important;
    padding: 0 22px !important;
    font-size: 14px !important;
    letter-spacing: 0.16em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    width: min(100%, 680px) !important;
    max-width: 680px !important;
    font-size: clamp(60px, 5.15vw, 80px) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.033em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent {
    padding-bottom: 23px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
    width: min(100%, 535px) !important;
    max-width: 535px !important;
    margin: 26px 0 0 !important;
    font-size: clamp(20px, 1.4vw, 22px) !important;
    line-height: 1.58 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
    width: max-content !important;
    max-width: none !important;
    margin: 34px 0 0 !important;
    gap: 16px !important;
    flex-wrap: nowrap !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button {
    min-width: 304px !important;
    height: 68px !important;
    min-height: 68px !important;
    padding: 0 38px !important;
    font-size: 16px !important;
    letter-spacing: 0.055em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-services-link {
    min-width: 264px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    width: max-content !important;
    max-width: 900px !important;
    margin: 40px 0 0 !important;
    font-size: 16px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li {
    gap: 10px !important;
    margin: 0 28px 0 0 !important;
    padding: 0 28px 0 0 !important;
    font-size: 16px !important;
    white-space: nowrap !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li:not(:last-child)::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    right: 0 !important;
    width: 1px !important;
    height: 24px !important;
    background: rgba(255, 255, 255, 0.12) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust-icon {
    width: 23px !important;
    height: 23px !important;
    color: #efa86f !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-visual,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life {
    align-self: stretch !important;
    justify-self: stretch !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
    border-radius: 0 34px 34px 0 !important;
    background:
      radial-gradient(circle at 62% 50%, rgba(230, 143, 78, 0.12), rgba(10, 8, 7, 0.9) 62%),
      #0a0807 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life picture,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    width: 100% !important;
    height: 100% !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    object-fit: contain !important;
    object-position: center center !important;
    filter: saturate(1.04) contrast(1.02) brightness(1.04) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::before {
    background:
      linear-gradient(90deg, rgba(8, 9, 9, 0.42), rgba(8, 9, 9, 0.03) 28%, rgba(8, 9, 9, 0.03)),
      linear-gradient(180deg, rgba(8, 9, 9, 0.01), rgba(8, 9, 9, 0.08)) !important;
  }
}

/* Final desktop reference lock: keep mobile untouched. */
@media (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    width: min(1480px, calc(100vw - 48px)) !important;
    max-width: 1480px !important;
    height: 600px !important;
    min-height: 0 !important;
    max-height: 600px !important;
    margin: 24px auto 22px !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(230, 189, 132, 0.12) !important;
    border-radius: 34px !important;
    background:
      radial-gradient(circle at 18% 40%, rgba(230, 166, 110, 0.12), transparent 34%),
      linear-gradient(135deg, #0a0908 0%, #080909 48%, #130d09 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    display: grid !important;
    grid-template-columns: minmax(0, 0.965fr) minmax(560px, 1.095fr) !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
    position: relative !important;
    z-index: 6 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-self: stretch !important;
    width: 100% !important;
    max-width: 690px !important;
    height: 100% !important;
    min-width: 0 !important;
    padding: 64px 0 46px clamp(56px, 5vw, 72px) !important;
    gap: 0 !important;
    overflow: visible !important;
    text-align: left !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-label {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    min-height: 42px !important;
    margin: 0 0 28px !important;
    padding: 0 22px !important;
    border: 1px solid rgba(230, 166, 110, 0.18) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.012) !important;
    color: #efa86f !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    display: grid !important;
    width: min(100%, 680px) !important;
    max-width: 680px !important;
    margin: 0 !important;
    color: #f8f3eb !important;
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(60px, 5.15vw, 80px) !important;
    font-weight: 500 !important;
    line-height: 0.96 !important;
    letter-spacing: -0.033em !important;
    text-wrap: balance !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title span {
    display: block !important;
    white-space: normal !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent {
    position: relative !important;
    width: fit-content !important;
    padding-bottom: 23px !important;
    color: #eda66e !important;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
    font-style: italic !important;
    font-weight: 500 !important;
    letter-spacing: -0.045em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 5px !important;
    width: 68px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #efa86f, rgba(239, 168, 111, 0)) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
    width: min(100%, 535px) !important;
    max-width: 535px !important;
    margin: 26px 0 0 !important;
    color: rgba(245, 241, 234, 0.8) !important;
    font-size: clamp(20px, 1.4vw, 22px) !important;
    font-weight: 400 !important;
    line-height: 1.58 !important;
    letter-spacing: -0.006em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
    position: relative !important;
    z-index: 7 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    max-width: none !important;
    margin: 34px 0 0 !important;
    overflow: visible !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-primary-cta {
    width: auto !important;
    flex: 0 0 auto !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 304px !important;
    height: 68px !important;
    min-height: 68px !important;
    padding: 0 38px !important;
    border-radius: 999px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: 0.055em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .luxe-button {
    color: #0d0907 !important;
    border: 0 !important;
    background: linear-gradient(135deg, #ffd5b4 0%, #f0ad77 58%, #dc8f56 100%) !important;
    box-shadow: 0 18px 44px rgba(218, 134, 76, 0.15) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .luxe-button span {
    display: inline-flex !important;
    margin-left: 12px !important;
    font-size: 22px !important;
    line-height: 1 !important;
    transform: translateY(-1px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-services-link {
    min-width: 264px !important;
    color: rgba(245, 241, 234, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    background: rgba(255, 255, 255, 0.012) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list {
    position: relative !important;
    z-index: 8 !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    width: max-content !important;
    max-width: 900px !important;
    margin: 40px 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
    color: rgba(245, 241, 234, 0.75) !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    overflow: visible !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 28px 0 0 !important;
    padding: 0 28px 0 0 !important;
    white-space: nowrap !important;
    font-size: 16px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li::before {
    content: none !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li:not(:last-child)::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    right: 0 !important;
    width: 1px !important;
    height: 24px !important;
    background: rgba(255, 255, 255, 0.12) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li:last-child {
    margin-right: 0 !important;
    padding-right: 0 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust-icon {
    display: inline-flex !important;
    width: 23px !important;
    height: 23px !important;
    color: #efa86f !important;
    flex: 0 0 auto !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust-icon svg {
    width: 100% !important;
    height: 100% !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.45 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-visual,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life {
    position: relative !important;
    z-index: 1 !important;
    align-self: stretch !important;
    justify-self: stretch !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 0 34px 34px 0 !important;
    background:
      radial-gradient(circle at 62% 50%, rgba(230, 143, 78, 0.12), rgba(10, 8, 7, 0.9) 62%),
      #0a0807 !important;
    isolation: isolate !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life picture,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    object-fit: contain !important;
    object-position: center center !important;
    filter: saturate(1.04) contrast(1.02) brightness(1.04) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: none !important;
    background:
      linear-gradient(90deg, rgba(8, 9, 9, 0.42), rgba(8, 9, 9, 0.03) 28%, rgba(8, 9, 9, 0.03)),
      linear-gradient(180deg, rgba(8, 9, 9, 0.01), rgba(8, 9, 9, 0.08)) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::after {
    display: none !important;
  }
}

/* Absolute final desktop reference lock. Mobile remains untouched. */
@media (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    width: min(1480px, calc(100vw - 48px)) !important;
    max-width: 1480px !important;
    height: 600px !important;
    min-height: 0 !important;
    max-height: 600px !important;
    margin: 24px auto 22px !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 34px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    display: grid !important;
    grid-template-columns: minmax(0, 0.965fr) minmax(560px, 1.095fr) !important;
    align-items: stretch !important;
    gap: 0 !important;
    height: 100% !important;
    max-width: none !important;
    overflow: hidden !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
    align-self: stretch !important;
    justify-content: center !important;
    max-width: 690px !important;
    height: 100% !important;
    padding: 64px 0 46px clamp(56px, 5vw, 72px) !important;
    gap: 0 !important;
    overflow: visible !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-label {
    min-height: 42px !important;
    margin: 0 0 28px !important;
    padding: 0 22px !important;
    font-size: 14px !important;
    letter-spacing: 0.16em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    width: min(100%, 680px) !important;
    max-width: 680px !important;
    font-size: clamp(60px, 5.15vw, 80px) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.033em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent {
    padding-bottom: 23px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
    width: min(100%, 535px) !important;
    max-width: 535px !important;
    margin: 26px 0 0 !important;
    font-size: clamp(20px, 1.4vw, 22px) !important;
    line-height: 1.58 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
    width: max-content !important;
    max-width: none !important;
    margin: 34px 0 0 !important;
    gap: 16px !important;
    flex-wrap: nowrap !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button {
    min-width: 304px !important;
    height: 68px !important;
    min-height: 68px !important;
    padding: 0 38px !important;
    font-size: 16px !important;
    letter-spacing: 0.055em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-services-link {
    min-width: 264px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    width: max-content !important;
    max-width: 900px !important;
    margin: 40px 0 0 !important;
    font-size: 16px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li {
    gap: 10px !important;
    margin: 0 28px 0 0 !important;
    padding: 0 28px 0 0 !important;
    font-size: 16px !important;
    white-space: nowrap !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li:not(:last-child)::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    right: 0 !important;
    width: 1px !important;
    height: 24px !important;
    background: rgba(255, 255, 255, 0.12) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust-icon {
    width: 23px !important;
    height: 23px !important;
    color: #efa86f !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-visual,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life {
    align-self: stretch !important;
    justify-self: stretch !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
    border-radius: 0 34px 34px 0 !important;
    background:
      radial-gradient(circle at 62% 50%, rgba(230, 143, 78, 0.12), rgba(10, 8, 7, 0.9) 62%),
      #0a0807 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life picture,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    width: 100% !important;
    height: 100% !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    object-fit: contain !important;
    object-position: center center !important;
    filter: saturate(1.04) contrast(1.02) brightness(1.04) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::before {
    background:
      linear-gradient(90deg, rgba(8, 9, 9, 0.42), rgba(8, 9, 9, 0.03) 28%, rgba(8, 9, 9, 0.03)),
      linear-gradient(180deg, rgba(8, 9, 9, 0.01), rgba(8, 9, 9, 0.08)) !important;
  }
}

/* Desktop reference match: integrated right visual and editorial spacing. */
@media (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    width: min(1480px, calc(100vw - 48px)) !important;
    max-width: 1480px !important;
    height: 600px !important;
    min-height: 0 !important;
    max-height: 620px !important;
    margin: clamp(24px, 3vw, 34px) auto clamp(20px, 3vw, 34px) !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 34px !important;
    border: 1px solid rgba(230, 189, 132, 0.12) !important;
    background:
      radial-gradient(circle at 17% 40%, rgba(214, 160, 122, 0.12), transparent 34%),
      linear-gradient(135deg, #0a0a09 0%, #080909 52%, #120d09 100%) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    display: grid !important;
    grid-template-columns: minmax(0, 0.98fr) minmax(620px, 1.08fr) !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
    position: relative !important;
    z-index: 4 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-self: stretch !important;
    width: 100% !important;
    max-width: 650px !important;
    min-width: 0 !important;
    height: 100% !important;
    padding: 62px 0 44px 72px !important;
    gap: 0 !important;
    overflow: visible !important;
    text-align: left !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-label {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    min-height: 42px !important;
    margin: 0 0 28px !important;
    padding: 0 22px !important;
    border: 1px solid rgba(214, 160, 122, 0.17) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.014) !important;
    color: #e6a66e !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    display: grid !important;
    width: min(100%, 650px) !important;
    max-width: 650px !important;
    margin: 0 !important;
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(60px, 5.1vw, 78px) !important;
    font-weight: 500 !important;
    line-height: 0.96 !important;
    letter-spacing: -0.032em !important;
    color: #f7f3ec !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title span {
    display: block !important;
    white-space: normal !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent {
    position: relative !important;
    width: fit-content !important;
    padding-bottom: 22px !important;
    color: #eea66d !important;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
    font-style: italic !important;
    font-weight: 500 !important;
    letter-spacing: -0.04em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 4px !important;
    width: 66px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #eea66d, rgba(238, 166, 109, 0)) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
    width: min(100%, 520px) !important;
    max-width: 520px !important;
    margin: 28px 0 0 !important;
    color: rgba(245, 241, 234, 0.78) !important;
    font-size: clamp(20px, 1.45vw, 22px) !important;
    font-weight: 400 !important;
    line-height: 1.58 !important;
    letter-spacing: -0.005em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
    position: relative !important;
    z-index: 5 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: 590px !important;
    margin: 34px 0 0 !important;
    overflow: visible !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-primary-cta {
    width: auto !important;
    flex: 0 0 auto !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 304px !important;
    height: 68px !important;
    min-height: 68px !important;
    padding: 0 38px !important;
    border-radius: 999px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: 0.055em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .luxe-button {
    color: #0d0907 !important;
    background: linear-gradient(135deg, #ffd4b1 0%, #f0ae78 56%, #dc8f57 100%) !important;
    box-shadow: 0 18px 44px rgba(218, 134, 76, 0.14) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .luxe-button span {
    display: inline-flex !important;
    margin-left: 10px !important;
    font-size: 22px !important;
    line-height: 1 !important;
    transform: translateY(-1px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-services-link {
    min-width: 264px !important;
    color: rgba(245, 241, 234, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    background: rgba(255, 255, 255, 0.012) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list {
    position: relative !important;
    z-index: 5 !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    width: max-content !important;
    max-width: 780px !important;
    margin: 44px 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
    color: rgba(245, 241, 234, 0.74) !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    overflow: visible !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 30px 0 0 !important;
    padding: 0 30px 0 0 !important;
    white-space: nowrap !important;
    font-size: 16px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li::before {
    content: none !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    right: 0 !important;
    width: 1px !important;
    height: 24px !important;
    background: rgba(255, 255, 255, 0.12) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li:last-child::after {
    content: none !important;
    display: none !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust-icon {
    display: inline-flex !important;
    width: 22px !important;
    height: 22px !important;
    color: #e6a66e !important;
    flex: 0 0 auto !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust-icon svg {
    width: 100% !important;
    height: 100% !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.45 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-visual,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life {
    position: relative !important;
    z-index: 1 !important;
    align-self: stretch !important;
    justify-self: stretch !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 0 34px 34px 0 !important;
    background: #0a0807 !important;
    isolation: isolate !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life picture,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    object-fit: cover !important;
    object-position: center center !important;
    filter: saturate(1.04) contrast(1.02) brightness(1.02) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: none !important;
    background:
      linear-gradient(90deg, rgba(8, 9, 9, 0.55), rgba(8, 9, 9, 0.04) 28%, rgba(8, 9, 9, 0.04)),
      linear-gradient(180deg, rgba(8, 9, 9, 0.02), rgba(8, 9, 9, 0.16)) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::after {
    display: none !important;
  }
}

/* Desktop hero proportions fix: keep card compact and image integrated. */
@media (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    width: min(1360px, calc(100vw - 44px)) !important;
    max-width: 1360px !important;
    height: 560px !important;
    min-height: 0 !important;
    max-height: 600px !important;
    padding: clamp(48px, 5vw, 72px) !important;
    overflow: hidden !important;
    border-radius: 34px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    display: grid !important;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.05fr) !important;
    align-items: center !important;
    gap: clamp(40px, 5vw, 72px) !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: 100% !important;
    overflow: visible !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
    position: relative !important;
    z-index: 4 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-self: center !important;
    width: 100% !important;
    max-width: 560px !important;
    min-width: 0 !important;
    height: auto !important;
    padding: 0 !important;
    gap: clamp(14px, 1.55vw, 20px) !important;
    text-align: left !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-label {
    flex: 0 0 auto !important;
    margin: 0 0 4px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    width: min(100%, 560px) !important;
    max-width: 560px !important;
    margin: 0 !important;
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(46px, 4.55vw, 68px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.028em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent {
    padding-bottom: 12px !important;
    color: #d6a07a !important;
    font-style: italic !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
    width: min(100%, 520px) !important;
    max-width: 520px !important;
    margin: 0 !important;
    font-size: clamp(18px, 1.38vw, 21px) !important;
    line-height: 1.6 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
    position: relative !important;
    z-index: 5 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 18px !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: 520px !important;
    margin: 8px 0 0 !important;
    overflow: visible !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-primary-cta {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 204px !important;
    min-height: 58px !important;
    height: 58px !important;
    padding: 0 28px !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-services-link {
    min-width: 170px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list {
    position: relative !important;
    z-index: 5 !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: 560px !important;
    margin: 28px 0 0 !important;
    overflow: visible !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li {
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    margin: 0 24px 0 0 !important;
    padding: 0 24px 0 0 !important;
    min-width: 0 !important;
    white-space: nowrap !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust-icon {
    width: 19px !important;
    height: 19px !important;
    color: #d6a07a !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-visual,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life {
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    align-self: center !important;
    justify-self: stretch !important;
    width: 100% !important;
    height: 440px !important;
    min-height: 0 !important;
    max-height: 460px !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    border-radius: 32px !important;
    border: 0 !important;
    background: radial-gradient(circle at center, rgba(214, 160, 122, 0.16), rgba(15, 10, 8, 0.92)) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life picture,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    object-fit: contain !important;
    object-position: center center !important;
    filter: saturate(1.03) contrast(1.01) brightness(1.03) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::before {
    z-index: 2 !important;
    pointer-events: none !important;
    background: linear-gradient(90deg, rgba(8, 9, 9, 0.08), rgba(8, 9, 9, 0) 44%, rgba(8, 9, 9, 0.04)) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::after {
    display: none !important;
  }
}

/* Desktop/tablet only: reference-accurate luxury hero refinement. Mobile remains untouched. */
@media (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    width: min(1368px, calc(100vw - 56px)) !important;
    max-width: 1368px !important;
    min-height: clamp(620px, 47vw, 700px) !important;
    margin: clamp(28px, 3.2vw, 44px) auto clamp(58px, 6vw, 86px) !important;
    padding: clamp(48px, 5vw, 72px) !important;
    border-radius: 34px !important;
    border: 1px solid rgba(230, 189, 132, 0.13) !important;
    background:
      radial-gradient(circle at 19% 22%, rgba(224, 156, 101, 0.13), transparent 30%),
      radial-gradient(circle at 78% 46%, rgba(196, 108, 47, 0.16), transparent 34%),
      linear-gradient(135deg, #0a0a09 0%, #080909 48%, #130e0a 100%) !important;
    box-shadow: none !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    display: grid !important;
    grid-template-columns: minmax(0, 46fr) minmax(520px, 54fr) !important;
    align-items: center !important;
    gap: clamp(40px, 5vw, 72px) !important;
    height: 100% !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
    max-width: 610px !important;
    align-self: center !important;
    gap: clamp(19px, 1.8vw, 24px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-label {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    min-height: 42px !important;
    margin: 0 0 clamp(6px, 0.7vw, 10px) !important;
    padding: 0 22px !important;
    border: 1px solid rgba(214, 160, 122, 0.17) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.016) !important;
    color: #e6a66e !important;
    font-size: clamp(12px, 0.92vw, 14px) !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    display: grid !important;
    width: min(100%, 660px) !important;
    max-width: 660px !important;
    margin: 0 !important;
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(54px, 5vw, 78px) !important;
    font-weight: 500 !important;
    line-height: 0.98 !important;
    letter-spacing: -0.03em !important;
    color: #f7f3ec !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title span {
    display: block !important;
    white-space: normal !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent {
    position: relative !important;
    width: fit-content !important;
    padding-bottom: 18px !important;
    color: #d6a07a !important;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
    font-style: italic !important;
    font-weight: 500 !important;
    letter-spacing: -0.035em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 3px !important;
    width: 64px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #d6a07a, rgba(214, 160, 122, 0)) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
    width: min(100%, 520px) !important;
    max-width: 520px !important;
    margin: 0 !important;
    color: rgba(245, 241, 234, 0.76) !important;
    font-size: clamp(20px, 1.45vw, 22px) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    letter-spacing: -0.005em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    width: auto !important;
    margin: clamp(8px, 1.2vw, 14px) 0 0 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button {
    width: auto !important;
    min-width: 246px !important;
    min-height: 66px !important;
    height: 66px !important;
    padding: 0 34px !important;
    border-radius: 999px !important;
    font-size: 15.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.055em !important;
    text-transform: uppercase !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .luxe-button {
    color: #0d0907 !important;
    background: linear-gradient(135deg, #ffd4b1 0%, #f0ae78 56%, #dc8f57 100%) !important;
    box-shadow: 0 18px 44px rgba(218, 134, 76, 0.16) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .luxe-button span {
    display: inline-flex !important;
    margin-left: 10px !important;
    font-size: 22px !important;
    line-height: 1 !important;
    transform: translateY(-1px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-services-link {
    min-width: 236px !important;
    color: rgba(245, 241, 234, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    background: rgba(255, 255, 255, 0.012) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 0 !important;
    width: max-content !important;
    max-width: 100% !important;
    margin: clamp(14px, 2vw, 26px) 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
    color: rgba(245, 241, 234, 0.74) !important;
    font-size: clamp(14px, 1vw, 16px) !important;
    line-height: 1.35 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 32px 0 0 !important;
    padding: 0 32px 0 0 !important;
    white-space: nowrap !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li::before {
    content: none !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li:not(:last-child)::after {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    width: 1px !important;
    height: 24px !important;
    background: rgba(255, 255, 255, 0.12) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li:last-child {
    margin-right: 0 !important;
    padding-right: 0 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust-icon {
    display: inline-flex !important;
    width: 20px !important;
    height: 20px !important;
    color: #e5a66e !important;
    flex: 0 0 auto !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust-icon svg {
    width: 100% !important;
    height: 100% !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.45 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-visual {
    align-self: stretch !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 560px !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    border: 0 !important;
    border-radius: 28px !important;
    background: #0a0807 !important;
    overflow: hidden !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life picture,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    object-fit: cover !important;
    object-position: center center !important;
    filter: saturate(1.04) contrast(1.02) brightness(1.04) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: none !important;
    background:
      linear-gradient(90deg, rgba(8, 9, 9, 0.24), rgba(8, 9, 9, 0.02) 32%, rgba(8, 9, 9, 0.08)),
      linear-gradient(180deg, rgba(8, 9, 9, 0.02), rgba(8, 9, 9, 0.08)) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::after {
    display: none !important;
  }
}


/* Reference-matched homepage hero polish. Keep after all legacy hero overrides. */
body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
  width: min(1480px, calc(100vw - 48px)) !important;
  max-width: 1480px !important;
  min-height: clamp(560px, 43vw, 620px) !important;
  padding: clamp(56px, 5vw, 72px) clamp(58px, 5.8vw, 74px) !important;
  border-radius: 30px !important;
  border-color: rgba(230, 189, 132, 0.12) !important;
  background:
    radial-gradient(circle at 18% 20%, rgba(230, 189, 132, 0.14), transparent 28%),
    radial-gradient(circle at 78% 40%, rgba(191, 111, 48, 0.18), transparent 36%),
    linear-gradient(135deg, #0b0b0a 0%, #080909 48%, #120d09 100%) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr) !important;
  gap: clamp(46px, 5vw, 78px) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
  max-width: 650px !important;
  gap: 22px !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-label {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  min-height: 44px !important;
  margin: 0 0 8px !important;
  padding: 0 22px !important;
  border: 1px solid rgba(230, 189, 132, 0.16) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.018) !important;
  color: #e6a96b !important;
  font-size: clamp(12px, 0.9vw, 14px) !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
  width: min(100%, 660px) !important;
  max-width: 660px !important;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(58px, 5.05vw, 82px) !important;
  line-height: 0.96 !important;
  font-weight: 500 !important;
  letter-spacing: -0.025em !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent {
  position: relative !important;
  display: inline-block !important;
  width: fit-content !important;
  padding-bottom: 18px !important;
  color: #f0a568 !important;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
  font-style: italic !important;
  font-weight: 500 !important;
  letter-spacing: -0.03em !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 3px !important;
  width: 66px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #f0a568, rgba(240, 165, 104, 0)) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
  width: min(100%, 520px) !important;
  max-width: 520px !important;
  color: rgba(245, 241, 234, 0.78) !important;
  font-size: clamp(20px, 1.55vw, 23px) !important;
  line-height: 1.48 !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
  gap: 16px !important;
  margin-top: 8px !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button {
  min-width: 264px !important;
  min-height: 68px !important;
  height: 68px !important;
  padding: 0 34px !important;
  font-size: 16px !important;
  letter-spacing: 0.045em !important;
  text-transform: uppercase !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .luxe-button {
  color: #0c0907 !important;
  background: linear-gradient(135deg, #ffd2ad 0%, #efaa72 58%, #d88a51 100%) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .luxe-button span {
  display: inline-flex !important;
  margin-left: 10px !important;
  font-size: 22px !important;
  line-height: 1 !important;
  transform: translateY(-1px) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-services-link {
  min-width: 264px !important;
  color: rgba(245, 241, 234, 0.94) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.012) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list {
  gap: 0 !important;
  width: min(100%, 780px) !important;
  margin-top: 22px !important;
  color: rgba(245, 241, 234, 0.72) !important;
  font-size: clamp(14px, 1.08vw, 16px) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li {
  position: relative !important;
  gap: 10px !important;
  padding-right: 30px !important;
  margin-right: 30px !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li::before {
  content: none !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li:not(:last-child)::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  width: 1px !important;
  height: 24px !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust-icon {
  display: inline-flex !important;
  width: 24px !important;
  height: 24px !important;
  color: #e6a96b !important;
  flex: 0 0 auto !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust-icon svg {
  width: 100% !important;
  height: 100% !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.55 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life,
body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-visual {
  height: clamp(500px, 39vw, 590px) !important;
  min-height: 500px !important;
  max-height: 590px !important;
  border: 0 !important;
  border-radius: 28px !important;
  background: #0a0807 !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
  object-fit: cover !important;
  object-position: center center !important;
  filter: saturate(1.02) contrast(1.02) brightness(0.96) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::before {
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.68), rgba(8, 9, 9, 0.08) 34%, rgba(8, 9, 9, 0.2)),
    linear-gradient(180deg, rgba(8, 9, 9, 0.02), rgba(8, 9, 9, 0.22)) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::after {
  display: none !important;
}

@media (max-width: 1024px) and (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1fr) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    font-size: clamp(44px, 5vw, 58px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button {
    min-width: 190px !important;
  }
}

@media (max-width: 768px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    padding: clamp(30px, 7vw, 40px) clamp(18px, 5vw, 22px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-label {
    min-height: 36px !important;
    margin-inline: auto !important;
    padding: 0 16px !important;
    font-size: clamp(10px, 2.7vw, 11.5px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    font-size: clamp(34px, 9vw, 42px) !important;
    line-height: 1.02 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent {
    margin-inline: auto !important;
    padding-bottom: 12px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
    font-size: clamp(15.5px, 4.2vw, 17px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button {
    min-width: 0 !important;
    min-height: 54px !important;
    height: 54px !important;
    font-size: 14px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-visual {
    display: none !important;
  }
}

/* Final desktop split hero. Scoped to the homepage and placed after legacy overrides. */
body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
  width: min(1240px, calc(100vw - 48px)) !important;
  max-width: 1240px !important;
  min-height: clamp(520px, 48vw, 620px) !important;
  margin: clamp(28px, 4vw, 56px) auto clamp(62px, 7vw, 96px) !important;
  padding: clamp(44px, 5vw, 72px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: clamp(30px, 3vw, 40px) !important;
  background:
    radial-gradient(circle at 18% 10%, rgba(230, 189, 132, 0.13), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(129, 80, 45, 0.2), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)) !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr) !important;
  align-items: center !important;
  gap: clamp(32px, 5vw, 80px) !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
  width: 100% !important;
  max-width: 610px !important;
  padding: 0 !important;
  gap: clamp(15px, 1.8vw, 20px) !important;
  text-align: left !important;
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy > * {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-label {
  margin: 0 0 clamp(4px, 0.8vw, 8px) !important;
  color: rgba(230, 189, 132, 0.86) !important;
  font-size: clamp(12px, 1vw, 14px) !important;
  line-height: 1.35 !important;
  letter-spacing: 0.13em !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
  display: grid !important;
  width: min(100%, 620px) !important;
  max-width: 620px !important;
  margin: 0 !important;
  color: #f5f1ea !important;
  font-size: clamp(44px, 4.35vw, 66px) !important;
  font-weight: 500 !important;
  line-height: 1.03 !important;
  letter-spacing: -0.018em !important;
  text-wrap: balance;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title span {
  display: block !important;
  white-space: normal !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent {
  color: #e6bd84 !important;
  font-style: italic !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
  display: block !important;
  width: min(100%, 560px) !important;
  max-width: 560px !important;
  margin: 0 !important;
  color: rgba(245, 241, 234, 0.74) !important;
  font-size: clamp(17px, 1.45vw, 20px) !important;
  font-weight: 400 !important;
  line-height: 1.54 !important;
  letter-spacing: 0 !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: auto !important;
  max-width: 100% !important;
  margin: clamp(4px, 1vw, 8px) 0 0 !important;
  gap: 14px !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-primary-cta {
  display: block !important;
  width: auto !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button {
  width: auto !important;
  min-width: 144px !important;
  min-height: 52px !important;
  height: 52px !important;
  padding: 0 26px !important;
  border-radius: 999px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-services-link {
  min-width: 116px !important;
  color: rgba(245, 241, 234, 0.88) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.025) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 9px 16px !important;
  width: min(100%, 610px) !important;
  margin: clamp(6px, 1.3vw, 12px) 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
  color: rgba(245, 241, 234, 0.68) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li::before {
  content: "" !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 999px !important;
  background: #e6bd84 !important;
  box-shadow: none !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: min(52vw, 520px) !important;
  min-height: 430px !important;
  max-height: 540px !important;
  aspect-ratio: 0.92 / 1 !important;
  overflow: hidden !important;
  border-radius: clamp(24px, 2.5vw, 34px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.035) !important;
  isolation: isolate !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life picture,
body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
  object-fit: cover !important;
  object-position: 48% 50% !important;
  filter: saturate(0.86) contrast(1.02) brightness(0.62) sepia(0.12) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.58), rgba(8, 9, 9, 0.1) 46%, rgba(8, 9, 9, 0.3)),
    linear-gradient(180deg, rgba(8, 9, 9, 0.1), rgba(8, 9, 9, 0.36)) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::after {
  content: "" !important;
  position: absolute !important;
  inset: auto 24px 24px auto !important;
  z-index: 3 !important;
  width: 132px !important;
  height: 132px !important;
  border-radius: 999px !important;
  pointer-events: none !important;
  background: radial-gradient(circle, rgba(230, 189, 132, 0.24), transparent 68%) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .pulse-cta {
  animation: none !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-brand-mark,
body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust,
body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust {
  display: none !important;
}

@media (max-width: 1024px) and (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr) !important;
    gap: clamp(28px, 4vw, 48px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    font-size: clamp(38px, 4.8vw, 52px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life {
    min-height: 390px !important;
  }
}

@media (max-width: 768px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin: 0 auto clamp(46px, 12vw, 64px) !important;
    padding: clamp(28px, 7vw, 38px) clamp(18px, 5vw, 22px) !important;
    border-radius: clamp(24px, 7vw, 30px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    display: block !important;
    max-width: 100% !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
    width: min(100%, 420px) !important;
    max-width: 420px !important;
    margin-inline: auto !important;
    gap: 13px !important;
    text-align: center !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-label {
    margin-bottom: 0 !important;
    font-size: clamp(10.5px, 2.9vw, 12px) !important;
    letter-spacing: 0.12em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    width: min(100%, 370px) !important;
    max-width: 370px !important;
    margin-inline: auto !important;
    font-size: clamp(30px, 8.4vw, 36px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.015em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
    width: min(100%, 360px) !important;
    max-width: 360px !important;
    margin-inline: auto !important;
    font-size: clamp(15px, 4.2vw, 16.5px) !important;
    line-height: 1.5 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: min(100%, 360px) !important;
    margin: clamp(8px, 2.6vw, 12px) auto 0 !important;
    gap: 10px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-primary-cta,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-services-link {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button {
    min-height: 52px !important;
    height: 52px !important;
    padding-inline: 20px !important;
    font-size: 15px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list {
    display: none !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-visual,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-image {
    display: none !important;
  }
}

@media (max-width: 390px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    padding-inline: 16px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    font-size: clamp(28px, 8.1vw, 32px) !important;
  }
}

/* Compact premium homepage hero. Scoped to the homepage so shared hero styles stay intact. */
body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
  width: min(860px, calc(100vw - 48px)) !important;
  max-width: 860px !important;
  min-height: 0 !important;
  margin: clamp(32px, 5vw, 64px) auto clamp(54px, 7vw, 92px) !important;
  padding: clamp(42px, 6vw, 74px) clamp(30px, 5.2vw, 68px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: clamp(28px, 3vw, 38px) !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(230, 189, 132, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)) !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
  display: block !important;
  width: 100% !important;
  max-width: 780px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
  width: min(100%, 780px) !important;
  max-width: 780px !important;
  padding: 0 !important;
  gap: clamp(13px, 1.8vw, 18px) !important;
  text-align: left !important;
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy > * {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-label {
  margin: 0 !important;
  color: rgba(230, 189, 132, 0.86) !important;
  font-size: clamp(12px, 1.1vw, 14px) !important;
  line-height: 1.35 !important;
  letter-spacing: 0.13em !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
  width: min(100%, 760px) !important;
  max-width: 760px !important;
  margin: 0 !important;
  color: #f5f1ea !important;
  font-size: clamp(42px, 4.8vw, 64px) !important;
  font-weight: 500 !important;
  line-height: 1.03 !important;
  letter-spacing: -0.018em !important;
  text-wrap: balance;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title span {
  white-space: normal !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
  display: block !important;
  width: min(100%, 610px) !important;
  max-width: 610px !important;
  margin: 0 !important;
  color: rgba(245, 241, 234, 0.73) !important;
  font-size: clamp(17px, 1.55vw, 20px) !important;
  font-weight: 400 !important;
  line-height: 1.52 !important;
  letter-spacing: 0 !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: auto !important;
  max-width: 100% !important;
  margin: clamp(6px, 1vw, 10px) 0 0 !important;
  gap: 14px !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-primary-cta {
  display: block !important;
  width: auto !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button {
  width: auto !important;
  min-width: 146px !important;
  min-height: 52px !important;
  height: 52px !important;
  padding: 0 26px !important;
  border-radius: 999px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-services-link {
  min-width: 118px !important;
  color: rgba(245, 241, 234, 0.88) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.025) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .pulse-cta {
  animation: none !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-visual,
body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-image,
body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-brand-mark,
body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust,
body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust {
  display: none !important;
}

@media (max-width: 768px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto clamp(46px, 12vw, 64px) !important;
    padding: clamp(28px, 7vw, 38px) clamp(18px, 5vw, 22px) !important;
    border-radius: clamp(24px, 7vw, 30px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    max-width: 100% !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
    width: min(100%, 420px) !important;
    margin-inline: auto !important;
    gap: 13px !important;
    text-align: center !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-label {
    font-size: clamp(10.5px, 2.9vw, 12px) !important;
    letter-spacing: 0.12em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    width: min(100%, 370px) !important;
    max-width: 370px !important;
    margin-inline: auto !important;
    font-size: clamp(30px, 8.6vw, 36px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.015em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
    width: min(100%, 360px) !important;
    max-width: 360px !important;
    margin-inline: auto !important;
    font-size: clamp(15px, 4.2vw, 16.5px) !important;
    line-height: 1.5 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: min(100%, 360px) !important;
    margin: clamp(8px, 2.6vw, 12px) auto 0 !important;
    gap: 10px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-primary-cta,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-services-link {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button {
    min-height: 52px !important;
    height: 52px !important;
    padding-inline: 20px !important;
    font-size: 15px !important;
  }
}

@media (max-width: 390px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    padding-inline: 16px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    font-size: clamp(28px, 8.1vw, 32px) !important;
  }
}

.owner-image-editor {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(245, 237, 230, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.owner-image-editor > span {
  color: var(--text);
  font-weight: 800;
}

.owner-image-editor img {
  width: min(100%, 420px);
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: var(--image-position, center center);
  border-radius: 18px;
  border: 1px solid rgba(245, 237, 230, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.owner-image-editor:has([data-image-position-input]) img {
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.owner-image-editor:has([data-image-position-input]) img:active {
  cursor: grabbing;
}

.owner-crop-preview {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: var(--crop-aspect, 4 / 3);
  overflow: hidden;
  border-radius: 18px;
}

.owner-crop-preview [data-image-preview] {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
}

.owner-crop-frame {
  position: absolute;
  inset: 0;
  display: block;
  border: 2px dashed rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 0, 0, 0.42);
  z-index: 2;
}

.owner-crop-frame::before,
.owner-crop-frame::after {
  content: "";
  position: absolute;
  inset: 33.333% 0 auto;
  border-top: 1px dashed rgba(255, 255, 255, 0.45);
}

.owner-crop-frame::after {
  inset: 66.666% 0 auto;
}

.owner-crop-frame i,
.owner-crop-frame b {
  position: absolute;
  top: 0;
  bottom: 0;
  border-left: 1px dashed rgba(255, 255, 255, 0.45);
}

.owner-crop-frame i {
  left: 33.333%;
}

.owner-crop-frame b {
  left: 66.666%;
}

.owner-crop-control {
  display: grid !important;
  gap: 6px !important;
  max-width: 320px;
}

.owner-crop-control > span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.owner-trust-editor {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(245, 237, 230, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.owner-trust-editor legend {
  padding: 0 6px;
  color: var(--text);
  font-weight: 800;
}

.owner-trust-editor-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(90px, 0.7fr) minmax(150px, 1fr) minmax(180px, 1.2fr);
  gap: 10px;
}

@media (max-width: 900px) {
  .owner-trust-editor-row {
    grid-template-columns: 1fr;
  }
}

.owner-upload-button {
  width: fit-content;
  cursor: pointer;
}

.owner-upload-button input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.owner-toggle-row,
.owner-check-row {
  display: flex !important;
  align-items: center;
  gap: 10px !important;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(212, 162, 124, 0.18);
  border-radius: 16px;
  background: rgba(212, 162, 124, 0.06);
  color: var(--text) !important;
  font-weight: 800;
}

.owner-toggle-row input,
.owner-check-row input {
  appearance: none;
  width: 18px !important;
  height: 18px;
  min-height: 18px !important;
  margin: 0;
  flex: 0 0 18px;
  border: 1px solid rgba(245, 237, 230, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.owner-toggle-row input:checked,
.owner-check-row input:checked {
  border-color: rgba(212, 162, 124, 0.85);
  background:
    linear-gradient(135deg, rgba(244, 196, 154, 0.98), rgba(197, 134, 93, 0.95));
  box-shadow: inset 0 0 0 4px rgba(20, 12, 8, 0.88);
}

.owner-toggle-row:has(input:checked),
.owner-check-row:has(input:checked) {
  border-color: rgba(212, 162, 124, 0.34);
  background: rgba(212, 162, 124, 0.09);
}

.owner-edit-form textarea[name="body_markdown"] {
  min-height: 220px;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --page-gutter: 24px;
    --section-space: 56px;
  }

  .hero-grid,
  .split-layout,
  .contact-layout,
  .service-hero,
  .about-hero,
  .booking-layout,
  .cta-banner,
  .site-footer,
  .admin-shell,
  .services-grid,
  .results-grid,
  .blog-grid,
  .pill-grid,
  .faq-category-grid,
  .review-grid,
  .journey-grid,
  .value-grid,
  .detail-grid,
  .metric-row,
  .booking-form,
  .admin-form,
  .hero-highlights,
  .trust-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-header {
    position: sticky;
    padding-bottom: 10px;
  }

  .header-card {
    grid-template-columns: 1fr auto;
    justify-content: space-between;
    row-gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    padding: 12px;
    border: 1px solid rgba(220, 170, 120, 0.18);
    border-radius: 18px;
    background: rgba(18, 15, 18, 0.99);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .site-nav a {
    min-height: 44px;
    border-radius: 12px;
  }

  [data-nav-open="true"] .site-nav {
    display: grid;
  }

  .header-cta {
    display: none;
    grid-column: 1 / -1;
    padding-top: 6px;
  }

  [data-nav-open="true"] .header-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .header-cta > * {
    width: 100%;
  }

  .metric-row {
    min-width: 0;
  }

  .admin-hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-gutter: 16px;
    --section-space: 44px;
  }

  .page-frame,
  .site-shell,
  .header-shell,
  .admin-shell {
    width: min(var(--max-width), calc(100% - (var(--page-gutter) * 2)));
  }

  .page-hero-card,
  .hero-card,
  .section-shell,
  .article-shell,
  .footer-card,
  .admin-sidebar,
  .admin-main,
  .admin-hero,
  .admin-card,
  .admin-login-card {
    padding: 18px;
    border-radius: 20px;
  }

  .header-card {
    padding: 12px 14px;
    min-height: 64px;
  }

  .brand-mark {
    font-size: 1.22rem;
  }

  .site-nav,
  .header-cta,
  .hero-highlights,
  .trust-grid,
  .stats-grid,
  .detail-grid,
  .review-grid,
  .journey-grid,
  .value-grid,
  .pill-grid,
  .blog-grid,
  .services-grid,
  .results-grid,
  .faq-category-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split-layout,
  .contact-layout,
  .service-hero,
  .about-hero,
  .booking-layout,
  .cta-banner,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-video {
    display: none;
  }

  .mobile-poster {
    display: block;
    aspect-ratio: 4 / 5;
  }

  .hero-poster {
    aspect-ratio: 4 / 5;
  }

  h1 {
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(28px, 7vw, 32px);
  }

  h3 {
    font-size: clamp(20px, 5.6vw, 22px);
  }

  .button {
    width: 100%;
  }

  .hero-highlights,
  .trust-grid,
  .stats-grid,
  .detail-grid,
  .faq-grid,
  .review-grid,
  .value-grid,
  .journey-grid,
  .pill-grid,
  .blog-grid,
  .services-grid,
  .results-grid {
    gap: 16px;
  }

  .service-card-copy,
  .blog-card-copy,
  .result-copy {
    padding: 18px;
  }

  .page-frame,
  .site-shell,
  .header-shell,
  .admin-shell {
    width: min(var(--max-width), calc(100% - (var(--page-gutter) * 2)));
  }

  .page-frame {
    padding-top: 6px;
    padding-bottom: 96px;
  }

  .site-header {
    padding-bottom: 8px;
  }

  .cta-row,
  .card-actions,
  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .before-after-labels {
    font-size: 0.72rem;
  }

  .topnav a,
  .header-contact {
    white-space: normal;
  }

  .hero-trust-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .scroll-hint {
    display: none;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badges span,
  .hero-trust-strip span {
    min-height: 40px;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: none;
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
  }

  .sticky-cta-link {
    min-height: 48px;
    font-size: 0.92rem;
  }

  .meta-chip {
    font-size: 14px;
  }

  .hero-light,
  .pulse-cta,
  .hero-copy--animated > *,
  .hero-trust-strip span,
  .scroll-hint {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .home-hero-shell {
    padding: 18px;
  }

  .home-hero-shell .hero-copy {
    padding-right: 0;
  }

  .home-booking-links {
    grid-template-columns: 1fr;
  }

  .booking-form-panel {
    padding: 18px;
    border-radius: 22px;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 88px;
  }

  body {
    padding-bottom: 84px;
    font-size: 15px;
    line-height: 1.55;
  }

  h1 {
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(26px, 7vw, 32px);
    line-height: 1.12;
  }

  h3 {
    font-size: 21px;
    line-height: 1.16;
  }

  #booking {
    scroll-margin-top: 92px;
  }

  .mobile-only {
    display: block !important;
  }

  .site-header {
    top: 0;
    padding-bottom: 8px;
    background: rgba(10, 8, 7, 0.78);
    backdrop-filter: none;
  }

  .header-card {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 10px 12px;
    gap: 12px;
    border-radius: 20px;
    box-shadow: none;
    background: transparent !important;
    border-color: rgba(220, 170, 120, 0.18);
  }

  .brand-mark {
    font-size: 1.15rem;
  }

  .nav-toggle {
    display: inline-flex;
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 999px;
    background: rgba(18, 13, 11, 0.92);
    border-color: rgba(220, 170, 120, 0.2);
    font-size: 0;
    position: relative;
  }

  .nav-toggle::before {
    content: "Меню";
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
  }

  .site-nav,
  .header-cta {
    display: none;
    grid-column: 1 / -1;
    padding: 10px;
    border-radius: 18px;
    background: rgba(18, 15, 18, 0.99);
    border: 1px solid rgba(220, 170, 120, 0.16);
    gap: 8px;
  }

  .site-nav {
    margin-top: 2px;
    overflow: hidden;
  }

  .site-nav a,
  .header-cta a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 14px;
    text-align: center;
  }

  .header-contact {
    font-size: 0.92rem;
  }

  [data-nav-open="true"] .site-nav,
  [data-nav-open="true"] .header-cta {
    display: grid;
  }

  .page-frame {
    padding-top: 0;
    padding-bottom: 108px;
  }

  .page-frame > .section-shell:first-child,
  .page-frame > .page-hero:first-child {
    margin-top: 18px;
  }

  .section-shell,
  .page-hero-card,
  .hero-card,
  .article-shell,
  .booking-form-panel,
  .footer-card {
    box-shadow: none;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading.row {
    gap: 12px;
  }

  .lead {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .home-hero-shell {
    padding: 18px;
    margin-top: 18px;
  }

  .home-hero {
    gap: 16px;
    align-items: start;
  }

  .home-hero .hero-copy {
    padding-right: 0;
  }

  .hero-title-line--wide {
    white-space: normal;
  }

  .home-hero-lead,
  .hero-trust-strip,
  .scroll-hint,
  .hero-services-link,
  .home-seo-section,
  .home-results-desktop {
    display: none !important;
  }

  .mobile-hero-summary {
    margin: -4px 0 4px;
    max-width: 30ch;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badges span {
    padding: 8px 12px;
    font-size: 0.76rem;
    line-height: 1.2;
  }

  .home-hero .cta-row:first-of-type {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mobile-hero-socials {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: -2px;
  }

  .mobile-hero-socials .button,
  .home-hero .cta-row:first-of-type .button {
    min-height: 50px;
  }

  .hero-brand-mark {
    margin-bottom: 18px;
  }

  .hero-brand-mark span {
    font-size: 20px;
  }

  .hero-brand-mark small {
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .hero-image,
  .hero-poster,
  .mobile-poster {
    aspect-ratio: 4 / 5;
  }

  .hero-light,
  .pulse-cta {
    animation: none;
  }

  .home-results-mobile {
    display: block !important;
  }

  .home-results-mobile .before-after-slider {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .home-results-mobile .result-copy {
    padding: 14px 0 0;
  }

  .services-grid {
    gap: 14px;
  }

  .filter-bar {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-pill {
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 40px;
    padding: 10px 14px;
  }

  body[data-page-path="/"] .service-card,
  body[data-page-path="/services"] .service-card {
    position: relative;
    display: grid !important;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
    min-height: 96px;
    border-radius: 22px;
  }

  body[data-page-path="/"] .service-card::after,
  body[data-page-path="/services"] .service-card::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(212, 162, 124, 0.12);
    border: 1px solid rgba(212, 162, 124, 0.2);
    color: var(--brand);
    font-size: 1rem;
    z-index: 3;
    pointer-events: none;
  }

  body[data-page-path="/"] .service-card > .image-frame,
  body[data-page-path="/services"] .service-card > .image-frame {
    height: 100%;
    border-radius: 22px 0 0 22px;
    position: relative;
    z-index: 3;
    pointer-events: none;
  }

  body[data-page-path="/"] .service-image,
  body[data-page-path="/services"] .service-image {
    aspect-ratio: 1 / 1;
  }

  body[data-page-path="/"] .service-card-copy,
  body[data-page-path="/services"] .service-card-copy {
    padding: 14px 44px 14px 0;
    gap: 6px;
    position: relative;
    z-index: 3;
    pointer-events: none;
  }

  body[data-page-path="/"] .service-card .eyebrow,
  body[data-page-path="/"] .service-card .service-result,
  body[data-page-path="/"] .service-card .card-actions,
  body[data-page-path="/services"] .service-card .eyebrow,
  body[data-page-path="/services"] .service-card .service-result,
  body[data-page-path="/services"] .service-card .card-actions {
    display: none !important;
  }

  body[data-page-path="/"] .service-card h3,
  body[data-page-path="/services"] .service-card h3 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.12;
  }

  body[data-page-path="/"] .service-card-copy > p:not(.service-result),
  body[data-page-path="/services"] .service-card-copy > p:not(.service-result) {
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  body[data-page-path="/"] .service-card .service-meta,
  body[data-page-path="/services"] .service-card .service-meta {
    margin: 8px 0 0;
    gap: 8px;
  }

  .mobile-card-stretch {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    z-index: 2;
  }

  .results-grid,
  .review-grid,
  .journey-grid,
  .value-grid,
  .faq-list {
    gap: 14px;
  }

  body[data-page-path="/results"] .results-grid {
    grid-template-columns: 1fr;
  }

  .result-card,
  .detail-card,
  .review-card,
  .faq-item {
    border-radius: 20px;
  }

  .before-after-slider {
    aspect-ratio: 4 / 3;
  }

  .booking-section {
    padding: 18px;
  }

  .booking-layout {
    gap: 18px;
  }

  .booking-copy {
    gap: 12px;
  }

  .booking-chips {
    gap: 8px;
  }

  .booking-socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .booking-form {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .booking-form label {
    font-size: 0.95rem;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    min-height: 50px;
  }

  .booking-form textarea {
    min-height: 120px;
  }

  .checkbox-row span {
    font-size: 0.92rem;
  }

  .booking-form-panel .button {
    min-height: 52px;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: none;
    min-height: 64px;
    padding: 8px 12px;
    gap: 8px;
    border-radius: 20px;
    background: rgba(10, 8, 10, 0.96);
    border-top: 1px solid rgba(220, 170, 120, 0.2);
    box-shadow: none;
  }

  .sticky-cta-link {
    min-height: 48px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .header-cta {
    display: none !important;
  }

  .site-nav .mobile-only {
    display: flex !important;
  }

  .site-nav {
    gap: 6px;
  }

  .page-frame {
    padding-bottom: 100px;
  }

  body[data-page-path="/"] .home-value-section,
  body[data-page-path="/"] .home-reviews-section {
    display: none;
  }

  .mobile-trust-section {
    display: block !important;
  }

  .mobile-trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mobile-trust-grid .mini-panel {
    padding: 16px;
  }

  .mobile-trust-grid .mini-panel strong {
    display: block;
    margin-bottom: 6px;
  }

  body[data-page-path="/"] .service-card,
  body[data-page-path="/services"] .service-card {
    min-height: 104px;
  }

  body[data-page-path="/"] .service-card-copy,
  body[data-page-path="/services"] .service-card-copy {
    justify-content: center;
  }

  .mobile-card-stretch {
    z-index: 4;
  }

  .booking-section {
    padding-bottom: 96px;
  }

  .sticky-cta.is-hidden-mobile {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
    pointer-events: none;
  }
}

@media (max-width: 768px) {
  .sticky-cta,
  .bottom-bar,
  .mobile-cta {
    display: none !important;
  }

  .nav-toggle {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle::before {
    content: "\2630";
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 0 !important;
    font-size: 15px;
    line-height: 1.55;
  }

  h1 {
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(26px, 7vw, 32px);
    line-height: 1.12;
  }

  h3 {
    font-size: 20px;
    line-height: 1.18;
  }

  p,
  li,
  input,
  textarea,
  select {
    font-size: 15px;
    line-height: 1.55;
  }

  .sticky-cta,
  .mobile-sticky-cta,
  .bottom-bar,
  .floating-actions {
    display: none !important;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 64px;
    padding: 10px 0 0;
    background: transparent !important;
    backdrop-filter: none;
  }

  .header-shell {
    width: min(100% - 32px, var(--max-width));
    min-height: 64px;
    padding: 0;
    background: transparent !important;
  }

  .header-card {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 12px 14px;
    gap: 12px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(26, 18, 14, 0.96), rgba(19, 13, 10, 0.94)) !important;
    border-color: rgba(220, 170, 120, 0.12);
    box-shadow: none;
  }

  .brand-mark {
    font-size: 1.18rem;
    letter-spacing: 0.04em;
  }

  .nav-toggle {
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 0;
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(220, 170, 120, 0.14);
  }

  .nav-toggle::before {
    content: "\2630";
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    color: var(--text);
  }

  .header-cta {
    display: none !important;
  }

  .site-nav {
    display: none !important;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 8px;
    padding: 18px;
    border-radius: 0 0 24px 24px;
    background: linear-gradient(180deg, rgba(24, 17, 13, 0.98), rgba(18, 13, 10, 0.98));
    border: 1px solid rgba(220, 170, 120, 0.12);
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    box-shadow: none;
  }

  [data-nav-open="true"] .site-nav {
    display: grid !important;
  }

  .site-nav a,
  .site-nav .mobile-only {
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 16px;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    background: rgba(255, 255, 255, 0.025);
    color: var(--text);
    border: 1px solid rgba(220, 170, 120, 0.1);
  }

  .site-nav a:last-child {
    grid-column: 1 / -1;
    justify-content: center;
    background: linear-gradient(135deg, rgba(225, 183, 145, 0.96), rgba(202, 145, 103, 0.92));
    color: #1a120d;
    font-weight: 700;
    border-color: rgba(225, 183, 145, 0.28);
  }

  .page-frame {
    padding-top: 0;
    padding-bottom: 56px;
  }

  .page-frame > .section-shell:first-child,
  .page-frame > .page-hero:first-child,
  .page-frame > .article-shell:first-child {
    margin-top: 16px;
  }

  .section-shell,
  .page-hero-card,
  .hero-card,
  .article-shell,
  .booking-form-panel,
  .footer-card {
    padding: 18px;
    border-radius: 20px;
    box-shadow: none;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .section-heading.row {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .home-hero-shell {
    padding: 20px;
    margin-top: 18px;
  }

  .home-hero {
    gap: 18px;
    align-items: start;
  }

  .home-hero .hero-copy {
    padding-right: 0;
    gap: 14px;
  }

  .hero-brand-mark {
    margin-bottom: 14px;
  }

  .hero-brand-mark span {
    font-size: 1.5rem;
  }

  .hero-brand-mark small {
    font-size: 0.64rem;
    margin-top: 4px;
  }

  .home-hero-lead,
  .mobile-hero-summary {
    max-width: none;
    font-size: 16px;
    line-height: 1.52;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero-badges span {
    min-height: 40px;
    padding: 8px 12px;
    justify-content: center;
    text-align: center;
    font-size: 0.8rem;
  }

  .hero-actions,
  .home-hero .cta-row:first-of-type {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .button,
  .home-hero .cta-row:first-of-type .button,
  .mobile-hero-socials .button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    height: 52px;
  }

  .mobile-hero-socials {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-services-link,
  .hero-trust-strip,
  .scroll-hint,
  .home-seo-section,
  .home-results-desktop {
    display: none !important;
  }

  .hero-light,
  .pulse-cta,
  .hero-copy--animated > *,
  .scroll-hint {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .hero-image,
  .hero-poster,
  .mobile-poster,
  .hero-visual {
    aspect-ratio: 4 / 5;
  }

  .services-grid,
  .results-grid,
  .review-grid,
  .journey-grid,
  .value-grid,
  .faq-list {
    gap: 14px;
  }

  .filter-bar {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-chip {
    flex: 0 0 auto;
  }

  body[data-page-path="/"] .service-card,
  body[data-page-path="/services"] .service-card {
    position: relative;
    display: grid !important;
    grid-template-columns: 96px minmax(0, 1fr) 36px;
    gap: 14px;
    align-items: center;
    min-height: 124px;
    padding: 12px;
    border-radius: 22px;
  }

  body[data-page-path="/"] .service-card::after,
  body[data-page-path="/services"] .service-card::after {
    display: none !important;
  }

  body[data-page-path="/"] .service-card .service-image,
  body[data-page-path="/services"] .service-card .service-image {
    width: 96px;
    height: 96px;
    min-width: 96px;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
  }

  body[data-page-path="/"] .service-card .service-image img,
  body[data-page-path="/services"] .service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
  }

  body[data-page-path="/"] .service-card-copy,
  body[data-page-path="/services"] .service-card-copy {
    padding: 0;
    gap: 6px;
    justify-content: flex-start;
    align-self: stretch;
    min-width: 0;
  }

  body[data-page-path="/"] .service-card .eyebrow,
  body[data-page-path="/services"] .service-card .eyebrow,
  body[data-page-path="/"] .service-card .service-result,
  body[data-page-path="/services"] .service-card .service-result,
  body[data-page-path="/"] .service-card .card-actions,
  body[data-page-path="/services"] .service-card .card-actions {
    display: none !important;
  }

  body[data-page-path="/"] .service-card h3,
  body[data-page-path="/services"] .service-card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.15;
  }

  body[data-page-path="/"] .service-card-copy > p:not(.service-result),
  body[data-page-path="/services"] .service-card-copy > p:not(.service-result) {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body[data-page-path="/"] .service-card .service-meta,
  body[data-page-path="/services"] .service-card .service-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 8px 0 0;
  }

  .mobile-card-stretch {
    position: static;
    inset: auto;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    z-index: 4;
    display: grid !important;
    place-items: center;
    font-size: 0;
    background: rgba(212, 162, 124, 0.12);
    border: 1px solid rgba(212, 162, 124, 0.2);
  }

  .mobile-card-stretch::before {
    content: "\2192";
    font-size: 1rem;
    line-height: 1;
    color: var(--brand);
  }

  .home-results-mobile {
    display: block !important;
  }

  .home-results-mobile .before-after-slider {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .before-after-slider input[type="range"] {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    min-height: 36px;
  }

  .before-after-labels {
    inset: 12px 12px auto 12px;
    font-size: 0.74rem;
  }

  .mobile-results-compact {
    display: grid;
    gap: 12px;
    margin-top: 12px;
  }

  .mobile-result-card .result-copy {
    padding: 14px 0 0;
  }

  body[data-page-path="/results"] .results-grid {
    grid-template-columns: 1fr;
  }

  .mobile-trust-section {
    display: block !important;
  }

  .mobile-trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mobile-trust-grid .mini-panel {
    padding: 16px;
  }

  .mobile-trust-grid .mini-panel strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 1.15;
  }

  .mobile-trust-grid .mini-panel p {
    font-size: 15px;
    line-height: 1.5;
  }

  .booking-section {
    padding: 18px 18px 24px;
  }

  .booking-layout {
    gap: 18px;
  }

  .booking-form-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .booking-form {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    width: 100%;
    min-height: 52px;
  }

  .booking-form textarea {
    min-height: 120px;
  }

  .checkbox-row {
    align-items: flex-start;
  }

  .booking-form-panel .button {
    width: 100%;
    min-height: 52px;
  }

  .cursor-glow,
  .parallax-layer,
  .tilt-card,
  .hero-video {
    display: none !important;
  }

  .reveal,
  [data-reveal] {
    transition-property: opacity, transform;
  }

  body,
  .page-frame,
  .site-header,
  .section-shell {
    overflow-x: clip;
  }
}

.hero-title {
  max-width: 680px;
  line-height: 1.05;
  font-size: clamp(34px, 4vw, 64px);
  letter-spacing: -0.03em;
  overflow-wrap: normal;
  text-wrap: balance;
}

.result-image img,
.before-after-slider > img,
.after-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.service-card,
.result-card,
.detail-card,
.review-card,
.mini-panel,
.footer-card {
  overflow: hidden;
}

.service-card *,
.result-card *,
.detail-card *,
.review-card *,
.mini-panel *,
.footer-card * {
  min-width: 0;
}

.service-card h3,
.result-card h3,
.detail-card h3,
.review-card h3,
.mini-panel strong {
  overflow-wrap: break-word;
  word-break: normal;
}

.card-actions,
.cta-row {
  flex-wrap: wrap;
}

:focus-visible {
  outline: 2px solid rgba(224, 168, 118, 0.9);
  outline-offset: 4px;
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  img,
  video {
    max-width: 100%;
  }

  .sticky-cta,
  .mobile-sticky-cta,
  .bottom-bar,
  .floating-actions {
    display: none !important;
  }

  .site-header {
    top: env(safe-area-inset-top, 0px);
    z-index: 100;
    max-width: 100%;
  }

  .header-shell {
    padding: 10px 14px;
  }

  .header-card {
    min-height: 64px;
    padding: 10px 14px;
  }

  .page-frame {
    padding-top: 0;
  }

  .section-shell,
  .page-hero,
  .about-hero {
    margin-top: 0;
  }

  .home-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-copy {
    padding: 28px 22px;
  }

  .home-hero-lead {
    display: none !important;
  }

  .mobile-hero-summary {
    display: block !important;
    font-size: 17px;
    line-height: 1.55;
    opacity: 0.82;
  }

  .hero-badges {
    display: none !important;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mobile-hero-socials {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mobile-hero-socials a:first-child {
    display: none !important;
  }

  .result-image {
    aspect-ratio: 4 / 5;
    min-height: auto;
  }

  .result-image img,
  .before-after-slider > img,
  .after-layer img {
    object-fit: contain;
    object-position: center center;
    background: #0a090c;
  }

  .result-card {
    overflow: hidden;
  }

  .result-copy {
    padding: 18px;
  }

  .before-after-slider input[type="range"] {
    min-height: 44px;
  }

  .service-card h3,
  .result-card h3,
  .detail-card h3 {
    font-size: clamp(22px, 6vw, 30px);
    line-height: 1.15;
  }

  .service-card p,
  .result-card p,
  .detail-card p,
  .review-card p {
    font-size: 16px;
    line-height: 1.55;
  }
}

@media (max-width: 768px) {
  :root {
    --page-gutter: 16px;
    --section-space: 40px;
  }

  html {
    scroll-padding-top: 84px;
  }

  body {
    overflow-x: hidden !important;
    padding-bottom: env(safe-area-inset-bottom, 0px) !important;
  }

  img,
  video {
    max-width: 100%;
  }

  .sticky-cta,
  .mobile-sticky-cta,
  .bottom-bar,
  .floating-actions {
    display: none !important;
  }

  .site-header {
    position: sticky;
    top: env(safe-area-inset-top, 0px);
    z-index: 80;
    padding: 6px 0 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header-shell {
    position: relative;
    padding: 8px 14px;
    background: rgba(10, 7, 5, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 0 24px 24px;
  }

  .header-card {
    min-height: 60px;
    padding: 8px 12px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    position: relative;
    background: rgba(14, 10, 8, 0.94) !important;
  }

  .brand-mark {
    font-size: 1.12rem;
    letter-spacing: 0.03em;
  }

  .header-cta {
    display: none !important;
  }

  .nav-toggle {
    display: inline-flex !important;
    min-width: 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    font-size: 0;
    color: transparent;
  }

  .nav-toggle::before {
    content: "\2630" !important;
    font-size: 24px;
    line-height: 1;
    color: var(--text);
    font-weight: 700;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    width: auto;
    max-width: none;
    padding: 18px;
    border-radius: 24px;
    background: rgba(14, 10, 8, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -10px, 0);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  }

  .site-nav .mobile-only {
    display: flex !important;
  }

  [data-nav-open="true"] .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .site-nav a,
  .site-nav .mobile-only {
    min-height: 50px;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
    text-align: left;
    padding: 12px 14px;
  }

  .site-nav a[href="/contacts#booking"],
  .site-nav a[href="#booking"] {
    background: linear-gradient(135deg, #e7b98c, #c8895f);
    color: #1a120d;
    font-weight: 700;
    border: none;
    justify-content: center;
  }

  .page-frame {
    padding: 14px 0 32px !important;
  }

  .page-frame > .section-shell:first-child,
  .page-frame > .page-hero:first-child,
  .page-frame > .about-hero:first-child,
  .page-frame > .service-hero:first-child {
    margin-top: 10px !important;
  }

  .section-shell {
    margin-top: 28px !important;
    padding: 18px !important;
    border-radius: 24px !important;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading.row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .home-hero {
    display: flex !important;
    flex-direction: column;
    gap: 18px;
    padding: 0;
  }

  .hero-copy {
    padding: 0 !important;
  }

  .hero-brand-mark {
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: clamp(29px, 8.2vw, 32px);
    line-height: 1.06;
    max-width: 100%;
    margin-bottom: 14px;
    color: #fbf3ed;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.22);
  }

  .hero-title-line:first-child {
    display: none;
  }

  .hero-title::before {
    content: "Природний результат";
    display: block;
    margin-bottom: 4px;
  }

  .home-hero-lead {
    display: none !important;
  }

  .mobile-hero-summary {
    display: block !important;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.82;
    margin-bottom: 0;
    max-width: 32ch;
  }

  .hero-badges {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-badges span {
    min-height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    opacity: 0.94;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-services-link {
    display: none !important;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }

  .hero-actions .luxe-button {
    box-shadow: 0 14px 34px rgba(213, 158, 117, 0.18);
  }

  .mobile-hero-socials {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mobile-hero-socials .button {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }

  .mobile-hero-socials a:first-child,
  .mobile-hero-socials a:last-child {
    display: flex !important;
  }

  .scroll-hint {
    display: none !important;
  }

  .hero-visual {
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .hero-poster,
  .mobile-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    align-items: stretch;
  }

  body[data-page-path="/"] .service-card,
  body[data-page-path="/services"] .service-card {
    display: grid !important;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    align-items: center;
    padding: 16px;
    min-height: 128px;
  }

  body[data-page-path="/"] .service-card > .service-image,
  body[data-page-path="/services"] .service-card > .service-image {
    width: 96px;
    height: 96px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
  }

  body[data-page-path="/"] .service-card .service-image img,
  body[data-page-path="/services"] .service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body[data-page-path="/"] .service-card-copy,
  body[data-page-path="/services"] .service-card-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 !important;
    pointer-events: auto;
    position: relative;
    z-index: 5;
  }

  body[data-page-path="/"] .service-card-copy .eyebrow,
  body[data-page-path="/services"] .service-card-copy .eyebrow {
    display: none !important;
  }

  body[data-page-path="/"] .service-card h3,
  body[data-page-path="/services"] .service-card h3 {
    font-size: 19px;
    line-height: 1.15;
    margin: 0;
  }

  body[data-page-path="/"] .service-card-copy > p:not(.service-result),
  body[data-page-path="/services"] .service-card-copy > p:not(.service-result) {
    font-size: 14px;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body[data-page-path="/"] .service-result,
  body[data-page-path="/services"] .service-result,
  body[data-page-path="/"] .service-detail-button,
  body[data-page-path="/services"] .service-detail-button {
    display: none !important;
  }

  body[data-page-path="/"] .service-card-footer,
  body[data-page-path="/services"] .service-card-footer {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 0;
    pointer-events: auto;
  }

  body[data-page-path="/"] .service-meta,
  body[data-page-path="/services"] .service-meta {
    display: flex;
    gap: 8px;
    order: 1;
  }

  body[data-page-path="/"] .meta-chip,
  body[data-page-path="/services"] .meta-chip {
    min-height: 34px;
    height: 34px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }

  body[data-page-path="/"] .service-book-button,
  body[data-page-path="/services"] .service-book-button {
    order: 2;
    width: 100%;
    min-height: 44px;
    justify-content: center;
    font-size: 14px;
    pointer-events: auto;
    position: relative;
    z-index: 6;
  }

  .mobile-card-stretch {
    display: none !important;
  }

  .home-results-desktop {
    display: none !important;
  }

  .home-results-mobile {
    display: block !important;
  }

  .mobile-results-compact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .before-after-slider {
    aspect-ratio: 4 / 5;
    min-height: 280px;
  }

  .before-after-slider input[type="range"] {
    height: 44px;
    min-height: 44px;
  }

  .home-results-mobile .result-card {
    gap: 0;
  }

  .mobile-result-card .before-after-slider input[type="range"] {
    display: block;
  }

  .result-image img,
  .before-after-slider > img,
  .after-layer img {
    object-fit: cover;
    object-position: center top;
    background: transparent;
  }

  .before-after-labels span {
    font-size: 13px;
    font-weight: 700;
  }

  h1 {
    font-size: clamp(34px, 9vw, 38px);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(28px, 7vw, 34px);
    line-height: 1.1;
  }

  h3 {
    font-size: 20px;
    line-height: 1.16;
  }

  p,
  li,
  input,
  textarea,
  select {
    font-size: 15px;
    line-height: 1.5;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .booking-layout {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    width: 100%;
    min-height: 52px;
  }

  .checkbox-row {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: start;
    gap: 10px;
    text-align: left;
  }

  .checkbox-row input {
    width: 18px;
    height: 18px;
    min-height: 18px;
    margin-top: 3px;
  }

  .booking-form .full-width,
  .booking-form button[type="submit"] {
    width: 100%;
    min-height: 54px;
  }

  .cursor-glow,
  .hero-light,
  .parallax-layer {
    display: none !important;
  }

  .hover-glow {
    transition: transform 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
  }

  .hover-glow:hover {
    transform: none;
  }

  .button,
  .site-nav a,
  .meta-chip {
    transition: transform 0.18s ease, opacity 0.18s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  }

  .button:active,
  .site-nav a:active {
    transform: scale(0.98);
  }
}

.section-shell,
section {
  scroll-margin-top: 96px;
}

.service-card-copy,
.result-copy,
.blog-card-copy {
  line-height: 1.5;
}

@media (max-width: 768px) {
  h1,
  .hero-title {
    font-size: clamp(34px, 9vw, 42px) !important;
    line-height: 1.05 !important;
  }

  h2 {
    font-size: clamp(28px, 7vw, 36px) !important;
  }

  h3 {
    font-size: 22px !important;
  }

  .section-shell {
    padding: 22px !important;
    margin-block: 28px !important;
  }

  .service-card,
  .result-card,
  .booking-form-panel {
    border-radius: 24px !important;
  }

  .luxe-button,
  .service-book-button,
  .booking-secondary-btn,
  button[type="submit"] {
    min-height: 52px;
  }
}

/* Release stability overrides */
:root {
  --release-shell-width: min(100% - 32px, 1180px);
  --release-header-bg: rgba(12, 8, 7, 0.92);
  --release-header-border: rgba(255, 255, 255, 0.09);
}

html,
body {
  overflow-x: hidden;
}

body[data-nav-locked="true"] {
  overflow: hidden;
}

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

.page-frame,
.header-shell {
  width: var(--release-shell-width);
  max-width: 1180px;
}

.page-frame > .section-shell,
.page-frame > .page-hero,
.page-frame > .service-hero,
.page-frame > .about-hero,
.page-frame > .article-shell {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

.page-hero-copy,
.hero-copy,
.service-hero-copy,
.about-hero-copy,
.lead {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000 !important;
  padding: 12px 0 0;
  background: transparent !important;
  isolation: isolate;
}

.site-header::before,
.site-header::after,
.header-shell::before,
.header-shell::after,
.header-card::before,
.header-card::after,
.site-nav::before,
.site-nav::after {
  content: none !important;
  display: none !important;
  pointer-events: none !important;
}

.header-shell {
  position: relative;
  z-index: 1001;
  background: transparent !important;
  overflow: visible !important;
}

.header-card {
  position: relative;
  z-index: 1002;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  min-height: 64px;
  padding: 12px 18px;
  border: 1px solid var(--release-header-border);
  border-radius: 20px;
  background: var(--release-header-bg) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  overflow: visible;
}

.header-card > *,
.site-nav a,
.header-cta a,
.nav-toggle {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.brand {
  min-width: 0;
}

.brand-mark {
  font-size: clamp(1.12rem, 1.3vw, 1.42rem);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow-wrap: normal;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow: visible;
}

.site-nav a,
.header-contact,
.button,
.sticky-cta-link,
.service-card h3,
.result-card h3,
.blog-card h3,
.detail-card h3,
.footer-card h2,
.faq-item summary,
.contact-card strong,
.contact-card span,
.service-card p,
.result-copy p,
.blog-card p,
.detail-card p,
.footer-card p,
.booking-form-panel label,
.meta-chip {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-nav a {
  flex: 0 1 auto;
  min-width: 0;
  padding: 9px 12px;
  white-space: nowrap;
}

.header-cta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}

.header-cta .button,
.header-cta .header-contact {
  white-space: nowrap;
}

h1,
.hero-title {
  font-size: clamp(42px, 5vw, 74px) !important;
  line-height: 1.06 !important;
}

h2 {
  font-size: clamp(32px, 4vw, 56px) !important;
  line-height: 1.1 !important;
}

h3 {
  font-size: clamp(22px, 2.2vw, 30px) !important;
  line-height: 1.16 !important;
}

body,
p,
li,
span,
a,
button,
input,
textarea,
select {
  font-size: 16px;
  line-height: 1.58;
}

.section-shell {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding: 28px;
  overflow: visible;
}

.hero-highlights,
.trust-grid,
.stats-grid,
.detail-grid,
.faq-grid,
.review-grid,
.value-grid,
.journey-grid,
.pill-grid,
.blog-grid,
.services-grid,
.results-grid,
.faq-category-grid,
.contact-layout,
.contact-details,
.booking-layout,
.site-footer {
  align-items: stretch;
}

.service-card,
.result-card,
.blog-card,
.detail-card,
.footer-card,
.booking-form-panel {
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.service-card,
.result-card,
.blog-card {
  height: 100%;
}

.service-card,
.blog-card,
.result-card,
.detail-card,
.faq-item,
.contact-card,
.booking-form-panel,
.footer-card,
.mini-panel,
.faq-category-card {
  min-width: 0;
}

.service-card > .image-frame,
.blog-card > .image-frame,
.service-image {
  aspect-ratio: 4 / 3 !important;
}

.service-card > .image-frame img,
.blog-card > .image-frame img,
.service-image img,
.article-cover,
.hero-image img,
.result-image img,
.before-after-slider > img,
.after-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-image,
.before-after-slider {
  aspect-ratio: 4 / 5 !important;
  background: rgba(255, 255, 255, 0.02);
}

.before-after-slider,
.before-after-slider input[type="range"] {
  touch-action: pan-y;
}

.after-layer,
.before-after-labels {
  pointer-events: none;
}

.before-after-slider input[type="range"] {
  pointer-events: auto;
}

.service-card-copy,
.blog-card-copy,
.result-copy,
.booking-form-content,
.booking-success {
  min-width: 0;
}

.service-card-footer,
.cta-row,
.booking-actions,
.footer-links {
  flex-wrap: wrap;
}

.service-card .button,
.blog-card .button,
.result-card .button,
.booking-form-panel .button,
.booking-form-panel button[type="submit"],
.sticky-cta-link {
  max-width: 100%;
  box-sizing: border-box;
}

.mobile-card-stretch {
  display: none !important;
  pointer-events: none !important;
}

.sticky-cta {
  z-index: 980 !important;
}

@media (max-width: 1024px) {
  h1,
  .hero-title {
    font-size: clamp(34px, 7vw, 52px) !important;
  }

  h2 {
    font-size: clamp(30px, 5vw, 44px) !important;
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  [data-nav-open="true"] .site-nav {
    display: grid !important;
  }
}

@media (min-width: 901px) {
  .header-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .site-nav {
    position: static;
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    max-height: none;
    overflow: visible;
  }

  .nav-toggle {
    display: none !important;
    position: static;
    transform: none;
  }

  .header-cta {
    position: static;
    transform: none;
    max-width: none;
    overflow: visible;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 88px !important;
  }

  .page-frame {
    width: var(--release-shell-width);
  }

  .header-shell {
    width: min(100% - 20px, 1180px);
  }

  .site-header {
    padding-top: 8px;
  }

  .header-card {
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 60px;
    padding: 10px 124px 10px 10px;
    gap: 6px;
  }

  .brand {
    align-self: center;
  }

  .brand-mark {
    max-width: 112px;
    font-size: 0.84rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
    line-height: 1.05;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-cta {
    display: flex !important;
    position: absolute;
    top: 10px;
    right: 80px;
    max-width: none;
    gap: 6px;
    overflow: visible;
    transform: translateX(-38px);
  }

  .header-cta .header-contact {
    display: none !important;
  }

  .header-cta .button {
    display: inline-flex !important;
    flex: 0 0 auto;
    width: auto !important;
    min-height: 40px;
    min-width: 60px;
    max-width: 60px;
    padding: 0 8px;
    border-radius: 12px;
    font-size: 0;
    letter-spacing: 0;
    overflow: hidden;
  }

  .header-cta .button::after {
    content: "Запис";
    font-size: 0.68rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .nav-toggle {
    display: inline-flex !important;
    position: absolute;
    top: 10px;
    right: 14px;
    width: 56px;
    min-width: 56px;
    height: 40px;
    padding: 0 6px;
    border-radius: 12px;
    font-size: 0.68rem;
    color: var(--text);
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transform: translateX(-38px);
  }

  .nav-toggle::before {
    content: none !important;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid !important;
    grid-column: 1 / -1;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 8, 7, 0.98);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
    max-height: calc(100vh - 96px);
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -8px, 0);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  [data-nav-open="true"] .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .site-nav a,
  .site-nav .mobile-only {
    display: flex !important;
    min-height: 48px;
    align-items: center;
    justify-content: flex-start;
    white-space: normal;
  }

  h1,
  .hero-title {
    font-size: clamp(30px, 9vw, 42px) !important;
  }

  h2 {
    font-size: clamp(26px, 7vw, 34px) !important;
  }

  h3 {
    font-size: clamp(20px, 5.2vw, 24px) !important;
  }

  body,
  p,
  li,
  span,
  a,
  button,
  input,
  textarea,
  select {
    font-size: 15px;
    line-height: 1.55;
  }

  .page-hero-copy p,
  .service-hero-copy p,
  .about-hero-copy p,
  .article-shell p {
    font-size: 14px;
    line-height: 1.58;
  }

  .section-shell,
  .page-hero-card,
  .hero-card,
  .article-shell,
  .footer-card,
  .booking-form-panel {
    padding: 20px !important;
    border-radius: 22px !important;
  }

  .hero-highlights,
  .trust-grid,
  .stats-grid,
  .detail-grid,
  .faq-grid,
  .review-grid,
  .value-grid,
  .journey-grid,
  .pill-grid,
  .blog-grid,
  .services-grid,
  .results-grid,
  .faq-category-grid,
  .contact-layout,
  .contact-details,
  .booking-layout,
  .site-footer,
  .booking-form {
    grid-template-columns: 1fr !important;
  }

  .service-card,
  .blog-card,
  .result-card,
  .detail-card,
  .booking-form-panel,
  .footer-card,
  .contact-card,
  .faq-category-card {
    width: 100%;
  }

  body[data-page-path="/"] .service-card,
  body[data-page-path="/services"] .service-card {
    grid-template-columns: 1fr !important;
    align-items: stretch;
    padding: 0;
    min-height: 0;
  }

  body[data-page-path="/"] .service-card > .service-image,
  body[data-page-path="/services"] .service-card > .service-image {
    width: 100%;
    height: auto;
    border-radius: 0;
  }

  body[data-page-path="/"] .service-card-copy,
  body[data-page-path="/services"] .service-card-copy,
  .blog-card-copy,
  .result-copy {
    padding: 18px !important;
  }

  .service-meta {
    grid-template-columns: 1fr;
  }

  .service-card .button,
  .blog-card .button,
  .result-card .button,
  .cta-row .button,
  .booking-actions .button,
  .booking-form-panel .button,
  .booking-form-panel button[type="submit"],
  .sticky-cta-link {
    width: 100%;
  }

  .sticky-cta {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    max-width: none;
    min-height: 0;
    padding: 6px;
    gap: 6px;
    border-radius: 16px;
    background: rgba(12, 8, 7, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  }

  .sticky-cta-link {
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
}

/* Regression fix */
.sticky-cta,
.mobile-sticky-cta,
.bottom-bar,
.floating-actions,
.mobile-cta {
  display: none !important;
}

body,
body[data-nav-locked="true"] {
  padding-bottom: 0 !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000 !important;
  background: transparent !important;
}

.site-header::before,
.site-header::after,
.header-shell::before,
.header-shell::after,
.header-card::before,
.header-card::after {
  content: none !important;
  display: none !important;
  pointer-events: none !important;
}

.header-card {
  min-height: 64px;
  padding: 12px 18px;
  background: rgba(12, 8, 7, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-nav,
.site-nav a,
.header-cta,
.header-cta a,
.nav-toggle {
  position: relative;
  z-index: 2;
}

h1,
h2,
h3,
.hero-title,
.section-heading h2,
.footer-title,
.booking-copy h2,
.detail-card h3,
.result-copy h3,
.service-card h3 {
  letter-spacing: 0 !important;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

h1,
.hero-title {
  font-size: clamp(40px, 4.6vw, 68px) !important;
  line-height: 0.98 !important;
}

h2,
.section-heading h2,
.footer-title,
.booking-copy h2 {
  font-size: clamp(30px, 3.4vw, 48px) !important;
  line-height: 1.08 !important;
}

h3,
.detail-card h3,
.result-copy h3,
.service-card h3 {
  font-size: clamp(20px, 2vw, 28px) !important;
  line-height: 1.14 !important;
}

.hero-title {
  max-width: 16ch;
  text-wrap: balance;
}

.hero-title-line--mobile {
  display: none;
}

.hero-title-line--desktop {
  display: inline;
}

.page-hero-copy,
.hero-copy,
.service-hero-copy,
.about-hero-copy,
.section-heading,
.section-heading > div,
.section-heading.row,
.section-heading.row > div {
  min-width: 0;
}

.section-heading.row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 18px;
}

.section-heading.row .text-link {
  align-self: start;
  justify-self: start;
  white-space: normal;
}

.mobile-card-stretch,
.site-nav a[href="/contacts#booking"] {
  display: none !important;
  pointer-events: none !important;
}

@media (max-width: 900px) {
  .site-header {
    padding-top: 8px;
  }

  .header-card {
    display: flex !important;
    align-items: center;
    min-height: 56px;
    padding: 8px 12px;
    gap: 10px;
  }

  .brand {
    margin-right: auto;
  }

  .header-cta {
    display: none !important;
  }

  .brand-mark {
    max-width: none;
    font-size: 1rem;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: inline-flex !important;
    position: static;
    transform: none !important;
    width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 1.35rem;
    line-height: 1;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-toggle::before,
  .header-cta .button::after {
    content: none !important;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 8, 7, 0.97);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
    max-height: calc(100vh - 96px);
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -8px, 0);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  [data-nav-open="true"] .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .site-nav a,
  .site-nav .mobile-only {
    display: block !important;
    padding: 12px 0;
    min-height: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0;
    background: transparent !important;
    font-size: 15px;
    line-height: 1.35;
    color: var(--text);
    text-align: left;
    white-space: normal;
  }

  .site-nav a:last-child,
  .site-nav .mobile-only:last-child {
    border-bottom: 0;
  }

  .mobile-only.mobile-hero-socials {
    display: none !important;
  }

  h1,
  .hero-title {
    font-size: clamp(30px, 8.6vw, 38px) !important;
    line-height: 1.05 !important;
  }

  h2,
  .section-heading h2,
  .footer-title,
  .booking-copy h2 {
    font-size: clamp(24px, 6.6vw, 30px) !important;
    line-height: 1.1 !important;
  }

  h3,
  .detail-card h3,
  .result-copy h3,
  .service-card h3 {
    font-size: clamp(18px, 5vw, 22px) !important;
    line-height: 1.18 !important;
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-title-line--desktop {
    display: none;
  }

  .hero-title-line--mobile {
    display: inline;
  }

  .section-heading.row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-heading.row .text-link {
    justify-self: start;
    align-self: start;
  }
}

#home-services .section-heading.row,
.home-results-desktop .section-heading.row,
.page-frame .section-heading.row {
  grid-template-columns: 1fr !important;
}

#home-services .section-heading.row .text-link,
.home-results-desktop .section-heading.row .text-link,
.page-frame .section-heading.row .text-link {
  justify-self: start !important;
  align-self: start !important;
  margin-top: 2px;
}

.section-heading h2,
.home-services-title {
  font-size: clamp(28px, 3vw, 44px) !important;
}

body[data-page-path="/"] .hero-title {
  font-size: clamp(34px, 3.6vw, 56px) !important;
  line-height: 1.02 !important;
  max-width: 12ch;
}

body[data-page-path="/"] .hero-title-line--desktop,
body[data-page-path="/"] .hero-title-line--mobile {
  display: block;
}

#home-services .home-services-title,
.home-results-desktop .section-heading h2 {
  font-size: clamp(26px, 2.8vw, 40px) !important;
  line-height: 1.06 !important;
  max-width: 18ch;
}

@media (max-width: 900px) {
  html,
  body,
  .page-frame,
  .header-shell,
  .header-card,
  .section-shell,
  .home-hero-shell,
  .hero-grid,
  .hero-copy,
  .page-hero,
  .page-hero-card {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .page-frame,
  .header-shell {
    width: calc(100vw - 24px) !important;
  }

  .section-shell,
  .home-hero-shell,
  .page-hero-card {
    width: 100% !important;
  }

  .hero-copy p,
  .page-hero-copy p,
  .service-card p,
  .result-copy p,
  .detail-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  body[data-page-path="/"] .hero-title {
    font-size: clamp(28px, 8vw, 38px) !important;
    line-height: 1.08 !important;
    max-width: 100%;
  }

  body[data-page-path="/"] .hero-title-line--desktop {
    display: none !important;
  }

  body[data-page-path="/"] .hero-title-line--mobile {
    display: block !important;
  }
}

/* Final regression fix: sticky header, working mobile menu, heading overflow */
html,
body {
  overflow: visible !important;
}

.sticky-cta {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body {
  padding-bottom: 0 !important;
}

main,
.page-frame,
.site-header,
.header-shell,
.header-card {
  transform: none !important;
  filter: none !important;
  perspective: none !important;
}

main,
.page-frame {
  overflow: visible !important;
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  opacity: 1 !important;
  background: transparent !important;
}

.site-header,
.site-header * {
  pointer-events: auto;
}

.site-header::before,
.site-header::after,
.header-card::before,
.header-card::after {
  content: none !important;
}

.section-heading,
.section-heading * {
  min-width: 0;
  max-width: 100%;
}

h1,
h2,
h3 {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

h1,
.hero-title {
  font-size: clamp(36px, 5vw, 64px) !important;
  line-height: 1.05 !important;
  letter-spacing: normal !important;
}

h2,
.section-heading h2,
.footer-title,
.booking-copy h2 {
  font-size: clamp(30px, 3.5vw, 48px) !important;
  line-height: 1.08 !important;
}

h3,
.detail-card h3,
.result-copy h3,
.service-card h3 {
  font-size: clamp(22px, 2vw, 30px) !important;
  line-height: 1.14 !important;
}

.section-heading.row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 24px !important;
  align-items: end !important;
}

.section-heading.row > div {
  min-width: 0;
}

.section-heading.row .text-link {
  max-width: 100%;
  white-space: normal;
}

body[data-page-path="/"] .hero-title {
  max-width: 100% !important;
}

body[data-page-path="/"] .hero-title-line,
body[data-page-path="/"] .hero-title-line--wide {
  display: block;
}

.site-nav a[href="/contacts#booking"],
.mobile-card-stretch {
  display: none !important;
  pointer-events: none !important;
}

@media (min-width: 769px) {
  .site-nav {
    display: flex !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .nav-toggle {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .header-card {
    min-height: 56px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .brand {
    margin-right: auto;
  }

  .header-cta {
    display: none !important;
  }

  .nav-toggle {
    display: inline-flex !important;
    width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 0;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem !important;
    line-height: 1 !important;
    color: var(--text) !important;
  }

  .nav-toggle::after {
    content: none !important;
  }

  .site-nav {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    padding: 14px !important;
    background: rgba(12, 8, 7, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 20px !important;
    z-index: 10000 !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28) !important;
    max-height: calc(100vh - 90px) !important;
    overflow: auto !important;
  }

  .site-header[data-nav-open="true"] .site-nav {
    display: flex !important;
    flex-direction: column !important;
  }

  .site-nav a,
  .site-nav .mobile-only {
    width: 100%;
  }

  h1,
  .hero-title {
    font-size: clamp(32px, 9vw, 40px) !important;
    line-height: 1.08 !important;
  }

  h2,
  .section-heading h2,
  .footer-title,
  .booking-copy h2 {
    font-size: clamp(26px, 7vw, 34px) !important;
  }

  h3,
  .detail-card h3,
  .result-copy h3,
  .service-card h3 {
    font-size: clamp(20px, 6vw, 26px) !important;
  }

  .section-heading.row {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}

/* Narrow regression cleanup */
.hero-title::before {
  content: none !important;
}

.hero-title-line:first-child {
  display: block !important;
}

.hero-title-line,
.hero-title-line--wide,
.hero-title-line--desktop,
.hero-title-line--mobile {
  white-space: normal !important;
}

#home-services .home-services-title,
.home-results-desktop .section-heading h2,
.page-frame .section-heading h2 {
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
}

@media (min-width: 769px) {
  #home-services .section-heading.row,
  .home-results-desktop .section-heading.row,
  .page-frame .section-heading.row {
    grid-template-columns: minmax(0, 1fr) auto !important;
  }

  #home-services .section-heading.row .text-link,
  .home-results-desktop .section-heading.row .text-link,
  .page-frame .section-heading.row .text-link {
    justify-self: end !important;
    align-self: end !important;
  }

  #home-services .home-services-title,
  .home-results-desktop .section-heading h2 {
    font-size: clamp(30px, 3.5vw, 48px) !important;
    line-height: 1.08 !important;
  }
}

@media (max-width: 768px) {
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    padding-top: 8px !important;
    padding-bottom: 0 !important;
    overflow: visible !important;
  }

  .header-shell {
    width: calc(100% - 16px) !important;
    max-width: none !important;
    padding: 0 !important;
    margin-inline: auto !important;
    overflow: visible !important;
  }

  .header-card {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    position: relative !important;
    width: 100% !important;
    padding-right: 56px !important;
    gap: 8px !important;
    overflow: visible !important;
  }

  .header-card::before,
  .header-card::after {
    pointer-events: none !important;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
    padding-right: 8px;
    overflow: hidden;
  }

  .brand-mark {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    flex: 0 0 40px;
    margin-left: 0;
    position: absolute !important;
    top: 50%;
    right: 8px;
    transform: translateY(-50%) !important;
    z-index: 10001 !important;
    pointer-events: auto !important;
  }

  .nav-toggle::before,
  .nav-toggle::after {
    pointer-events: none !important;
  }

  .site-nav {
    order: 3;
    width: 100% !important;
    margin-top: 10px;
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .site-header[data-nav-open="true"] .site-nav,
  [data-nav-root][data-nav-open="true"] .site-nav {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    flex-direction: column !important;
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10000 !important;
    padding: 14px !important;
    background: rgba(12, 8, 7, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 20px !important;
  }

  .site-nav a {
    display: block !important;
    padding: 12px 14px !important;
    color: #f5ede6 !important;
    text-decoration: none !important;
  }

  .site-header::before,
  .site-header::after {
    pointer-events: none !important;
  }
}

/* Heading scale normalization. Keep hero h1 unchanged. */
h2,
.section-heading h2,
.section-title {
  font-size: clamp(22px, 3vw, 36px) !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
}

h3,
.section-heading h3 {
  font-size: clamp(18px, 2.2vw, 24px) !important;
  line-height: 1.3 !important;
  font-weight: 500 !important;
}

h4 {
  font-size: 16px !important;
  line-height: 1.4 !important;
}

.card h2,
.card h3,
.service-card h2,
.service-card h3,
.blog-card h2,
.blog-card h3,
.result-card h2,
.result-card h3,
.detail-card h2,
.detail-card h3,
.mini-panel h2,
.mini-panel h3,
.review-card h2,
.review-card h3,
.team-card h2,
.team-card h3,
.certificate-card h2,
.certificate-card h3,
.footer-card h2,
.footer-card h3,
.service-link-card h2,
.service-link-card h3,
.card-title {
  margin-bottom: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 18px !important;
  line-height: 1.3 !important;
  font-weight: 500 !important;
}

.section-title {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .card h2,
  .card h3,
  .service-card h2,
  .service-card h3,
  .blog-card h2,
  .blog-card h3,
  .result-card h2,
  .result-card h3,
  .detail-card h2,
  .detail-card h3,
  .mini-panel h2,
  .mini-panel h3,
  .review-card h2,
  .review-card h3,
  .team-card h2,
  .team-card h3,
  .certificate-card h2,
  .certificate-card h3,
  .footer-card h2,
  .footer-card h3,
  .service-link-card h2,
  .service-link-card h3,
  .card-title {
    font-size: 20px !important;
  }
}

/* Inner page heading balance. Home hero typography stays untouched. */
.page-hero h1,
.about-hero h1,
.service-hero h1,
.article-shell > h1 {
  max-width: 900px;
  font-size: clamp(26px, 3vw, 40px) !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
}

.page-hero .lead,
.about-hero .lead,
.service-hero .lead,
.article-shell > .lead,
.section-heading .lead,
.subtitle {
  max-width: 600px;
}

.section-header,
.section-heading {
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .page-hero h1,
  .about-hero h1,
  .service-hero h1,
  .article-shell > h1 {
    font-size: 24px !important;
  }
}

/* Section-level heading reduction. Hero and card headings stay unchanged. */
.section-heading h2,
.booking-copy h2,
.home-services-title,
.home-results-desktop .section-heading h2,
.home-results-mobile .section-heading h2 {
  max-width: 780px;
  font-size: clamp(26px, 2.4vw, 38px) !important;
  line-height: 1.12 !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .section-heading h2,
  .booking-copy h2,
  .home-services-title,
  .home-results-desktop .section-heading h2,
  .home-results-mobile .section-heading h2 {
    max-width: 100%;
    font-size: clamp(24px, 6vw, 30px) !important;
    line-height: 1.16 !important;
  }
}

/* Home services title only. */
#home-services .home-services-title {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(24px, 2.2vw, 34px) !important;
  line-height: 1.15 !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  #home-services .home-services-title {
    font-size: 24px !important;
    line-height: 1.2 !important;
  }
}

/* Mobile-first cleanup only. Desktop stays unchanged. */
@media (max-width: 768px) {
  .page-frame,
  .section-shell {
    width: calc(100% - 24px);
    margin-inline: auto;
  }

  .section-shell {
    padding: 24px 20px;
    border-radius: 24px;
    margin-bottom: 28px;
  }

  .hero-title,
  .page-hero h1,
  .section-heading h1,
  .section-heading h2,
  .booking-copy h2,
  .home-services-title {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 34px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em;
  }

  .service-card h3,
  .result-card h3,
  .detail-card h3,
  .review-card h3,
  .mini-panel strong,
  .booking-form-panel h3 {
    font-size: clamp(20px, 5.6vw, 24px) !important;
    line-height: 1.16 !important;
  }

  .lead,
  p,
  .service-card p,
  .result-card p,
  .detail-card p,
  .review-card p {
    font-size: 16px;
    line-height: 1.55;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .button,
  .luxe-button,
  .ghost-button,
  .booking-secondary-btn {
    min-height: 48px;
    padding: 13px 18px;
    font-size: 14px;
    letter-spacing: 0.08em;
    border-radius: 999px;
  }

  .cta-row,
  .hero-actions,
  .booking-actions {
    gap: 10px;
    flex-wrap: wrap;
  }

  .booking-actions .button {
    width: 100%;
  }

  .services-grid,
  .results-grid,
  .journey-grid,
  .value-grid,
  .review-grid,
  .pill-grid,
  .booking-layout {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .service-card,
  .result-card,
  .detail-card,
  .review-card,
  .mini-panel,
  .booking-form-panel {
    border-radius: 24px;
    padding: 20px;
  }

  .service-card {
    padding: 0;
    overflow: hidden;
  }

  .service-card-copy,
  .result-copy {
    padding: 20px;
  }

  .service-image,
  .result-image,
  .blog-card img {
    aspect-ratio: 4 / 3;
    height: auto !important;
    max-height: none;
  }

  .booking-form {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    min-height: 48px;
    font-size: 15px;
    padding: 13px 14px;
  }

  .hero-badges,
  .booking-chips,
  .service-meta {
    gap: 8px;
  }

  .meta-chip,
  .hero-badges span {
    font-size: 13px;
    padding: 8px 12px;
  }

  body[data-page-path="/"] #home-services .services-grid .service-card:nth-child(n+4) {
    display: none !important;
  }
}

/* Mobile typography and card scale refinement. */
@media (max-width: 768px) {
  .section-heading h2,
  .home-services-title,
  .home-results-mobile .section-heading h2,
  .home-results-desktop .section-heading h2,
  .booking-copy h2,
  .mobile-trust-section .section-heading h2,
  .home-value-section .section-heading h2,
  .home-reviews-section .section-heading h2 {
    max-width: 100%;
    font-size: clamp(24px, 6.4vw, 30px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.015em;
  }

  .service-card h3,
  .result-card h3,
  .detail-card h3,
  .review-card h3,
  .mini-panel strong {
    font-size: clamp(20px, 5.4vw, 23px) !important;
    line-height: 1.16 !important;
    letter-spacing: -0.01em;
  }

  .result-card {
    padding: 16px !important;
    border-radius: 24px;
  }

  .result-copy {
    padding: 18px 0 0 !important;
  }

  .result-image {
    aspect-ratio: 4 / 5 !important;
    max-height: 440px;
    border-radius: 20px;
    overflow: hidden;
  }

  .result-copy p {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .result-copy .text-link {
    font-size: 15px !important;
    line-height: 1.4;
  }

  .service-card-copy {
    padding: 18px !important;
  }

  .service-card p {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .service-image {
    aspect-ratio: 4 / 3 !important;
  }

  .service-meta {
    margin-top: 14px;
  }

  .service-book-button {
    margin-top: 12px;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
  }

  section,
  .section-shell,
  [id] {
    scroll-margin-top: 92px;
  }

  .site-header + .page-frame {
    padding-top: 10px;
  }
}

/* Mobile booking form refinement. */
@media (max-width: 768px) {
  .booking-section {
    padding: 22px 18px !important;
    border-radius: 24px;
  }

  .booking-layout {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .booking-copy h2 {
    max-width: 100%;
    font-size: clamp(24px, 6.2vw, 30px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.015em;
  }

  .booking-copy .lead {
    margin-top: 12px;
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .booking-chips {
    gap: 8px;
    margin-top: 16px;
  }

  .booking-chips .meta-chip {
    font-size: 13px !important;
    padding: 8px 12px !important;
  }

  .booking-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 16px;
  }

  .booking-actions .button {
    width: 100%;
    min-height: 46px !important;
    padding: 12px 16px !important;
    font-size: 13px !important;
    letter-spacing: 0.08em;
  }

  .booking-form-panel {
    padding: 18px !important;
    border-radius: 22px !important;
  }

  .booking-form-panel h3 {
    font-size: clamp(22px, 5.6vw, 26px) !important;
    line-height: 1.16 !important;
    letter-spacing: -0.01em;
  }

  .booking-form {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 16px;
  }

  .booking-form label {
    gap: 7px;
    font-size: 13px !important;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    width: 100%;
    min-height: 46px !important;
    padding: 12px 13px !important;
    font-size: 15px !important;
    border-radius: 14px !important;
  }

  .booking-form textarea {
    min-height: 104px !important;
    resize: vertical;
  }

  .checkbox-row {
    align-items: flex-start;
    gap: 9px;
  }

  .checkbox-row span {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  .booking-form button[type="submit"],
  .booking-form .full-width {
    min-height: 46px !important;
    padding: 12px 16px !important;
    font-size: 13px !important;
    letter-spacing: 0.08em;
  }
}

/* Luxury premium layer. Keep last. */
:root {
  --luxury-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --luxury-gold: #d8ae78;
  --luxury-cream: #f4ebe1;
  --luxury-muted: rgba(244, 235, 225, 0.72);
  --luxury-glass: rgba(0, 0, 0, 0.4);
  --luxury-panel: rgba(22, 15, 12, 0.62);
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  padding-block: 6px !important;
  background: transparent !important;
  transition:
    padding 0.34s var(--luxury-ease),
    transform 0.34s var(--luxury-ease),
    background 0.34s var(--luxury-ease);
}

.site-header::after {
  content: "" !important;
  display: block !important;
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 0;
  width: min(1180px, calc(100vw - 32px));
  height: 1px;
  pointer-events: none;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(216, 174, 120, 0.62), transparent);
}

.header-card {
  min-height: 44px !important;
  padding: 7px 12px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--luxury-glass) !important;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22) !important;
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
  transition:
    min-height 0.34s var(--luxury-ease),
    padding 0.34s var(--luxury-ease),
    box-shadow 0.34s var(--luxury-ease),
    background 0.34s var(--luxury-ease);
}

.site-header.is-scrolled .header-card {
  min-height: 40px !important;
  background: rgba(0, 0, 0, 0.52) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3) !important;
}

.brand-mark,
.hero-brand-mark span,
.hero-title,
.section-heading h2,
.booking-copy h2,
.service-card h3,
.result-copy h3,
.detail-card h3,
.footer-title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif !important;
  letter-spacing: 0.01em;
}

body,
button,
input,
select,
textarea {
  font-family: "Manrope", "Inter", system-ui, sans-serif !important;
}

.hero-title {
  letter-spacing: -0.03em !important;
  text-wrap: balance;
}

.hero-copy {
  position: relative;
  isolation: isolate;
}

.home-hero-shell,
.page-hero,
.service-hero,
.about-hero {
  position: relative;
  overflow: hidden;
}

.home-hero-shell::before,
.page-hero::before,
.service-hero::before,
.about-hero::before {
  content: "";
  position: absolute;
  inset: -24% -18% auto auto;
  width: min(560px, 72vw);
  height: min(560px, 72vw);
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 38%, rgba(216, 174, 120, 0.24), transparent 56%),
    radial-gradient(circle at 62% 58%, rgba(255, 240, 220, 0.12), transparent 48%);
  filter: blur(18px);
  opacity: 0.9;
  animation: luxuryLightDrift 9s var(--luxury-ease) infinite alternate;
}

@keyframes luxuryLightDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-18px, 22px, 0) scale(1.08);
  }
}

.button,
.luxe-button,
.ghost-button,
.header-contact,
.text-link {
  transition:
    transform 0.28s var(--luxury-ease),
    box-shadow 0.28s var(--luxury-ease),
    border-color 0.28s var(--luxury-ease),
    background 0.28s var(--luxury-ease),
    color 0.28s var(--luxury-ease),
    opacity 0.28s var(--luxury-ease) !important;
}

.button:hover,
.luxe-button:hover,
.ghost-button:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 14px 34px rgba(216, 174, 120, 0.18), 0 18px 42px rgba(0, 0, 0, 0.28) !important;
}

.button:active,
.luxe-button:active,
.ghost-button:active,
.nav-toggle:active {
  transform: translateY(0) scale(0.985) !important;
}

.service-card,
.result-card,
.blog-card,
.detail-card,
.review-card,
.mini-panel,
.booking-form-panel,
.footer-card {
  transition:
    transform 0.42s var(--luxury-ease),
    box-shadow 0.42s var(--luxury-ease),
    border-color 0.42s var(--luxury-ease),
    background 0.42s var(--luxury-ease) !important;
}

.service-card:hover,
.result-card:hover,
.blog-card:hover,
.detail-card:hover,
.review-card:hover,
.mini-panel:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(216, 174, 120, 0.12) !important;
}

.service-image,
.result-image,
.blog-card .image-frame,
.hero-image {
  position: relative;
  overflow: hidden;
  background: rgba(244, 235, 225, 0.08) !important;
}

.service-image::after,
.result-image::after,
.blog-card .image-frame::after,
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.3)),
    radial-gradient(circle at 24% 18%, rgba(255, 238, 214, 0.18), transparent 38%);
  opacity: 0.85;
}

.service-image img,
.result-image img,
.blog-card img,
.hero-image img,
.before-after-slider > img,
.after-layer img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: var(--image-position, center center);
  background: rgba(244, 235, 225, 0.08);
  transition: transform 0.72s var(--luxury-ease), filter 0.72s var(--luxury-ease);
}

.service-card:hover .service-image img,
.result-card:hover .result-image img,
.blog-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.03);
}

.before-after-slider {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 18px 52px rgba(0, 0, 0, 0.28);
}

.after-layer {
  transition: width 0.18s var(--luxury-ease);
  box-shadow: 8px 0 28px rgba(216, 174, 120, 0.2);
}

.after-layer::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(244, 235, 225, 0.96), transparent);
  box-shadow: 0 0 18px rgba(216, 174, 120, 0.72);
}

.before-after-labels span {
  border: 1px solid rgba(216, 174, 120, 0.28);
  background: rgba(0, 0, 0, 0.42);
  color: var(--luxury-cream);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.before-after-slider input[type="range"]::-webkit-slider-thumb {
  box-shadow: 0 0 0 8px rgba(216, 174, 120, 0.14), 0 0 22px rgba(216, 174, 120, 0.42) !important;
}

.before-after-slider input[type="range"]::-moz-range-thumb {
  box-shadow: 0 0 0 8px rgba(216, 174, 120, 0.14), 0 0 22px rgba(216, 174, 120, 0.42) !important;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.72s var(--luxury-ease),
    transform 0.72s var(--luxury-ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.section-shell:nth-of-type(even) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(216, 174, 120, 0.035)),
    var(--surface, rgba(18, 12, 10, 0.52));
}

.section-shell:nth-of-type(odd) {
  background:
    linear-gradient(145deg, rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.025)),
    var(--surface, rgba(18, 12, 10, 0.5));
}

@media (min-width: 900px) {
  .home-value-section .value-grid,
  .home-reviews-section .review-grid {
    align-items: stretch;
  }

  .home-value-section .detail-card:nth-child(2),
  .home-reviews-section .review-card:nth-child(2n) {
    transform: translateY(18px);
  }

  .home-value-section .detail-card:nth-child(2):hover,
  .home-reviews-section .review-card:nth-child(2n):hover {
    transform: translateY(12px) scale(1.02);
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 5px 0 !important;
  }

  .header-shell {
    width: calc(100% - 20px) !important;
  }

  .header-card {
    min-height: 42px !important;
    padding: 6px 8px 6px 14px !important;
    border-radius: 999px !important;
  }

  .brand-mark {
    font-size: 18px !important;
    line-height: 1 !important;
  }

  .nav-toggle {
    width: 36px !important;
    min-width: 36px !important;
    height: 36px !important;
    border-radius: 999px !important;
    z-index: 10003 !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(216, 174, 120, 0.2) !important;
  }

  .nav-toggle::before {
    content: "\2630" !important;
    font-size: 18px !important;
    line-height: 1 !important;
  }

  .nav-toggle {
    font-size: 0 !important;
  }

  .site-header[data-nav-open="true"] .nav-toggle::before,
  [data-nav-root][data-nav-open="true"] .nav-toggle::before {
    content: "\00d7" !important;
    font-size: 22px !important;
  }

  .site-nav {
    position: fixed !important;
    inset: 0 !important;
    z-index: 10000 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100vw !important;
    min-height: 100dvh !important;
    margin: 0 !important;
    padding: 86px 28px 34px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background:
      radial-gradient(circle at 78% 16%, rgba(216, 174, 120, 0.16), transparent 32%),
      linear-gradient(145deg, rgba(8, 6, 5, 0.96), rgba(26, 17, 13, 0.96)) !important;
    box-shadow: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate3d(0, -14px, 0) !important;
    transition:
      opacity 0.34s var(--luxury-ease),
      transform 0.34s var(--luxury-ease),
      visibility 0.34s var(--luxury-ease) !important;
  }

  .site-header[data-nav-open="true"] .site-nav,
  [data-nav-root][data-nav-open="true"] .site-nav {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) !important;
  }

  body[data-nav-locked="true"] {
    overflow: hidden;
  }

  .site-nav a,
  .site-nav .mobile-only {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 54px !important;
    padding: 0 0 12px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(216, 174, 120, 0.16) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(244, 235, 225, 0.76) !important;
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(30px, 9vw, 44px) !important;
    font-weight: 500 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em !important;
    transform: translateY(-8px);
    opacity: 0;
    transition:
      opacity 0.42s var(--luxury-ease),
      transform 0.42s var(--luxury-ease),
      color 0.24s var(--luxury-ease) !important;
  }

  .site-header[data-nav-open="true"] .site-nav a,
  .site-header[data-nav-open="true"] .site-nav .mobile-only {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--luxury-cream) !important;
  }

  body[data-page-path="/"] .site-nav a[href="/"],
  body[data-page-path="/services"] .site-nav a[href="/services"],
  body[data-page-path="/results"] .site-nav a[href="/results"],
  body[data-page-path="/about"] .site-nav a[href="/about"],
  body[data-page-path="/blog"] .site-nav a[href="/blog"],
  body[data-page-path="/faq"] .site-nav a[href="/faq"],
  body[data-page-path="/contacts"] .site-nav a[href="/contacts"] {
    color: var(--luxury-gold) !important;
  }

  .hero-title {
    font-size: clamp(31px, 8.4vw, 39px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em !important;
  }

  .home-hero-shell::before {
    inset: -12% -42% auto auto;
    width: 92vw;
    height: 92vw;
  }

  .hero-copy {
    gap: 14px !important;
  }

  .hero-actions .button,
  .mobile-hero-socials .button {
    min-height: 46px !important;
  }

  .section-shell {
    border-color: rgba(216, 174, 120, 0.1) !important;
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.18) !important;
  }

  .service-card,
  .result-card,
  .detail-card,
  .review-card,
  .mini-panel,
  .booking-form-panel {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(216, 174, 120, 0.035)),
      rgba(18, 12, 10, 0.66) !important;
    border-color: rgba(216, 174, 120, 0.12) !important;
  }

  .service-image {
    min-height: 0 !important;
  }

  .service-image,
  .service-image img {
    aspect-ratio: 4 / 3 !important;
  }

  .before-after-slider input[type="range"] {
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Final slider/menu regression lock. Must stay last. */
.before-after-slider {
  position: relative !important;
  overflow: hidden !important;
  --split: 50%;
}

.before-after-slider .after-layer,
.before-after-slider [data-after] {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  clip-path: inset(0 50% 0 0);
  pointer-events: none !important;
  z-index: 2 !important;
}

.before-after-slider input[type="range"] {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.001 !important;
  pointer-events: auto !important;
  z-index: 10 !important;
  cursor: ew-resize;
}

.before-after-slider::before {
  left: calc(var(--split, 50%) - 1px) !important;
}

.before-after-slider::after {
  left: calc(var(--split, 50%) - 17px) !important;
}

.before-after-labels span {
  background: rgba(10, 7, 6, 0.28) !important;
  color: rgba(255, 255, 255, 0.92) !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35) !important;
  box-shadow: none !important;
  border: 0 !important;
  outline: 0 !important;
  -webkit-text-stroke: 0 !important;
  border-radius: 999px !important;
  padding: 4px 8px !important;
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 14px !important;
  }

  .header-shell {
    width: 100% !important;
  }

  .site-header,
  .header-shell,
  .header-card {
    overflow: visible !important;
  }

  .header-card,
  .site-header.is-scrolled .header-card {
    min-height: 64px !important;
    padding: 10px 14px !important;
    border-radius: 26px !important;
  }

  .brand-mark {
    font-size: 24px !important;
    line-height: 1.1 !important;
  }

  .nav-toggle {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    border-radius: 18px !important;
    font-size: 24px !important;
  }

  .site-nav {
    position: absolute !important;
    inset: auto 12px auto 12px !important;
    top: calc(100% + 10px) !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    width: auto !important;
    min-height: 0 !important;
    max-height: min(70vh, 520px) !important;
    padding: 10px 16px !important;
    overflow-y: auto !important;
    background: rgba(10, 7, 6, 0.96) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border: 1px solid rgba(245, 237, 230, 0.12) !important;
    border-radius: 22px !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-6px) !important;
    z-index: 10000 !important;
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms ease !important;
  }

  .site-header[data-nav-open="true"] .site-nav,
  [data-nav-root][data-nav-open="true"] .site-nav {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .site-nav a,
  .site-nav .mobile-only {
    display: block !important;
    min-height: 0 !important;
    padding: 14px 4px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(245, 237, 230, 0.08) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(245, 237, 230, 0.88) !important;
    font-family: Inter, Manrope, sans-serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    text-decoration: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .site-nav a:last-child {
    border-bottom: 0 !important;
  }

  .site-nav a:first-child {
    color: #e5b485 !important;
  }

  body[data-nav-locked="true"] {
    overflow: auto !important;
  }

  .before-after-slider::after {
    left: calc(var(--split, 50%) - 16px) !important;
  }
}

/* True final mobile-only stability lock. Keep as EOF. */
@media (max-width: 768px) {
  .site-header {
    position: sticky !important;
    top: env(safe-area-inset-top, 0px) !important;
    z-index: 9999 !important;
    padding: 10px 14px !important;
    transform: none !important;
  }

  .header-shell,
  .header-card {
    position: relative !important;
    transform: none !important;
  }

  .header-card,
  .site-header.is-scrolled .header-card {
    min-height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 10px 14px !important;
    border-radius: 26px !important;
  }

  .header-cta {
    display: none !important;
  }

  .nav-toggle,
  .site-header .nav-toggle {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    translate: none !important;
    flex: 0 0 52px !important;
    width: 52px !important;
    min-width: 52px !important;
    height: 52px !important;
    margin: 0 !important;
    z-index: 2 !important;
  }

  .before-after-slider,
  .before-after-slider * {
    animation: none !important;
  }

  .before-after-slider {
    position: relative !important;
    overflow: hidden !important;
    transform: translateZ(0) !important;
    contain: layout paint;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .before-after-slider img,
  .before-after-slider .after-layer,
  .before-after-slider [data-after] {
    will-change: clip-path;
    backface-visibility: hidden;
  }

  .before-after-slider input[type="range"] {
    position: absolute !important;
    inset: auto auto 18px 8% !important;
    width: 84% !important;
    height: 44px !important;
    min-height: 44px !important;
    z-index: 20 !important;
    pointer-events: auto !important;
    touch-action: pan-y !important;
    opacity: 0.001 !important;
  }

  .before-after-slider::before,
  .before-after-slider::after,
  .after-layer,
  [data-after] {
    pointer-events: none !important;
  }

  .result-card,
  .before-after-slider,
  .result-image {
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .result-card:hover,
  .before-after-slider:hover {
    transform: none !important;
  }
}

/* Phone burger fixed corner lock. Keep as EOF. */
@media (max-width: 768px) {
  .nav-toggle,
  .site-header .nav-toggle,
  .site-header[data-nav-open="true"] .nav-toggle,
  [data-nav-root][data-nav-open="true"] .nav-toggle {
    position: fixed !important;
    top: calc(env(safe-area-inset-top, 0px) + 18px) !important;
    right: 18px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 20000 !important;
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    margin: 0 !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
    translate: none !important;
    pointer-events: auto !important;
  }
}

/* Phone burger fixed corner lock. Keep as EOF. */
@media (max-width: 768px) {
  .nav-toggle,
  .site-header .nav-toggle,
  .site-header[data-nav-open="true"] .nav-toggle,
  [data-nav-root][data-nav-open="true"] .nav-toggle {
    position: fixed !important;
    top: calc(env(safe-area-inset-top, 0px) + 18px) !important;
    right: 18px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 20000 !important;
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    margin: 0 !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
    translate: none !important;
    pointer-events: auto !important;
  }
}

/* Mobile-only fixed burger and slider restore. Keep as EOF. */
@media (max-width: 768px) {
  .nav-toggle,
  .site-header .nav-toggle,
  .site-header[data-nav-open="true"] .nav-toggle {
    position: fixed !important;
    top: calc(env(safe-area-inset-top, 0px) + 18px) !important;
    right: 18px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 20000 !important;
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
    translate: none !important;
    pointer-events: auto !important;
  }

  [data-before-after] {
    position: relative !important;
    overflow: hidden !important;
  }

  [data-before-after] [data-after] {
    position: absolute !important;
    inset: 0 !important;
    clip-path: inset(0 50% 0 0);
    pointer-events: none !important;
  }

  [data-before-after] input[type="range"] {
    position: absolute !important;
    left: 8% !important;
    right: 8% !important;
    bottom: 18px !important;
    width: 84% !important;
    height: 44px !important;
    min-height: 44px !important;
    z-index: 20 !important;
    pointer-events: auto !important;
    touch-action: none !important;
    opacity: 1 !important;
  }

  [data-before-after] img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

/* True final mobile-only stability lock. Keep as EOF. */
@media (max-width: 768px) {
  .site-header {
    position: sticky !important;
    top: env(safe-area-inset-top, 0px) !important;
    z-index: 9999 !important;
    padding: 10px 14px !important;
    transform: none !important;
  }

  .header-shell,
  .header-card {
    position: relative !important;
    transform: none !important;
  }

  .header-card,
  .site-header.is-scrolled .header-card {
    min-height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 10px 14px !important;
    border-radius: 26px !important;
  }

  .header-cta {
    display: none !important;
  }

  .nav-toggle,
  .site-header .nav-toggle {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    translate: none !important;
    flex: 0 0 52px !important;
    width: 52px !important;
    min-width: 52px !important;
    height: 52px !important;
    margin: 0 !important;
    z-index: 2 !important;
  }

  .before-after-slider,
  .before-after-slider * {
    animation: none !important;
  }

  .before-after-slider {
    position: relative !important;
    overflow: hidden !important;
    transform: translateZ(0) !important;
    contain: layout paint;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .before-after-slider img,
  .before-after-slider .after-layer,
  .before-after-slider [data-after] {
    will-change: clip-path;
    backface-visibility: hidden;
  }

  .before-after-slider input[type="range"] {
    position: absolute !important;
    inset: auto auto 18px 8% !important;
    width: 84% !important;
    height: 44px !important;
    min-height: 44px !important;
    z-index: 20 !important;
    pointer-events: auto !important;
    touch-action: pan-y !important;
    opacity: 0.001 !important;
  }

  .before-after-slider::before,
  .before-after-slider::after,
  .after-layer,
  [data-after] {
    pointer-events: none !important;
  }

  .result-card,
  .before-after-slider,
  .result-image {
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .result-card:hover,
  .before-after-slider:hover {
    transform: none !important;
  }
}

/* Mobile-only stability and slider performance lock. Keep last. */
@media (max-width: 768px) {
  .site-header {
    position: sticky !important;
    top: env(safe-area-inset-top, 0px) !important;
    z-index: 9999 !important;
    padding: 10px 14px !important;
    transform: none !important;
  }

  .header-shell,
  .header-card {
    position: relative !important;
    transform: none !important;
    overflow: visible !important;
  }

  .header-card,
  .site-header.is-scrolled .header-card {
    min-height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 14px !important;
    border-radius: 26px !important;
    box-sizing: border-box !important;
  }

  .header-cta {
    display: none !important;
  }

  .nav-toggle,
  .site-header .nav-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    translate: none !important;
    flex: 0 0 52px !important;
    width: 52px !important;
    min-width: 52px !important;
    height: 52px !important;
    margin: 0 !important;
    border-radius: 18px !important;
    font-size: 0 !important;
    z-index: 2 !important;
  }

  .nav-toggle::before,
  .site-header .nav-toggle::before {
    content: "\2630" !important;
    font-size: 24px !important;
    line-height: 1 !important;
  }

  .site-header[data-nav-open="true"] .nav-toggle::before,
  [data-nav-root][data-nav-open="true"] .nav-toggle::before {
    content: "\00d7" !important;
  }

  .before-after-slider,
  .before-after-slider * {
    animation: none !important;
  }

  .before-after-slider {
    position: relative !important;
    overflow: hidden !important;
    transform: translateZ(0) !important;
    contain: layout paint;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .before-after-slider img,
  .before-after-slider .after-layer,
  .before-after-slider [data-after] {
    will-change: clip-path;
    backface-visibility: hidden;
  }

  .before-after-slider input[type="range"] {
    position: absolute !important;
    inset: auto auto 18px 8% !important;
    width: 84% !important;
    height: 44px !important;
    min-height: 44px !important;
    z-index: 20 !important;
    pointer-events: auto !important;
    touch-action: pan-y !important;
    opacity: 0.001 !important;
  }

  .before-after-slider::before,
  .before-after-slider::after,
  .after-layer,
  [data-after] {
    pointer-events: none !important;
  }

  .result-card,
  .before-after-slider,
  .result-image {
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .result-card:hover,
  .before-after-slider:hover {
    transform: none !important;
  }
}

/* Final mobile header and hero lock. Must stay last. */
@media (max-width: 768px) {
  body[data-page-path="/"] .home-hero .hero-title {
    display: block !important;
    max-width: 100% !important;
    margin: 0 0 14px !important;
    font-size: clamp(28px, 7.2vw, 32px) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.01em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    text-wrap: balance;
  }

  body[data-page-path="/"] .home-hero .hero-title-line {
    display: block !important;
    line-height: inherit !important;
    white-space: normal !important;
  }

  body[data-page-path="/"] .home-hero .hero-title-line--desktop {
    display: none !important;
  }

  body[data-page-path="/"] .home-hero .hero-title-line--mobile {
    display: block !important;
  }

  body[data-page-path="/"] .home-hero .hero-copy--animated > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .site-header .header-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-inline: 0 !important;
    padding-right: 78px !important;
  }

  .site-header .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    min-width: 0 !important;
  }

  .site-header .header-cta {
    display: none !important;
  }

  .site-header .nav-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: fixed !important;
    right: 24px !important;
    top: 20px !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    flex: 0 0 52px !important;
    margin: 0 !important;
    border-radius: 18px !important;
    transform: none !important;
    translate: none !important;
    font-size: 0 !important;
    z-index: 10001 !important;
  }

  .site-header .nav-toggle::before {
    content: "\2630" !important;
    font-size: 24px !important;
    line-height: 1 !important;
  }

  .site-header[data-nav-open="true"] .nav-toggle::before,
  [data-nav-root][data-nav-open="true"] .nav-toggle::before {
    content: "\00d7" !important;
  }
}

/* Mobile hero heading readability fix. Must stay last. */
@media (max-width: 768px) {
  body[data-page-path="/"] .home-hero .hero-title {
    display: block !important;
    max-width: 100% !important;
    margin: 0 0 14px !important;
    font-size: clamp(28px, 7.2vw, 32px) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.01em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    text-wrap: balance;
  }

  body[data-page-path="/"] .home-hero .hero-title-line {
    display: block !important;
    line-height: inherit !important;
    white-space: normal !important;
  }

  body[data-page-path="/"] .home-hero .hero-title-line--desktop {
    display: none !important;
  }

  body[data-page-path="/"] .home-hero .hero-title-line--mobile {
    display: block !important;
  }

  body[data-page-path="/"] .home-hero .hero-copy--animated > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .site-header .nav-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    flex: 0 0 52px !important;
    z-index: 10001 !important;
    font-size: 0 !important;
  }

  .site-header .header-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-inline: 0 !important;
  }

  .site-header .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    min-width: 0 !important;
  }

  .site-header .nav-toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    margin: 0 !important;
    translate: none !important;
  }

  .site-header .header-cta {
    display: none !important;
  }

  .site-header .nav-toggle::before {
    content: "\2630" !important;
    font-size: 24px !important;
    line-height: 1 !important;
  }

  .site-header[data-nav-open="true"] .nav-toggle::before,
  [data-nav-root][data-nav-open="true"] .nav-toggle::before {
    content: "\00d7" !important;
  }
}

/* Slider and mobile header regression fix. Keep last. */
.before-after-slider {
  position: relative;
  overflow: hidden;
  --split: 50%;
}

.before-after-slider .after-layer,
.before-after-slider [data-after] {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100%;
  clip-path: inset(0 50% 0 0);
  pointer-events: none;
  z-index: 2;
}

.before-after-slider .after-layer img,
.before-after-slider [data-after] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-slider input[type="range"] {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.001;
  pointer-events: auto !important;
  z-index: 10 !important;
  cursor: ew-resize;
}

.before-after-slider::before {
  left: calc(var(--split, 50%) - 1px) !important;
}

.before-after-slider::after {
  left: calc(var(--split, 50%) - 17px) !important;
}

.before-after-labels {
  position: absolute;
  inset: 12px 12px auto;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.before-after-labels span {
  background: rgba(10, 7, 6, 0.28) !important;
  color: rgba(255, 255, 255, 0.92) !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35) !important;
  box-shadow: none !important;
  border: 0 !important;
  outline: 0 !important;
  -webkit-text-stroke: 0 !important;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 14px !important;
  }

  .header-shell {
    width: 100% !important;
  }

  .site-header,
  .header-shell,
  .header-card {
    overflow: visible !important;
  }

  .header-card {
    min-height: 64px !important;
    padding: 10px 14px !important;
    border-radius: 26px !important;
  }

  .site-header.is-scrolled .header-card {
    min-height: 64px !important;
  }

  .brand-mark {
    font-size: 24px !important;
    line-height: 1.1 !important;
  }

  .nav-toggle {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    border-radius: 18px !important;
    font-size: 24px !important;
  }

  .site-nav {
    position: absolute !important;
    inset: auto 12px auto 12px !important;
    top: calc(100% + 10px) !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    width: auto !important;
    min-height: 0 !important;
    max-height: min(70vh, 520px) !important;
    padding: 10px 16px !important;
    overflow-y: auto !important;
    background: rgba(10, 7, 6, 0.96) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border: 1px solid rgba(245, 237, 230, 0.12) !important;
    border-radius: 22px !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-6px) !important;
    z-index: 10000 !important;
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms ease !important;
  }

  .site-header[data-nav-open="true"] .site-nav,
  [data-nav-root][data-nav-open="true"] .site-nav {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .site-nav a,
  .site-nav .mobile-only {
    display: block !important;
    min-height: 0 !important;
    padding: 14px 4px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(245, 237, 230, 0.08) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(245, 237, 230, 0.88) !important;
    font-family: Inter, Manrope, sans-serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    text-decoration: none;
    opacity: 1 !important;
    transform: none !important;
  }

  .site-nav a:last-child {
    border-bottom: 0 !important;
  }

  .site-nav a:first-child {
    color: #e5b485 !important;
  }

  body[data-nav-locked="true"] {
    overflow: auto !important;
  }

  .before-after-slider::after {
    left: calc(var(--split, 50%) - 16px) !important;
  }
}

/* Ultra premium interaction polish. Keep last. */
.site-header {
  padding-block: 4px !important;
}

.header-card {
  min-height: 38px !important;
  padding: 5px 10px !important;
  background: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(12px) saturate(1.16) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.16) !important;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.2) !important;
}

.site-header.is-scrolled {
  padding-block: 3px !important;
}

.site-header.is-scrolled .header-card {
  min-height: 34px !important;
  background: rgba(0, 0, 0, 0.42) !important;
  backdrop-filter: blur(18px) saturate(1.25) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.25) !important;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.3) !important;
}

.nav-toggle {
  transition:
    transform 0.26s var(--luxury-ease),
    box-shadow 0.26s var(--luxury-ease),
    border-color 0.26s var(--luxury-ease),
    background 0.26s var(--luxury-ease) !important;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: scale(1.06);
  border-color: rgba(216, 174, 120, 0.42) !important;
  box-shadow: 0 0 0 6px rgba(216, 174, 120, 0.09), 0 0 26px rgba(216, 174, 120, 0.24) !important;
}

.button,
.luxe-button,
.ghost-button,
.booking-secondary-btn,
.header-contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.button::before,
.luxe-button::before,
.ghost-button::before,
.booking-secondary-btn::before,
.header-contact::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -75%;
  z-index: 0;
  width: 52%;
  pointer-events: none;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 239, 218, 0.34), transparent);
  opacity: 0;
  transition:
    opacity 0.32s var(--luxury-ease),
    transform 0.72s var(--luxury-ease),
    left 0.72s var(--luxury-ease);
}

.button:hover,
.luxe-button:hover,
.ghost-button:hover,
.booking-secondary-btn:hover,
.header-contact:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow:
    0 0 0 1px rgba(216, 174, 120, 0.18),
    0 16px 40px rgba(216, 174, 120, 0.2),
    0 22px 52px rgba(0, 0, 0, 0.28) !important;
}

.button:hover::before,
.luxe-button:hover::before,
.ghost-button:hover::before,
.booking-secondary-btn:hover::before,
.header-contact:hover::before {
  left: 125%;
  opacity: 1;
}

.button:active,
.luxe-button:active,
.ghost-button:active,
.booking-secondary-btn:active,
.header-contact:active {
  transform: translateY(0) scale(0.97) !important;
}

.section-shell,
.page-hero-card,
.hero-card,
.service-card,
.result-card,
.detail-card,
.review-card,
.mini-panel,
.booking-form-panel,
.footer-card {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 18px 60px rgba(0, 0, 0, 0.2) !important;
}

.section-shell {
  background:
    radial-gradient(circle at 82% 8%, rgba(216, 174, 120, 0.055), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.006)),
    rgba(17, 11, 9, 0.56) !important;
}

.service-card:hover,
.result-card:hover,
.detail-card:hover,
.review-card:hover,
.mini-panel:hover,
.blog-card:hover {
  transform: translate3d(0, -5px, 0) scale(1.018) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 26px 78px rgba(0, 0, 0, 0.36),
    0 0 42px rgba(216, 174, 120, 0.08) !important;
}

.reveal {
  will-change: opacity, transform;
  transition:
    opacity 0.82s var(--luxury-ease),
    transform 0.82s var(--luxury-ease) !important;
}

.site-nav {
  will-change: opacity, transform;
}

.before-after-slider {
  isolation: isolate;
}

.before-after-slider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--slider-position, 50%) - 1px);
  z-index: 5;
  width: 2px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(244, 235, 225, 0.98), transparent);
  box-shadow: 0 0 22px rgba(216, 174, 120, 0.72);
  opacity: 0.9;
  animation: sliderIdleGlow 2.8s ease-in-out infinite;
}

.before-after-slider::after {
  content: "";
  position: absolute;
  left: calc(var(--slider-position, 50%) - 17px);
  bottom: 18px;
  z-index: 6;
  width: 34px;
  height: 34px;
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 247, 235, 0.98), rgba(216, 174, 120, 0.88));
  box-shadow:
    0 0 0 8px rgba(216, 174, 120, 0.12),
    0 0 28px rgba(216, 174, 120, 0.5),
    0 10px 28px rgba(0, 0, 0, 0.28);
  animation: sliderHandleBreathe 2.8s ease-in-out infinite;
}

@keyframes sliderIdleGlow {
  0%,
  100% {
    opacity: 0.68;
  }
  50% {
    opacity: 1;
  }
}

@keyframes sliderHandleBreathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.before-after-slider input[type="range"] {
  z-index: 8 !important;
  opacity: 0.001;
  cursor: ew-resize;
}

.before-after-slider:has(input[type="range"]:active)::after {
  transform: scale(1.12);
  animation: none;
}

@media (max-width: 768px) {
  .site-header {
    padding-block: 4px !important;
  }

  .header-card {
    min-height: 38px !important;
    padding: 5px 7px 5px 12px !important;
  }

  .site-header.is-scrolled .header-card {
    min-height: 34px !important;
  }

  .brand-mark {
    font-size: 17px !important;
  }

  .nav-toggle {
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
  }

  .before-after-slider::after {
    bottom: 14px;
    width: 32px;
    height: 32px;
    left: calc(var(--slider-position, 50%) - 16px);
  }
}

/* Calm performance pass. Keep this as the final animation layer. */
.reveal,
[data-reveal] {
  opacity: 1;
  transform: none;
  will-change: auto !important;
}

@media (min-width: 769px) {
  .reveal:not(.is-visible),
  [data-reveal]:not(.is-visible) {
    opacity: 0.96;
    transform: translateY(6px);
  }

  .reveal.is-visible,
  [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 320ms ease,
      transform 320ms ease;
  }
}

@media (max-width: 768px) {
  .reveal,
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .service-card,
  .result-card,
  .detail-card,
  .review-card,
  .mini-panel,
  .blog-card,
  .button,
  .luxe-button,
  .ghost-button,
  .booking-secondary-btn,
  .header-contact,
  .nav-toggle {
    transition-property: opacity, transform, background, border-color, color !important;
  }
}

.site-nav {
  will-change: auto !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Final slider/menu regression lock. Must stay last. */
.before-after-slider {
  position: relative !important;
  overflow: hidden !important;
  --split: 50%;
}

.before-after-slider .after-layer,
.before-after-slider [data-after] {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  clip-path: inset(0 50% 0 0);
  pointer-events: none !important;
  z-index: 2 !important;
}

.before-after-slider input[type="range"] {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.001 !important;
  pointer-events: auto !important;
  z-index: 10 !important;
  cursor: ew-resize;
}

.before-after-slider::before {
  left: calc(var(--split, 50%) - 1px) !important;
}

.before-after-slider::after {
  left: calc(var(--split, 50%) - 17px) !important;
}

.before-after-labels span {
  background: rgba(10, 7, 6, 0.28) !important;
  color: rgba(255, 255, 255, 0.92) !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35) !important;
  box-shadow: none !important;
  border: 0 !important;
  outline: 0 !important;
  -webkit-text-stroke: 0 !important;
  border-radius: 999px !important;
  padding: 4px 8px !important;
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 14px !important;
  }

  .header-shell {
    width: 100% !important;
  }

  .site-header,
  .header-shell,
  .header-card {
    overflow: visible !important;
  }

  .header-card,
  .site-header.is-scrolled .header-card {
    min-height: 64px !important;
    padding: 10px 14px !important;
    border-radius: 26px !important;
  }

  .brand-mark {
    font-size: 24px !important;
    line-height: 1.1 !important;
  }

  .nav-toggle {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    border-radius: 18px !important;
    font-size: 24px !important;
  }

  .site-nav {
    position: absolute !important;
    inset: auto 12px auto 12px !important;
    top: calc(100% + 10px) !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    width: auto !important;
    min-height: 0 !important;
    max-height: min(70vh, 520px) !important;
    padding: 10px 16px !important;
    overflow-y: auto !important;
    background: rgba(10, 7, 6, 0.96) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border: 1px solid rgba(245, 237, 230, 0.12) !important;
    border-radius: 22px !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-6px) !important;
    z-index: 10000 !important;
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms ease !important;
  }

  .site-header[data-nav-open="true"] .site-nav,
  [data-nav-root][data-nav-open="true"] .site-nav {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .site-nav a,
  .site-nav .mobile-only {
    display: block !important;
    min-height: 0 !important;
    padding: 14px 4px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(245, 237, 230, 0.08) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(245, 237, 230, 0.88) !important;
    font-family: Inter, Manrope, sans-serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    text-decoration: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .site-nav a:last-child {
    border-bottom: 0 !important;
  }

  .site-nav a:first-child {
    color: #e5b485 !important;
  }

  body[data-nav-locked="true"] {
    overflow: auto !important;
  }

  .before-after-slider::after {
    left: calc(var(--split, 50%) - 16px) !important;
  }
}

/* True final mobile-only stability lock. Keep as EOF. */
@media (max-width: 768px) {
  .site-header {
    position: sticky !important;
    top: env(safe-area-inset-top, 0px) !important;
    z-index: 9999 !important;
    padding: 10px 14px !important;
    transform: none !important;
  }

  .header-shell,
  .header-card {
    position: relative !important;
    transform: none !important;
  }

  .header-card,
  .site-header.is-scrolled .header-card {
    min-height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 10px 14px !important;
    border-radius: 26px !important;
  }

  .header-cta {
    display: none !important;
  }

  .nav-toggle,
  .site-header .nav-toggle {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    translate: none !important;
    flex: 0 0 52px !important;
    width: 52px !important;
    min-width: 52px !important;
    height: 52px !important;
    margin: 0 !important;
    z-index: 2 !important;
  }

  .before-after-slider,
  .before-after-slider * {
    animation: none !important;
  }

  .before-after-slider {
    position: relative !important;
    overflow: hidden !important;
    transform: translateZ(0) !important;
    contain: layout paint;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .before-after-slider img,
  .before-after-slider .after-layer,
  .before-after-slider [data-after] {
    will-change: clip-path;
    backface-visibility: hidden;
  }

  .before-after-slider input[type="range"] {
    position: absolute !important;
    inset: auto auto 18px 8% !important;
    width: 84% !important;
    height: 44px !important;
    min-height: 44px !important;
    z-index: 20 !important;
    pointer-events: auto !important;
    touch-action: pan-y !important;
    opacity: 0.001 !important;
  }

  .before-after-slider::before,
  .before-after-slider::after,
  .after-layer,
  [data-after] {
    pointer-events: none !important;
  }

  .result-card,
  .before-after-slider,
  .result-image {
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .result-card:hover,
  .before-after-slider:hover {
    transform: none !important;
  }
}

/* Phone burger fixed corner lock. Keep as EOF. */
@media (max-width: 768px) {
  .nav-toggle,
  .site-header .nav-toggle,
  .site-header[data-nav-open="true"] .nav-toggle,
  [data-nav-root][data-nav-open="true"] .nav-toggle {
    position: fixed !important;
    top: calc(env(safe-area-inset-top, 0px) + 18px) !important;
    right: 18px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 20000 !important;
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    margin: 0 !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
    translate: none !important;
    pointer-events: auto !important;
  }
}

/* Phone burger viewport-position correction. Keep as EOF. */
@media (max-width: 768px) {
  .nav-toggle,
  .site-header .nav-toggle,
  .site-header[data-nav-open="true"] .nav-toggle,
  [data-nav-root][data-nav-open="true"] .nav-toggle {
    position: fixed !important;
    top: calc(env(safe-area-inset-top, 0px) + 18px) !important;
    left: calc(100vw - 74px) !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 20000 !important;
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    margin: 0 !important;
    transform: none !important;
    translate: none !important;
    pointer-events: auto !important;
  }
}

/* Phone burger final fixed-right lock. Keep as EOF. */
@media (max-width: 768px) {
  .nav-toggle,
  .site-header .nav-toggle,
  .site-header[data-nav-open="true"] .nav-toggle,
  [data-nav-root][data-nav-open="true"] .nav-toggle {
    position: fixed !important;
    top: calc(env(safe-area-inset-top, 0px) + 18px) !important;
    right: 18px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 20000 !important;
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    margin: 0 !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
    translate: none !important;
    pointer-events: auto !important;
    background: rgba(17, 12, 10, 0.94) !important;
    border: 1px solid rgba(245, 237, 230, 0.18) !important;
    color: #f5ede6 !important;
    font-size: 0 !important;
  }

  .nav-toggle::before,
  .site-header .nav-toggle::before {
    content: "\2630" !important;
    font-size: 26px !important;
    line-height: 1 !important;
    color: #f5ede6 !important;
  }

  .site-header[data-nav-open="true"] .nav-toggle::before,
  [data-nav-root][data-nav-open="true"] .nav-toggle::before {
    content: "\00d7" !important;
    font-size: 30px !important;
  }
}

/* Mobile menu fit and slider touch restore. Keep as EOF. */
@media (max-width: 768px) {
  .site-header[data-nav-open="true"] .site-nav,
  [data-nav-root][data-nav-open="true"] .site-nav {
    position: fixed !important;
    top: calc(env(safe-area-inset-top, 0px) + 92px) !important;
    right: 72px !important;
    left: auto !important;
    bottom: auto !important;
    width: min(212px, calc(100vw - 112px)) !important;
    max-height: calc(100dvh - 118px) !important;
    overflow-y: auto !important;
    padding: 12px 18px !important;
    border-radius: 22px !important;
    transform: none !important;
    z-index: 19990 !important;
  }

  .site-nav a,
  .site-nav .mobile-only {
    min-height: 0 !important;
    padding: 10px 4px !important;
    font-size: 21px !important;
    line-height: 1.12 !important;
  }

  [data-before-after] {
    touch-action: pan-y !important;
  }

  [data-before-after] input[type="range"] {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    z-index: 50 !important;
    pointer-events: auto !important;
    touch-action: none !important;
    opacity: 0.001 !important;
  }

  [data-before-after]::before,
  [data-before-after]::after,
  [data-before-after] [data-after],
  .before-after-labels {
    pointer-events: none !important;
  }
}

/* Mobile viewport overflow lock for fixed burger. Keep as EOF. */
@media (max-width: 768px) {
  html,
  body,
  .brand-body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: clip !important;
  }

  .site-header,
  .header-shell,
  .header-card,
  .page-frame,
  .section-shell,
  .home-hero-shell,
  .hero-grid,
  .home-hero,
  .hero-copy {
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }

  .page-frame,
  .section-shell,
  .home-hero-shell {
    width: min(100%, calc(100vw - 12px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .nav-toggle,
  .site-header .nav-toggle,
  .site-header[data-nav-open="true"] .nav-toggle,
  [data-nav-root][data-nav-open="true"] .nav-toggle {
    position: fixed !important;
    top: calc(env(safe-area-inset-top, 0px) + 18px) !important;
    right: max(18px, env(safe-area-inset-right, 0px)) !important;
    left: auto !important;
    z-index: 20000 !important;
  }
}

/* Mobile body-level burger lock after JS relocation. Keep as EOF. */
@media (max-width: 768px) {
  body > .nav-toggle {
    position: fixed !important;
    top: calc(env(safe-area-inset-top, 0px) + 18px) !important;
    right: 18px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 20000 !important;
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    margin: 0 !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
    translate: none !important;
    pointer-events: auto !important;
    background: rgba(17, 12, 10, 0.94) !important;
    border: 1px solid rgba(245, 237, 230, 0.18) !important;
    color: #f5ede6 !important;
    font-size: 0 !important;
  }

  body > .nav-toggle::before {
    content: "\2630" !important;
    font-size: 26px !important;
    line-height: 1 !important;
    color: #f5ede6 !important;
  }

  body[data-nav-locked="true"] > .nav-toggle::before {
    content: "\00d7" !important;
    font-size: 30px !important;
  }
}

/* Restore mobile burger to header flow. Keep as EOF. */
@media (max-width: 768px) {
  .site-header .header-card {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    min-height: 64px !important;
    padding: 10px 14px !important;
  }

  .nav-toggle,
  .site-header .nav-toggle,
  body > .nav-toggle,
  .site-header[data-nav-open="true"] .nav-toggle,
  [data-nav-root][data-nav-open="true"] .nav-toggle {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 52px !important;
    width: 52px !important;
    min-width: 52px !important;
    height: 52px !important;
    margin: 0 !important;
    transform: none !important;
    translate: none !important;
    pointer-events: auto !important;
  }

  .nav-toggle::before,
  .site-header .nav-toggle::before,
  body > .nav-toggle::before {
    content: "\2630" !important;
    font-size: 24px !important;
    line-height: 1 !important;
  }

  .site-header[data-nav-open="true"] .nav-toggle::before,
  [data-nav-root][data-nav-open="true"] .nav-toggle::before {
    content: "\00d7" !important;
  }
}

/* Mobile header-card burger alignment. Keep as EOF. */
@media (max-width: 768px) {
  .site-header,
  .header-shell,
  .header-card {
    overflow: visible !important;
  }

  .site-header .header-card {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    min-height: 64px !important;
    padding: 10px 14px !important;
    border-radius: 26px !important;
    transform: none !important;
  }

  .site-header .brand {
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }

  .site-header .header-cta {
    display: none !important;
  }

  .site-header .nav-toggle,
  .site-header[data-nav-open="true"] .nav-toggle,
  [data-nav-root][data-nav-open="true"] .nav-toggle {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 52px !important;
    width: 52px !important;
    min-width: 52px !important;
    height: 52px !important;
    margin: 0 !important;
    border-radius: 18px !important;
    transform: none !important;
    translate: none !important;
    z-index: 3 !important;
    pointer-events: auto !important;
  }

  .site-header .nav-toggle::before {
    content: "\2630" !important;
    font-size: 24px !important;
    line-height: 1 !important;
  }

  .site-header[data-nav-open="true"] .nav-toggle::before,
  [data-nav-root][data-nav-open="true"] .nav-toggle::before {
    content: "\00d7" !important;
  }

  .site-header[data-nav-open="true"] .site-nav,
  [data-nav-root][data-nav-open="true"] .site-nav {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 12px !important;
    left: auto !important;
    width: min(220px, calc(100vw - 48px)) !important;
    max-height: min(70vh, 520px) !important;
    overflow-y: auto !important;
    z-index: 10000 !important;
  }
}

/* Mobile header-card two-column burger placement. Keep as EOF. */
@media (max-width: 768px) {
  .site-header .header-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 52px !important;
    grid-template-rows: auto !important;
    align-items: center !important;
    column-gap: 12px !important;
    row-gap: 0 !important;
  }

  .site-header .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
  }

  .site-header .nav-toggle,
  .site-header[data-nav-open="true"] .nav-toggle,
  [data-nav-root][data-nav-open="true"] .nav-toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    position: relative !important;
    inset: auto !important;
    width: 52px !important;
    min-width: 52px !important;
    height: 52px !important;
    flex: 0 0 52px !important;
  }

  .site-header .site-nav {
    grid-column: 1 / -1 !important;
  }
}

/* Mobile header width containment for in-card burger. Keep as EOF. */
@media (max-width: 768px) {
  .site-header {
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }

  .site-header .header-shell {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .site-header .header-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  .site-header .nav-toggle,
  .site-header[data-nav-open="true"] .nav-toggle,
  [data-nav-root][data-nav-open="true"] .nav-toggle {
    position: relative !important;
    grid-column: 2 !important;
    justify-self: end !important;
    margin-left: auto !important;
  }
}

/* Mobile header-card contained absolute burger. Keep as EOF. */
@media (max-width: 768px) {
  .site-header {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 12px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  .site-header .header-shell {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .site-header .header-card {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 64px !important;
    display: flex !important;
    align-items: center !important;
    padding: 10px 78px 10px 14px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  .site-header .brand {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .site-header .nav-toggle,
  .site-header[data-nav-open="true"] .nav-toggle,
  [data-nav-root][data-nav-open="true"] .nav-toggle {
    position: absolute !important;
    top: 50% !important;
    right: 10px !important;
    left: auto !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    translate: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 52px !important;
    min-width: 52px !important;
    height: 52px !important;
    margin: 0 !important;
    z-index: 4 !important;
    pointer-events: auto !important;
  }

  .site-header[data-nav-open="true"] .site-nav,
  [data-nav-root][data-nav-open="true"] .site-nav {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 10px !important;
    left: auto !important;
  }
}

/* Mobile header-card owned burger. Keep as EOF. */
@media (max-width: 768px) {
  .site-header {
    position: sticky !important;
    top: env(safe-area-inset-top, 0px) !important;
    z-index: 9999 !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding: 10px 12px !important;
    overflow: visible !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  .site-header .header-shell {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  .site-header .header-card {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 64px !important;
    padding: 10px 76px 10px 14px !important;
    overflow: visible !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  .site-header .brand {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .site-header .header-cta {
    display: none !important;
  }

  .site-header .nav-toggle,
  .site-header[data-nav-open="true"] .nav-toggle,
  [data-nav-root][data-nav-open="true"] .nav-toggle {
    position: absolute !important;
    top: 50% !important;
    right: 10px !important;
    bottom: auto !important;
    left: auto !important;
    inset: auto 10px auto auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 52px !important;
    width: 52px !important;
    min-width: 52px !important;
    height: 52px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 18px !important;
    transform: translateY(-50%) !important;
    translate: none !important;
    z-index: 5 !important;
    pointer-events: auto !important;
  }

  .site-header .nav-toggle::before {
    content: "\2630" !important;
    font-size: 24px !important;
    line-height: 1 !important;
  }

  .site-header[data-nav-open="true"] .nav-toggle::before,
  [data-nav-root][data-nav-open="true"] .nav-toggle::before {
    content: "\00d7" !important;
    font-size: 28px !important;
  }

  .site-header .site-nav {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 10px !important;
    left: auto !important;
    width: min(220px, calc(100vw - 44px)) !important;
    max-height: min(70dvh, 520px) !important;
    overflow-y: auto !important;
    z-index: 10000 !important;
  }
}

/* Mobile burger and dropdown anchored to header-card. Keep as EOF. */
@media (max-width: 768px) {
  .site-header .nav-toggle,
  .site-header[data-nav-open="true"] .nav-toggle,
  [data-nav-root][data-nav-open="true"] .nav-toggle {
    position: absolute !important;
    inset: auto !important;
    top: 50% !important;
    right: 10px !important;
    bottom: auto !important;
    left: auto !important;
    transform: translateY(-50%) !important;
  }

  .site-header .site-nav,
  .site-header[data-nav-open="true"] .site-nav,
  [data-nav-root][data-nav-open="true"] .site-nav {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 10px !important;
    left: auto !important;
    width: min(220px, calc(100% - 20px)) !important;
    max-height: min(70dvh, 520px) !important;
    overflow-y: auto !important;
    z-index: 10000 !important;
    transform-origin: top right !important;
  }
}

/* Mobile menu in header-card flow. Final cascade override. */
@media (max-width: 768px) {
  .site-header .header-card {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 52px !important;
    grid-template-rows: 52px auto !important;
    align-items: center !important;
    column-gap: 12px !important;
    row-gap: 10px !important;
    min-height: 64px !important;
    padding: 10px 14px !important;
    overflow: visible !important;
  }

  .site-header .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: center !important;
    min-width: 0 !important;
  }

  .site-header .nav-toggle,
  .site-header[data-nav-open="true"] .nav-toggle,
  [data-nav-root][data-nav-open="true"] .nav-toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 52px !important;
    min-width: 52px !important;
    height: 52px !important;
    transform: none !important;
    margin: 0 !important;
    z-index: 2 !important;
  }

  .site-header .site-nav {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    z-index: 1 !important;
    transform: none !important;
  }

  .site-header[data-nav-open="true"] .site-nav,
  [data-nav-root][data-nav-open="true"] .site-nav {
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    max-height: min(70dvh, 520px) !important;
    overflow-y: auto !important;
  }
}

/* Mobile header-card menu ownership: override scrolled/open states. True EOF. */
@media (max-width: 768px) {
  header.site-header .header-card,
  header.site-header.is-scrolled .header-card,
  header.site-header[data-nav-open="true"] .header-card,
  header.site-header.is-scrolled[data-nav-open="true"] .header-card {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 52px !important;
    grid-template-rows: 52px auto !important;
    align-items: center !important;
    column-gap: 12px !important;
    row-gap: 10px !important;
    min-height: 64px !important;
    padding: 10px 14px !important;
    overflow: visible !important;
    transform: none !important;
  }

  header.site-header .header-card > .brand,
  header.site-header.is-scrolled .header-card > .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: center !important;
    min-width: 0 !important;
  }

  header.site-header .header-card > .nav-toggle,
  header.site-header.is-scrolled .header-card > .nav-toggle,
  header.site-header[data-nav-open="true"] .header-card > .nav-toggle,
  header.site-header.is-scrolled[data-nav-open="true"] .header-card > .nav-toggle,
  header.site-header[data-nav-root][data-nav-open="true"] .header-card > .nav-toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 52px !important;
    min-width: 52px !important;
    height: 52px !important;
    margin: 0 !important;
    transform: none !important;
    translate: none !important;
    z-index: 2 !important;
  }

  header.site-header .header-card > nav.site-nav,
  header.site-header.is-scrolled .header-card > nav.site-nav {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    display: none !important;
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    transform: none !important;
    z-index: 1 !important;
  }

  header.site-header[data-nav-open="true"] .header-card > nav.site-nav,
  header.site-header.is-scrolled[data-nav-open="true"] .header-card > nav.site-nav,
  header.site-header[data-nav-root][data-nav-open="true"] .header-card > nav.site-nav {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    max-height: min(70dvh, 520px) !important;
    overflow-y: auto !important;
    z-index: 1 !important;
  }
}
/* Mobile menu follows the current header-card viewport position. Actual EOF override. */
@media (max-width: 768px) {
  header.site-header[data-nav-open="true"] .header-card > nav.site-nav,
  header.site-header.is-scrolled[data-nav-open="true"] .header-card > nav.site-nav,
  header.site-header[data-nav-root][data-nav-open="true"] .header-card > nav.site-nav {
    position: fixed !important;
    top: var(--mobile-nav-top, calc(env(safe-area-inset-top, 0px) + 86px)) !important;
    left: var(--mobile-nav-left, 14px) !important;
    right: auto !important;
    bottom: auto !important;
    width: var(--mobile-nav-width, min(220px, calc(100vw - 28px))) !important;
    max-width: calc(100vw - 28px) !important;
    margin: 0 !important;
    z-index: 10000 !important;
  }
}

/* Mobile premium dropdown menu. Actual EOF override. */
@media (max-width: 768px) {
  .site-header[data-nav-open="true"] .site-nav,
  header.site-header[data-nav-open="true"] .header-card > nav.site-nav,
  header.site-header.is-scrolled[data-nav-open="true"] .header-card > nav.site-nav,
  header.site-header[data-nav-root][data-nav-open="true"] .header-card > nav.site-nav {
    position: fixed !important;
    top: calc(env(safe-area-inset-top, 0px) + 96px) !important;
    left: 16px !important;
    right: 16px !important;
    bottom: auto !important;
    width: auto !important;
    max-width: none !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;

    padding: 10px 18px !important;
    max-height: calc(100vh - 130px) !important;
    overflow-y: auto !important;

    background: linear-gradient(180deg, rgba(22, 15, 12, 0.96), rgba(8, 6, 5, 0.98)) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;

    border: 1px solid rgba(229, 180, 133, 0.18) !important;
    border-radius: 26px !important;
    box-shadow:
      0 28px 80px rgba(0, 0, 0, 0.58),
      inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;

    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    z-index: 19000 !important;
  }

  .site-nav a,
  .site-nav .mobile-only {
    display: flex !important;
    align-items: center !important;
    min-height: 52px !important;

    padding: 0 4px !important;
    border-bottom: 1px solid rgba(245, 237, 230, 0.08) !important;
    border-radius: 0 !important;

    font-family: Inter, Manrope, sans-serif !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
    letter-spacing: -0.01em !important;

    color: rgba(245, 237, 230, 0.86) !important;
    text-decoration: none !important;
    background: transparent !important;
  }

  .site-nav a:last-child,
  .site-nav .mobile-only:last-child {
    border-bottom: 0 !important;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: #e5b485 !important;
  }

  .site-nav a[aria-current="page"],
  .site-nav a.is-active {
    color: #e5b485 !important;
  }
}

/* Mobile dropdown position and width refinement. Actual EOF override. */
@media (max-width: 768px) {
  .site-header[data-nav-open="true"] .site-nav,
  header.site-header[data-nav-open="true"] .header-card > nav.site-nav,
  header.site-header.is-scrolled[data-nav-open="true"] .header-card > nav.site-nav,
  header.site-header[data-nav-root][data-nav-open="true"] .header-card > nav.site-nav {
    position: fixed !important;

    top: calc(env(safe-area-inset-top, 0px) + 88px) !important;
    left: 22px !important;
    right: 22px !important;
    bottom: auto !important;
    width: auto !important;
    max-width: none !important;

    margin-top: 0 !important;
    transform: none !important;

    max-height: calc(100vh - 110px) !important;
    padding: 8px 18px !important;

    border-radius: 24px !important;
    z-index: 19000 !important;
  }

  .site-nav a,
  .site-nav .mobile-only {
    min-height: 48px !important;
    padding: 0 4px !important;
    font-size: 17px !important;
  }
}

/* Mobile fixed header content offset. Actual EOF override. */
@media (max-width: 768px) {
  .site-header + .page-frame,
  .site-header + main,
  body > .page-frame:first-of-type {
    padding-top: calc(env(safe-area-inset-top, 0px) + 92px) !important;
  }
}

/* Mobile dropdown gap removal: anchor menu to real header-card height. Actual EOF override. */
@media (max-width: 768px) {
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 20000 !important;
    overflow: visible !important;
  }

  .site-header .header-shell,
  .site-header .header-card {
    overflow: visible !important;
  }

  .site-header[data-nav-open="true"] .site-nav,
  header.site-header[data-nav-open="true"] .header-card > nav.site-nav,
  header.site-header.is-scrolled[data-nav-open="true"] .header-card > nav.site-nav,
  header.site-header[data-nav-root][data-nav-open="true"] .header-card > nav.site-nav {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 16px !important;
    right: 16px !important;
    bottom: auto !important;
    width: auto !important;
    max-width: none !important;

    margin: 0 !important;
    margin-top: 0 !important;
    transform: none !important;

    max-height: calc(100vh - 110px) !important;
    padding: 8px 18px !important;

    border-radius: 24px !important;
    z-index: 19000 !important;
  }

  .site-nav a,
  .site-nav .mobile-only {
    min-height: 48px !important;
    padding: 0 4px !important;
    font-size: 17px !important;
  }
}
/* Mobile fixed header content offset. Actual EOF override. */
@media (max-width: 768px) {
  header.site-header + main.page-frame {
    padding-top: calc(env(safe-area-inset-top, 0px) + 102px) !important;
  }
}

/* Before/after slider stability lock. */
.before-after-slider,
[data-before-after] {
  --split: 50%;
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  touch-action: pan-y !important;
}

.before-after-slider .after-layer,
.before-after-slider [data-after],
[data-before-after] .after-layer,
[data-before-after] [data-after] {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  clip-path: inset(0 0 0 var(--split, 50%)) !important;
  overflow: hidden !important;
  pointer-events: none !important;
  transition: none !important;
}

.before-after-slider::before,
[data-before-after]::before {
  left: var(--split, 50%) !important;
  transform: translateX(-50%) !important;
  transition: none !important;
  animation: none !important;
}

.before-after-slider::after,
[data-before-after]::after {
  top: 50% !important;
  bottom: auto !important;
  left: var(--split, 50%) !important;
  transform: translate(-50%, -50%) !important;
  transition: none !important;
  animation: none !important;
  pointer-events: none !important;
}

.before-after-slider:has(input[type="range"]:active)::after,
[data-before-after]:has(input[type="range"]:active)::after {
  transform: translate(-50%, -50%) scale(1.04) !important;
}

.before-after-slider input[type="range"],
[data-before-after] input[type="range"] {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  opacity: 0.001 !important;
  z-index: 50 !important;
  pointer-events: auto !important;
  touch-action: pan-y !important;
  cursor: ew-resize !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background: transparent !important;
}

.before-after-slider input[type="range"]::-webkit-slider-thumb,
[data-before-after] input[type="range"]::-webkit-slider-thumb {
  width: 0 !important;
  height: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  opacity: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.before-after-slider input[type="range"]::-moz-range-thumb,
[data-before-after] input[type="range"]::-moz-range-thumb {
  width: 0 !important;
  height: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  opacity: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.before-after-slider input[type="range"]::-webkit-slider-runnable-track,
[data-before-after] input[type="range"]::-webkit-slider-runnable-track,
.before-after-slider input[type="range"]::-moz-range-track,
[data-before-after] input[type="range"]::-moz-range-track {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

@media (max-width: 768px) {
  [data-before-after],
  .before-after-slider {
    contain: layout paint !important;
    transform: translateZ(0) !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
  }

  .before-after-slider *,
  [data-before-after] * {
    animation: none !important;
  }

  .before-after-slider > img,
  .before-after-slider .after-layer img,
  .before-after-slider [data-after] img,
  [data-before-after] > img,
  [data-before-after] [data-after] img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: var(--image-position, center center) !important;
    background: transparent !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    backface-visibility: hidden !important;
  }
}

/* Typography polish layer. Keep near EOF. */
.brand-body {
  --type-h1: clamp(26px, 5vw, 40px);
  --type-h2: clamp(22px, 4vw, 32px);
  --type-h3: clamp(18px, 3vw, 24px);
  --type-body: clamp(16px, 1.08vw, 18px);
  --type-small: clamp(13px, 0.88vw, 14px);
  --copy-max: 42rem;
  --copy-narrow: 34rem;
  --copy-soft: rgba(241, 235, 230, 0.84);
  --copy-muted-soft: rgba(241, 235, 230, 0.72);
}

.brand-body body,
.brand-body,
.brand-body p,
.brand-body li,
.brand-body label,
.brand-body input,
.brand-body textarea,
.brand-body select {
  font-size: var(--type-body);
  line-height: 1.62;
}

.brand-body h1,
.brand-body .hero-title,
.brand-body .page-hero h1,
.brand-body .service-hero h1,
.brand-body .about-hero h1,
.brand-body .article-shell > h1 {
  font-size: var(--type-h1) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.024em !important;
  font-weight: 600 !important;
  text-wrap: balance;
  margin-bottom: clamp(14px, 1.5vw, 18px);
  max-width: 12ch;
}

.brand-body h2,
.brand-body .section-heading h2,
.brand-body .section-title,
.brand-body .footer-title,
.brand-body .booking-copy h2,
.brand-body .home-services-title {
  font-size: var(--type-h2) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  font-weight: 600 !important;
  text-wrap: balance;
  margin-bottom: 0;
  max-width: 18ch;
}

.brand-body h3,
.brand-body .card-title,
.brand-body .service-card h3,
.brand-body .result-card h3,
.brand-body .detail-card h3,
.brand-body .review-card h3,
.brand-body .booking-form-panel h3,
.brand-body .faq-item summary {
  font-size: var(--type-h3) !important;
  line-height: 1.22 !important;
  letter-spacing: -0.014em !important;
  font-weight: 500 !important;
  text-wrap: balance;
}

.brand-body .lead,
.brand-body .page-hero-copy p,
.brand-body .service-hero-copy p,
.brand-body .about-hero-copy p,
.brand-body .hero-copy p,
.brand-body .article-content p,
.brand-body .service-card p,
.brand-body .result-copy p,
.brand-body .detail-card p,
.brand-body .review-card p,
.brand-body .footer-card p,
.brand-body .contact-card span,
.brand-body .checkbox-row span {
  color: var(--copy-soft) !important;
  line-height: 1.64 !important;
}

.brand-body .eyebrow,
.brand-body .meta-chip,
.brand-body .hero-badges span,
.brand-body .hero-trust-strip span,
.brand-body .site-nav a,
.brand-body .header-contact,
.brand-body .scroll-hint,
.brand-body small {
  font-size: var(--type-small) !important;
  font-weight: 500 !important;
}

.brand-body .eyebrow {
  letter-spacing: 0.18em !important;
  margin-bottom: 10px !important;
}

.brand-body .section-heading {
  gap: 12px;
  margin-bottom: clamp(22px, 2.6vw, 30px);
}

.brand-body .section-heading.row {
  gap: clamp(12px, 2vw, 20px);
  align-items: end;
}

.brand-body .section-shell,
.brand-body .page-hero-card,
.brand-body .hero-card,
.brand-body .article-shell,
.brand-body .booking-form-panel,
.brand-body .footer-card {
  padding: clamp(24px, 2.6vw, 32px);
}

.brand-body .service-card-copy,
.brand-body .blog-card-copy,
.brand-body .result-copy,
.brand-body .booking-form-content,
.brand-body .booking-success {
  gap: clamp(10px, 1.4vw, 14px);
}

.brand-body .page-hero-copy,
.brand-body .service-hero-copy,
.brand-body .about-hero-copy,
.brand-body .hero-copy,
.brand-body .section-heading.narrow {
  max-width: min(100%, var(--copy-max));
}

.brand-body .lead,
.brand-body .page-hero-copy p,
.brand-body .service-hero-copy p,
.brand-body .about-hero-copy p,
.brand-body .hero-copy p,
.brand-body .booking-copy .lead {
  max-width: min(100%, var(--copy-max));
}

.brand-body .service-card-copy > p:not(.service-result),
.brand-body .result-copy p,
.brand-body .detail-card p,
.brand-body .review-card p,
.brand-body .footer-card p {
  max-width: min(100%, var(--copy-narrow));
}

.brand-body .result-copy p,
.brand-body .service-card-copy > p:not(.service-result),
.brand-body .detail-card p,
.brand-body .review-card p {
  margin-bottom: 0;
}

.brand-body .result-copy .text-link,
.brand-body .service-card-copy .text-link,
.brand-body .section-heading .text-link {
  font-size: 0.95rem;
  line-height: 1.45;
}

.brand-body .result-card,
.brand-body .service-card,
.brand-body .detail-card,
.brand-body .review-card,
.brand-body .faq-item {
  border-radius: 22px;
}

.brand-body .faq-item summary {
  margin-bottom: 0;
}

.brand-body .faq-item p,
.brand-body .footer-card p,
.brand-body .contact-list span,
.brand-body .booking-form label {
  color: var(--copy-muted-soft) !important;
}

@media (max-width: 768px) {
  .brand-body {
    --type-h1: 28px;
    --type-h2: 22px;
    --type-h3: 18px;
    --type-body: clamp(14px, 3.9vw, 16px);
    --type-small: 12px;
    --copy-max: 30rem;
    --copy-narrow: 28rem;
  }

  .brand-body {
    line-height: 1.56;
  }

  .brand-body h1,
  .brand-body .hero-title,
  .brand-body .page-hero h1,
  .brand-body .service-hero h1,
  .brand-body .about-hero h1,
  .brand-body .article-shell > h1 {
    font-size: 28px !important;
    line-height: 1.15 !important;
    margin-bottom: 12px;
    max-width: 11ch;
  }

  .brand-body h2,
  .brand-body .section-heading h2,
  .brand-body .section-title,
  .brand-body .footer-title,
  .brand-body .booking-copy h2,
  .brand-body .home-services-title {
    font-size: 22px !important;
    line-height: 1.15 !important;
    max-width: 14ch;
  }

  .brand-body h3,
  .brand-body .card-title,
  .brand-body .service-card h3,
  .brand-body .result-card h3,
  .brand-body .detail-card h3,
  .brand-body .review-card h3,
  .brand-body .booking-form-panel h3,
  .brand-body .faq-item summary {
    font-size: 18px !important;
    line-height: 1.22 !important;
  }

  .brand-body .lead,
  .brand-body .page-hero-copy p,
  .brand-body .service-hero-copy p,
  .brand-body .about-hero-copy p,
  .brand-body .hero-copy p,
  .brand-body .article-content p,
  .brand-body .service-card p,
  .brand-body .result-copy p,
  .brand-body .detail-card p,
  .brand-body .review-card p,
  .brand-body .footer-card p,
  .brand-body .contact-card span,
  .brand-body .checkbox-row span {
    line-height: 1.58 !important;
  }

  .brand-body .section-heading {
    gap: 10px;
    margin-bottom: 18px;
  }

  .brand-body .section-shell,
  .brand-body .page-hero-card,
  .brand-body .hero-card,
  .brand-body .article-shell,
  .brand-body .booking-form-panel,
  .brand-body .footer-card {
    padding: 20px;
  }

  .brand-body .hero-copy,
  .brand-body .page-hero-copy,
  .brand-body .service-hero-copy,
  .brand-body .about-hero-copy,
  .brand-body .section-heading,
  .brand-body .booking-copy {
    max-width: 100%;
  }

  .brand-body .service-card-copy,
  .brand-body .blog-card-copy,
  .brand-body .result-copy {
    gap: 8px;
  }

  .brand-body .result-copy .text-link,
  .brand-body .service-card-copy .text-link,
  .brand-body .section-heading .text-link {
    font-size: 0.92rem;
  }

  .brand-body .hero-badges span,
  .brand-body .hero-trust-strip span,
  .brand-body .meta-chip {
    padding: 7px 11px;
  }
}

/* Final heading size lock. Keep absolute EOF. */
body.brand-body h1,
body.brand-body .hero-title,
body.brand-body .page-hero h1,
body.brand-body .service-hero h1,
body.brand-body .about-hero h1,
body.brand-body .article-shell > h1,
body.brand-body[data-page-path="/"] .hero-title,
body.brand-body[data-page-path="/"] .home-hero .hero-title {
  font-size: clamp(26px, 5vw, 40px) !important;
  line-height: 1.15 !important;
}

body.brand-body h2,
body.brand-body .section-title,
body.brand-body .section-heading h2,
body.brand-body .booking-copy h2,
body.brand-body .footer-title,
body.brand-body .home-services-title {
  font-size: clamp(22px, 4vw, 32px) !important;
  line-height: 1.15 !important;
}

body.brand-body h3,
body.brand-body .card-title,
body.brand-body .service-card h3,
body.brand-body .result-card h3,
body.brand-body .detail-card h3,
body.brand-body .review-card h3,
body.brand-body .booking-form-panel h3,
body.brand-body .faq-item summary {
  font-size: clamp(18px, 3vw, 24px) !important;
}

@media (max-width: 768px) {
  body.brand-body h1,
  body.brand-body .hero-title,
  body.brand-body .page-hero h1,
  body.brand-body .service-hero h1,
  body.brand-body .about-hero h1,
  body.brand-body .article-shell > h1,
  body.brand-body[data-page-path="/"] .hero-title,
  body.brand-body[data-page-path="/"] .home-hero .hero-title {
    font-size: 28px !important;
  }

  body.brand-body h2,
  body.brand-body .section-title,
  body.brand-body .section-heading h2,
  body.brand-body .booking-copy h2,
  body.brand-body .footer-title,
  body.brand-body .home-services-title {
    font-size: 22px !important;
    line-height: 1.15 !important;
  }

  body.brand-body h3,
  body.brand-body .card-title,
  body.brand-body .service-card h3,
  body.brand-body .result-card h3,
  body.brand-body .detail-card h3,
  body.brand-body .review-card h3,
  body.brand-body .booking-form-panel h3,
  body.brand-body .faq-item summary {
    font-size: 18px !important;
  }
}

@media (min-width: 769px) {
  body.brand-body .page-hero-copy,
  body.brand-body .service-hero-copy,
  body.brand-body .about-hero-copy {
    max-width: min(100%, 56rem);
  }

  body.brand-body .page-hero h1,
  body.brand-body .service-hero h1,
  body.brand-body .about-hero h1,
  body.brand-body[data-page-path="/services"] .page-hero h1,
  body.brand-body[data-page-path="/results"] .page-hero h1,
  body.brand-body[data-page-path="/about"] .about-hero h1,
  body.brand-body[data-page-path="/blog"] .page-hero h1,
  body.brand-body[data-page-path="/faq"] .page-hero h1,
  body.brand-body[data-page-path="/contacts"] .page-hero h1 {
    max-width: none !important;
    width: max-content;
    max-inline-size: 100%;
    white-space: nowrap;
    text-wrap: nowrap;
  }
}

body.brand-body .site-footer .footer-card .footer-title,
body.brand-body .site-footer .footer-card h2.footer-title,
body.brand-body .site-footer .footer-card h2 {
  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: initial !important;
  text-overflow: clip !important;
  white-space: normal !important;
  text-wrap: balance;
  max-width: 100% !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-badges {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 34rem);
  align-items: stretch;
}

body.brand-body[data-page-path="/"] .home-hero .hero-badges span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  min-height: 42px;
  width: 100%;
  padding: 8px 12px;
  text-align: center;
  white-space: normal;
  text-wrap: balance;
  line-height: 1.2;
}

@media (max-width: 768px) {
  body.brand-body[data-page-path="/"] .home-hero .hero-badges {
    width: 100%;
    gap: 8px;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-badges span {
    min-height: 44px;
    padding: 8px 10px;
    font-size: 12px !important;
  }
}

/* Desktop scroll performance pass. Keep absolute EOF. */
@media (min-width: 769px) {
  body.brand-body::before {
    display: none;
  }

  html,
  body.brand-body {
    background:
      radial-gradient(circle at 22% 0%, rgba(90, 55, 34, 0.12), transparent 30%),
      linear-gradient(180deg, #0a0604 0%, #100905 45%, #070403 100%) !important;
  }

  body.brand-body .page-frame {
    contain: paint;
  }

  body.brand-body .site-header {
    contain: paint;
    transition: background 180ms ease !important;
  }

  body.brand-body .header-card,
  body.brand-body .site-header.is-scrolled .header-card {
    border: 1px solid rgba(216, 174, 120, 0.12) !important;
    background: rgba(12, 9, 8, 0.9) !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.brand-body .site-header.is-scrolled .header-card {
    background: rgba(12, 9, 8, 0.9) !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14) !important;
  }

  body.brand-body .home-hero-shell::before,
  body.brand-body .page-hero::before,
  body.brand-body .service-hero::before,
  body.brand-body .about-hero::before {
    display: none !important;
  }

  body.brand-body .hero-light,
  body.brand-body .pulse-cta,
  body.brand-body .scroll-hint,
  body.brand-body .scroll-hint-mouse::after,
  body.brand-body .hero-visual--animated .hero-video,
  body.brand-body .hero-visual--animated .mobile-poster {
    animation: none !important;
  }

  body.brand-body .hero-light,
  body.brand-body .scroll-hint {
    display: none !important;
  }

  body.brand-body .hero-video {
    display: none !important;
    transform: none !important;
  }

  body.brand-body .hero-visual .mobile-poster {
    display: block !important;
  }

  body.brand-body .button,
  body.brand-body .luxe-button,
  body.brand-body .ghost-button,
  body.brand-body .header-contact,
  body.brand-body .text-link {
    transition:
      transform 180ms ease,
      border-color 180ms ease,
      background 180ms ease,
      color 180ms ease,
      opacity 180ms ease !important;
  }

  body.brand-body .button:hover,
  body.brand-body .luxe-button:hover,
  body.brand-body .ghost-button:hover {
    transform: translateY(-1px) !important;
  }

  body.brand-body .service-card,
  body.brand-body .result-card,
  body.brand-body .blog-card,
  body.brand-body .detail-card,
  body.brand-body .review-card,
  body.brand-body .mini-panel,
  body.brand-body .booking-form-panel,
  body.brand-body .footer-card,
  body.brand-body .faq-item {
    contain: layout paint;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 8px 18px rgba(0, 0, 0, 0.14) !important;
    transition:
      transform 180ms ease,
      border-color 180ms ease,
      background 180ms ease !important;
  }

  body.brand-body .section-shell,
  body.brand-body .page-hero-card,
  body.brand-body .hero-card,
  body.brand-body .article-shell,
  body.brand-body .booking-form-panel,
  body.brand-body .footer-card {
    contain: layout paint;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.035),
      0 8px 18px rgba(0, 0, 0, 0.14) !important;
  }

  body.brand-body .service-card:hover,
  body.brand-body .result-card:hover,
  body.brand-body .blog-card:hover,
  body.brand-body .detail-card:hover,
  body.brand-body .review-card:hover,
  body.brand-body .mini-panel:hover,
  body.brand-body .faq-item:hover {
    transform: translateY(-1px) !important;
  }

  body.brand-body .service-image img,
  body.brand-body .result-image img,
  body.brand-body .blog-card img,
  body.brand-body .hero-image img {
    filter: none !important;
    transition: transform 320ms ease !important;
  }

  body.brand-body .service-card:hover .service-image img,
  body.brand-body .result-card:hover .result-image img,
  body.brand-body .blog-card:hover img {
    transform: scale(1.01) !important;
    filter: none !important;
  }

  body.brand-body .hover-glow,
  body.brand-body .hover-glow:hover,
  body.brand-body .hover-glow:focus-within {
    box-shadow: inherit !important;
  }

  body.brand-body .before-after-slider,
  body.brand-body [data-before-after] {
    contain: layout paint;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.brand-body .before-after-slider .after-layer,
  body.brand-body .before-after-slider [data-after],
  body.brand-body [data-before-after] .after-layer,
  body.brand-body [data-before-after] [data-after] {
    box-shadow: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  body.brand-body .before-after-slider::before,
  body.brand-body [data-before-after]::before {
    box-shadow: none !important;
  }

  body.brand-body .before-after-slider::after,
  body.brand-body [data-before-after]::after {
    box-shadow: 0 0 0 1px rgba(216, 174, 120, 0.28) !important;
  }

  body.brand-body .before-after-labels span {
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.brand-body .reveal,
  body.brand-body [data-reveal] {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    backface-visibility: hidden;
    will-change: auto !important;
  }

  body.brand-body .page-frame > .section-shell:nth-of-type(n + 2),
  body.brand-body .page-frame > footer.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 960px;
  }
}

/* Owner admin mobile override. Keep after public mobile rules. */
@media (max-width: 768px) {
  .owner-admin-body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .admin-login-shell {
    width: 100% !important;
    min-width: 0 !important;
    padding: 12px !important;
    place-items: start stretch !important;
  }

  .owner-login-card {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 20px !important;
    overflow: hidden !important;
  }

  .owner-login-card *,
  .owner-admin-shell * {
    min-width: 0;
  }

  .owner-login-card p,
  .owner-login-card h1,
  .owner-login-card label,
  .owner-admin-brand p,
  .owner-admin-hero p,
  .owner-section-card p,
  .owner-lead-card p,
  .owner-panel-card p {
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .owner-login-card input,
  .owner-login-card .button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .owner-admin-shell {
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    padding: 10px 0 28px !important;
    gap: 12px !important;
    grid-template-columns: 1fr !important;
  }

  .owner-admin-sidebar {
    position: static !important;
    padding: 16px !important;
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .owner-admin-brand {
    margin-bottom: 14px !important;
  }

  .owner-admin-brand h1 {
    font-size: 28px !important;
  }

  .owner-admin-nav {
    display: flex !important;
    gap: 8px !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    padding-bottom: 4px !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .owner-admin-nav::-webkit-scrollbar {
    display: none;
  }

  .owner-admin-nav a {
    flex: 0 0 auto !important;
    min-height: 44px !important;
    padding: 10px 14px !important;
    white-space: nowrap !important;
    scroll-snap-align: start;
  }

  .owner-admin-sidebar-actions {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-top: 14px !important;
  }

  .owner-admin-sidebar-actions .button {
    min-height: 44px !important;
    padding: 11px 12px !important;
    font-size: 12px !important;
  }

  .owner-admin-main,
  .owner-dashboard-section,
  .owner-panel-card {
    gap: 14px !important;
  }

  .owner-admin-main {
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .owner-admin-hero h2 {
    font-size: clamp(26px, 8vw, 34px) !important;
  }

  .owner-metric-row,
  .owner-section-grid,
  .owner-field-preview-grid {
    grid-template-columns: 1fr !important;
  }

  .owner-card-heading {
    display: grid !important;
  }

  .owner-card-heading .button {
    width: 100% !important;
  }

  .owner-section-card,
  .owner-lead-card,
  .owner-field-preview {
    padding: 16px !important;
  }

  .owner-section-card strong {
    font-size: 2.35rem !important;
  }

  .owner-choice-row {
    display: grid !important;
  }

  .owner-choice-row span {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* Clean minimal homepage hero correction. */
body.brand-body[data-page-path="/"] .hero-proof-chips,
body.brand-body[data-page-path="/"] .hero-badges,
body.brand-body[data-page-path="/"] .mobile-hero-summary,
body.brand-body[data-page-path="/"] .mobile-hero-socials,
body.brand-body[data-page-path="/"] .scroll-hint,
body.brand-body[data-page-path="/"] .hero-photo-note {
  display: none !important;
}

body.brand-body[data-page-path="/"] .home-hero-shell {
  width: 100% !important;
  max-width: 100% !important;
  padding: 56px 52px !important;
  border-color: rgba(255, 255, 255, 0.09) !important;
  border-radius: 28px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(219, 170, 121, 0.04)),
    rgba(14, 10, 8, 0.76) !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

body.brand-body[data-page-path="/"] .home-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 560px) minmax(420px, 48%) !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 72px !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-copy {
  display: grid !important;
  gap: 16px !important;
  width: 100% !important;
  max-width: 640px !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-copy--animated > *,
body.brand-body[data-page-path="/"] .home-hero .hero-visual--animated {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-brand-mark {
  display: block !important;
  width: min(100%, 520px) !important;
  max-width: 520px !important;
  height: auto !important;
  margin: -18px 0 22px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  opacity: 0.98 !important;
  overflow: visible !important;
  pointer-events: none !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-brand-svg {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  overflow: visible !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-logo-monogram,
body.brand-body[data-page-path="/"] .home-hero .hero-logo-wordmark {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
  font-weight: 500 !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-logo-monogram {
  font-size: 108px !important;
  letter-spacing: -0.16em !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-logo-wordmark {
  font-size: 72px !important;
  letter-spacing: -0.055em !important;
}

body.brand-body[data-page-path="/"] .home-hero .home-hero-label {
  margin: 0 !important;
  color: rgba(232, 187, 142, 0.84) !important;
  font-size: clamp(13px, 1vw, 15px) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.12em !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-title,
body.brand-body[data-page-path="/"] .home-hero .hero-title::before {
  content: none !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-title {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 18px !important;
  color: rgba(255, 248, 239, 0.96) !important;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(40px, 3.8vw, 52px) !important;
  font-size: clamp(40px, 8.8cqw, 52px) !important;
  font-weight: 500 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.02em !important;
  white-space: normal !important;
  text-wrap: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-title span {
  display: block !important;
  max-width: 100% !important;
  margin: 0 !important;
  line-height: inherit !important;
  white-space: nowrap !important;
  transform-origin: left center;
}

body.brand-body[data-page-path="/"] .home-hero .hero-title span:nth-of-type(2) {
  transform: scaleX(0.94);
}

body.brand-body[data-page-path="/"] .home-hero .hero-title br {
  display: none !important;
}

body.brand-body[data-page-path="/"] .home-hero .home-hero-lead,
body.brand-body[data-page-path="/"] .home-hero .hero-description {
  display: block !important;
  max-width: 560px !important;
  margin: 0 0 22px !important;
  color: rgba(245, 241, 234, 0.74) !important;
  font-size: clamp(17px, 1.4vw, 20px) !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
}

body.brand-body[data-page-path="/"] .home-hero-trust,
body.brand-body[data-page-path="/"] .hero-trust {
  margin: 0 0 24px !important;
  color: rgba(245, 241, 234, 0.72) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-actions {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 12px !important;
  max-width: 100% !important;
  margin-top: 0 !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-primary-cta {
  display: grid !important;
  gap: 8px !important;
  width: min(100%, 400px) !important;
  min-width: 0 !important;
  flex: 1 1 0 !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-primary-cta small {
  display: block !important;
  max-width: 100% !important;
  color: rgba(245, 237, 230, 0.58) !important;
  font-size: 12.5px !important;
  line-height: 1.3 !important;
  text-align: center !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-primary-cta .button,
body.brand-body[data-page-path="/"] .home-hero .hero-services-link {
  min-height: 52px !important;
  height: 52px !important;
  border-radius: 999px !important;
  padding: 0 28px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
  white-space: normal !important;
  text-align: center !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-primary-cta .button {
  background: linear-gradient(135deg, #f4caa8 0%, #dda878 52%, #bd7e55 100%) !important;
  color: #160e0a !important;
  box-shadow: 0 8px 18px rgba(195, 126, 82, 0.12) !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-services-link {
  display: inline-flex !important;
  flex: 0 1 230px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.035) !important;
  color: rgba(245, 237, 230, 0.84) !important;
  box-shadow: none !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-visual {
  width: 100% !important;
  height: clamp(540px, 42vw, 620px) !important;
  max-height: 620px !important;
  aspect-ratio: 4 / 5 !important;
  border-radius: 26px !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-visual img,
body.brand-body[data-page-path="/"] .home-hero .hero-visual video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
}

@media (max-width: 1024px) {
  body.brand-body[data-page-path="/"] .home-hero {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-visual {
    width: min(100%, 520px) !important;
    justify-self: center !important;
  }
}

@media (max-width: 768px) {
  html,
  body.brand-body[data-page-path="/"] {
    overflow-x: hidden !important;
  }

  body.brand-body[data-page-path="/"] .page-frame {
    padding-top: 0 !important;
  }

  body.brand-body[data-page-path="/"] .page-frame > .home-hero-shell:first-child {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    margin-top: 88px !important;
    padding: 22px 18px !important;
    border-radius: 24px !important;
  }

  body.brand-body[data-page-path="/"] .home-hero-shell,
  body.brand-body[data-page-path="/"] .home-hero-shell * {
    box-sizing: border-box;
    max-width: 100%;
  }

  body.brand-body[data-page-path="/"] .home-hero {
    gap: 22px !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-copy {
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-brand-mark {
    width: min(100%, 330px) !important;
    margin: -8px 0 16px !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .home-hero-label {
    font-size: 12px !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-title {
    max-width: 100% !important;
    margin-bottom: 18px !important;
    font-size: clamp(28px, 7.4vw, 34px) !important;
    font-size: clamp(28px, 9.6cqw, 34px) !important;
    line-height: 1 !important;
    overflow-wrap: normal !important;
    white-space: normal !important;
    text-wrap: normal !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-title span {
    white-space: nowrap !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .home-hero-lead,
  body.brand-body[data-page-path="/"] .home-hero .hero-description {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin-bottom: 22px !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }

  body.brand-body[data-page-path="/"] .home-hero-trust,
  body.brand-body[data-page-path="/"] .hero-trust {
    width: 100% !important;
    min-width: 0 !important;
    margin-bottom: 24px !important;
    font-size: 15px !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 10px !important;
    margin-top: 0 !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-primary-cta {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-primary-cta .button,
  body.brand-body[data-page-path="/"] .home-hero .hero-services-link {
    width: 100% !important;
    min-height: 52px !important;
    height: 52px !important;
    padding: 0 18px !important;
    font-size: 15px !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-services-link {
    min-height: 52px !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-visual {
    width: 100% !important;
    max-width: 430px !important;
    margin: 0 auto !important;
    border-radius: 24px !important;
  }
}

@media (max-width: 390px) {
  body.brand-body[data-page-path="/"] .page-frame > .home-hero-shell:first-child {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    padding: 20px 16px !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-title {
    font-size: clamp(25px, 7.2vw, 30px) !important;
    font-size: clamp(25px, 9.2cqw, 30px) !important;
    line-height: 1 !important;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  body.brand-body[data-page-path="/"] .home-hero .hero-title {
    font-size: clamp(36px, 6.2vw, 44px) !important;
    font-size: clamp(36px, 7.2cqw, 44px) !important;
    line-height: 1 !important;
  }
}

/* Final hero title sizing guard: large, two-line, and bounded by the text column. */
body.brand-body[data-page-path="/"] .home-hero .hero-title {
  width: 100% !important;
  max-width: 640px !important;
  margin-bottom: 20px !important;
  font-size: clamp(46px, 4.2vw, 64px) !important;
  line-height: 1.08 !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-title span {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  transform: none !important;
  transform-origin: initial !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-title span:nth-of-type(2) {
  margin-top: 8px !important;
  transform: none !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-title br {
  display: none !important;
  content: "" !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-description {
  font-size: clamp(17px, 1.3vw, 20px) !important;
  opacity: 0.7 !important;
  margin-top: 6px !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-trust {
  font-size: 15px !important;
  opacity: 0.7 !important;
}

@media (max-width: 768px) {
  body.brand-body[data-page-path="/"] .home-hero .hero-title {
    max-width: 100% !important;
    font-size: clamp(30px, 7vw, 38px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-title span:nth-of-type(2) {
    margin-top: 8px !important;
    transform: none !important;
  }
}

@media (max-width: 390px) {
  body.brand-body[data-page-path="/"] .home-hero .hero-title {
    font-size: 32px !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-title span:nth-of-type(2) {
    transform: none !important;
  }
}

/* Real rendered homepage hero heading fix. Keep this as the final override. */
body.brand-body[data-page-path="/"] .hero-title,
body.brand-body[data-page-path="/"] .hero h1,
body.brand-body[data-page-path="/"] .home-hero h1,
body.brand-body[data-page-path="/"] .hero-copy h1,
body.brand-body[data-page-path="/"] .hero-content h1 {
  display: block !important;
  width: 100% !important;
  max-width: 680px !important;
  font-size: clamp(34px, 3.35vw, 46px) !important;
  line-height: 1.08 !important;
  font-weight: 500 !important;
  letter-spacing: -0.03em !important;
  margin: 0 0 22px 0 !important;
  color: #f5f1ea !important;
  white-space: nowrap !important;
}

body.brand-body[data-page-path="/"] .hero-title span {
  display: inline !important;
  width: auto !important;
  max-width: none !important;
  white-space: nowrap !important;
  transform: none !important;
}

body.brand-body[data-page-path="/"] .hero-title span + span {
  margin-top: 0 !important;
}

body.brand-body[data-page-path="/"] .hero-title br {
  display: none !important;
}

@media (max-width: 768px) {
  body.brand-body[data-page-path="/"] .hero-title,
  body.brand-body[data-page-path="/"] .hero h1,
  body.brand-body[data-page-path="/"] .home-hero h1,
  body.brand-body[data-page-path="/"] .hero-copy h1,
  body.brand-body[data-page-path="/"] .hero-content h1 {
    max-width: 100% !important;
    font-size: clamp(22px, 5.8vw, 34px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.035em !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 390px) {
  body.brand-body[data-page-path="/"] .hero-title,
  body.brand-body[data-page-path="/"] .hero h1,
  body.brand-body[data-page-path="/"] .home-hero h1,
  body.brand-body[data-page-path="/"] .hero-copy h1,
  body.brand-body[data-page-path="/"] .hero-content h1 {
    font-size: clamp(20px, 5.2vw, 30px) !important;
    letter-spacing: -0.04em !important;
  }
}

/* Force the actual homepage title spans to stay on one line. */
body.brand-body[data-page-path="/"] .home-hero .hero-title {
  max-width: 680px !important;
  font-size: clamp(30px, 2.7vw, 38px) !important;
  line-height: 1.08 !important;
  white-space: nowrap !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-title span,
body.brand-body[data-page-path="/"] .home-hero .hero-title span:nth-of-type(2) {
  display: inline !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  white-space: nowrap !important;
  transform: none !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-title br {
  display: none !important;
}

@media (max-width: 768px) {
  body.brand-body[data-page-path="/"] .home-hero .hero-title {
    font-size: clamp(20px, 5.4vw, 30px) !important;
    letter-spacing: -0.04em !important;
  }
}

@media (max-width: 390px) {
  body.brand-body[data-page-path="/"] .home-hero .hero-title {
    font-size: clamp(18px, 5.1vw, 24px) !important;
    letter-spacing: -0.045em !important;
  }
}

/* Mobile header/hero separation: keep the fixed header from covering the first card. */
@media (max-width: 768px) {
  body.brand-body[data-page-path="/"] .page-frame > .home-hero-shell:first-child {
    margin-top: calc(env(safe-area-inset-top, 0px) + 108px) !important;
  }
}

@media (max-width: 390px) {
  body.brand-body[data-page-path="/"] .page-frame > .home-hero-shell:first-child {
    margin-top: calc(env(safe-area-inset-top, 0px) + 112px) !important;
  }
}

/* Hero typography balance only. Logo stays untouched. */
body.brand-body[data-page-path="/"] .home-hero .home-hero-label {
  margin: 0 0 8px !important;
  font-size: clamp(12px, 0.9vw, 14px) !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-title {
  max-width: 680px !important;
  margin: 0 0 18px !important;
  font-size: clamp(18px, 1.3vw, 20px) !important;
  line-height: 1.42 !important;
  font-weight: 500 !important;
  letter-spacing: -0.012em !important;
  white-space: normal !important;
  text-wrap: balance !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-title span {
  display: inline !important;
  white-space: normal !important;
}

body.brand-body[data-page-path="/"] .home-hero .home-hero-lead,
body.brand-body[data-page-path="/"] .home-hero .hero-description {
  max-width: 560px !important;
  margin: 0 0 20px !important;
  font-size: clamp(16px, 1.15vw, 18px) !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
}

body.brand-body[data-page-path="/"] .home-hero-trust,
body.brand-body[data-page-path="/"] .hero-trust {
  margin: 0 0 22px !important;
  font-size: clamp(13px, 0.95vw, 15px) !important;
  line-height: 1.45 !important;
  font-weight: 600 !important;
  letter-spacing: -0.005em !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-primary-cta small {
  font-size: 12px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

body.brand-body[data-page-path="/"] .home-hero .hero-primary-cta .button,
body.brand-body[data-page-path="/"] .home-hero .hero-services-link {
  font-size: 14px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

@media (max-width: 768px) {
  body.brand-body[data-page-path="/"] .home-hero .home-hero-label {
    margin-bottom: 8px !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
    letter-spacing: 0.13em !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-title {
    max-width: 100% !important;
    margin-bottom: 18px !important;
    font-size: 16px !important;
    line-height: 1.48 !important;
    letter-spacing: -0.012em !important;
    white-space: normal !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-title span {
    white-space: normal !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .home-hero-lead,
  body.brand-body[data-page-path="/"] .home-hero .hero-description {
    margin-bottom: 20px !important;
    font-size: 15.5px !important;
    line-height: 1.55 !important;
    font-weight: 500 !important;
  }

  body.brand-body[data-page-path="/"] .home-hero-trust,
  body.brand-body[data-page-path="/"] .hero-trust {
    margin-bottom: 22px !important;
    font-size: 13.5px !important;
    line-height: 1.45 !important;
    font-weight: 600 !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-primary-cta .button,
  body.brand-body[data-page-path="/"] .home-hero .hero-services-link {
    font-size: 13.5px !important;
    letter-spacing: 0.015em !important;
  }
}

@media (max-width: 390px) {
  body.brand-body[data-page-path="/"] .home-hero .hero-title {
    font-size: 16px !important;
    line-height: 1.48 !important;
  }
}

/* Public design system cohesion layer. Keeps layout/content intact, normalizes rhythm. */
body.brand-body:not(.admin-body) {
  --ak-radius-section: 30px;
  --ak-radius-card: 24px;
  --ak-radius-media: 22px;
  --ak-border-soft: rgba(245, 237, 230, 0.11);
  --ak-border-subtle: rgba(245, 237, 230, 0.075);
  --ak-surface: rgba(22, 15, 12, 0.72);
  --ak-surface-card: rgba(24, 17, 14, 0.7);
  --ak-text: rgba(245, 241, 234, 0.9);
  --ak-text-muted: rgba(245, 241, 234, 0.68);
  --ak-text-soft: rgba(245, 241, 234, 0.56);
  --ak-accent: #e5b485;
  --ak-gap-section: clamp(24px, 3.4vw, 44px);
  --ak-gap-card: 20px;
  --ak-pad-section: clamp(34px, 4.8vw, 62px);
  --ak-pad-card: clamp(20px, 2.4vw, 28px);
  --ak-shadow-card: 0 18px 54px rgba(0, 0, 0, 0.22);
}

body.brand-body:not(.admin-body) .page-frame {
  gap: var(--ak-gap-section) !important;
}

body.brand-body:not(.admin-body) .section-shell,
body.brand-body:not(.admin-body) .page-hero-card,
body.brand-body:not(.admin-body) .booking-section {
  border-radius: var(--ak-radius-section) !important;
  border-color: var(--ak-border-soft) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(229, 180, 133, 0.035)),
    var(--ak-surface) !important;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.2) !important;
}

body.brand-body:not(.admin-body) .section-shell {
  padding: var(--ak-pad-section) !important;
}

body.brand-body:not(.admin-body) .section-heading {
  display: grid !important;
  gap: 12px !important;
  margin-bottom: clamp(22px, 3vw, 34px) !important;
}

body.brand-body:not(.admin-body) .section-heading.row {
  align-items: end !important;
  gap: 18px !important;
}

body.brand-body:not(.admin-body) .section-heading.narrow,
body.brand-body:not(.admin-body) .page-hero-copy {
  max-width: 760px !important;
}

body.brand-body:not(.admin-body) .page-hero h1,
body.brand-body:not(.admin-body) .page-hero-copy h1 {
  max-width: 860px !important;
  font-size: clamp(34px, 4.1vw, 56px) !important;
  line-height: 1.08 !important;
  font-weight: 500 !important;
  letter-spacing: -0.025em !important;
}

body.brand-body:not(.admin-body) .section-heading h2,
body.brand-body:not(.admin-body) .booking-copy h2,
body.brand-body:not(.admin-body) .home-services-title {
  max-width: 760px !important;
  font-size: clamp(26px, 2.8vw, 38px) !important;
  line-height: 1.14 !important;
  font-weight: 500 !important;
  letter-spacing: -0.022em !important;
}

body.brand-body:not(.admin-body) h3,
body.brand-body:not(.admin-body) .card-title,
body.brand-body:not(.admin-body) .service-card h3,
body.brand-body:not(.admin-body) .result-card h3,
body.brand-body:not(.admin-body) .detail-card h3,
body.brand-body:not(.admin-body) .review-card h3,
body.brand-body:not(.admin-body) .mini-panel strong,
body.brand-body:not(.admin-body) .booking-form-panel h3 {
  font-size: clamp(20px, 1.7vw, 24px) !important;
  line-height: 1.22 !important;
  font-weight: 500 !important;
  letter-spacing: -0.018em !important;
}

body.brand-body:not(.admin-body) p,
body.brand-body:not(.admin-body) .lead,
body.brand-body:not(.admin-body) .page-hero-copy p,
body.brand-body:not(.admin-body) .section-heading p,
body.brand-body:not(.admin-body) .service-card p,
body.brand-body:not(.admin-body) .result-card p,
body.brand-body:not(.admin-body) .detail-card p,
body.brand-body:not(.admin-body) .review-card p,
body.brand-body:not(.admin-body) .mini-panel p {
  color: var(--ak-text-muted) !important;
  font-size: clamp(15px, 1.08vw, 16.5px) !important;
  line-height: 1.62 !important;
  letter-spacing: -0.006em !important;
}

body.brand-body:not(.admin-body) .eyebrow {
  color: rgba(229, 180, 133, 0.86) !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
}

body.brand-body:not(.admin-body) .meta-chip,
body.brand-body:not(.admin-body) .hero-badges span,
body.brand-body:not(.admin-body) .service-meta span,
body.brand-body:not(.admin-body) .booking-chips span {
  min-height: 34px !important;
  padding: 8px 13px !important;
  border-radius: 999px !important;
  border-color: var(--ak-border-soft) !important;
  background: rgba(255, 255, 255, 0.035) !important;
  color: rgba(245, 237, 230, 0.78) !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  letter-spacing: -0.006em !important;
}

body.brand-body:not(.admin-body) .button,
body.brand-body:not(.admin-body) .luxe-button,
body.brand-body:not(.admin-body) .ghost-button,
body.brand-body:not(.admin-body) button[type="submit"] {
  min-height: 50px !important;
  border-radius: 999px !important;
  padding: 0 24px !important;
  font-size: 14px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  letter-spacing: 0.025em !important;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease !important;
}

@media (hover: hover) and (pointer: fine) {
  body.brand-body:not(.admin-body) .button:hover,
  body.brand-body:not(.admin-body) .luxe-button:hover,
  body.brand-body:not(.admin-body) .ghost-button:hover {
    transform: translateY(-1px) !important;
  }
}

body.brand-body:not(.admin-body) .button:active,
body.brand-body:not(.admin-body) .luxe-button:active,
body.brand-body:not(.admin-body) .ghost-button:active {
  transform: translateY(0) scale(0.99) !important;
}

body.brand-body:not(.admin-body) .services-grid,
body.brand-body:not(.admin-body) .results-grid,
body.brand-body:not(.admin-body) .journey-grid,
body.brand-body:not(.admin-body) .value-grid,
body.brand-body:not(.admin-body) .review-grid,
body.brand-body:not(.admin-body) .pill-grid,
body.brand-body:not(.admin-body) .booking-layout {
  gap: 22px !important;
}

body.brand-body:not(.admin-body) .service-card,
body.brand-body:not(.admin-body) .result-card,
body.brand-body:not(.admin-body) .detail-card,
body.brand-body:not(.admin-body) .review-card,
body.brand-body:not(.admin-body) .mini-panel,
body.brand-body:not(.admin-body) .booking-form-panel,
body.brand-body:not(.admin-body) .nested-card {
  border-radius: var(--ak-radius-card) !important;
  border-color: var(--ak-border-subtle) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.046), rgba(229, 180, 133, 0.025)),
    var(--ak-surface-card) !important;
  box-shadow: var(--ak-shadow-card) !important;
}

body.brand-body:not(.admin-body) .detail-card,
body.brand-body:not(.admin-body) .review-card,
body.brand-body:not(.admin-body) .mini-panel,
body.brand-body:not(.admin-body) .booking-form-panel {
  padding: var(--ak-pad-card) !important;
}

body.brand-body:not(.admin-body) .service-card-copy,
body.brand-body:not(.admin-body) .result-copy {
  padding: var(--ak-pad-card) !important;
}

body.brand-body:not(.admin-body) .service-card-footer {
  gap: 16px !important;
  margin-top: auto !important;
}

body.brand-body:not(.admin-body) .service-image,
body.brand-body:not(.admin-body) .result-image,
body.brand-body:not(.admin-body) .image-frame,
body.brand-body:not(.admin-body) .blog-card img {
  border-radius: var(--ak-radius-media) !important;
  overflow: hidden !important;
}

body.brand-body:not(.admin-body) .service-image img,
body.brand-body:not(.admin-body) .result-image img,
body.brand-body:not(.admin-body) .image-frame img,
body.brand-body:not(.admin-body) .blog-card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

body.brand-body:not(.admin-body) .before-after-slider {
  contain: layout paint !important;
  border-radius: var(--ak-radius-media) !important;
  box-shadow: none !important;
}

body.brand-body:not(.admin-body) .before-after-labels span {
  min-height: 30px !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  background: rgba(12, 8, 7, 0.34) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  box-shadow: none !important;
}

body.brand-body:not(.admin-body) .site-header .header-card {
  border-color: var(--ak-border-soft) !important;
}

body.brand-body:not(.admin-body) .site-nav a {
  font-size: 15px !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  letter-spacing: -0.006em !important;
}

body.brand-body:not(.admin-body) .booking-form {
  gap: 14px !important;
}

body.brand-body:not(.admin-body) .booking-form input,
body.brand-body:not(.admin-body) .booking-form select,
body.brand-body:not(.admin-body) .booking-form textarea {
  min-height: 48px !important;
  border-radius: 16px !important;
  border-color: var(--ak-border-soft) !important;
  background: rgba(255, 255, 255, 0.045) !important;
  color: var(--ak-text) !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
}

@media (max-width: 768px) {
  body.brand-body:not(.admin-body) {
    --ak-radius-section: 24px;
    --ak-radius-card: 22px;
    --ak-radius-media: 20px;
    --ak-gap-section: 28px;
    --ak-pad-section: 24px 20px;
    --ak-pad-card: 18px;
    --ak-shadow-card: 0 12px 34px rgba(0, 0, 0, 0.18);
  }

  body.brand-body:not(.admin-body) .page-frame {
    gap: var(--ak-gap-section) !important;
  }

  body.brand-body:not(.admin-body) .section-shell {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-inline: auto !important;
  }

  body.brand-body:not(.admin-body) .section-heading {
    gap: 10px !important;
    margin-bottom: 22px !important;
  }

  body.brand-body:not(.admin-body) .section-heading.row {
    display: grid !important;
    align-items: start !important;
  }

  body.brand-body:not(.admin-body) .page-hero h1,
  body.brand-body:not(.admin-body) .page-hero-copy h1 {
    font-size: clamp(28px, 7.2vw, 36px) !important;
    line-height: 1.1 !important;
  }

  body.brand-body:not(.admin-body) .section-heading h2,
  body.brand-body:not(.admin-body) .booking-copy h2,
  body.brand-body:not(.admin-body) .home-services-title {
    font-size: clamp(24px, 6.1vw, 30px) !important;
    line-height: 1.14 !important;
  }

  body.brand-body:not(.admin-body) h3,
  body.brand-body:not(.admin-body) .card-title,
  body.brand-body:not(.admin-body) .service-card h3,
  body.brand-body:not(.admin-body) .result-card h3,
  body.brand-body:not(.admin-body) .detail-card h3,
  body.brand-body:not(.admin-body) .review-card h3,
  body.brand-body:not(.admin-body) .mini-panel strong,
  body.brand-body:not(.admin-body) .booking-form-panel h3 {
    font-size: clamp(19px, 5vw, 23px) !important;
    line-height: 1.2 !important;
  }

  body.brand-body:not(.admin-body) p,
  body.brand-body:not(.admin-body) .lead,
  body.brand-body:not(.admin-body) .page-hero-copy p,
  body.brand-body:not(.admin-body) .section-heading p,
  body.brand-body:not(.admin-body) .service-card p,
  body.brand-body:not(.admin-body) .result-card p,
  body.brand-body:not(.admin-body) .detail-card p,
  body.brand-body:not(.admin-body) .review-card p,
  body.brand-body:not(.admin-body) .mini-panel p {
    font-size: 15px !important;
    line-height: 1.56 !important;
  }

  body.brand-body:not(.admin-body) .button,
  body.brand-body:not(.admin-body) .luxe-button,
  body.brand-body:not(.admin-body) .ghost-button,
  body.brand-body:not(.admin-body) button[type="submit"] {
    min-height: 48px !important;
    padding: 0 18px !important;
    font-size: 13.5px !important;
  }

  body.brand-body:not(.admin-body) .services-grid,
  body.brand-body:not(.admin-body) .results-grid,
  body.brand-body:not(.admin-body) .journey-grid,
  body.brand-body:not(.admin-body) .value-grid,
  body.brand-body:not(.admin-body) .review-grid,
  body.brand-body:not(.admin-body) .pill-grid,
  body.brand-body:not(.admin-body) .booking-layout {
    gap: 18px !important;
  }

  body.brand-body:not(.admin-body) .service-card,
  body.brand-body:not(.admin-body) .result-card,
  body.brand-body:not(.admin-body) .detail-card,
  body.brand-body:not(.admin-body) .review-card,
  body.brand-body:not(.admin-body) .mini-panel,
  body.brand-body:not(.admin-body) .booking-form-panel,
  body.brand-body:not(.admin-body) .nested-card {
    box-shadow: var(--ak-shadow-card) !important;
  }

  body.brand-body:not(.admin-body) .result-card:hover,
  body.brand-body:not(.admin-body) .service-card:hover,
  body.brand-body:not(.admin-body) .detail-card:hover,
  body.brand-body:not(.admin-body) .review-card:hover,
  body.brand-body:not(.admin-body) .mini-panel:hover,
  body.brand-body:not(.admin-body) .button:hover,
  body.brand-body:not(.admin-body) .luxe-button:hover,
  body.brand-body:not(.admin-body) .ghost-button:hover {
    transform: none !important;
  }

  body.brand-body:not(.admin-body) .before-after-slider,
  body.brand-body:not(.admin-body) .result-card,
  body.brand-body:not(.admin-body) .service-card {
    filter: none !important;
    backdrop-filter: none !important;
  }

  body.brand-body:not(.admin-body) .site-nav a {
    font-size: 16px !important;
    min-height: 48px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.brand-body:not(.admin-body) *,
  body.brand-body:not(.admin-body) *::before,
  body.brand-body:not(.admin-body) *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Hero selected support texts: improve readability on dark card. */
body.brand-body[data-page-path="/"] .home-hero .home-hero-lead,
body.brand-body[data-page-path="/"] .home-hero .hero-description,
body.brand-body[data-page-path="/"] .home-hero-trust,
body.brand-body[data-page-path="/"] .hero-trust {
  color: #ffffff !important;
}

/* Mobile hero composition: one responsive content column, logo unchanged. */
@media (max-width: 768px) {
  body.brand-body[data-page-path="/"] .home-hero .hero-copy {
    width: min(100%, 560px) !important;
    max-width: 100% !important;
    margin-inline: auto !important;
    padding-inline: clamp(8px, 3.4vw, 18px) !important;
    display: grid !important;
    justify-items: center !important;
    text-align: center !important;
    gap: clamp(12px, 3.4vw, 18px) !important;
    overflow: visible !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .home-hero-label,
  body.brand-body[data-page-path="/"] .home-hero .hero-title,
  body.brand-body[data-page-path="/"] .home-hero .home-hero-lead,
  body.brand-body[data-page-path="/"] .home-hero .hero-description,
  body.brand-body[data-page-path="/"] .home-hero-trust,
  body.brand-body[data-page-path="/"] .hero-trust,
  body.brand-body[data-page-path="/"] .home-hero .hero-actions {
    width: min(100%, 520px) !important;
    max-width: 100% !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .home-hero-label {
    margin-bottom: 0 !important;
    font-size: clamp(10.5px, 3.05vw, 12px) !important;
    line-height: 1.35 !important;
    letter-spacing: 0.13em !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-title {
    margin-bottom: 0 !important;
    font-size: clamp(20px, 5.9vw, 26px) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.022em !important;
    text-wrap: balance !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-title span {
    display: inline !important;
    white-space: normal !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .home-hero-lead,
  body.brand-body[data-page-path="/"] .home-hero .hero-description {
    margin-bottom: 0 !important;
    font-size: clamp(18px, 5.2vw, 23px) !important;
    line-height: 1.42 !important;
    font-weight: 500 !important;
    letter-spacing: -0.012em !important;
    text-wrap: balance !important;
    overflow-wrap: break-word !important;
  }

  body.brand-body[data-page-path="/"] .home-hero-trust,
  body.brand-body[data-page-path="/"] .hero-trust {
    margin-bottom: clamp(4px, 1.8vw, 10px) !important;
    font-size: clamp(14px, 4vw, 16px) !important;
    line-height: 1.42 !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em !important;
    text-wrap: balance !important;
    overflow-wrap: break-word !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: clamp(10px, 3vw, 12px) !important;
    margin-top: 0 !important;
    justify-items: stretch !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-primary-cta {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    gap: 8px !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-primary-cta .button,
  body.brand-body[data-page-path="/"] .home-hero .hero-services-link {
    width: 100% !important;
    min-height: clamp(52px, 14vw, 60px) !important;
    height: auto !important;
    padding-inline: clamp(16px, 5vw, 24px) !important;
    justify-content: center !important;
  }
}

@media (max-width: 360px) {
  body.brand-body[data-page-path="/"] .home-hero .hero-copy {
    padding-inline: clamp(4px, 2.5vw, 10px) !important;
    gap: 12px !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .home-hero-label {
    font-size: 10px !important;
    letter-spacing: 0.11em !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-title {
    font-size: clamp(18px, 5.65vw, 21px) !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .home-hero-lead,
  body.brand-body[data-page-path="/"] .home-hero .hero-description {
    font-size: clamp(16px, 5vw, 18px) !important;
  }

  body.brand-body[data-page-path="/"] .home-hero-trust,
  body.brand-body[data-page-path="/"] .hero-trust {
    font-size: clamp(13px, 4vw, 14px) !important;
  }
}

/* Mobile conversion hero: remove large image block and collapse unused space. */
@media (max-width: 768px) {
  body.brand-body[data-page-path="/"] .home-hero .hero-visual,
  body.brand-body[data-page-path="/"] .home-hero .hero-image {
    display: none !important;
  }

  body.brand-body[data-page-path="/"] .home-hero {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  body.brand-body[data-page-path="/"] .page-frame > .home-hero-shell:first-child {
    padding-top: clamp(22px, 5.8vw, 30px) !important;
    padding-bottom: clamp(26px, 6.6vw, 36px) !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-copy {
    align-self: center !important;
  }
}

/* Mobile trust line: keep it on one responsive row across phone sizes. */
@media (max-width: 768px) {
  body.brand-body[data-page-path="/"] .home-hero-trust,
  body.brand-body[data-page-path="/"] .hero-trust {
    width: 100% !important;
    max-width: 100% !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: clip !important;
    font-size: clamp(11px, 3.45vw, 15px) !important;
    line-height: 1.35 !important;
    letter-spacing: -0.035em !important;
  }
}

@media (max-width: 360px) {
  body.brand-body[data-page-path="/"] .home-hero-trust,
  body.brand-body[data-page-path="/"] .hero-trust {
    font-size: clamp(10.5px, 3.35vw, 12px) !important;
    letter-spacing: -0.045em !important;
  }
}

/* Mobile hero headline: match the subtitle text scale. */
@media (max-width: 768px) {
  body.brand-body[data-page-path="/"] .home-hero .hero-title {
    font-size: clamp(18px, 5.2vw, 23px) !important;
    line-height: 1.42 !important;
    font-weight: 500 !important;
    letter-spacing: -0.012em !important;
  }
}

@media (max-width: 360px) {
  body.brand-body[data-page-path="/"] .home-hero .hero-title {
    font-size: clamp(16px, 5vw, 18px) !important;
  }
}

/* Mobile homepage heading cleanup and centered section labels. */
@media (max-width: 768px) {
  body.brand-body[data-page-path="/"] #home-services .home-services-title,
  body.brand-body[data-page-path="/"] .home-results-mobile .section-heading h2 {
    display: none !important;
  }

  body.brand-body[data-page-path="/"] .section-heading,
  body.brand-body[data-page-path="/"] .section-heading.row,
  body.brand-body[data-page-path="/"] .booking-copy,
  body.brand-body[data-page-path="/"] .booking-form-panel .section-heading,
  body.brand-body[data-page-path="/"] .site-footer .footer-card {
    text-align: center !important;
    justify-items: center !important;
  }

  body.brand-body[data-page-path="/"] .section-heading .eyebrow,
  body.brand-body[data-page-path="/"] .booking-copy > .eyebrow,
  body.brand-body[data-page-path="/"] .booking-form-panel .eyebrow,
  body.brand-body[data-page-path="/"] .site-footer .eyebrow {
    width: 100% !important;
    text-align: center !important;
    margin-inline: auto !important;
  }

  body.brand-body[data-page-path="/"] .section-heading.row > .text-link,
  body.brand-body[data-page-path="/"] #home-services .section-heading.row > .text-link,
  body.brand-body[data-page-path="/"] .home-results-mobile .section-heading.row > .text-link {
    display: inline-flex !important;
    width: auto !important;
    max-width: 100% !important;
    margin-inline: auto !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

/* Mobile hero title uses the same font family as the supporting text. */
@media (max-width: 768px) {
  body.brand-body[data-page-path="/"] .home-hero .hero-title,
  body.brand-body[data-page-path="/"] .home-hero .hero-title span {
    font-family: Inter, Manrope, sans-serif !important;
  }
}

/* Mobile hero editorial hierarchy polish. */
@media (max-width: 768px) {
  body.brand-body[data-page-path="/"] .home-hero .home-hero-label {
    color: rgba(229, 180, 133, 0.78) !important;
    font-size: clamp(10px, 2.9vw, 11.5px) !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
    letter-spacing: 0.16em !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-title {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: clamp(18px, 5.2vw, 20px) !important;
    line-height: 1.28 !important;
    font-weight: 600 !important;
    letter-spacing: -0.018em !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .home-hero-lead,
  body.brand-body[data-page-path="/"] .home-hero .hero-description {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: clamp(20px, 5.8vw, 23px) !important;
    line-height: 1.32 !important;
    font-weight: 600 !important;
    letter-spacing: -0.018em !important;
  }

  body.brand-body[data-page-path="/"] .home-hero-trust,
  body.brand-body[data-page-path="/"] .hero-trust {
    color: rgba(255, 255, 255, 0.68) !important;
    font-size: clamp(12px, 3.45vw, 13.5px) !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
    letter-spacing: -0.03em !important;
  }
}

@media (max-width: 360px) {
  body.brand-body[data-page-path="/"] .home-hero .hero-title {
    font-size: clamp(16.5px, 5vw, 18px) !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .home-hero-lead,
  body.brand-body[data-page-path="/"] .home-hero .hero-description {
    font-size: clamp(18px, 5.4vw, 20px) !important;
  }

  body.brand-body[data-page-path="/"] .home-hero-trust,
  body.brand-body[data-page-path="/"] .hero-trust {
    font-size: clamp(11px, 3.4vw, 12px) !important;
  }
}

/* Mobile section labels requested as white. Keep hero brand label untouched. */
@media (max-width: 768px) {
  body.brand-body[data-page-path="/"] .page-frame > section:not(.home-hero-shell) .section-heading > .eyebrow,
  body.brand-body[data-page-path="/"] .page-frame > section:not(.home-hero-shell) .section-heading > div > .eyebrow,
  body.brand-body[data-page-path="/"] #booking .booking-copy > .eyebrow,
  body.brand-body[data-page-path="/"] #booking .booking-form-panel .section-heading > .eyebrow {
    color: #ffffff !important;
  }
}

/* Mobile-only: hide selected section titles while keeping data/desktop intact. */
@media (max-width: 768px) {
  body.brand-body[data-page-path="/"] .mobile-trust-section .section-heading > h2,
  body.brand-body[data-page-path="/"] .consultation-journey-section .section-heading > h2,
  body.brand-body[data-page-path="/"] .journey-section .section-heading > h2,
  body.brand-body[data-page-path="/"] .home-faq-section .section-heading h2,
  body.brand-body[data-page-path="/"] .faq-section .section-heading h2,
  body.brand-body[data-page-path="/"] #booking .booking-copy > h2 {
    display: none !important;
  }

  body.brand-body[data-page-path="/"] #booking .booking-copy > .lead {
    display: none !important;
  }
}

/* Hide selected homepage helper titles/copy on all viewports; content remains editable. */
body.brand-body[data-page-path="/"] .mobile-trust-section .section-heading > h2,
body.brand-body[data-page-path="/"] .consultation-journey-section .section-heading > h2,
body.brand-body[data-page-path="/"] .home-faq-section .section-heading h2,
body.brand-body[data-page-path="/"] #home-services .section-heading h2,
body.brand-body[data-page-path="/"] .home-results-mobile .section-heading h2,
body.brand-body[data-page-path="/"] .home-results-desktop .section-heading h2,
body.brand-body[data-page-path="/"] .home-value-section .section-heading > h2,
body.brand-body[data-page-path="/"] .home-reviews-section .section-heading > h2,
body.brand-body[data-page-path="/"] .home-seo-section .section-heading > h2,
body.brand-body[data-page-path="/"] #booking .booking-copy > h2,
body.brand-body[data-page-path="/"] #booking .booking-copy > .lead {
  display: none !important;
}

/* Final homepage label/card alignment polish. */
body.brand-body[data-page-path="/"] .page-frame > section:not(.home-hero-shell) .section-heading .eyebrow,
body.brand-body[data-page-path="/"] #booking .booking-copy > .eyebrow,
body.brand-body[data-page-path="/"] #booking-form .section-heading .eyebrow {
  color: #ffffff !important;
}

body.brand-body[data-page-path="/"] .section-heading.row {
  align-items: center !important;
}

body.brand-body[data-page-path="/"] .section-heading.row .eyebrow {
  margin-bottom: 0 !important;
}

body.brand-body[data-page-path="/"] .section-heading.row > .text-link {
  align-self: center !important;
  justify-self: end !important;
}

body.brand-body[data-page-path="/"] .home-value-section .detail-card:nth-child(2),
body.brand-body[data-page-path="/"] .home-value-section .detail-card:nth-child(2):hover,
body.brand-body[data-page-path="/"] .home-reviews-section .review-card:nth-child(2n),
body.brand-body[data-page-path="/"] .home-reviews-section .review-card:nth-child(2n):hover {
  transform: none !important;
}

/* Hide selected inner-page helper headings while keeping content/admin data intact. */
body.brand-body #booking .booking-copy > h2,
body.brand-body[data-page-path="/services"] [data-filter-root] .section-heading h2,
body.brand-body[data-page-path="/about"] .page-frame > section:not(.page-hero) .section-heading > h2 {
  display: none !important;
}

/* Mobile hero hierarchy: calmer luxury typography without changing structure. */
@media (max-width: 768px) {
  body.brand-body[data-page-path="/"] .home-hero .hero-copy {
    gap: clamp(12px, 3.4vw, 16px) !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-title,
  body.brand-body[data-page-path="/"] .home-hero .hero-title span {
    font-family: Inter, Manrope, sans-serif !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-title {
    width: min(100%, 330px) !important;
    margin: 0 auto clamp(6px, 1.8vw, 9px) !important;
    color: rgba(255, 255, 255, 0.94) !important;
    font-size: clamp(20px, 5.7vw, 25px) !important;
    line-height: 1.22 !important;
    font-weight: 600 !important;
    letter-spacing: -0.018em !important;
    text-align: center !important;
    text-wrap: balance;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-title span {
    display: inline !important;
    white-space: normal !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .home-hero-lead,
  body.brand-body[data-page-path="/"] .home-hero .hero-description {
    width: min(100%, 315px) !important;
    margin: 0 auto clamp(8px, 2.4vw, 12px) !important;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: clamp(15.5px, 4.35vw, 18px) !important;
    line-height: 1.38 !important;
    font-weight: 500 !important;
    letter-spacing: -0.012em !important;
    text-align: center !important;
    text-wrap: balance;
  }

  body.brand-body[data-page-path="/"] .home-hero-trust,
  body.brand-body[data-page-path="/"] .hero-trust {
    width: min(100%, 330px) !important;
    margin: 0 auto clamp(15px, 4vw, 20px) !important;
    color: rgba(255, 255, 255, 0.58) !important;
    font-size: clamp(11.5px, 3.35vw, 13px) !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
    letter-spacing: -0.025em !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-actions {
    width: min(100%, 354px) !important;
    margin: 0 auto !important;
    gap: clamp(9px, 2.8vw, 11px) !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-actions + .scroll-hint,
  body.brand-body[data-page-path="/"] .home-hero .scroll-hint {
    margin-top: clamp(8px, 2.2vw, 10px) !important;
    color: rgba(255, 255, 255, 0.52) !important;
    font-size: clamp(11.5px, 3.3vw, 13px) !important;
  }
}

@media (max-width: 360px) {
  body.brand-body[data-page-path="/"] .home-hero .hero-title {
    width: min(100%, 300px) !important;
    font-size: clamp(18.5px, 5.55vw, 20px) !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .home-hero-lead,
  body.brand-body[data-page-path="/"] .home-hero .hero-description {
    width: min(100%, 292px) !important;
    font-size: clamp(14.5px, 4.4vw, 16px) !important;
  }

  body.brand-body[data-page-path="/"] .home-hero-trust,
  body.brand-body[data-page-path="/"] .hero-trust {
    font-size: clamp(10.5px, 3.25vw, 11.5px) !important;
  }
}

/* Production stabilization layer: unify rhythm without redesigning the brand. */
:root {
  --ak-space-1: 8px;
  --ak-space-2: 12px;
  --ak-space-3: 16px;
  --ak-space-4: 24px;
  --ak-space-5: 32px;
  --ak-space-6: 48px;
  --ak-space-7: 64px;
  --ak-copy-max: 680px;
  --ak-section-radius: 28px;
  --ak-card-radius: 24px;
  --ak-inner-radius: 20px;
  --ak-border-soft: rgba(245, 237, 230, 0.1);
  --ak-text-strong: rgba(245, 241, 234, 0.94);
  --ak-text-muted: rgba(245, 241, 234, 0.68);
  --ak-shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.24);
  --ak-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ak-transition-fast: 180ms var(--ak-ease);
  --ak-transition-base: 260ms var(--ak-ease);
}

html,
body.brand-body {
  overflow-x: hidden;
}

body.brand-body img,
body.brand-body video,
body.brand-body picture {
  max-width: 100%;
}

body.brand-body p,
body.brand-body .lead,
body.brand-body .service-card p,
body.brand-body .result-card p,
body.brand-body .detail-card p,
body.brand-body .review-card p,
body.brand-body .mini-panel p,
body.brand-body .faq-item p {
  line-height: 1.56;
}

body.brand-body .section-heading {
  gap: var(--ak-space-3);
  margin-bottom: clamp(24px, 3vw, 36px);
}

body.brand-body .section-heading h1,
body.brand-body .section-heading h2,
body.brand-body .booking-copy h2,
body.brand-body .footer-title {
  max-width: var(--ak-copy-max);
  font-weight: 500;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

body.brand-body .section-heading h2,
body.brand-body .booking-copy h2,
body.brand-body .footer-title {
  font-size: clamp(24px, 2.45vw, 34px);
  line-height: 1.14;
}

body.brand-body .section-heading .eyebrow,
body.brand-body .booking-copy > .eyebrow,
body.brand-body .booking-form-panel .eyebrow,
body.brand-body .footer-card .eyebrow {
  font-size: clamp(11px, 0.78vw, 12px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.16em;
}

body.brand-body .section-shell,
body.brand-body .article-shell,
body.brand-body .footer-card {
  border-color: var(--ak-border-soft);
  border-radius: var(--ak-section-radius);
  box-shadow: var(--ak-shadow-soft);
}

body.brand-body .service-card,
body.brand-body .blog-card,
body.brand-body .result-card,
body.brand-body .detail-card,
body.brand-body .review-card,
body.brand-body .mini-panel,
body.brand-body .faq-item,
body.brand-body .contact-card,
body.brand-body .booking-form-panel {
  border-color: var(--ak-border-soft);
  border-radius: var(--ak-card-radius);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
}

body.brand-body .image-frame,
body.brand-body .before-after-slider,
body.brand-body .service-image,
body.brand-body .result-image {
  border-radius: var(--ak-inner-radius);
  overflow: hidden;
}

body.brand-body .service-image img,
body.brand-body .result-image img,
body.brand-body .before-after-slider img,
body.brand-body .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-position, center center);
}

body.brand-body .button,
body.brand-body .luxe-button,
body.brand-body .ghost-button,
body.brand-body .booking-secondary-btn,
body.brand-body .filter-pill,
body.brand-body .text-link {
  transition:
    transform var(--ak-transition-fast),
    opacity var(--ak-transition-fast),
    border-color var(--ak-transition-fast),
    background-color var(--ak-transition-fast),
    color var(--ak-transition-fast);
}

body.brand-body .before-after-slider {
  contain: layout paint;
  isolation: isolate;
}

body.brand-body .before-after-slider .after-layer {
  will-change: clip-path;
}

body.brand-body .before-after-slider input[type="range"] {
  touch-action: pan-y;
}

@media (hover: hover) and (pointer: fine) {
  body.brand-body .button:hover,
  body.brand-body .luxe-button:hover,
  body.brand-body .ghost-button:hover,
  body.brand-body .booking-secondary-btn:hover {
    transform: translateY(-1px);
  }

  body.brand-body .service-card:hover,
  body.brand-body .blog-card:hover,
  body.brand-body .result-card:hover,
  body.brand-body .detail-card:hover,
  body.brand-body .review-card:hover,
  body.brand-body .mini-panel:hover,
  body.brand-body .faq-item:hover,
  body.brand-body .contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.26);
  }
}

@media (min-width: 769px) {
  body.brand-body .section-shell,
  body.brand-body .article-shell {
    padding-top: clamp(48px, 4.7vw, 68px);
    padding-bottom: clamp(48px, 4.7vw, 68px);
    margin-bottom: clamp(44px, 5vw, 68px);
  }

  body.brand-body .section-heading.row {
    align-items: center;
  }
}

@media (max-width: 768px) {
  body.brand-body .page-frame {
    width: calc(100% - 16px);
  }

  body.brand-body .section-shell,
  body.brand-body .article-shell,
  body.brand-body .footer-card {
    padding: clamp(24px, 6vw, 32px) clamp(20px, 5vw, 26px);
    margin-bottom: clamp(24px, 7vw, 34px);
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  }

  body.brand-body .section-heading {
    margin-bottom: clamp(18px, 5vw, 24px);
  }

  body.brand-body .section-heading h1,
  body.brand-body .section-heading h2,
  body.brand-body .booking-copy h2,
  body.brand-body .footer-title {
    max-width: 100%;
    font-size: clamp(22px, 6.2vw, 28px);
    line-height: 1.16;
  }

  body.brand-body p,
  body.brand-body .lead,
  body.brand-body .service-card p,
  body.brand-body .result-card p,
  body.brand-body .detail-card p,
  body.brand-body .review-card p,
  body.brand-body .mini-panel p,
  body.brand-body .faq-item p {
    font-size: clamp(14.5px, 4vw, 16px);
    line-height: 1.55;
  }

  body.brand-body .service-card,
  body.brand-body .blog-card,
  body.brand-body .result-card,
  body.brand-body .detail-card,
  body.brand-body .review-card,
  body.brand-body .mini-panel,
  body.brand-body .faq-item,
  body.brand-body .contact-card,
  body.brand-body .booking-form-panel {
    border-radius: 22px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  }

  body.brand-body .button,
  body.brand-body .luxe-button,
  body.brand-body .ghost-button,
  body.brand-body .booking-secondary-btn {
    min-height: 48px;
  }

  body.brand-body .service-card:hover,
  body.brand-body .blog-card:hover,
  body.brand-body .result-card:hover,
  body.brand-body .detail-card:hover,
  body.brand-body .review-card:hover,
  body.brand-body .mini-panel:hover,
  body.brand-body .faq-item:hover,
  body.brand-body .contact-card:hover {
    transform: none !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  }

  body.brand-body .before-after-slider,
  body.brand-body .before-after-slider *,
  body.brand-body .result-image,
  body.brand-body .service-image {
    filter: none !important;
  }

  body.brand-body .before-after-slider {
    transform: translateZ(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Owner admin cleanup: hide fields that are not part of the current public UI. */
body.owner-admin-body label:has(input[name="brand_tagline"]),
body.owner-admin-body label:has(input[name="category"]) {
  display: none !important;
}

/* Production mobile/admin hardening: one predictable responsive layer. */
:root {
  --ak-mobile-gutter: clamp(8px, 2.6vw, 14px);
  --ak-mobile-card-pad: clamp(18px, 5.2vw, 26px);
  --ak-mobile-radius: clamp(22px, 6vw, 28px);
  --ak-admin-gutter: clamp(14px, 3vw, 28px);
}

body.brand-body,
body.owner-admin-body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  html,
  body,
  .brand-body,
  .page-frame,
  .site-header,
  .header-shell,
  .section-shell,
  .admin-shell,
  .owner-admin-shell {
    max-width: 100%;
    overflow-x: hidden !important;
  }

  body.brand-body {
    font-size: clamp(14.5px, 4vw, 16px);
    line-height: 1.55;
  }

  body.brand-body .page-frame {
    width: calc(100% - (var(--ak-mobile-gutter) * 2)) !important;
    padding-top: clamp(4px, 1.6vw, 8px) !important;
    padding-bottom: clamp(34px, 9vw, 56px) !important;
  }

  body.brand-body .header-shell {
    width: calc(100% - (var(--ak-mobile-gutter) * 2)) !important;
    padding: clamp(7px, 2vw, 10px) 0 0 !important;
  }

  body.brand-body .header-card {
    min-height: clamp(60px, 16vw, 66px) !important;
    padding: clamp(8px, 2.8vw, 12px) clamp(12px, 3.8vw, 16px) !important;
    border-radius: clamp(22px, 6vw, 28px) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) clamp(44px, 12vw, 52px) !important;
    grid-template-rows: auto !important;
    align-items: center !important;
    gap: clamp(10px, 3vw, 14px) !important;
    overflow: visible !important;
  }

  body.brand-body .brand-mark {
    font-size: clamp(22px, 7vw, 30px) !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }

  body.brand-body .nav-toggle {
    position: relative !important;
    inset: auto !important;
    width: clamp(44px, 12vw, 52px) !important;
    min-width: clamp(44px, 12vw, 52px) !important;
    height: clamp(44px, 12vw, 52px) !important;
    margin: 0 !important;
    transform: none !important;
    justify-self: end !important;
  }

  body.brand-body header.site-header .header-card > nav.site-nav,
  body.brand-body header.site-header.is-scrolled .header-card > nav.site-nav {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    z-index: 10000 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 12px !important;
    border-radius: 22px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate3d(0, -6px, 0) !important;
  }

  body.brand-body header.site-header[data-nav-open="true"] .header-card > nav.site-nav,
  body.brand-body header.site-header.is-scrolled[data-nav-open="true"] .header-card > nav.site-nav {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) !important;
    max-height: min(68dvh, 520px) !important;
    overflow-y: auto !important;
  }

  body.brand-body .section-shell,
  body.brand-body .article-shell,
  body.brand-body .footer-card {
    width: 100% !important;
    padding: var(--ak-mobile-card-pad) !important;
    border-radius: var(--ak-mobile-radius) !important;
    margin-top: clamp(20px, 6vw, 30px) !important;
    margin-bottom: clamp(20px, 6vw, 30px) !important;
  }

  body.brand-body .section-heading,
  body.brand-body .section-heading.row,
  body.brand-body .section-heading.narrow,
  body.brand-body .booking-copy,
  body.brand-body .booking-form-panel .section-heading,
  body.brand-body .footer-card {
    text-align: center !important;
    justify-items: center !important;
    align-items: center !important;
  }

  body.brand-body .section-heading.row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: clamp(10px, 3vw, 14px) !important;
  }

  body.brand-body .section-heading .eyebrow,
  body.brand-body .booking-copy > .eyebrow,
  body.brand-body .booking-form-panel .eyebrow,
  body.brand-body .footer-card .eyebrow {
    width: 100%;
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: clamp(11px, 3.1vw, 12px) !important;
    line-height: 1.25 !important;
    letter-spacing: 0.13em !important;
    text-align: center !important;
  }

  body.brand-body .section-heading .text-link,
  body.brand-body .section-heading.row > .text-link {
    justify-self: center !important;
    align-self: center !important;
    text-align: center !important;
    font-size: clamp(14px, 4vw, 16px) !important;
  }

  body.brand-body h1,
  body.brand-body h2,
  body.brand-body .page-hero h1,
  body.brand-body .section-heading h2,
  body.brand-body .booking-form-panel h3 {
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  body.brand-body .hero-visual,
  body.brand-body .hero-image,
  body.brand-body .hero-poster,
  body.brand-body .mobile-poster {
    display: none !important;
  }

  body.brand-body[data-page-path="/"] .home-hero-shell {
    padding: clamp(22px, 6vw, 30px) clamp(18px, 5vw, 24px) !important;
  }

  body.brand-body[data-page-path="/"] .home-hero {
    display: block !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-copy {
    width: min(100%, 420px) !important;
    margin-inline: auto !important;
    text-align: center !important;
    gap: clamp(12px, 3.6vw, 16px) !important;
  }

  body.brand-body[data-page-path="/"] .hero-brand-mark {
    margin-inline: auto !important;
    margin-bottom: clamp(14px, 4vw, 18px) !important;
  }

  body.brand-body[data-page-path="/"] .home-hero-label {
    text-align: center !important;
    margin-bottom: clamp(12px, 3.4vw, 16px) !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-title {
    width: min(100%, 350px) !important;
    margin: 0 auto clamp(10px, 3vw, 14px) !important;
    font-family: Inter, Manrope, sans-serif !important;
    font-size: clamp(20px, 5.8vw, 25px) !important;
    line-height: 1.22 !important;
    font-weight: 650 !important;
    letter-spacing: -0.018em !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.95) !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-title span {
    font-family: inherit !important;
    white-space: normal !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .home-hero-lead,
  body.brand-body[data-page-path="/"] .home-hero .hero-description {
    width: min(100%, 335px) !important;
    margin: 0 auto clamp(8px, 2.6vw, 12px) !important;
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: clamp(16px, 4.8vw, 19px) !important;
    line-height: 1.36 !important;
    font-weight: 600 !important;
    text-align: center !important;
  }

  body.brand-body[data-page-path="/"] .home-hero-trust,
  body.brand-body[data-page-path="/"] .hero-trust {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto clamp(16px, 4.5vw, 20px) !important;
    color: rgba(255, 255, 255, 0.66) !important;
    font-size: clamp(11px, 3.25vw, 13px) !important;
    line-height: 1.25 !important;
    font-weight: 600 !important;
    letter-spacing: -0.035em !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .hero-actions {
    width: min(100%, 360px) !important;
    margin-inline: auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  body.brand-body[data-page-path="/"] .hero-primary-cta {
    display: grid !important;
    gap: 8px !important;
  }

  body.brand-body .button,
  body.brand-body .luxe-button,
  body.brand-body .ghost-button {
    min-height: clamp(48px, 13vw, 54px) !important;
    border-radius: 999px !important;
  }

  body.brand-body .service-card,
  body.brand-body .result-card,
  body.brand-body .detail-card,
  body.brand-body .review-card,
  body.brand-body .mini-panel,
  body.brand-body .faq-item,
  body.brand-body .contact-card {
    transform: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.brand-body .before-after-slider {
    contain: layout paint !important;
    transform: translateZ(0);
    touch-action: pan-y;
  }

  body.brand-body .before-after-slider input[type="range"] {
    touch-action: pan-y !important;
    pointer-events: auto !important;
  }

  body.brand-body .before-after-slider .after-layer {
    pointer-events: none !important;
    will-change: clip-path;
  }
}

@media (max-width: 360px) {
  body.brand-body[data-page-path="/"] .home-hero .hero-title {
    font-size: clamp(18px, 5.6vw, 20px) !important;
  }

  body.brand-body[data-page-path="/"] .home-hero .home-hero-lead,
  body.brand-body[data-page-path="/"] .home-hero .hero-description {
    font-size: clamp(15px, 4.7vw, 16.5px) !important;
  }

  body.brand-body[data-page-path="/"] .home-hero-trust,
  body.brand-body[data-page-path="/"] .hero-trust {
    font-size: clamp(10.2px, 3.18vw, 11.2px) !important;
  }
}

/* Owner admin responsive polish for non-technical editing on any phone. */
body.owner-admin-body .owner-admin-shell,
body.owner-admin-body .admin-shell {
  width: min(100% - (var(--ak-admin-gutter) * 2), 1440px);
}

body.owner-admin-body .admin-form,
body.owner-admin-body .owner-edit-form {
  align-items: stretch;
}

body.owner-admin-body .admin-form input,
body.owner-admin-body .admin-form select,
body.owner-admin-body .admin-form textarea {
  width: 100%;
  max-width: 100%;
}

body.owner-admin-body .owner-image-editor img,
body.owner-admin-body .admin-preview-image {
  width: min(100%, 520px);
  max-height: 320px;
  object-fit: cover;
  border-radius: 18px;
}

@media (max-width: 900px) {
  body.owner-admin-body .owner-admin-shell,
  body.owner-admin-body .admin-shell {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: calc(100% - 20px) !important;
    padding: 10px 0 32px !important;
  }

  body.owner-admin-body .owner-admin-sidebar,
  body.owner-admin-body .admin-sidebar {
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
    overscroll-behavior: auto !important;
    padding: 18px !important;
    border-radius: 24px !important;
  }

  body.owner-admin-body .owner-admin-brand {
    margin-bottom: 14px !important;
  }

  body.owner-admin-body .owner-admin-brand h1 {
    font-size: clamp(32px, 10vw, 46px) !important;
    line-height: 0.95 !important;
  }

  body.owner-admin-body .owner-admin-nav,
  body.owner-admin-body .admin-nav {
    display: flex !important;
    gap: 8px !important;
    overflow-x: auto !important;
    padding-bottom: 4px !important;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  body.owner-admin-body .owner-admin-nav::-webkit-scrollbar,
  body.owner-admin-body .admin-nav::-webkit-scrollbar {
    display: none;
  }

  body.owner-admin-body .owner-admin-nav a,
  body.owner-admin-body .admin-nav a {
    flex: 0 0 auto !important;
    min-height: 44px !important;
    padding: 10px 14px !important;
    border-radius: 999px !important;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  body.owner-admin-body .owner-admin-sidebar-actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  body.owner-admin-body .owner-admin-main,
  body.owner-admin-body .admin-main {
    padding: 0 !important;
    gap: 16px !important;
  }

  body.owner-admin-body .owner-admin-hero,
  body.owner-admin-body .admin-hero,
  body.owner-admin-body .admin-card,
  body.owner-admin-body .admin-form,
  body.owner-admin-body .owner-panel-card {
    padding: clamp(16px, 5vw, 22px) !important;
    border-radius: 24px !important;
  }

  body.owner-admin-body .owner-admin-hero {
    display: grid !important;
    gap: 14px !important;
  }

  body.owner-admin-body .owner-metric-row,
  body.owner-admin-body .metric-row,
  body.owner-admin-body .owner-section-grid,
  body.owner-admin-body .owner-field-preview-grid,
  body.owner-admin-body .admin-card-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  body.owner-admin-body .admin-form,
  body.owner-admin-body .owner-edit-form {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  body.owner-admin-body .admin-form h3,
  body.owner-admin-body .admin-form .span-2,
  body.owner-admin-body .owner-edit-form .span-2,
  body.owner-admin-body .owner-image-editor,
  body.owner-admin-body .owner-admin-actions {
    grid-column: 1 / -1 !important;
  }

  body.owner-admin-body .admin-form label {
    gap: 8px !important;
    font-size: 14px !important;
  }

  body.owner-admin-body .admin-form input,
  body.owner-admin-body .admin-form select,
  body.owner-admin-body .admin-form textarea {
    min-height: 48px !important;
    padding: 12px 14px !important;
    font-size: 16px !important;
    border-radius: 16px !important;
  }

  body.owner-admin-body .admin-form textarea {
    min-height: 118px !important;
  }

  body.owner-admin-body .owner-image-editor {
    padding: 14px !important;
    border-radius: 18px !important;
  }

  body.owner-admin-body .owner-image-editor img,
  body.owner-admin-body .admin-preview-image {
    width: 100% !important;
    max-height: 240px !important;
  }

  body.owner-admin-body .owner-crop-preview {
    width: 100% !important;
  }

  body.owner-admin-body .owner-crop-preview [data-image-preview] {
    max-height: none !important;
  }

  body.owner-admin-body .owner-admin-actions,
  body.owner-admin-body .admin-actions,
  body.owner-admin-body .owner-card-heading {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  body.owner-admin-body .owner-admin-actions .button,
  body.owner-admin-body .admin-actions .button,
  body.owner-admin-body .owner-upload-button,
  body.owner-admin-body .owner-admin-sidebar-actions .button {
    width: 100% !important;
    min-height: 48px !important;
  }

  body.owner-admin-body .owner-toggle-row,
  body.owner-admin-body .owner-check-row {
    align-items: center !important;
    min-height: 48px !important;
    padding: 12px 14px !important;
    border-radius: 16px !important;
  }
}

/* Mobile nav layering fix: keep dropdown above cards without changing design. */
@media (max-width: 768px) {
  body.brand-body:not(.owner-admin-body) .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 2147483000 !important;
    isolation: isolate !important;
    overflow: visible !important;
    contain: none !important;
  }

  body.brand-body:not(.owner-admin-body) .header-shell,
  body.brand-body:not(.owner-admin-body) .header-card {
    position: relative !important;
    z-index: 2147483001 !important;
    overflow: visible !important;
    contain: none !important;
  }

  body.brand-body:not(.owner-admin-body) .page-frame,
  body.brand-body:not(.owner-admin-body) .section-shell,
  body.brand-body:not(.owner-admin-body) .footer-card {
    position: relative;
    z-index: 1;
  }

  body.brand-body:not(.owner-admin-body) header.site-header[data-nav-open="true"] .header-card > nav.site-nav,
  body.brand-body:not(.owner-admin-body) header.site-header.is-scrolled[data-nav-open="true"] .header-card > nav.site-nav,
  body.brand-body:not(.owner-admin-body) header.site-header[data-nav-root][data-nav-open="true"] .header-card > nav.site-nav {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    z-index: 2147483002 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) !important;
  }
}

/* Mobile header/hero rhythm fix: remove legacy fixed-header gap. */
@media (max-width: 768px) {
  html,
  body.brand-body:not(.owner-admin-body) {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body.brand-body:not(.owner-admin-body) header.site-header,
  body.brand-body:not(.owner-admin-body) header.site-header.is-scrolled {
    position: fixed !important;
    top: env(safe-area-inset-top, 0px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 2147483000 !important;
    transform: none !important;
  }

  body.brand-body:not(.owner-admin-body) header.site-header + main.page-frame,
  body.brand-body:not(.owner-admin-body) .site-header + .page-frame,
  body.brand-body:not(.owner-admin-body) .page-frame {
    width: calc(100vw - (var(--ak-mobile-gutter) * 2)) !important;
    max-width: calc(100vw - (var(--ak-mobile-gutter) * 2)) !important;
    margin-inline: auto !important;
    padding-top: calc(env(safe-area-inset-top, 0px) + clamp(76px, 21vw, 86px)) !important;
    overflow-x: hidden !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] main.page-frame > .home-hero-shell:first-child,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .page-frame > .home-hero-shell:first-child {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
  }

  body.brand-body:not(.owner-admin-body) .services-grid,
  body.brand-body:not(.owner-admin-body) .results-grid,
  body.brand-body:not(.owner-admin-body) .journey-grid,
  body.brand-body:not(.owner-admin-body) .value-grid,
  body.brand-body:not(.owner-admin-body) .review-grid,
  body.brand-body:not(.owner-admin-body) .pill-grid,
  body.brand-body:not(.owner-admin-body) .blog-grid,
  body.brand-body:not(.owner-admin-body) .article-grid,
  body.brand-body:not(.owner-admin-body)[data-page-path="/contacts"] .contact-layout,
  body.brand-body:not(.owner-admin-body)[data-page-path="/contacts"] .contact-details,
  body.brand-body:not(.owner-admin-body) .booking-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  body.brand-body:not(.owner-admin-body) .service-card,
  body.brand-body:not(.owner-admin-body) .result-card,
  body.brand-body:not(.owner-admin-body) .detail-card,
  body.brand-body:not(.owner-admin-body) .review-card,
  body.brand-body:not(.owner-admin-body) .mini-panel,
  body.brand-body:not(.owner-admin-body) .blog-card,
  body.brand-body:not(.owner-admin-body) .faq-item,
  body.brand-body:not(.owner-admin-body) .contact-card,
  body.brand-body:not(.owner-admin-body) .booking-form-panel {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/contacts"] .contact-details {
    gap: 14px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/contacts"] .contact-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 4px !important;
    padding: clamp(18px, 5vw, 22px) !important;
    text-align: left !important;
    overflow: hidden !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/contacts"] .contact-card strong,
  body.brand-body:not(.owner-admin-body)[data-page-path="/contacts"] .contact-card span {
    display: block !important;
    min-width: 0 !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }
}

/* Desktop/tablet final hero override. Mobile CSS intentionally untouched. */
@media (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    width: min(1368px, calc(100vw - 56px)) !important;
    max-width: 1368px !important;
    min-height: clamp(620px, 47vw, 700px) !important;
    margin: clamp(28px, 3.2vw, 44px) auto clamp(58px, 6vw, 86px) !important;
    padding: clamp(48px, 5vw, 72px) !important;
    border-radius: 34px !important;
    border: 1px solid rgba(230, 189, 132, 0.13) !important;
    background:
      radial-gradient(circle at 19% 22%, rgba(224, 156, 101, 0.13), transparent 30%),
      radial-gradient(circle at 78% 46%, rgba(196, 108, 47, 0.16), transparent 34%),
      linear-gradient(135deg, #0a0a09 0%, #080909 48%, #130e0a 100%) !important;
    box-shadow: none !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    display: grid !important;
    grid-template-columns: minmax(0, 46fr) minmax(520px, 54fr) !important;
    align-items: center !important;
    gap: clamp(40px, 5vw, 72px) !important;
    height: 100% !important;
    max-width: none !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
    max-width: 610px !important;
    align-self: center !important;
    gap: clamp(19px, 1.8vw, 24px) !important;
    text-align: left !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-label {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    min-height: 42px !important;
    margin: 0 0 clamp(6px, 0.7vw, 10px) !important;
    padding: 0 22px !important;
    border: 1px solid rgba(214, 160, 122, 0.17) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.016) !important;
    color: #e6a66e !important;
    font-size: clamp(12px, 0.92vw, 14px) !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    display: grid !important;
    width: min(100%, 660px) !important;
    max-width: 660px !important;
    margin: 0 !important;
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(54px, 5vw, 78px) !important;
    font-weight: 500 !important;
    line-height: 0.98 !important;
    letter-spacing: -0.03em !important;
    color: #f7f3ec !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title span {
    display: block !important;
    white-space: normal !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent {
    position: relative !important;
    width: fit-content !important;
    padding-bottom: 18px !important;
    color: #d6a07a !important;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
    font-style: italic !important;
    font-weight: 500 !important;
    letter-spacing: -0.035em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 3px !important;
    width: 64px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #d6a07a, rgba(214, 160, 122, 0)) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
    width: min(100%, 520px) !important;
    max-width: 520px !important;
    margin: 0 !important;
    color: rgba(245, 241, 234, 0.76) !important;
    font-size: clamp(20px, 1.45vw, 22px) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    letter-spacing: -0.005em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    width: auto !important;
    margin: clamp(8px, 1.2vw, 14px) 0 0 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button {
    width: auto !important;
    min-width: 246px !important;
    min-height: 66px !important;
    height: 66px !important;
    padding: 0 34px !important;
    border-radius: 999px !important;
    font-size: 15.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.055em !important;
    text-transform: uppercase !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .luxe-button {
    color: #0d0907 !important;
    background: linear-gradient(135deg, #ffd4b1 0%, #f0ae78 56%, #dc8f57 100%) !important;
    box-shadow: 0 18px 44px rgba(218, 134, 76, 0.16) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .luxe-button span {
    display: inline-flex !important;
    margin-left: 10px !important;
    font-size: 22px !important;
    line-height: 1 !important;
    transform: translateY(-1px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-services-link {
    min-width: 236px !important;
    color: rgba(245, 241, 234, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    background: rgba(255, 255, 255, 0.012) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 0 !important;
    width: max-content !important;
    max-width: 100% !important;
    margin: clamp(14px, 2vw, 26px) 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
    color: rgba(245, 241, 234, 0.74) !important;
    font-size: clamp(14px, 1vw, 16px) !important;
    line-height: 1.35 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 32px 0 0 !important;
    padding: 0 32px 0 0 !important;
    white-space: nowrap !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li::before {
    content: none !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li:not(:last-child)::after {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    width: 1px !important;
    height: 24px !important;
    background: rgba(255, 255, 255, 0.12) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li:last-child {
    margin-right: 0 !important;
    padding-right: 0 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust-icon {
    display: inline-flex !important;
    width: 20px !important;
    height: 20px !important;
    color: #e5a66e !important;
    flex: 0 0 auto !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust-icon svg {
    width: 100% !important;
    height: 100% !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.45 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-visual {
    align-self: stretch !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 560px !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    border: 0 !important;
    border-radius: 28px !important;
    background: #0a0807 !important;
    overflow: hidden !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life picture,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    object-fit: cover !important;
    object-position: center center !important;
    filter: saturate(1.04) contrast(1.02) brightness(1.04) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: none !important;
    background:
      linear-gradient(90deg, rgba(8, 9, 9, 0.24), rgba(8, 9, 9, 0.02) 32%, rgba(8, 9, 9, 0.08)),
      linear-gradient(180deg, rgba(8, 9, 9, 0.02), rgba(8, 9, 9, 0.08)) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::after {
    display: none !important;
  }
}

/* Homepage hero final override: desktop split visual, mobile text-only. */
body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
  width: min(1240px, calc(100vw - 48px)) !important;
  max-width: 1240px !important;
  min-height: clamp(520px, 48vw, 620px) !important;
  margin: clamp(28px, 4vw, 56px) auto clamp(62px, 7vw, 96px) !important;
  padding: clamp(44px, 5vw, 72px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: clamp(30px, 3vw, 40px) !important;
  background:
    radial-gradient(circle at 18% 10%, rgba(230, 189, 132, 0.13), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(129, 80, 45, 0.2), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)) !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr) !important;
  align-items: center !important;
  gap: clamp(32px, 5vw, 80px) !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
  width: 100% !important;
  max-width: 610px !important;
  padding: 0 !important;
  gap: clamp(15px, 1.8vw, 20px) !important;
  text-align: left !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
  display: grid !important;
  width: min(100%, 620px) !important;
  max-width: 620px !important;
  margin: 0 !important;
  color: #f5f1ea !important;
  font-size: clamp(44px, 4.35vw, 66px) !important;
  font-weight: 500 !important;
  line-height: 1.03 !important;
  letter-spacing: -0.018em !important;
  text-wrap: balance;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title span {
  display: block !important;
  white-space: normal !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent {
  color: #e6bd84 !important;
  font-style: italic !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
  display: block !important;
  width: min(100%, 560px) !important;
  max-width: 560px !important;
  margin: 0 !important;
  color: rgba(245, 241, 234, 0.74) !important;
  font-size: clamp(17px, 1.45vw, 20px) !important;
  font-weight: 400 !important;
  line-height: 1.54 !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: auto !important;
  margin: clamp(4px, 1vw, 8px) 0 0 !important;
  gap: 14px !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button {
  width: auto !important;
  min-width: 144px !important;
  min-height: 52px !important;
  height: 52px !important;
  padding: 0 26px !important;
  border-radius: 999px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 9px 16px !important;
  width: min(100%, 610px) !important;
  margin: clamp(6px, 1.3vw, 12px) 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
  color: rgba(245, 241, 234, 0.68) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li::before {
  content: "" !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 999px !important;
  background: #e6bd84 !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life,
body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-visual {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: min(52vw, 520px) !important;
  min-height: 430px !important;
  max-height: 540px !important;
  aspect-ratio: 0.92 / 1 !important;
  overflow: hidden !important;
  border-radius: clamp(24px, 2.5vw, 34px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.035) !important;
  isolation: isolate !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life picture,
body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
  object-fit: cover !important;
  object-position: 48% 50% !important;
  filter: saturate(0.86) contrast(1.02) brightness(0.62) sepia(0.12) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.58), rgba(8, 9, 9, 0.1) 46%, rgba(8, 9, 9, 0.3)),
    linear-gradient(180deg, rgba(8, 9, 9, 0.1), rgba(8, 9, 9, 0.36)) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::after {
  content: "" !important;
  position: absolute !important;
  inset: auto 24px 24px auto !important;
  z-index: 3 !important;
  width: 132px !important;
  height: 132px !important;
  border-radius: 999px !important;
  pointer-events: none !important;
  background: radial-gradient(circle, rgba(230, 189, 132, 0.24), transparent 68%) !important;
}

@media (max-width: 1024px) and (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr) !important;
    gap: clamp(28px, 4vw, 48px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    font-size: clamp(38px, 4.8vw, 52px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life {
    min-height: 390px !important;
  }
}

@media (max-width: 768px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin: 0 auto clamp(46px, 12vw, 64px) !important;
    padding: clamp(28px, 7vw, 38px) clamp(18px, 5vw, 22px) !important;
    border-radius: clamp(24px, 7vw, 30px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    display: block !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
    width: min(100%, 420px) !important;
    max-width: 420px !important;
    margin-inline: auto !important;
    gap: 13px !important;
    text-align: center !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    width: min(100%, 370px) !important;
    margin-inline: auto !important;
    font-size: clamp(30px, 8.4vw, 36px) !important;
    line-height: 1.08 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
    width: min(100%, 360px) !important;
    margin-inline: auto !important;
    font-size: clamp(15px, 4.2vw, 16.5px) !important;
    line-height: 1.5 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: min(100%, 360px) !important;
    margin: clamp(8px, 2.6vw, 12px) auto 0 !important;
    gap: 10px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-primary-cta {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-visual {
    display: none !important;
  }
}

/* Desktop/tablet final hero override. Mobile CSS intentionally untouched. */
@media (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    width: min(1368px, calc(100vw - 56px)) !important;
    max-width: 1368px !important;
    min-height: clamp(620px, 47vw, 700px) !important;
    margin: clamp(28px, 3.2vw, 44px) auto clamp(58px, 6vw, 86px) !important;
    padding: clamp(48px, 5vw, 72px) !important;
    border-radius: 34px !important;
    border: 1px solid rgba(230, 189, 132, 0.13) !important;
    background:
      radial-gradient(circle at 19% 22%, rgba(224, 156, 101, 0.13), transparent 30%),
      radial-gradient(circle at 78% 46%, rgba(196, 108, 47, 0.16), transparent 34%),
      linear-gradient(135deg, #0a0a09 0%, #080909 48%, #130e0a 100%) !important;
    box-shadow: none !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    display: grid !important;
    grid-template-columns: minmax(0, 46fr) minmax(520px, 54fr) !important;
    align-items: center !important;
    gap: clamp(40px, 5vw, 72px) !important;
    height: 100% !important;
    max-width: none !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
    max-width: 610px !important;
    align-self: center !important;
    gap: clamp(19px, 1.8vw, 24px) !important;
    text-align: left !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-label {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    min-height: 42px !important;
    margin: 0 0 clamp(6px, 0.7vw, 10px) !important;
    padding: 0 22px !important;
    border: 1px solid rgba(214, 160, 122, 0.17) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.016) !important;
    color: #e6a66e !important;
    font-size: clamp(12px, 0.92vw, 14px) !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    display: grid !important;
    width: min(100%, 660px) !important;
    max-width: 660px !important;
    margin: 0 !important;
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(54px, 5vw, 78px) !important;
    font-weight: 500 !important;
    line-height: 0.98 !important;
    letter-spacing: -0.03em !important;
    color: #f7f3ec !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title span {
    display: block !important;
    white-space: normal !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent {
    position: relative !important;
    width: fit-content !important;
    padding-bottom: 18px !important;
    color: #d6a07a !important;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
    font-style: italic !important;
    font-weight: 500 !important;
    letter-spacing: -0.035em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 3px !important;
    width: 64px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #d6a07a, rgba(214, 160, 122, 0)) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
    width: min(100%, 520px) !important;
    max-width: 520px !important;
    margin: 0 !important;
    color: rgba(245, 241, 234, 0.76) !important;
    font-size: clamp(20px, 1.45vw, 22px) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    letter-spacing: -0.005em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    width: auto !important;
    margin: clamp(8px, 1.2vw, 14px) 0 0 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button {
    width: auto !important;
    min-width: 246px !important;
    min-height: 66px !important;
    height: 66px !important;
    padding: 0 34px !important;
    border-radius: 999px !important;
    font-size: 15.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.055em !important;
    text-transform: uppercase !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .luxe-button {
    color: #0d0907 !important;
    background: linear-gradient(135deg, #ffd4b1 0%, #f0ae78 56%, #dc8f57 100%) !important;
    box-shadow: 0 18px 44px rgba(218, 134, 76, 0.16) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .luxe-button span {
    display: inline-flex !important;
    margin-left: 10px !important;
    font-size: 22px !important;
    line-height: 1 !important;
    transform: translateY(-1px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-services-link {
    min-width: 236px !important;
    color: rgba(245, 241, 234, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    background: rgba(255, 255, 255, 0.012) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 0 !important;
    width: max-content !important;
    max-width: 100% !important;
    margin: clamp(14px, 2vw, 26px) 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
    color: rgba(245, 241, 234, 0.74) !important;
    font-size: clamp(14px, 1vw, 16px) !important;
    line-height: 1.35 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 32px 0 0 !important;
    padding: 0 32px 0 0 !important;
    white-space: nowrap !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li::before {
    content: none !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li:not(:last-child)::after {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    width: 1px !important;
    height: 24px !important;
    background: rgba(255, 255, 255, 0.12) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li:last-child {
    margin-right: 0 !important;
    padding-right: 0 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust-icon {
    display: inline-flex !important;
    width: 20px !important;
    height: 20px !important;
    color: #e5a66e !important;
    flex: 0 0 auto !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust-icon svg {
    width: 100% !important;
    height: 100% !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.45 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-visual {
    align-self: stretch !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 560px !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    border: 0 !important;
    border-radius: 28px !important;
    background: #0a0807 !important;
    overflow: hidden !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life picture,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    object-fit: cover !important;
    object-position: center center !important;
    filter: saturate(1.04) contrast(1.02) brightness(1.04) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: none !important;
    background:
      linear-gradient(90deg, rgba(8, 9, 9, 0.24), rgba(8, 9, 9, 0.02) 32%, rgba(8, 9, 9, 0.08)),
      linear-gradient(180deg, rgba(8, 9, 9, 0.02), rgba(8, 9, 9, 0.08)) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::after {
    display: none !important;
  }
}

/* EOF desktop-only hero layout guard. Mobile remains unchanged. */
@media (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    height: 500px !important;
    min-height: 0 !important;
    max-height: 540px !important;
    overflow: hidden !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    grid-template-columns: minmax(420px, 0.95fr) minmax(460px, 1fr) !important;
    align-items: center !important;
    height: 100% !important;
    gap: 56px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
    position: relative !important;
    z-index: 4 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    max-width: 560px !important;
    min-width: 0 !important;
    overflow: visible !important;
    gap: clamp(14px, 1.55vw, 20px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
    position: relative !important;
    z-index: 5 !important;
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: 520px !important;
    overflow: visible !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button {
    width: auto !important;
    min-width: 204px !important;
    height: 58px !important;
    min-height: 58px !important;
    padding: 0 28px !important;
    white-space: nowrap !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-services-link {
    min-width: 170px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list {
    position: relative !important;
    z-index: 5 !important;
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
    max-width: 100% !important;
    margin-top: 24px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
    white-space: nowrap !important;
    font-size: 15px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li::after {
    content: none !important;
    display: none !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust-icon {
    width: 19px !important;
    height: 19px !important;
    color: #d6a07a !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-visual,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life {
    z-index: 1 !important;
    align-self: center !important;
    height: 380px !important;
    min-height: 0 !important;
    max-height: 400px !important;
    overflow: visible !important;
    border-radius: 28px !important;
    background: radial-gradient(circle at center, rgba(214, 160, 122, 0.12), rgba(10, 7, 6, 0.92)) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
  }
}

/* Final desktop reference lock: keep mobile untouched. */
@media (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    width: min(1480px, calc(100vw - 48px)) !important;
    max-width: 1480px !important;
    height: clamp(500px, 39vw, 620px) !important;
    min-height: 0 !important;
    max-height: 620px !important;
    margin: clamp(24px, 2.6vw, 34px) auto clamp(20px, 2.6vw, 34px) !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(230, 189, 132, 0.12) !important;
    border-radius: 34px !important;
    background:
      radial-gradient(circle at 18% 40%, rgba(230, 166, 110, 0.12), transparent 34%),
      linear-gradient(135deg, #0a0908 0%, #080909 48%, #130d09 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    display: grid !important;
    grid-template-columns: minmax(0, 0.98fr) minmax(560px, 1.08fr) !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
    position: relative !important;
    z-index: 6 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-self: stretch !important;
    width: 100% !important;
    max-width: 675px !important;
    height: 100% !important;
    min-width: 0 !important;
    padding: clamp(48px, 4.7vw, 72px) 0 clamp(42px, 3.4vw, 54px) clamp(56px, 5vw, 72px) !important;
    gap: 0 !important;
    overflow: visible !important;
    text-align: left !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-label {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    min-height: 42px !important;
    margin: 0 0 clamp(24px, 2.2vw, 30px) !important;
    padding: 0 22px !important;
    border: 1px solid rgba(230, 166, 110, 0.18) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.012) !important;
    color: #efa86f !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    display: grid !important;
    width: min(100%, 660px) !important;
    max-width: 660px !important;
    margin: 0 !important;
    color: #f8f3eb !important;
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(58px, 5vw, 78px) !important;
    font-weight: 500 !important;
    line-height: 0.96 !important;
    letter-spacing: -0.033em !important;
    text-wrap: balance !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title span {
    display: block !important;
    white-space: normal !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent {
    position: relative !important;
    width: fit-content !important;
    padding-bottom: 23px !important;
    color: #eda66e !important;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
    font-style: italic !important;
    font-weight: 500 !important;
    letter-spacing: -0.045em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 5px !important;
    width: 68px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #efa86f, rgba(239, 168, 111, 0)) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
    width: min(100%, 530px) !important;
    max-width: 530px !important;
    margin: clamp(24px, 2.3vw, 30px) 0 0 !important;
    color: rgba(245, 241, 234, 0.8) !important;
    font-size: clamp(19px, 1.38vw, 22px) !important;
    font-weight: 400 !important;
    line-height: 1.58 !important;
    letter-spacing: -0.006em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
    position: relative !important;
    z-index: 7 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    max-width: none !important;
    margin: clamp(30px, 2.8vw, 36px) 0 0 !important;
    overflow: visible !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-primary-cta {
    width: auto !important;
    flex: 0 0 auto !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 304px !important;
    height: 68px !important;
    min-height: 68px !important;
    padding: 0 38px !important;
    border-radius: 999px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: 0.055em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .luxe-button {
    color: #0d0907 !important;
    border: 0 !important;
    background: linear-gradient(135deg, #ffd5b4 0%, #f0ad77 58%, #dc8f56 100%) !important;
    box-shadow: 0 18px 44px rgba(218, 134, 76, 0.15) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .luxe-button span {
    display: inline-flex !important;
    margin-left: 12px !important;
    font-size: 22px !important;
    line-height: 1 !important;
    transform: translateY(-1px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-services-link {
    min-width: 264px !important;
    color: rgba(245, 241, 234, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    background: rgba(255, 255, 255, 0.012) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list {
    position: relative !important;
    z-index: 8 !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    width: max-content !important;
    max-width: 900px !important;
    margin: clamp(36px, 3.2vw, 46px) 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
    color: rgba(245, 241, 234, 0.75) !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    overflow: visible !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 28px 0 0 !important;
    padding: 0 28px 0 0 !important;
    white-space: nowrap !important;
    font-size: 16px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li::before {
    content: none !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li:not(:last-child)::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    right: 0 !important;
    width: 1px !important;
    height: 24px !important;
    background: rgba(255, 255, 255, 0.12) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li:last-child {
    margin-right: 0 !important;
    padding-right: 0 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust-icon {
    display: inline-flex !important;
    width: 22px !important;
    height: 22px !important;
    color: #efa86f !important;
    flex: 0 0 auto !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust-icon svg {
    width: 100% !important;
    height: 100% !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.45 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-visual,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life {
    position: relative !important;
    z-index: 1 !important;
    align-self: stretch !important;
    justify-self: stretch !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 0 34px 34px 0 !important;
    background: #0a0807 !important;
    isolation: isolate !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life picture,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    object-fit: contain !important;
    object-position: center center !important;
    filter: saturate(1.04) contrast(1.02) brightness(1.04) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: none !important;
    background:
      linear-gradient(90deg, rgba(8, 9, 9, 0.46), rgba(8, 9, 9, 0.04) 30%, rgba(8, 9, 9, 0.04)),
      linear-gradient(180deg, rgba(8, 9, 9, 0.01), rgba(8, 9, 9, 0.1)) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::after {
    display: none !important;
  }
}

/* Absolute final desktop reference lock at EOF. Mobile remains untouched. */
@media (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    width: min(1480px, calc(100vw - 48px)) !important;
    max-width: 1480px !important;
    height: 600px !important;
    min-height: 0 !important;
    max-height: 600px !important;
    margin: 24px auto 22px !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 34px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    display: grid !important;
    grid-template-columns: minmax(0, 0.965fr) minmax(560px, 1.095fr) !important;
    align-items: stretch !important;
    gap: 0 !important;
    height: 100% !important;
    max-width: none !important;
    overflow: hidden !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
    align-self: stretch !important;
    justify-content: center !important;
    max-width: 690px !important;
    height: 100% !important;
    padding: 64px 0 46px clamp(56px, 5vw, 72px) !important;
    gap: 0 !important;
    overflow: visible !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-label {
    min-height: 42px !important;
    margin: 0 0 28px !important;
    padding: 0 22px !important;
    font-size: 14px !important;
    letter-spacing: 0.16em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    width: min(100%, 680px) !important;
    max-width: 680px !important;
    font-size: clamp(60px, 5.15vw, 80px) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.033em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent {
    padding-bottom: 23px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
    width: min(100%, 535px) !important;
    max-width: 535px !important;
    margin: 26px 0 0 !important;
    font-size: clamp(20px, 1.4vw, 22px) !important;
    line-height: 1.58 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
    width: max-content !important;
    max-width: none !important;
    margin: 34px 0 0 !important;
    gap: 16px !important;
    flex-wrap: nowrap !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button {
    min-width: 304px !important;
    height: 68px !important;
    min-height: 68px !important;
    padding: 0 38px !important;
    font-size: 16px !important;
    letter-spacing: 0.055em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-services-link {
    min-width: 264px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    width: max-content !important;
    max-width: 900px !important;
    margin: 40px 0 0 !important;
    font-size: 16px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li {
    gap: 10px !important;
    margin: 0 28px 0 0 !important;
    padding: 0 28px 0 0 !important;
    font-size: 16px !important;
    white-space: nowrap !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li:not(:last-child)::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    right: 0 !important;
    width: 1px !important;
    height: 24px !important;
    background: rgba(255, 255, 255, 0.12) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-trust-icon {
    width: 23px !important;
    height: 23px !important;
    color: #efa86f !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-visual,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life {
    align-self: stretch !important;
    justify-self: stretch !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
    border-radius: 0 34px 34px 0 !important;
    background: radial-gradient(circle at 62% 50%, rgba(230, 143, 78, 0.12), rgba(10, 8, 7, 0.9) 62%), #0a0807 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life picture,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    width: 100% !important;
    height: 100% !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    object-fit: contain !important;
    object-position: center center !important;
    filter: saturate(1.04) contrast(1.02) brightness(1.04) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life::before {
    background: linear-gradient(90deg, rgba(8, 9, 9, 0.42), rgba(8, 9, 9, 0.03) 28%, rgba(8, 9, 9, 0.03)), linear-gradient(180deg, rgba(8, 9, 9, 0.01), rgba(8, 9, 9, 0.08)) !important;
  }
}
/* Absolute final hero title line reset. Mobile remains untouched. */
@media (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title span {
    display: block !important;
    font-size: inherit !important;
    line-height: inherit !important;
    font-weight: inherit !important;
    white-space: normal !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent {
    font-size: inherit !important;
    line-height: inherit !important;
  }
}
/* Absolute final hero geometry and typography correction. Mobile remains untouched. */
@media (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] main.page-frame > .home-hero-compact-shell {
    position: relative !important;
    left: 50% !important;
    width: min(1480px, calc(100vw - 48px)) !important;
    max-width: min(1480px, calc(100vw - 48px)) !important;
    transform: translateX(-50%) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    display: block !important;
    max-width: 680px !important;
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(58px, 4.75vw, 74px) !important;
    font-weight: 500 !important;
    line-height: 0.98 !important;
    letter-spacing: -0.032em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title span {
    display: block !important;
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    white-space: nowrap !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent {
    width: fit-content !important;
    color: #eda66e !important;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
    font-style: italic !important;
    font-weight: 500 !important;
    letter-spacing: -0.045em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
    padding-top: 62px !important;
    padding-bottom: 42px !important;
  }
}
/* Absolute final homepage desktop frame width. Mobile remains untouched. */
@media (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] main.page-frame {
    width: min(1480px, calc(100vw - 48px)) !important;
    max-width: 1480px !important;
    overflow: visible !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] main.page-frame > .home-hero-compact-shell {
    position: relative !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 1480px !important;
  }
}
/* Absolute final hero top alignment. Mobile remains untouched. */
@media (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    margin-top: 8px !important;
    margin-bottom: 22px !important;
  }
}
/* Absolute final hero split alignment. Mobile remains untouched. */
@media (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    grid-template-columns: minmax(0, 0.52fr) minmax(560px, 0.48fr) !important;
  }
}

/* Match homepage card width to the header card on desktop. Mobile remains untouched. */
@media (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] main.page-frame {
    width: var(--release-shell-width) !important;
    max-width: 1180px !important;
    overflow: visible !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] main.page-frame > .home-hero-compact-shell {
    width: 100% !important;
    max-width: 1180px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    max-width: 530px !important;
    font-size: clamp(44px, 3.45vw, 52px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
    padding-left: clamp(44px, 4vw, 58px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button {
    min-width: 230px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-services-link {
    min-width: 210px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li {
    margin-right: 22px !important;
    padding-right: 22px !important;
    font-size: 15px !important;
  }
}

/* Reduce desktop hero height while preserving the current header-width layout. */
@media (min-width: 769px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    height: 520px !important;
    max-height: 520px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
    padding-top: 44px !important;
    padding-bottom: 34px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-label {
    margin-bottom: 22px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
    margin-top: 20px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
    margin-top: 24px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list {
    margin-top: 26px !important;
  }
}

/* Tablet design stabilization for the public site. */
@media (min-width: 769px) and (max-width: 1100px) {
  body.brand-body:not(.owner-admin-body) .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    padding-top: 10px !important;
    overflow: visible !important;
    contain: none !important;
  }

  body.brand-body:not(.owner-admin-body) .header-shell {
    width: min(calc(100% - 28px), 1180px) !important;
    overflow: visible !important;
    contain: none !important;
  }

  body.brand-body:not(.owner-admin-body) .header-card,
  body.brand-body:not(.owner-admin-body) .site-header.is-scrolled .header-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 54px !important;
    grid-template-rows: 54px auto !important;
    align-items: center !important;
    min-height: 76px !important;
    padding: 10px 14px !important;
    gap: 10px !important;
    border-radius: 24px !important;
    overflow: visible !important;
    contain: none !important;
  }

  body.brand-body:not(.owner-admin-body) .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: center !important;
  }

  body.brand-body:not(.owner-admin-body) .brand-mark {
    font-size: clamp(1.25rem, 2.6vw, 1.7rem) !important;
    line-height: 1 !important;
    letter-spacing: 0.02em !important;
  }

  body.brand-body:not(.owner-admin-body) .header-cta {
    display: none !important;
  }

  body.brand-body:not(.owner-admin-body) .nav-toggle,
  body.brand-body:not(.owner-admin-body) .site-header .nav-toggle,
  body.brand-body:not(.owner-admin-body) [data-nav-root][data-nav-open="true"] .nav-toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: end !important;
    position: relative !important;
    inset: auto !important;
    width: 54px !important;
    min-width: 54px !important;
    height: 54px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    border-radius: 18px !important;
    color: var(--text-main) !important;
    background: rgba(255, 255, 255, 0.055) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-size: 28px !important;
    line-height: 1 !important;
  }

  body.brand-body:not(.owner-admin-body) .site-header .site-nav,
  body.brand-body:not(.owner-admin-body) .site-header.is-scrolled .site-nav {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    position: relative !important;
    inset: auto !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 12px !important;
    gap: 8px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(12, 8, 7, 0.98) !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: none !important;
    max-height: min(68dvh, 520px) !important;
    overflow-y: auto !important;
  }

  body.brand-body:not(.owner-admin-body) .site-header[data-nav-open="true"] .site-nav,
  body.brand-body:not(.owner-admin-body) .site-header.is-scrolled[data-nav-open="true"] .site-nav {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  body.brand-body:not(.owner-admin-body) .site-nav a {
    display: flex !important;
    align-items: center !important;
    min-height: 46px !important;
    padding: 10px 12px !important;
    text-align: left !important;
    white-space: normal !important;
  }

  body.brand-body:not(.owner-admin-body) .site-nav .mobile-only {
    display: flex !important;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] main.page-frame {
    width: min(calc(100% - 32px), 980px) !important;
    max-width: 980px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    height: 560px !important;
    max-height: 560px !important;
    margin-top: 14px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
    max-width: none !important;
    padding: 40px 0 34px 38px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    max-width: 100% !important;
    font-size: clamp(42px, 5vw, 54px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title span {
    white-space: normal !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
    max-width: 430px !important;
    font-size: 18px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
    width: 100% !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-services-link {
    min-width: min(100%, 210px) !important;
    height: 58px !important;
    min-height: 58px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list {
    flex-wrap: wrap !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 10px 16px !important;
    margin-top: 22px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li {
    margin: 0 !important;
    padding: 0 !important;
    white-space: normal !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li::after {
    content: none !important;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] main.page-frame {
    width: min(calc(100% - 28px), 760px) !important;
    max-width: 760px !important;
    overflow: visible !important;
    contain: none !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    margin: 14px auto 28px !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 30px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    height: auto !important;
    gap: 0 !important;
    overflow: hidden !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-copy {
    height: auto !important;
    max-width: none !important;
    padding: clamp(28px, 5vw, 40px) clamp(28px, 6vw, 44px) 24px !important;
    gap: 0 !important;
    text-align: left !important;
    overflow: visible !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-label {
    width: fit-content !important;
    max-width: 100% !important;
    min-height: 38px !important;
    margin-bottom: 18px !important;
    padding: 0 18px !important;
    white-space: normal !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    display: block !important;
    max-width: 680px !important;
    font-size: clamp(46px, 7.2vw, 58px) !important;
    line-height: 0.98 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title span {
    display: block !important;
    white-space: normal !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-lead,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-description {
    max-width: 620px !important;
    margin-top: 20px !important;
    font-size: clamp(18px, 2.5vw, 21px) !important;
    line-height: 1.55 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions {
    width: 100% !important;
    max-width: 620px !important;
    margin-top: 22px !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-actions .button,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-services-link {
    min-width: min(100%, 240px) !important;
    height: 60px !important;
    min-height: 60px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list {
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    max-width: 620px !important;
    gap: 12px 18px !important;
    margin-top: 20px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li {
    margin: 0 !important;
    padding: 0 !important;
    white-space: normal !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-trust-list li::after {
    content: none !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-visual,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life {
    display: block !important;
    width: 100% !important;
    height: clamp(260px, 39vw, 330px) !important;
    min-height: 0 !important;
    border-radius: 0 0 30px 30px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life picture,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-still-life img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
  }
}

/* Align public cards and sections with the homepage hero surface color. */
body.brand-body:not(.owner-admin-body) {
  --ak-hero-surface-bg:
    radial-gradient(circle at 19% 22%, rgba(224, 156, 101, 0.13), transparent 30%),
    radial-gradient(circle at 78% 46%, rgba(196, 108, 47, 0.16), transparent 34%),
    linear-gradient(135deg, #0a0a09 0%, #080909 48%, #130e0a 100%);
  --ak-hero-surface-bg-soft:
    radial-gradient(circle at 18% 18%, rgba(224, 156, 101, 0.1), transparent 32%),
    radial-gradient(circle at 82% 48%, rgba(196, 108, 47, 0.12), transparent 36%),
    linear-gradient(135deg, #0a0a09 0%, #080909 50%, #130e0a 100%);
  --ak-hero-surface-border: rgba(230, 189, 132, 0.13);
  --ak-hero-surface-border-soft: rgba(230, 189, 132, 0.1);
}

body.brand-body:not(.owner-admin-body) .section-shell:not(.home-hero-shell),
body.brand-body:not(.owner-admin-body) .article-shell,
body.brand-body:not(.owner-admin-body) .page-hero-card,
body.brand-body:not(.owner-admin-body) .booking-section,
body.brand-body:not(.owner-admin-body) .footer-card {
  border-color: var(--ak-hero-surface-border) !important;
  background: var(--ak-hero-surface-bg) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 22px 70px rgba(0, 0, 0, 0.22) !important;
}

body.brand-body:not(.owner-admin-body) .service-card,
body.brand-body:not(.owner-admin-body) .blog-card,
body.brand-body:not(.owner-admin-body) .result-card,
body.brand-body:not(.owner-admin-body) .detail-card,
body.brand-body:not(.owner-admin-body) .review-card,
body.brand-body:not(.owner-admin-body) .mini-panel,
body.brand-body:not(.owner-admin-body) .faq-item,
body.brand-body:not(.owner-admin-body) .contact-card,
body.brand-body:not(.owner-admin-body) .booking-form-panel,
body.brand-body:not(.owner-admin-body) .nested-card {
  border-color: var(--ak-hero-surface-border-soft) !important;
  background: var(--ak-hero-surface-bg-soft) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.028), 0 18px 52px rgba(0, 0, 0, 0.2) !important;
}

@media (hover: hover) and (pointer: fine) {
  body.brand-body:not(.owner-admin-body) .service-card:hover,
  body.brand-body:not(.owner-admin-body) .blog-card:hover,
  body.brand-body:not(.owner-admin-body) .result-card:hover,
  body.brand-body:not(.owner-admin-body) .detail-card:hover,
  body.brand-body:not(.owner-admin-body) .review-card:hover,
  body.brand-body:not(.owner-admin-body) .mini-panel:hover,
  body.brand-body:not(.owner-admin-body) .faq-item:hover,
  body.brand-body:not(.owner-admin-body) .contact-card:hover,
  body.brand-body:not(.owner-admin-body) .booking-form-panel:hover {
    border-color: rgba(230, 189, 132, 0.18) !important;
    background: var(--ak-hero-surface-bg) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.038), 0 22px 60px rgba(0, 0, 0, 0.24) !important;
  }
}

@media (max-width: 768px) {
  body.brand-body:not(.owner-admin-body) {
    --ak-hero-surface-bg:
      radial-gradient(circle at 20% 10%, rgba(224, 156, 101, 0.11), transparent 34%),
      radial-gradient(circle at 85% 42%, rgba(196, 108, 47, 0.1), transparent 38%),
      linear-gradient(135deg, #0a0a09 0%, #080909 52%, #130e0a 100%);
    --ak-hero-surface-bg-soft:
      radial-gradient(circle at 18% 14%, rgba(224, 156, 101, 0.09), transparent 34%),
      radial-gradient(circle at 82% 48%, rgba(196, 108, 47, 0.08), transparent 38%),
      linear-gradient(135deg, #0a0a09 0%, #080909 54%, #130e0a 100%);
  }

  body.brand-body:not(.owner-admin-body) .section-shell:not(.home-hero-shell),
  body.brand-body:not(.owner-admin-body) .article-shell,
  body.brand-body:not(.owner-admin-body) .page-hero-card,
  body.brand-body:not(.owner-admin-body) .booking-section,
  body.brand-body:not(.owner-admin-body) .footer-card,
  body.brand-body:not(.owner-admin-body) .service-card,
  body.brand-body:not(.owner-admin-body) .blog-card,
  body.brand-body:not(.owner-admin-body) .result-card,
  body.brand-body:not(.owner-admin-body) .detail-card,
  body.brand-body:not(.owner-admin-body) .review-card,
  body.brand-body:not(.owner-admin-body) .mini-panel,
  body.brand-body:not(.owner-admin-body) .faq-item,
  body.brand-body:not(.owner-admin-body) .contact-card,
  body.brand-body:not(.owner-admin-body) .booking-form-panel,
  body.brand-body:not(.owner-admin-body) .nested-card {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.028), 0 12px 34px rgba(0, 0, 0, 0.18) !important;
  }
}

/* Mobile header spacing: keep the fixed header visually separated from the first card. */
@media (max-width: 768px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] main.page-frame > .home-hero-shell:first-child,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .page-frame > .home-hero-shell:first-child {
    margin-top: clamp(16px, 4.4vw, 22px) !important;
  }
}

/* Contacts mobile overflow fix: keep the selected details card inside the viewport. */
@media (max-width: 768px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/contacts"] main.page-frame {
    overflow-x: clip !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/contacts"] main.page-frame > section.section-shell:nth-of-type(2),
  body.brand-body:not(.owner-admin-body)[data-page-path="/contacts"] main.page-frame > section.section-shell:nth-of-type(2) > .contact-layout,
  body.brand-body:not(.owner-admin-body)[data-page-path="/contacts"] main.page-frame > section.section-shell:nth-of-type(2) > .contact-layout > .contact-details {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
    overflow: visible !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/contacts"] main.page-frame > section.section-shell:nth-of-type(2) {
    padding-inline: clamp(16px, 4.6vw, 20px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/contacts"] .contact-details > .contact-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 18px 20px !important;
    gap: 2px !important;
    text-align: left !important;
    overflow: hidden !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/contacts"] .contact-details > .contact-card strong,
  body.brand-body:not(.owner-admin-body)[data-page-path="/contacts"] .contact-details > .contact-card span {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }
}

/* Mobile header refinement: match hero width and reduce the visual height. */
@media (max-width: 768px) {
  body.brand-body:not(.owner-admin-body) header.site-header,
  body.brand-body:not(.owner-admin-body) header.site-header.is-scrolled {
    padding-top: max(env(safe-area-inset-top, 0px), 6px) !important;
  }

  body.brand-body:not(.owner-admin-body) .site-header .header-shell,
  body.brand-body:not(.owner-admin-body) header.site-header .header-shell {
    width: calc(100vw - (var(--ak-mobile-gutter) * 2)) !important;
    max-width: calc(100vw - (var(--ak-mobile-gutter) * 2)) !important;
    margin-inline: auto !important;
    padding: 0 !important;
  }

  body.brand-body:not(.owner-admin-body) .site-header .header-card,
  body.brand-body:not(.owner-admin-body) header.site-header .header-card,
  body.brand-body:not(.owner-admin-body) header.site-header.is-scrolled .header-card,
  body.brand-body:not(.owner-admin-body) header.site-header[data-nav-open="true"] .header-card {
    width: 100% !important;
    min-height: 52px !important;
    grid-template-columns: minmax(0, 1fr) 38px !important;
    grid-template-rows: 38px auto !important;
    align-items: center !important;
    column-gap: 10px !important;
    row-gap: 8px !important;
    padding: 6px 9px 6px 16px !important;
    border-radius: 20px !important;
    background: rgba(10, 7, 5, 0.92) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24) !important;
  }

  body.brand-body:not(.owner-admin-body) .site-header .brand,
  body.brand-body:not(.owner-admin-body) header.site-header .brand {
    align-self: center !important;
    min-width: 0 !important;
  }

  body.brand-body:not(.owner-admin-body) .site-header .brand-mark,
  body.brand-body:not(.owner-admin-body) header.site-header .brand-mark {
    max-width: 100% !important;
    font-size: clamp(21px, 5.8vw, 24px) !important;
    line-height: 1 !important;
    letter-spacing: 0.01em !important;
    white-space: nowrap !important;
  }

  body.brand-body:not(.owner-admin-body) .site-header .nav-toggle,
  body.brand-body:not(.owner-admin-body) header.site-header .nav-toggle,
  body.brand-body:not(.owner-admin-body) header.site-header.is-scrolled .nav-toggle,
  body.brand-body:not(.owner-admin-body) header.site-header[data-nav-open="true"] .nav-toggle,
  body.brand-body:not(.owner-admin-body) [data-nav-root][data-nav-open="true"] .nav-toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    position: relative !important;
    inset: auto !important;
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    translate: none !important;
    border-radius: 14px !important;
    font-size: 22px !important;
    line-height: 1 !important;
  }

  body.brand-body:not(.owner-admin-body) .site-header .nav-toggle::before,
  body.brand-body:not(.owner-admin-body) .site-header .nav-toggle::after {
    content: none !important;
    display: none !important;
  }

  body.brand-body:not(.owner-admin-body) header.site-header .header-card > nav.site-nav,
  body.brand-body:not(.owner-admin-body) header.site-header.is-scrolled .header-card > nav.site-nav {
    top: calc(100% + 8px) !important;
  }
}

/* Footer contacts card: keep link and info sections the same adaptive width. */
body.brand-body:not(.owner-admin-body) .site-footer > .footer-card:nth-of-type(2) {
  --ak-footer-contact-width: min(100%, 370px);
  display: grid !important;
  justify-items: center !important;
  align-content: start !important;
}

body.brand-body:not(.owner-admin-body) .site-footer > .footer-card:nth-of-type(2) > .footer-links,
body.brand-body:not(.owner-admin-body) .site-footer > .footer-card:nth-of-type(2) > .contact-list {
  width: var(--ak-footer-contact-width) !important;
  max-width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  justify-items: stretch !important;
  gap: 12px !important;
}

body.brand-body:not(.owner-admin-body) .site-footer > .footer-card:nth-of-type(2) > .contact-list {
  margin-top: 22px !important;
}

body.brand-body:not(.owner-admin-body) .site-footer > .footer-card:nth-of-type(2) > .footer-links > a,
body.brand-body:not(.owner-admin-body) .site-footer > .footer-card:nth-of-type(2) > .contact-list > li {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  justify-content: center !important;
  text-align: center !important;
}

body.brand-body:not(.owner-admin-body) .site-footer > .footer-card:nth-of-type(2) > .contact-list > li {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 4px !important;
}

body.brand-body:not(.owner-admin-body) .site-footer > .footer-card:nth-of-type(2) > .contact-list strong,
body.brand-body:not(.owner-admin-body) .site-footer > .footer-card:nth-of-type(2) > .contact-list span {
  min-width: 0 !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}

@media (min-width: 560px) {
  body.brand-body:not(.owner-admin-body) .site-footer > .footer-card:nth-of-type(2) {
    --ak-footer-contact-width: min(100%, 440px);
  }
}

/* Footer intro card: match the contacts card section width across screens. */
body.brand-body:not(.owner-admin-body) .site-footer > .footer-card:nth-of-type(1) {
  --ak-footer-intro-width: min(100%, 370px);
  display: grid !important;
  justify-items: center !important;
  align-content: start !important;
}

body.brand-body:not(.owner-admin-body) .site-footer > .footer-card:nth-of-type(1) > .eyebrow,
body.brand-body:not(.owner-admin-body) .site-footer > .footer-card:nth-of-type(1) > .footer-title,
body.brand-body:not(.owner-admin-body) .site-footer > .footer-card:nth-of-type(1) > p:not(.eyebrow),
body.brand-body:not(.owner-admin-body) .site-footer > .footer-card:nth-of-type(1) > .footer-links {
  width: var(--ak-footer-intro-width) !important;
  max-width: 100% !important;
  min-width: 0 !important;
  text-align: center !important;
}

body.brand-body:not(.owner-admin-body) .site-footer > .footer-card:nth-of-type(1) > .footer-links {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  justify-items: stretch !important;
  gap: 12px !important;
}

body.brand-body:not(.owner-admin-body) .site-footer > .footer-card:nth-of-type(1) > .footer-links > a {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  justify-content: center !important;
  text-align: center !important;
}

body.brand-body:not(.owner-admin-body) .site-footer > .footer-card:nth-of-type(1) > .footer-title,
body.brand-body:not(.owner-admin-body) .site-footer > .footer-card:nth-of-type(1) > p:not(.eyebrow) {
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}

@media (min-width: 560px) {
  body.brand-body:not(.owner-admin-body) .site-footer > .footer-card:nth-of-type(1) {
    --ak-footer-intro-width: min(100%, 440px);
  }
}

/* Public service/procedure theme lock.
   Detail URLs can be opened directly from search, so keep their first paint on
   the same dark premium surface as the homepage instead of relying on earlier
   generic card layers. */
body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"],
body.brand-body:not(.owner-admin-body):has(.service-hero) {
  background:
    radial-gradient(circle at 18% 0%, rgba(100, 58, 34, 0.18), transparent 34%),
    radial-gradient(circle at 84% 28%, rgba(150, 88, 45, 0.12), transparent 32%),
    linear-gradient(180deg, #090604 0%, #100905 46%, #060403 100%) !important;
  color: var(--text-main) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .page-frame,
body.brand-body:not(.owner-admin-body):has(.service-hero) .page-frame {
  background: transparent !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .service-hero > .hero-card,
body.brand-body:not(.owner-admin-body):has(.service-hero) .service-hero > .hero-card,
body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .section-shell:not(.home-hero-shell),
body.brand-body:not(.owner-admin-body):has(.service-hero) .section-shell:not(.home-hero-shell),
body.brand-body:not(.owner-admin-body):has(.service-hero) .article-shell {
  border-color: var(--ak-hero-surface-border, rgba(230, 189, 132, 0.13)) !important;
  background: var(--ak-hero-surface-bg, linear-gradient(135deg, #0a0a09 0%, #080909 48%, #130e0a 100%)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 22px 70px rgba(0, 0, 0, 0.22) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .detail-card,
body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .result-card,
body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .mini-panel,
body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .faq-item,
body.brand-body:not(.owner-admin-body):has(.service-hero) .detail-card,
body.brand-body:not(.owner-admin-body):has(.service-hero) .result-card,
body.brand-body:not(.owner-admin-body):has(.service-hero) .mini-panel,
body.brand-body:not(.owner-admin-body):has(.service-hero) .faq-item {
  border-color: var(--ak-hero-surface-border-soft, rgba(230, 189, 132, 0.1)) !important;
  background: var(--ak-hero-surface-bg-soft, linear-gradient(135deg, #0a0a09 0%, #080909 50%, #130e0a 100%)) !important;
  color: var(--text-main) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.028), 0 18px 52px rgba(0, 0, 0, 0.2) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .service-hero h1,
body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .detail-card h3,
body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .result-card h3,
body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .mini-panel strong,
body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .faq-item summary,
body.brand-body:not(.owner-admin-body):has(.service-hero) .service-hero h1,
body.brand-body:not(.owner-admin-body):has(.service-hero) .article-content h2,
body.brand-body:not(.owner-admin-body):has(.service-hero) .article-content h3,
body.brand-body:not(.owner-admin-body):has(.service-hero) .detail-card h3,
body.brand-body:not(.owner-admin-body):has(.service-hero) .result-card h3,
body.brand-body:not(.owner-admin-body):has(.service-hero) .mini-panel strong,
body.brand-body:not(.owner-admin-body):has(.service-hero) .faq-item summary {
  color: rgba(245, 241, 234, 0.94) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .service-hero h1,
body.brand-body:not(.owner-admin-body):has(.service-hero) .service-hero h1 {
  width: 100% !important;
  max-width: 100% !important;
  white-space: normal !important;
  text-wrap: balance !important;
  overflow-wrap: anywhere !important;
}

body.brand-body:not(.owner-admin-body) main.page-frame .service-hero .service-hero-copy h1 {
  width: 100% !important;
  max-width: 100% !important;
  white-space: normal !important;
  text-wrap: balance !important;
  overflow-wrap: anywhere !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .service-hero .cta-row,
body.brand-body:not(.owner-admin-body):has(.service-hero) .service-hero .cta-row {
  min-width: 0 !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .service-hero .button,
body.brand-body:not(.owner-admin-body):has(.service-hero) .service-hero .button {
  min-width: 0 !important;
  white-space: normal !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .service-hero .lead,
body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .detail-card p,
body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .result-card p,
body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .mini-panel p,
body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .faq-item p,
body.brand-body:not(.owner-admin-body):has(.service-hero) .service-hero .lead,
body.brand-body:not(.owner-admin-body):has(.service-hero) .article-content p,
body.brand-body:not(.owner-admin-body):has(.service-hero) .article-content li,
body.brand-body:not(.owner-admin-body):has(.service-hero) .detail-card p,
body.brand-body:not(.owner-admin-body):has(.service-hero) .result-card p,
body.brand-body:not(.owner-admin-body):has(.service-hero) .mini-panel p,
body.brand-body:not(.owner-admin-body):has(.service-hero) .faq-item p {
  color: rgba(245, 241, 234, 0.7) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .site-header .header-card,
body.brand-body:not(.owner-admin-body):has(.service-hero) .site-header .header-card {
  border-color: rgba(216, 174, 120, 0.14) !important;
  background: rgba(10, 7, 5, 0.92) !important;
  color: var(--text-main) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-trust-strip {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: center !important;
  gap: 10px !important;
  width: min(100%, 1480px) !important;
  max-width: 1480px !important;
  margin: clamp(14px, 1.8vw, 22px) auto 0 !important;
  padding: 8px !important;
  border: 1px solid rgba(230, 189, 132, 0.12) !important;
  border-radius: 999px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(230, 189, 132, 0.025)),
    rgba(10, 8, 7, 0.68) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 16px 44px rgba(0, 0, 0, 0.18) !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] main.page-frame > .home-hero-compact-shell,
body.brand-body:not(.owner-admin-body)[data-page-path="/"] main.page-frame > .home-hero-shell:first-child {
  margin-bottom: 0 !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] main.page-frame > .home-hero-compact-shell + .home-trust-strip,
body.brand-body:not(.owner-admin-body)[data-page-path="/"] main.page-frame > .home-hero-shell:first-child + .home-trust-strip {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 16px !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] main.page-frame > .home-trust-strip + #home-services {
  margin-top: 28px !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-trust-strip-item {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  min-width: 0 !important;
  min-height: 42px !important;
  padding: 0 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.055) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.018) !important;
  color: rgba(245, 241, 234, 0.82) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-trust-strip-item strong {
  color: #f0ad77 !important;
  font-weight: 900 !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-trust-strip-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 28px !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 999px !important;
  background: rgba(230, 189, 132, 0.12) !important;
  color: #f0ad77 !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-trust-strip-icon svg {
  width: 15px !important;
  height: 15px !important;
  stroke: currentColor !important;
  stroke-width: 1.9 !important;
  fill: none !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-trust-strip-link {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] #home-services .section-heading.row > .text-link,
body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-results-desktop .section-heading.row > .text-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-width: 190px !important;
  min-height: 44px !important;
  padding: 0 18px !important;
  border: 1px solid rgba(230, 189, 132, 0.22) !important;
  border-radius: 999px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(230, 189, 132, 0.04)),
    rgba(10, 8, 7, 0.48) !important;
  color: rgba(245, 241, 234, 0.92) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 12px 28px rgba(0, 0, 0, 0.16) !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: 0.012em !important;
  text-align: center !important;
  text-transform: uppercase !important;
  white-space: normal !important;
}

body.brand-body:not(.owner-admin-body)[data-page-path="/"] #home-services .section-heading.row > .text-link::after,
body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-results-desktop .section-heading.row > .text-link::after {
  content: "\2192" !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 22px !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 999px !important;
  background: rgba(230, 189, 132, 0.14) !important;
  color: #f1ad78 !important;
  font-size: 15px !important;
  line-height: 1 !important;
}

@media (hover: hover) and (pointer: fine) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-trust-strip-link:hover,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-trust-strip-link:focus-visible,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] #home-services .section-heading.row > .text-link:hover,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] #home-services .section-heading.row > .text-link:focus-visible,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-results-desktop .section-heading.row > .text-link:hover,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-results-desktop .section-heading.row > .text-link:focus-visible {
    transform: translateY(-1px) !important;
    border-color: rgba(230, 189, 132, 0.24) !important;
    background: rgba(230, 189, 132, 0.075) !important;
    color: rgba(245, 241, 234, 0.95) !important;
  }
}

@media (max-width: 768px) {
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-shell,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact-shell {
    border-color: var(--ak-hero-surface-border, rgba(230, 189, 132, 0.13)) !important;
    background: var(--ak-hero-surface-bg, linear-gradient(135deg, #0a0a09 0%, #080909 48%, #130e0a 100%)) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 22px 70px rgba(0, 0, 0, 0.22) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact {
    background: transparent !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title {
    display: grid !important;
    justify-items: center !important;
    width: min(100%, 326px) !important;
    max-width: 326px !important;
    margin: 14px auto 0 !important;
    color: #f8f3eb !important;
    font-size: clamp(30px, 7.35vw, 36px) !important;
    line-height: 0.92 !important;
    letter-spacing: -0.035em !important;
    text-align: center !important;
    text-wrap: balance !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title span,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    font-size: inherit !important;
    line-height: inherit !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .hero-title-accent {
    color: #eda66e !important;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
    font-style: italic !important;
    letter-spacing: -0.045em !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] #home-services .section-heading.row > .text-link,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-results-mobile .section-heading.row > .text-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: min(100%, 290px) !important;
    min-height: 48px !important;
    margin: 2px auto 0 !important;
    padding: 0 18px !important;
    border: 1px solid rgba(230, 189, 132, 0.24) !important;
    border-radius: 999px !important;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(230, 189, 132, 0.055)),
      rgba(10, 8, 7, 0.54) !important;
    color: rgba(245, 241, 234, 0.94) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 28px rgba(0, 0, 0, 0.18) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    letter-spacing: 0.015em !important;
    text-align: center !important;
    text-transform: uppercase !important;
    white-space: normal !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] #home-services .section-heading.row > .text-link::after,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-results-mobile .section-heading.row > .text-link::after {
    content: "\2192" !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 22px !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 999px !important;
    background: rgba(230, 189, 132, 0.14) !important;
    color: #f1ad78 !important;
    font-size: 15px !important;
    line-height: 1 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-results-mobile .mobile-result-feature .result-copy > a.text-link[href="/results"] {
    display: none !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 16px !important;
    padding: 5px !important;
    border-radius: 999px !important;
    gap: 4px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] main.page-frame > .home-trust-strip + #home-services {
    margin-top: 28px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-trust-strip-item {
    min-height: 38px !important;
    padding: 0 5px !important;
    justify-content: center !important;
    gap: 5px !important;
    font-size: 11.5px !important;
    line-height: 1.08 !important;
    white-space: normal !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-trust-strip-icon {
    flex-basis: 22px !important;
    width: 22px !important;
    height: 22px !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-trust-strip-icon svg {
    width: 13px !important;
    height: 13px !important;
  }
}

@media (max-width: 768px) {
  body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .service-hero,
  body.brand-body:not(.owner-admin-body):has(.service-hero) .service-hero {
    grid-template-columns: 1fr !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path^="/services/"] .service-hero > .hero-card,
  body.brand-body:not(.owner-admin-body):has(.service-hero) .service-hero > .hero-card {
    border-radius: 24px !important;
    padding: clamp(22px, 5.5vw, 28px) !important;
  }
}

body.brand-body:not(.admin-body) .hero-still-life img,
body.brand-body:not(.admin-body) .article-cover,
body.brand-body:not(.admin-body) .before-after-slider img {
  object-position: var(--image-position, center center) !important;
}

body.brand-body:not(.admin-body) .service-title-link {
  color: inherit !important;
  text-decoration: none !important;
}

body.brand-body:not(.admin-body) .service-title-link:focus-visible {
  outline: 2px solid rgba(237, 166, 110, 0.8) !important;
  outline-offset: 4px !important;
  border-radius: 8px !important;
}

@media (max-width: 768px) {
  body.brand-body:not(.admin-body) .service-title-link {
    position: relative !important;
    z-index: 8 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    max-width: 100% !important;
    padding: 0 2px 4px 0 !important;
    border-bottom: 0 !important;
    color: #f5d2b3 !important;
    text-decoration: none !important;
    pointer-events: auto !important;
  }

  body.brand-body:not(.admin-body) .service-title-text {
    min-width: 0 !important;
    text-decoration: underline !important;
    text-decoration-color: rgba(237, 166, 110, 0.5) !important;
    text-decoration-thickness: 1px !important;
    text-underline-offset: 5px !important;
    box-shadow: inset 0 -0.38em 0 rgba(237, 166, 110, 0.13) !important;
  }

  body.brand-body:not(.admin-body) .service-title-link::after {
    content: "\2192" !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 22px !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 999px !important;
    background: rgba(237, 166, 110, 0.14) !important;
    color: #f1ad78 !important;
    border: 1px solid rgba(237, 166, 110, 0.28) !important;
    font-family: Inter, Manrope, sans-serif !important;
    font-size: 15px !important;
    line-height: 1 !important;
    text-decoration: none !important;
  }
}

/* Mobile polish for the homepage header logo and hero label. */
@media (max-width: 768px) {
  body.brand-body:not(.owner-admin-body) .site-header .brand,
  body.brand-body:not(.owner-admin-body) header.site-header .brand,
  body.brand-body:not(.owner-admin-body) .site-header .brand-mark,
  body.brand-body:not(.owner-admin-body) header.site-header .brand-mark {
    overflow: visible !important;
  }

  body.brand-body:not(.owner-admin-body) .site-header .brand-mark,
  body.brand-body:not(.owner-admin-body) header.site-header .brand-mark {
    display: inline-block !important;
    padding-bottom: 3px !important;
    line-height: 1.16 !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .home-hero-compact .home-hero-label {
    min-height: 34px !important;
    margin-inline: auto !important;
    margin-bottom: 22px !important;
    padding: 8px 18px 9px !important;
    border: 1px solid rgba(237, 166, 110, 0.24) !important;
    border-radius: 999px !important;
    background:
      linear-gradient(135deg, rgba(237, 166, 110, 0.12), rgba(255, 255, 255, 0.035)),
      rgba(13, 11, 10, 0.44) !important;
    color: rgba(245, 210, 179, 0.94) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 12px 26px rgba(0, 0, 0, 0.18) !important;
    font-size: clamp(12px, 3vw, 14px) !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
    letter-spacing: 0.12em !important;
    text-align: center !important;
    text-shadow: 0 1px 12px rgba(237, 166, 110, 0.14) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] header.site-header + main.page-frame,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .site-header + .page-frame,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] main.page-frame {
    padding-top: calc(env(safe-area-inset-top, 0px) + 76px) !important;
  }

  body.brand-body:not(.owner-admin-body)[data-page-path="/"] main.page-frame > .home-hero-compact-shell,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] main.page-frame > .home-hero-shell:first-child,
  body.brand-body:not(.owner-admin-body)[data-page-path="/"] .page-frame > .home-hero-shell:first-child {
    margin-top: 8px !important;
  }
}

/* Header contact emphasis: make quick contact buttons visible. */
@media (min-width: 769px) {
  body.brand-body:not(.owner-admin-body) .header-cta .header-contact {
    min-width: 92px !important;
    border-color: rgba(237, 166, 110, 0.46) !important;
    background:
      linear-gradient(135deg, rgba(237, 166, 110, 0.22), rgba(255, 255, 255, 0.055)),
      rgba(20, 14, 10, 0.82) !important;
    color: #f8d0ad !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 0 1px rgba(237, 166, 110, 0.08),
      0 10px 28px rgba(237, 166, 110, 0.16) !important;
    font-weight: 800 !important;
  }

  body.brand-body:not(.owner-admin-body) .header-cta .header-contact:hover,
  body.brand-body:not(.owner-admin-body) .header-cta .header-contact:focus-visible {
    border-color: rgba(237, 166, 110, 0.72) !important;
    background:
      linear-gradient(135deg, rgba(248, 191, 142, 0.34), rgba(255, 255, 255, 0.075)),
      rgba(27, 18, 12, 0.92) !important;
    color: #fff2e5 !important;
    box-shadow:
      0 0 0 3px rgba(237, 166, 110, 0.12),
      0 16px 36px rgba(237, 166, 110, 0.2),
      0 18px 42px rgba(0, 0, 0, 0.26) !important;
  }
}

/* Public fast-scroll performance guard. Keep as the final public layer. */
body.brand-body:not(.owner-admin-body) .page-frame > .section-shell:nth-of-type(n + 2),
body.brand-body:not(.owner-admin-body) .page-frame > .article-shell:nth-of-type(n + 2),
body.brand-body:not(.owner-admin-body) .page-frame > .home-trust-strip,
body.brand-body:not(.owner-admin-body) .page-frame > .site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

body.brand-body:not(.owner-admin-body) .before-after-slider .after-layer,
body.brand-body:not(.owner-admin-body) .before-after-slider [data-after] {
  will-change: auto !important;
}

body.brand-body:not(.owner-admin-body).is-scroll-active *,
body.brand-body:not(.owner-admin-body).is-scroll-active *::before,
body.brand-body:not(.owner-admin-body).is-scroll-active *::after {
  animation: none !important;
  transition-duration: 0.001ms !important;
}

body.brand-body:not(.owner-admin-body).is-scroll-active .site-header,
body.brand-body:not(.owner-admin-body).is-scroll-active .header-card,
body.brand-body:not(.owner-admin-body).is-scroll-active .site-nav,
body.brand-body:not(.owner-admin-body).is-scroll-active .section-shell,
body.brand-body:not(.owner-admin-body).is-scroll-active .article-shell,
body.brand-body:not(.owner-admin-body).is-scroll-active .footer-card,
body.brand-body:not(.owner-admin-body).is-scroll-active .service-card,
body.brand-body:not(.owner-admin-body).is-scroll-active .result-card,
body.brand-body:not(.owner-admin-body).is-scroll-active .detail-card,
body.brand-body:not(.owner-admin-body).is-scroll-active .review-card,
body.brand-body:not(.owner-admin-body).is-scroll-active .mini-panel,
body.brand-body:not(.owner-admin-body).is-scroll-active .faq-item,
body.brand-body:not(.owner-admin-body).is-scroll-active .contact-card,
body.brand-body:not(.owner-admin-body).is-scroll-active .booking-form-panel,
body.brand-body:not(.owner-admin-body).is-scroll-active .sticky-cta,
body.brand-body:not(.owner-admin-body).is-scroll-active .home-trust-strip,
body.brand-body:not(.owner-admin-body).is-scroll-active .before-after-slider,
body.brand-body:not(.owner-admin-body).is-scroll-active .before-after-labels span {
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.brand-body:not(.owner-admin-body).is-scroll-active img,
body.brand-body:not(.owner-admin-body).is-scroll-active video,
body.brand-body:not(.owner-admin-body).is-scroll-active picture {
  filter: none !important;
}

body.brand-body:not(.owner-admin-body).is-scroll-active .scroll-hint,
body.brand-body:not(.owner-admin-body).is-scroll-active .hero-light {
  display: none !important;
}
