:root {
  --bg: #0a0a0a;
  --bg-soft: #121212;
  --gold: #d4af37;
  --gold-soft: #b2872c;
  --white: #ffffff;
  --gray: #a0a0a0;
  --green: #187047;
  --wine: #3b1d1a;
  --panel: rgba(16, 16, 16, 0.9);
  --border: rgba(255, 255, 255, 0.1);
  --line: rgba(212, 175, 55, 0.2);
  --radius: 10px;
  --container: min(1160px, 92vw);
  --header-h: 82px;
  --ease: 280ms cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--gray);
  line-height: 1.68;
  background:
    radial-gradient(46% 38% at 12% 12%, rgba(212, 175, 55, 0.13), transparent 62%),
    radial-gradient(56% 46% at 86% 35%, rgba(24, 112, 71, 0.12), transparent 68%),
    radial-gradient(30% 28% at 48% 88%, rgba(59, 29, 26, 0.28), transparent 68%),
    linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 50%, #070707 100%);
  overflow-x: hidden;
}

body[data-theme="light"] {
  --bg: #ece8df;
  --bg-soft: #f6f2ea;
  --white: #121212;
  --gray: #2f2f2f;
  --panel: rgba(246, 242, 234, 0.92);
  --border: rgba(0, 0, 0, 0.16);
  --line: rgba(151, 111, 26, 0.36);
  --shadow: 0 14px 26px rgba(33, 27, 17, 0.14);
  background:
    radial-gradient(46% 38% at 12% 12%, rgba(212, 175, 55, 0.16), transparent 62%),
    radial-gradient(56% 46% at 86% 35%, rgba(24, 112, 71, 0.09), transparent 68%),
    linear-gradient(180deg, #f2eee4 0%, #ece8df 50%, #e6e1d6 100%);
}

body[data-theme="light"]::before {
  opacity: 0.18;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(6, 6, 6, 0.24), rgba(6, 6, 6, 0.94));
  opacity: 0;
  transition: opacity 260ms ease;
  z-index: 1400;
}

body[data-theme="light"]::after {
  background: rgba(0, 0, 0, 1);
  opacity: 0.1;
}

body.is-leaving::after {
  opacity: 1;
}

body.is-loading {
  overflow: hidden;
}

.ambient-layer {
  position: fixed;
  inset: -12%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(42% 32% at 18% 16%, rgba(212, 175, 55, 0.18), transparent 68%),
    radial-gradient(36% 30% at 84% 20%, rgba(24, 112, 71, 0.16), transparent 68%),
    radial-gradient(44% 28% at 50% 84%, rgba(59, 29, 26, 0.16), transparent 68%);
  filter: blur(26px) saturate(1.06);
  opacity: 0.72;
  animation: ambientDrift 18s ease-in-out infinite alternate;
}

@keyframes ambientDrift {
  0% { transform: translate3d(-1.2%, -0.7%, 0) scale(1); }
  100% { transform: translate3d(1.3%, 0.9%, 0) scale(1.03); }
}

body[data-theme="light"] .ambient-layer {
  background:
    radial-gradient(42% 32% at 18% 16%, rgba(212, 175, 55, 0.2), transparent 68%),
    radial-gradient(36% 30% at 84% 20%, rgba(24, 112, 71, 0.12), transparent 68%),
    radial-gradient(44% 28% at 50% 84%, rgba(178, 135, 44, 0.12), transparent 68%);
  opacity: 0.62;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(212, 175, 55, 0.03) 12px 13px),
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(24, 112, 71, 0.03) 14px 15px);
}

