:root {
  color-scheme: light;
  --ink: #2a2116;
  --muted: #7a6548;
  --gold: #b8922a;
  --gold-soft: #e8c96a;
  --line: rgba(184, 146, 42, 0.32);
  --panel: rgba(255, 248, 232, 0.94);
  --bg-top: #fff6e4;
  --bg-mid: #ffefd2;
  --bg-end: #f7e4bc;
  --glow: rgba(212, 175, 55, 0.28);
  --header-bg: rgba(255, 246, 228, 0.92);
  --hero-lead: #6e5636;
  --card-bg: #111;
  --secure-bg: #eef6ef;
  --secure-text: #2f6b4f;
  --secure-border: rgba(52, 116, 92, 0.28);
  --theme-toggle-bg: #fff8e8;
  --theme-toggle-border: #e2c889;
  --theme-toggle-hover: #ffe9be;
  --footer-bg: linear-gradient(180deg, #fff6e4 0%, #f7e4bc 100%);
  --footer-text: #2a2116;
  --footer-muted: #7a6548;
  --footer-link: #8f7218;
  --footer-note: #a8871c;
  --footer-trust-bg: rgba(255, 248, 232, 0.9);
  --footer-border: rgba(184, 146, 42, 0.3);
  --dock-bg: rgba(255, 246, 228, 0.97);
  --atelier-bg: rgba(255, 246, 228, 0.98);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f6f0e6;
  --muted: #b7aa98;
  --gold: #d4af37;
  --gold-soft: #f0d78c;
  --line: rgba(212, 175, 55, 0.22);
  --panel: rgba(18, 16, 12, 0.92);
  --bg-top: #070707;
  --bg-mid: #050505;
  --bg-end: #0a0907;
  --glow: rgba(212, 175, 55, 0.16);
  --header-bg: rgba(5, 5, 5, 0.72);
  --hero-lead: #b7aa98;
  --card-bg: #111;
  --secure-bg: #1a2218;
  --secure-text: #c9a227;
  --secure-border: rgba(201, 162, 39, 0.35);
  --theme-toggle-bg: #121212;
  --theme-toggle-border: #3d3426;
  --theme-toggle-hover: #1a1610;
  --footer-bg: linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
  --footer-text: #f5f0e8;
  --footer-muted: #b5aaa0;
  --footer-link: #e8d49a;
  --footer-note: #d4af37;
  --footer-trust-bg: rgba(18, 18, 18, 0.72);
  --footer-border: rgba(212, 175, 55, 0.18);
  --dock-bg: rgba(12, 10, 8, 0.94);
  --atelier-bg: rgba(5, 5, 5, 0.96);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, var(--glow), transparent 55%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 40%, var(--bg-end) 100%);
  font-family: Outfit, system-ui, sans-serif;
}