h1,
h2,
h3,
h4 {
  font-family: "Cinzel", serif;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

.skip-link {
  position: fixed;
  top: -56px;
  left: 0.8rem;
  z-index: 1800;
  padding: 0.56rem 0.78rem;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.7);
  background: rgba(8, 8, 8, 0.96);
  color: #f1f1f1;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: top 180ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 0.8rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

body[data-theme="light"] a:focus-visible,
body[data-theme="light"] button:focus-visible,
body[data-theme="light"] input:focus-visible,
body[data-theme="light"] select:focus-visible,
body[data-theme="light"] textarea:focus-visible,
body[data-theme="light"] summary:focus-visible,
body[data-theme="light"] [tabindex]:focus-visible {
  outline-color: #7a5815;
}

.carousel:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.75);
  outline-offset: 4px;
  border-radius: 10px;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.progress-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  z-index: 1300;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 35%, rgba(212, 175, 55, 0.12), transparent 50%), #090909;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-mark {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.6);
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-inner p {
  color: #d3d3d3;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

@keyframes pulse {
  0% { transform: scale(0.98); }
  50% { transform: scale(1.03); }
  100% { transform: scale(0.98); }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  z-index: 1100;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(130deg, rgba(10, 10, 10, 0.88), rgba(8, 8, 8, 0.68));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color var(--ease), border-color var(--ease);
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.9);
  border-color: rgba(212, 175, 55, 0.25);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.brand img {
  width: auto;
  height: 46px;
  max-width: min(36vw, 120px);
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  border: 0;
  flex-shrink: 0;
}

.brand-text strong {
  display: block;
  font-size: 0.85rem;
  font-family: "Cinzel", serif;
  font-weight: 600;
  color: var(--gold);
}

.brand-text small {
  display: block;
  margin-top: 0.08rem;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d4d4d4;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  background: rgba(0, 0, 0, 0.45);
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  content: "";
  transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }

.nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.theme-toggle {
  margin-left: auto;
  margin-right: 0.35rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(0, 0, 0, 0.36);
  color: #f5f5f5;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: transform var(--ease), border-color var(--ease), background-color var(--ease);
}

.theme-toggle:hover {
  border-color: rgba(212, 175, 55, 0.7);
  transform: translateY(-1px);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav a {
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f3f3f3;
  padding: 0.38rem 0.48rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color var(--ease), border-color var(--ease), background-color var(--ease);
}

.nav a:hover,
.nav a.is-active {
  color: var(--gold);
  border-color: rgba(212, 175, 55, 0.42);
  background: rgba(212, 175, 55, 0.1);
}

main {
  padding-top: var(--header-h);
}

.page-hero {
  min-height: 70vh;
  display: grid;
  align-items: center;
  background-position: center;
  background-size: cover;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(160deg, rgba(8, 8, 8, 0.86), rgba(8, 8, 8, 0.4)),
    radial-gradient(35% 35% at 12% 12%, rgba(212, 175, 55, 0.18), transparent 70%);
}

.page-hero.hero-fallback {
  background-image:
    linear-gradient(160deg, rgba(8, 8, 8, 0.86), rgba(8, 8, 8, 0.4)),
    radial-gradient(35% 35% at 12% 12%, rgba(212, 175, 55, 0.18), transparent 70%),
    url("../branding/motif.svg");
  background-size: cover, cover, 220px 220px;
  background-position: center, center, center;
}

body[data-theme="light"] .page-hero,
body[data-theme="light"] .page-hero.hero-fallback {
  background-image:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.26)),
    radial-gradient(35% 35% at 12% 12%, rgba(212, 175, 55, 0.22), transparent 70%),
    url("../branding/motif.svg");
  background-size: cover, cover, 220px 220px;
  background-position: center, center, center;
}

body[data-theme="light"] .page-hero::before {
  background:
    radial-gradient(48% 42% at 12% 8%, rgba(212, 175, 55, 0.16), transparent 68%),
    radial-gradient(38% 40% at 86% 72%, rgba(24, 112, 71, 0.14), transparent 72%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.08));
}

body[data-theme="light"] .page-hero::after {
  opacity: 0.12;
}

body[data-theme="light"] .page-hero h1 {
  color: #121212;
  text-shadow: 0 6px 14px rgba(255, 255, 255, 0.35);
}

body[data-theme="light"] .page-hero p {
  color: #2f2f2f;
}

body[data-theme="light"] .badges span {
  background: rgba(255, 255, 255, 0.75);
  color: #2d2d2d;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(48% 42% at 12% 8%, rgba(212, 175, 55, 0.26), transparent 68%),
    radial-gradient(38% 40% at 86% 72%, rgba(24, 112, 71, 0.26), transparent 72%),
    linear-gradient(160deg, rgba(8, 8, 8, 0.82), rgba(8, 8, 8, 0.34));
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(120deg, transparent 0 34px, rgba(255, 255, 255, 0.02) 34px 36px);
  mix-blend-mode: screen;
  opacity: 0.28;
}

.page-hero.has-hero-slideshow {
  background-image: none;
}

body[data-theme="light"] .page-hero.has-hero-slideshow,
body[data-theme="light"] .page-hero.has-hero-slideshow.hero-fallback {
  background-image: none;
}

.hero-slide-layer {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1000ms ease, transform 2200ms ease;
  will-change: opacity, transform;
}

.hero-slide-layer.is-active {
  opacity: 1;
  transform: scale(1);
}

.page-hero[data-hero-key="home"]::before {
  background:
    radial-gradient(48% 42% at 12% 8%, rgba(212, 175, 55, 0.28), transparent 68%),
    radial-gradient(38% 40% at 86% 72%, rgba(24, 112, 71, 0.24), transparent 72%),
    linear-gradient(160deg, rgba(8, 8, 8, 0.84), rgba(8, 8, 8, 0.34));
}

.page-hero[data-hero-key="grooming"]::before {
  background:
    radial-gradient(50% 44% at 14% 14%, rgba(178, 135, 44, 0.3), transparent 68%),
    radial-gradient(36% 32% at 84% 78%, rgba(59, 29, 26, 0.28), transparent 72%),
    linear-gradient(160deg, rgba(8, 8, 8, 0.84), rgba(8, 8, 8, 0.36));
}

.page-hero[data-hero-key="cleaning"]::before {
  background:
    radial-gradient(54% 40% at 18% 16%, rgba(24, 112, 71, 0.31), transparent 68%),
    radial-gradient(36% 30% at 80% 70%, rgba(212, 175, 55, 0.25), transparent 70%),
    linear-gradient(160deg, rgba(8, 8, 8, 0.84), rgba(8, 8, 8, 0.36));
}

.page-hero[data-hero-key="timepieces"]::before {
  background:
    radial-gradient(48% 42% at 16% 10%, rgba(212, 175, 55, 0.3), transparent 68%),
    radial-gradient(30% 30% at 84% 72%, rgba(24, 112, 71, 0.2), transparent 72%),
    linear-gradient(160deg, rgba(8, 8, 8, 0.86), rgba(8, 8, 8, 0.34));
}

.page-hero[data-hero-key="about"]::before,
.page-hero[data-hero-key="book"]::before {
  background:
    radial-gradient(50% 40% at 16% 10%, rgba(59, 29, 26, 0.3), transparent 68%),
    radial-gradient(34% 32% at 82% 76%, rgba(212, 175, 55, 0.24), transparent 72%),
    linear-gradient(160deg, rgba(8, 8, 8, 0.85), rgba(8, 8, 8, 0.36));
}

.hero-content {
  max-width: 780px;
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
  border-left: 2px solid rgba(212, 175, 55, 0.45);
  padding-left: clamp(1.1rem, 2.2vw, 1.8rem);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badges span {
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(130deg, rgba(8, 8, 8, 0.72), rgba(8, 8, 8, 0.36));
  color: #e9e9e9;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  margin-bottom: 0.9rem;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.42);
}

.page-hero p {
  max-width: 680px;
  margin-bottom: 1.4rem;
  color: #cecece;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
}

.luxury-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.4rem;
  border: 1px solid var(--gold);
  border-radius: 5px;
  color: var(--gold);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: background-color var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.luxury-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 35%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-22deg);
  transition: left 420ms ease;
}