.hero-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.top {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(16px, 4vw, 40px);
  backdrop-filter: blur(16px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
}

.mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.mark img { border-radius: 12px; }
.mark strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.mark small {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.theme-toggle {
  position: relative;
  z-index: 2;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--theme-toggle-border);
  border-radius: 999px;
  background: var(--theme-toggle-bg);
  color: var(--gold);
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 8px 12px 8px 10px;
}
.theme-toggle svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.theme-toggle-label { white-space: nowrap; }
html[data-theme="dark"] .theme-icon-moon,
html:not([data-theme="dark"]) .theme-icon-sun,
html[data-theme="dark"] .theme-label-dark,
html:not([data-theme="dark"]) .theme-label-light { display: none; }

.hero {
  position: relative;
  z-index: 2;
  min-height: min(88vh, 900px);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 72px 20px 48px;
  gap: 18px;
}

.hero-kicker {
  margin: 0;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 12vw, 7.5rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #f5e6b8 0%, #d4af37 45%, #8f6b18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 span { font-weight: 500; }

.hero-lead {
  max-width: 34rem;
  margin: 0;
  color: var(--hero-lead);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
}

.hero-actions {
  display: grid;
  gap: 14px;
  justify-items: center;
  margin-top: 10px;
}
.hero-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-proof {
  width: min(100%, 680px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  align-items: center;
  gap: 10px;
  margin: 8px auto 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  padding: 10px;
  text-align: left;
}
.trust-proof-copy { min-width: 0; display: grid; gap: 8px; }
.trust-proof-main { display: flex; align-items: flex-start; gap: 8px; }
.trust-proof-main > div { min-width: 0; flex: 1; }
.trust-proof-main svg {
  width: 19px; height: 19px; flex: 0 0 auto;
  color: var(--gold);
  fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.trust-proof-main strong { display: block; color: var(--gold); font-size: 0.84rem; }
.trust-proof-main span { display: block; color: var(--muted); font-size: 0.72rem; margin-top: 2px; }
.trust-proof-item {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px;
  padding-top: 8px; border-top: 1px solid var(--line);
}
.trust-proof-item > span:not(.verified-site-badge) {
  color: var(--muted); font-size: 0.72rem; font-weight: 600;
}
.trust-proof-item > span:not(.verified-site-badge)::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); margin-right: 6px; vertical-align: middle;
}
.verified-site-badge {
  min-width: 70px; display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  border: 1px solid var(--secure-border); border-radius: 999px;
  background: var(--secure-bg); color: var(--secure-text); padding: 4px 6px; line-height: 1.05; white-space: nowrap;
}
.verified-site-badge svg { width: 16px; height: 16px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; }
.verified-site-badge b { display: block; font-size: 0.58rem; font-weight: 800; }
.verified-site-badge small { display: block; margin-top: 2px; color: var(--gold); font-size: 0.48rem; font-weight: 800; letter-spacing: 0.07em; }
.trust-proof-facade {
  width: 100%; display: block; border: 0; border-left: 1px solid var(--line);
  background: transparent; color: inherit; cursor: pointer; padding: 0 0 0 9px; text-align: center;
}
.trust-proof-facade img {
  width: 100%; aspect-ratio: 4 / 3; height: auto; display: block;
  border: 1px solid var(--line); border-radius: 8px; object-fit: cover; object-position: center 34%;
}
.trust-proof-facade em {
  display: block; width: fit-content; margin: 4px auto 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold); font-size: 0.59rem; font-style: normal; font-weight: 800;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0d78c, #d4af37 40%, #a8871c);
  color: #1a1408;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0 22px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.btn-gold:hover { transform: translateY(-2px); }
.btn-gold:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.styles, .ritual {
  position: relative;
  z-index: 2;
  padding: 28px clamp(16px, 4vw, 40px) 64px;
  width: min(1120px, 100%);
  margin-inline: auto;
}

.section-head { margin-bottom: 22px; }
.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}
.section-count {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}
.section-head p {
  margin: 0 0 6px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
}
.section-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
}

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

.style-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.style-action {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.style-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 420ms ease, filter 320ms ease;
  filter: saturate(0.95) contrast(1.04);
}

.style-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 4px;
  padding: 22px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.88) 42%);
  color: #fff;
}

.style-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.style-sub {
  color: #d7c7a8;
  font-size: 0.82rem;
  font-weight: 400;
}

.style-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: gap 200ms ease, color 200ms ease;
}

.style-cta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 200ms ease;
}

.style-card:hover,
.style-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 18px 36px rgba(0,0,0,0.4);
}

.style-card:hover .style-cover,
.style-card:focus-within .style-cover {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.06);
}

.style-card:hover .style-cta,
.style-card:focus-within .style-cta {
  gap: 8px;
  color: #f0d78c;
}

.style-card:hover .style-cta svg,
.style-card:focus-within .style-cta svg {
  transform: translateX(3px);
}

@media (prefers-reduced-motion: no-preference) {
  .style-card {
    animation: rise 560ms ease both;
    animation-delay: calc(var(--i, 0) * 55ms);
  }
}

.ritual-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.ritual-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  padding: 18px;
}
.ritual-list span {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold);
  font-size: 1.6rem;
}
.ritual-list strong { display: block; margin-bottom: 4px; }
.ritual-list p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.atelier {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--atelier-bg);
  overflow: auto;
  padding: 18px clamp(14px, 3vw, 28px) 140px;
}
#home.is-dimmed { filter: blur(2px); }

.atelier-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  position: sticky;
  top: 0;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  z-index: 2;
}
.atelier-bar button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font: inherit;
}
.atelier-bar h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
}
.atelier-bar p { margin: 2px 0 0; color: var(--muted); font-size: 0.85rem; }