.luxury-btn:hover,
.luxury-btn:focus-visible {
  background: linear-gradient(130deg, var(--gold), var(--gold-soft));
  color: #0f0f0f;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.28);
}

.luxury-btn:hover::after,
.luxury-btn:focus-visible::after {
  left: 120%;
}

.page-hero .luxury-btn {
  border-color: rgba(212, 175, 55, 0.8);
  background: linear-gradient(130deg, rgba(212, 175, 55, 0.16), rgba(178, 135, 44, 0.08));
  color: #f1d985;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.28);
}

body[data-theme="light"] .page-hero .luxury-btn {
  border-color: rgba(95, 69, 16, 0.7);
  background: linear-gradient(130deg, rgba(95, 69, 16, 0.08), rgba(139, 100, 23, 0.05));
  color: #5f4510;
  box-shadow: 0 8px 14px rgba(45, 31, 10, 0.16);
}

.section {
  padding: clamp(2.8rem, 6vw, 4.8rem) 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("../branding/motif.svg");
  background-size: 260px 260px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8) 18%, rgba(0, 0, 0, 0.8) 82%, transparent);
}

.section > .container {
  position: relative;
  z-index: 1;
}

main > .section:nth-of-type(odd) {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

main > .section:nth-of-type(even) {
  background: linear-gradient(150deg, rgba(212, 175, 55, 0.05), rgba(24, 112, 71, 0.02));
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
  padding-right: 2.4rem;
  color: #fbfbfb;
}

.section-title::after {
  content: "";
  position: absolute;
  left: calc(100% + 0.4rem);
  top: 54%;
  width: 1.8rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-lead {
  color: #bbbbbb;
  margin-bottom: 1rem;
  max-width: 760px;
}

.note-band {
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(24, 112, 71, 0.18), rgba(212, 175, 55, 0.08)),
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(255, 255, 255, 0.02) 14px 15px);
}

.note-band p {
  color: #dadada;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

body[data-theme="light"] .site-header {
  background: linear-gradient(130deg, rgba(236, 232, 223, 0.94), rgba(246, 242, 234, 0.84));
}

body[data-theme="light"] .site-header.is-scrolled {
  background: rgba(236, 232, 223, 0.98);
}

body[data-theme="light"] .brand-text small,
body[data-theme="light"] .nav a,
body[data-theme="light"] .badges span,
body[data-theme="light"] .note-band p,
body[data-theme="light"] .section-lead,
body[data-theme="light"] .manifesto-side p,
body[data-theme="light"] .card p,
body[data-theme="light"] .preview-panel p,
body[data-theme="light"] .step-card p,
body[data-theme="light"] .trust-card p,
body[data-theme="light"] .faq-item p,
body[data-theme="light"] .crumb-inner p,
body[data-theme="light"] .inquiry-list li,
body[data-theme="light"] .process-card p,
body[data-theme="light"] .coverage-card p,
body[data-theme="light"] .footer p,
body[data-theme="light"] .form-note,
body[data-theme="light"] .status,
body[data-theme="light"] label {
  color: #262626;
}

body[data-theme="light"] .nav a.is-active,
body[data-theme="light"] .nav a:hover {
  color: #5f4510;
}

body[data-theme="light"] .note-band {
  background:
    linear-gradient(90deg, rgba(24, 112, 71, 0.11), rgba(212, 175, 55, 0.14)),
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(0, 0, 0, 0.03) 14px 15px);
  border-color: rgba(0, 0, 0, 0.12);
}

body[data-theme="light"] .hierarchy-links a,
body[data-theme="light"] .trust-mini span {
  color: #1f1f1f;
  background: rgba(247, 243, 235, 0.95);
  border-color: rgba(0, 0, 0, 0.22);
}

body[data-theme="light"] .nav,
body[data-theme="light"] .card,
body[data-theme="light"] .manifesto-main,
body[data-theme="light"] .manifesto-side,
body[data-theme="light"] .preview-panel,
body[data-theme="light"] .step-card,
body[data-theme="light"] .faq-item,
body[data-theme="light"] .crumb-inner,
body[data-theme="light"] .inquiry-intro,
body[data-theme="light"] .inquiry-form,
body[data-theme="light"] .sticky-book-bar {
  background: rgba(247, 243, 235, 0.94);
  border-color: rgba(0, 0, 0, 0.2);
}

body[data-theme="light"] input,
body[data-theme="light"] select,
body[data-theme="light"] textarea {
  background: rgba(248, 244, 236, 0.96);
  color: #151515;
  border-color: rgba(0, 0, 0, 0.22);
}

body[data-theme="light"] .theme-toggle {
  background: rgba(246, 241, 232, 0.94);
  color: #151515;
  border-color: rgba(151, 111, 26, 0.54);
}

body[data-theme="light"] .sticky-book-bar p {
  color: #1f1f1f;
}

body[data-theme="light"] .footer {
  background:
    radial-gradient(40% 70% at 18% 0%, rgba(212, 175, 55, 0.16), transparent 72%),
    #e3ddcf;
}

body[data-theme="light"] .footer strong {
  color: #171717;
}

body[data-theme="light"] .site-loader {
  background: radial-gradient(circle at 50% 35%, rgba(212, 175, 55, 0.16), transparent 50%), #ebe5d8;
}

body[data-theme="light"] .loader-inner p {
  color: #2f2f2f;
}

body[data-theme="light"] .section-title {
  color: #121212;
}

body[data-theme="light"] .section-title::after {
  background: linear-gradient(90deg, #8b6417, transparent);
}

body[data-theme="light"] .crumbs,
body[data-theme="light"] .offer-label,
body[data-theme="light"] .offer-copy,
body[data-theme="light"] .offer-points span,
body[data-theme="light"] .package-card p,
body[data-theme="light"] .faq-item summary {
  color: #1f1f1f;
}

body[data-theme="light"] .offer-points span {
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(248, 244, 236, 0.95);
}

.note-band strong {
  color: var(--gold);
}

.hierarchy-rail {
  padding: 0.7rem 0 0.3rem;
}

.hierarchy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hierarchy-links a {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.38rem 0.64rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  background: rgba(10, 10, 10, 0.35);
  color: #ebebeb;
}

.crumb-strip {
  padding: 0.9rem 0 0.4rem;
}

.crumb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.68rem 0.82rem;
  background: linear-gradient(130deg, rgba(16, 16, 16, 0.85), rgba(11, 11, 11, 0.88));
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e6e6e6;
}

.crumbs a {
  color: var(--gold);
}

.crumb-inner p {
  color: #cfcfcf;
  font-size: 0.8rem;
}

.section-divider {
  height: 34px;
  position: relative;
  overflow: hidden;
}

.section-divider::before,
.section-divider::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 180%;
  height: 1px;
  transform: translateY(-50%);
}

.section-divider::before {
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.55), transparent);
  animation: slide-divider 12s linear infinite;
}

.section-divider::after {
  background: linear-gradient(90deg, transparent, rgba(24, 112, 71, 0.35), transparent);
  animation: slide-divider 16s linear infinite reverse;
}

@keyframes slide-divider {
  from { transform: translate(-20%, -50%); }
  to { transform: translate(20%, -50%); }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.offer-strip {
  padding-top: 1.4rem;
}

.offer-strip-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  background:
    linear-gradient(120deg, rgba(212, 175, 55, 0.16), rgba(24, 112, 71, 0.12)),
    radial-gradient(44% 80% at 0% 0%, rgba(255, 255, 255, 0.06), transparent 70%);
  box-shadow: var(--shadow);
}

.offer-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  color: #e7e7e7;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  white-space: nowrap;
}