.atelier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.shot {
  position: relative;
  border: 1px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  background: #111;
  cursor: pointer;
  aspect-ratio: 3 / 4;
}
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shot span {
  position: absolute;
  left: 8px; bottom: 8px;
  background: rgba(0,0,0,0.7);
  color: #f0d78c;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 8px;
}
.shot.is-on {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212,175,55,0.35);
}
.shot.is-on::after {
  content: "✓";
  position: absolute;
  top: 8px; right: 8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #1a1408;
  font-weight: 800;
}

.dock {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
}
.dock-inner {
  width: min(720px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--dock-bg);
  backdrop-filter: blur(16px);
  padding: 12px;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.18);
}
.dock-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.dock-top button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
}
.dock-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
}
.dock-chip {
  flex: 0 0 auto;
  display: grid;
  gap: 4px;
  justify-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #15120e;
  color: var(--muted);
  padding: 6px;
  cursor: pointer;
}
.dock-chip img {
  width: 44px; height: 58px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.dock-chip span { font-size: 0.62rem; font-weight: 700; }
.dock-send { width: 100%; }

.site-footer {
  position: relative;
  z-index: 2;
  background: var(--footer-bg);
  color: var(--footer-text);
  border-top: 1px solid var(--footer-border);
  padding: 48px clamp(16px, 4vw, 40px) calc(120px + env(safe-area-inset-bottom));
}

.footer-shell {
  width: min(1120px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 28px;
}

.footer-top {
  display: grid;
  gap: 28px;
}

.footer-brand-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-logo {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.22);
}

.footer-brand {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold);
  font-size: 1.45rem;
  font-weight: 700;
}

.footer-tagline {
  max-width: 360px;
  margin: 8px 0 0;
  color: var(--footer-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-nav-label {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links a {
  color: var(--footer-link);
  font-size: 0.82rem;
  text-decoration: none;
  text-underline-offset: 4px;
}

.footer-links a:hover {
  text-decoration: underline;
  color: var(--gold);
}

.footer-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--footer-border);
  border-radius: 14px;
  background: var(--footer-trust-bg);
}

.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.footer-trust-item svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: #d4af37;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-trust-item strong {
  display: block;
  color: var(--footer-text);
  font-size: 0.76rem;
  font-weight: 800;
}

.footer-trust-item span {
  display: block;
  color: var(--footer-muted);
  font-size: 0.68rem;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--footer-muted);
  font-size: 0.74rem;
}

.footer-bottom-note {
  color: var(--footer-note) !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  letter-spacing: 0.02em;
}

@media (min-width: 900px) {
  .style-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .ritual-list { grid-template-columns: repeat(3, 1fr); }
  .atelier-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }

  .footer-top {
    grid-template-columns: 1.4fr 0.8fr;
    align-items: start;
  }

  .footer-links {
    align-items: flex-end;
    text-align: right;
  }

  .footer-trust {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 18px 20px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero h1 { animation: rise 700ms ease both; }
  .hero-lead, .hero-actions { animation: rise 700ms ease 120ms both; }
  @keyframes rise {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 90;
}
.cookie-banner-inner {
  width: min(720px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(12,10,8,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
  padding: 16px;
}
.cookie-copy strong {
  display: block;
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.cookie-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.cookie-btn {
  min-height: 40px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0 16px;
}
.cookie-btn-ghost {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
}
.cookie-btn-solid {
  border: 0;
  background: linear-gradient(135deg, #f0d78c, #d4af37 45%, #a8871c);
  color: #1a1408;
}
@media (min-width: 700px) {
  .cookie-banner-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.facade-preview {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  align-items: end;
  padding-top: env(safe-area-inset-top);
}
.facade-preview[hidden] { display: none !important; }
.facade-preview-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
  cursor: pointer;
}
.facade-preview-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: calc(100dvh - env(safe-area-inset-top));
  overflow-y: auto;
  margin-inline: auto;
  border-radius: 16px 16px 0 0;
  background: var(--panel);
  box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.35);
  padding: 20px 14px 18px;
}
.facade-preview-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--theme-toggle-bg);
  color: var(--gold);
  cursor: pointer;
}
.facade-preview-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.facade-preview-badge {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 6px 10px;
  margin-right: 48px;
}
.facade-preview-panel h2 {
  margin: 12px 48px 14px 0;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
}
.facade-preview-panel img {
  width: 100%;
  height: auto;
  max-height: calc(100dvh - 160px);
  display: block;
  border-radius: 10px;
  object-fit: contain;
  background: #0a0a0a;
}
body.facade-open { overflow: hidden; }

.floating-whatsapp {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 70;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0d78c, #d4af37 45%, #a8871c);
  color: #1a1408;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 11px 16px 11px 14px;
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.28);
  transition: transform 160ms ease, bottom 200ms ease;
}
.floating-whatsapp:hover { transform: translateY(-2px); }
.floating-whatsapp svg { width: 20px; height: 20px; }
body.has-dock .floating-whatsapp {
  bottom: calc(150px + env(safe-area-inset-bottom));
}