.offer-copy {
  color: #dedede;
  font-size: 0.95rem;
}

.offer-points {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.offer-points span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.28rem 0.54rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #f0f0f0;
  background: rgba(0, 0, 0, 0.24);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.package-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.15rem;
  background:
    linear-gradient(145deg, rgba(18, 18, 18, 0.94), rgba(10, 10, 10, 0.92)),
    radial-gradient(56% 70% at 0% 0%, rgba(212, 175, 55, 0.12), transparent 70%);
  box-shadow: var(--shadow);
  transition: transform var(--ease), border-color var(--ease);
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.08);
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.52rem;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.44);
}

.package-tag {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  margin-bottom: 0.42rem;
}

.package-card h3 {
  margin-bottom: 0.3rem;
  font-size: 1.12rem;
}

.package-meta {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.package-card p {
  color: #cecece;
  font-size: 0.9rem;
}

.package-card a {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.7rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
  padding-bottom: 0.2rem;
}

.manifesto-section {
  padding-top: 0.7rem;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.95rem;
}

.manifesto-main,
.manifesto-side {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.manifesto-main {
  background:
    linear-gradient(140deg, rgba(24, 112, 71, 0.24), rgba(212, 175, 55, 0.18)),
    linear-gradient(145deg, rgba(14, 14, 14, 0.95), rgba(8, 8, 8, 0.92));
}

.manifesto-side {
  background:
    linear-gradient(145deg, rgba(17, 17, 17, 0.95), rgba(9, 9, 9, 0.9)),
    radial-gradient(60% 80% at 0% 0%, rgba(212, 175, 55, 0.12), transparent 72%);
}

.manifesto-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  margin-bottom: 0.62rem;
}

.manifesto-main h2 {
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  line-height: 1.26;
}

.manifesto-side p {
  color: #cecece;
  margin-bottom: 1rem;
}

.trust-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
  margin-bottom: 1rem;
}

.trust-mini span {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ececec;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 999px;
  padding: 0.28rem 0.52rem;
  background: rgba(0, 0, 0, 0.24);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.step-card {
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  background: linear-gradient(145deg, rgba(18, 18, 18, 0.95), rgba(10, 10, 10, 0.92));
}

.step-no {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 0.84rem;
  margin-bottom: 0.6rem;
  background: rgba(212, 175, 55, 0.08);
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 0.34rem;
}

.step-card p {
  color: #c8c8c8;
  font-size: 0.88rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.trust-card {
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 12px;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(15, 15, 15, 0.95), rgba(10, 10, 10, 0.9)),
    radial-gradient(40% 60% at 100% 0%, rgba(24, 112, 71, 0.14), transparent 72%);
}

.trust-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.trust-card p {
  color: #c7c7c7;
  font-size: 0.88rem;
}

.faq-grid {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
  background:
    linear-gradient(145deg, rgba(17, 17, 17, 0.95), rgba(10, 10, 10, 0.92)),
    radial-gradient(40% 80% at 0% 0%, rgba(24, 112, 71, 0.1), transparent 72%);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  color: #f0f0f0;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding-right: 1.4rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -1px;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin-top: 0.6rem;
  color: #c8c8c8;
  font-size: 0.9rem;
}

.sticky-book-bar {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translate(-50%, 24px);
  width: min(760px, calc(100vw - 1.4rem));
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 999px;
  background:
    linear-gradient(130deg, rgba(10, 10, 10, 0.96), rgba(16, 16, 16, 0.9)),
    radial-gradient(55% 120% at 0% 0%, rgba(212, 175, 55, 0.12), transparent 70%);
  box-shadow: 0 24px 34px rgba(0, 0, 0, 0.55);
  padding: 0.44rem 0.5rem 0.44rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
}

.sticky-book-bar p {
  color: #ececec;
  font-size: 0.9rem;
  line-height: 1.25;
}

.sticky-book-bar .luxury-btn {
  min-height: 42px;
  padding: 0.62rem 1rem;
  font-size: 0.68rem;
}

body.has-sticky-cta .sticky-book-bar {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

body.has-sticky-cta .quick-wa {
  bottom: 5.4rem;
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(150deg, rgba(26, 26, 26, 0.92), rgba(12, 12, 12, 0.92));
  box-shadow: var(--shadow);
  padding: 1rem;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.32);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.48);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.card p {
  color: #bebebe;
  font-size: 0.9rem;
}

.service-preview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.9rem;
  align-items: center;
  margin-top: 1.2rem;
}

.service-preview:nth-of-type(even) {
  grid-template-columns: 0.9fr 1.1fr;
}

.service-preview:nth-of-type(even) .preview-image {
  order: 2;
}

.service-preview:nth-of-type(even) .preview-panel {
  order: 1;
}

.preview-image {
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  min-height: 290px;
  position: relative;
}

.preview-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.45), transparent 44%);
  pointer-events: none;
}

.preview-image img {
  width: 100%;
  height: 100%;
  transition: transform 620ms ease;
}

.service-preview:hover .preview-image img {
  transform: scale(1.045);
}

.preview-panel {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(150deg, rgba(16, 16, 16, 0.92), rgba(12, 12, 12, 0.88)),
    radial-gradient(60% 90% at 0% 0%, rgba(212, 175, 55, 0.12), transparent 72%);
  padding: 1.25rem;
}

.preview-panel .service-kicker {
  color: var(--gold);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.preview-panel h3 {
  margin-bottom: 0.5rem;
  font-size: 1.24rem;
}

.preview-panel p {
  margin-bottom: 1rem;
  color: #c4c4c4;
}

.carousel-shell {
  margin-top: 0.8rem;
}

.carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.2rem 0.1rem 0.9rem;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel figure {
  flex: 0 0 78%;
  max-width: 300px;
  min-width: 220px;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
  background: #141414;
  scroll-snap-align: start;
  transition: transform var(--ease), border-color var(--ease);
}

.carousel figure:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.36);
}

.carousel img {
  height: 100%;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.carousel-dots {
  display: flex;
  gap: 0.36rem;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: transparent;
  cursor: pointer;
}

.carousel-dots button.is-current {
  background: var(--gold);
}

.carousel-nav {
  display: flex;
  gap: 0.45rem;
}

.carousel-nav button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.46);
  background: rgba(0, 0, 0, 0.46);
  color: var(--white);
  cursor: pointer;
}

.process-grid,
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.process-card,
.coverage-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(150deg, rgba(20, 20, 20, 0.94), rgba(12, 12, 12, 0.92));
  padding: 1rem;
}

.process-step,
.service-kicker {
  color: var(--gold);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.45rem;
  display: inline-block;
}

.process-card h3,
.coverage-card h3 {
  font-size: 1.04rem;
  margin-bottom: 0.45rem;
}

.process-card p,
.coverage-card p {
  color: #bebebe;
  font-size: 0.9rem;
}

.inquiry-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.inquiry-intro,
.inquiry-form {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(150deg, rgba(16, 16, 16, 0.92), rgba(9, 9, 9, 0.92)),
    radial-gradient(44% 78% at 0% 0%, rgba(212, 175, 55, 0.1), transparent 68%);
  padding: 1.2rem;
}

.inquiry-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.inquiry-list li {
  list-style: none;
  color: #d8d8d8;
  font-size: 0.88rem;
  padding-left: 1.1rem;
  position: relative;
}

.inquiry-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.form-group {
  display: grid;
  gap: 0.35rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

label {
  color: #dcdcdc;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--white);
  font-family: inherit;
  padding: 0.68rem 0.75rem;
}

textarea {
  min-height: 122px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.16);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #bb2323;
  box-shadow: 0 0 0 3px rgba(187, 35, 35, 0.14);
}