@media (max-width: 700px) {
  .theme-toggle-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orbs { display: none; }
}

.legal-page {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.legal-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
}

.legal-page h1 {
  margin: 0 0 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600;
  color: var(--gold);
}

.legal-page h2 {
  margin: 28px 0 8px;
  font-size: 1.05rem;
  color: var(--ink);
}

.legal-page p {
  color: var(--muted);
  line-height: 1.6;
}

.legal-card {
  border-left: 3px solid var(--gold);
  background: var(--panel);
  border-radius: 0 12px 12px 0;
  padding: 16px 18px;
  margin: 18px 0;
}

.legal-card strong {
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
}

.legal-card p {
  margin: 0;
}

.legal-back a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.legal-back a:hover {
  text-decoration: underline;
}

/* Feedbacks / experiências */
.experiencias {
  position: relative;
  z-index: 2;
  padding: 28px clamp(16px, 4vw, 40px) 72px;
}

.experiencias-inner {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.experiencias-head {
  max-width: 620px;
  margin: 0 auto 24px;
  text-align: center;
}

.feedback-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 6px 10px;
}

.feedback-badge svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.experiencias-head h2 {
  margin: 14px 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.1;
}

.experiencias-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feedback-grid {
  display: grid;
  gap: 14px;
}

.feedback-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.feedback-image-button {
  position: relative;
  width: 100%;
  display: block;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  padding: 0;
}

.feedback-image-button img {
  width: 100%;
  height: auto;
  max-height: 620px;
  display: block;
  object-fit: contain;
  background: #0d0d0d;
}

.feedback-image-button > span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 999px;
  background: rgba(10, 8, 5, 0.82);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 5px 8px;
}

.feedback-card-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 14px;
}

.feedback-card-caption strong {
  color: var(--gold);
  font-size: 0.8rem;
}

.feedback-card-caption span {
  color: var(--muted);
  font-size: 0.66rem;
  text-align: right;
}

.feedback-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.feedback-more-button {
  min-height: 48px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 10px 20px;
}

.experiencias-cta {
  display: grid;
  gap: 16px;
  margin-top: 38px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  padding: 20px;
  align-items: center;
}

.experiencias-cta span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experiencias-cta h3 {
  margin: 6px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
}

.feedback-preview {
  position: fixed;
  inset: 0;
  z-index: 96;
  display: grid;
  align-items: end;
  padding-top: env(safe-area-inset-top);
}
.feedback-preview[hidden] { display: none !important; }
.feedback-preview-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
  cursor: pointer;
}
.feedback-preview-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: calc(100dvh - env(safe-area-inset-top));
  overflow-y: auto;
  margin-inline: auto;
  border-radius: 16px 16px 0 0;
  background: var(--panel);
  box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.35);
  padding: 20px 14px 18px;
}
.feedback-preview-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--theme-toggle-bg);
  color: var(--gold);
  cursor: pointer;
}
.feedback-preview-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.feedback-preview-badge { margin-right: 48px; }
.feedback-preview-panel h2 {
  margin: 12px 48px 14px 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  color: var(--gold);
  font-weight: 600;
}
.feedback-preview-panel img {
  width: 100%;
  height: auto;
  max-height: calc(100dvh - 160px);
  display: block;
  border-radius: 10px;
  object-fit: contain;
  background: #0a0a0a;
}
body.feedback-open { overflow: hidden; }

@media (min-width: 760px) {
  .feedback-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .experiencias-cta {
    grid-template-columns: 1fr auto;
    padding: 22px 24px;
  }
}

.cookie-banner-inner {
  background: var(--panel);
}
.cookie-copy a {
  color: var(--gold);
  font-weight: 700;
}