body[data-theme="light"] input[aria-invalid="true"],
body[data-theme="light"] select[aria-invalid="true"],
body[data-theme="light"] textarea[aria-invalid="true"] {
  border-color: #a21414;
  box-shadow: 0 0 0 3px rgba(162, 20, 20, 0.18);
}

.form-note,
.status {
  color: #c8c8c8;
  font-size: 0.82rem;
  margin-top: 0.6rem;
}

.quick-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.45);
  z-index: 1050;
  transition: transform var(--ease), box-shadow var(--ease), background-color var(--ease), bottom var(--ease);
}

.quick-wa:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.56);
}

.quick-wa svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  background:
    radial-gradient(40% 70% at 18% 0%, rgba(212, 175, 55, 0.1), transparent 72%),
    #070707;
  text-align: center;
  padding: 2rem 0;
}

.footer strong {
  color: var(--white);
  font-family: "Cinzel", serif;
  font-weight: 600;
}

.footer p {
  margin-top: 0.35rem;
  color: #9d9d9d;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.99);
  filter: blur(2px);
  transition: opacity 760ms ease, transform 760ms ease, filter 760ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.reveal-rise {
  transform: translateY(32px) scale(0.985);
}

.reveal.reveal-soft {
  transform: translateY(20px) scale(0.995);
  filter: blur(1.4px);
}

.reveal.reveal-glide {
  transform: translateY(22px) translateX(-8px) scale(0.99);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor summary {
  cursor: none;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1700;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.95);
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.15);
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.52);
  background: rgba(212, 175, 55, 0.06);
  transition: width 220ms ease, height 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.cursor-ring.is-hover {
  width: 44px;
  height: 44px;
  border-color: rgba(24, 112, 71, 0.55);
  background: rgba(24, 112, 71, 0.12);
}

body[data-theme="light"] .cursor-dot {
  background: rgba(24, 112, 71, 0.85);
  box-shadow: 0 0 0 6px rgba(24, 112, 71, 0.12);
}

body[data-theme="light"] .cursor-ring {
  border-color: rgba(24, 112, 71, 0.45);
  background: rgba(24, 112, 71, 0.06);
}

@media (max-width: 980px) {
  :root { --header-h: 74px; }

  .brand img {
    height: 40px;
    max-width: min(44vw, 108px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    width: min(280px, calc(100vw - 2rem));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.97);
    transition: max-height var(--ease), opacity var(--ease), transform var(--ease);
    padding: 0;
  }

  .theme-toggle {
    margin-right: 0.45rem;
  }

  .nav a {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
  }

  .site-header.menu-open .nav {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.menu-open .nav-toggle span {
    background: transparent;
  }

  .site-header.menu-open .nav-toggle span::before {
    transform: translateY(0) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle span::after {
    transform: translateY(-2px) rotate(-45deg);
  }

  .grid-3,
  .package-grid,
  .manifesto-grid,
  .trust-grid,
  .process-grid,
  .coverage-grid,
  .inquiry-wrap,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-preview,
  .service-preview:nth-of-type(even) {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-book-bar {
    border-radius: 16px;
    align-items: flex-start;
    flex-direction: column;
  }

  .sticky-book-bar .luxury-btn {
    width: 100%;
  }

  .offer-strip-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .crumb-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-preview:nth-of-type(even) .preview-image,
  .service-preview:nth-of-type(even) .preview-panel {
    order: initial;
  }

  .preview-image {
    min-height: 220px;
  }

  .preview-panel {
    padding: 0.95rem;
  }

  .hero-content {
    padding-left: 1rem;
  }
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .preview-image {
    min-height: 180px;
  }

  .service-preview {
    margin-top: 0.85rem;
  }

  .sticky-book-bar {
    width: calc(100vw - 1rem);
    bottom: 0.5rem;
  }

  body.has-sticky-cta .quick-wa {
    bottom: 7.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .ambient-layer,
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .site-loader {
    display: none;
  }
}
