/* Ftesajone — liquid glass, grain, soft motion */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --bg: #f4efe8;
  --bg-muted: #ebe4da;
  --ink: #141010;
  --ink-soft: #5c534c;
  --ink-faint: #9a9088;
  --brand: #fc0025;
  --brand-dark: #c4001d;
  --brand-glow: rgba(252, 0, 37, 0.14);
  --wine: var(--brand);
  --wine-dark: var(--brand-dark);
  --velvet-bg: #140810;
  --velvet-bg-soft: #1f0c14;
  --velvet-gold: #ded4c4;
  --velvet-cream: #f5ebe0;
  --velvet-text: rgba(255, 250, 245, 0.92);
  --velvet-muted: rgba(255, 248, 240, 0.55);
  --line: rgba(20, 16, 16, 0.1);
  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(255, 255, 255, 0.55);
  --display: "Fraunces", Georgia, serif;
  --elegant: "Cormorant Garamond", Georgia, serif;
  --body: "DM Sans", system-ui, sans-serif;
  --wrap: min(960px, 90vw);
  --hero-wrap: min(1140px, 94vw);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  overscroll-behavior: none;
  width: 100%;
  scrollbar-gutter: stable;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: clip;
  max-width: 100%;
}

/* Marketing + legal pages — no rubber-band / sideways drift */
body.site-page,
body.legal-page {
  overscroll-behavior: none;
  touch-action: pan-y pinch-zoom;
}

body.site-page main,
body.legal-page main {
  overflow-x: clip;
  max-width: 100%;
}

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
}

/* — Animated ambient background — */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  overscroll-behavior: none;
  background: linear-gradient(145deg, #f7f2ec 0%, #efe8df 40%, #f5ebe8 100%);
  pointer-events: none;
}

.site-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.5;
  will-change: transform;
  animation: blob-drift 28s ease-in-out infinite alternate;
}

.site-bg-blob-1 {
  width: min(58vw, 560px);
  height: min(58vw, 560px);
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, rgba(252, 0, 37, 0.22) 0%, rgba(252, 0, 37, 0.06) 42%, transparent 72%);
}

.site-bg-blob-2 {
  width: min(50vw, 480px);
  height: min(50vw, 480px);
  top: 32%;
  right: -12%;
  background: radial-gradient(circle, rgba(252, 0, 37, 0.12) 0%, rgba(196, 154, 106, 0.14) 45%, transparent 74%);
  animation-delay: -9s;
  animation-duration: 34s;
}

.site-bg-blob-3 {
  width: min(44vw, 420px);
  height: min(44vw, 420px);
  bottom: -8%;
  left: 22%;
  background: radial-gradient(circle, rgba(252, 0, 37, 0.16) 0%, transparent 70%);
  animation-delay: -16s;
  animation-duration: 32s;
}

.site-grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

@keyframes blob-drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(24px, -18px, 0) scale(1.04); }
  100% { transform: translate3d(-16px, 12px, 0) scale(1.02); }
}

.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(20, 16, 16, 0.06);
}

.masthead.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 32px rgba(20, 16, 16, 0.06);
}

/* — Nav — */
.masthead,
.glass-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  padding: 14px clamp(20px, 4vw, 40px);
  background: var(--glass-strong);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--line);
}

.mast-enter {
  animation: mast-enter 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes mast-enter {
  from {
    opacity: 0;
    transform: translateY(-14px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.logo {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
}

.logo-img {
  display: block;
  height: clamp(22px, 3.2vw, 28px);
  width: auto;
}

.mastnav {
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 2.8vw, 32px);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.mastnav a:not(.mastnav-cta) {
  position: relative;
  padding: 6px 0;
  color: inherit;
  transition: color 0.22s ease;
}

.mastnav a:not(.mastnav-cta):not(.mast-login-icon)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.mastnav a:not(.mastnav-cta):not(.mast-login-icon):hover,
.mastnav a:not(.mastnav-cta):not(.mast-login-icon):focus-visible {
  color: var(--ink);
}

.mastnav a:not(.mastnav-cta):not(.mast-login-icon):hover::after,
.mastnav a:not(.mastnav-cta):not(.mast-login-icon):focus-visible::after,
.mastnav a:not(.mastnav-cta):not(.mast-login-icon).is-active::after {
  transform: scaleX(1);
}

.mastnav a:not(.mastnav-cta):not(.mast-login-icon).is-active {
  color: var(--ink);
  font-weight: 600;
}

.mast-cta {
  white-space: nowrap;
  padding: 12px 20px;
  font-size: .72rem;
}

.menu-toggle {
  grid-column: 4;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(20, 16, 16, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(20, 16, 16, 0.14);
  box-shadow: 0 6px 20px rgba(20, 16, 16, 0.08);
}

.menu-toggle-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
  height: 14px;
}

.menu-toggle-lines span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.2s ease, width 0.28s ease;
}

.menu-toggle-lines span:nth-child(1) { width: 100%; }
.menu-toggle-lines span:nth-child(2) { width: 72%; margin-inline: auto; }
.menu-toggle-lines span:nth-child(3) { width: 100%; }

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  width: 100%;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  width: 100%;
}

.menu-toggle[aria-expanded="true"] {
  background: #fff;
  border-color: rgba(20, 16, 16, 0.22);
  box-shadow: 0 4px 18px rgba(20, 16, 16, 0.14);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span {
  background: var(--ink);
  height: 2px;
}

.mast-cta--desktop,
.mast-actions {
  grid-column: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mast-login-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(20, 16, 16, 0.14);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.mast-login-icon:hover,
.mast-login-icon:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  outline: none;
  box-shadow: 0 6px 18px rgba(20, 16, 16, 0.12);
}

.mast-login-icon svg {
  display: block;
}

/* Floating WhatsApp — homepage */
.site-wa-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right, 0px));
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, #25d366 0%, #1ebe57 100%);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  overflow: visible;
}

.site-wa-float:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.38);
  background: linear-gradient(145deg, #2be06f 0%, #22c95e 100%);
  color: #fff;
}

.site-wa-float:focus-visible {
  outline: 2px solid rgba(37, 211, 102, 0.65);
  outline-offset: 3px;
}

/* Reveal classes must never clip fixed floats */
.site-wa-float.reveal,
.site-wa-float.reveal.is-inview {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.site-wa-float-icon {
  display: block;
  flex-shrink: 0;
}

body.site-page:has(.site-wa-float) .foot-elegant {
  padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
}

html.nav-open,
body.nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}

/* — Buttons — */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-family: var(--body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid rgba(20, 16, 16, 0.12);
  border-radius: var(--radius-pill);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transition: background .25s, color .25s, transform .25s, box-shadow .25s;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(20, 16, 16, 0.08);
}

.btn-fill {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 8px 28px var(--brand-glow);
}

.btn-fill:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.mastnav a.mastnav-cta.btn-fill {
  display: none;
}

.btn-line {
  color: var(--ink);
}

.btn-line:hover {
  background: var(--ink);
  color: var(--bg);
}

.btn-on-dark {
  background: var(--bg);
  border-color: var(--bg);
  color: var(--ink);
}

.btn-on-dark:hover {
  background: transparent;
  color: var(--bg);
}

button.btn { font: inherit; }

/* — Hero — */
.hero {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  overflow-y: visible;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(96px, 12vh, 120px) 0 clamp(56px, 9vh, 88px);
  width: 100%;
  max-width: none;
}

.hero-ambient {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: -18%;
  bottom: -18%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.55;
  will-change: transform;
  animation: hero-orb-drift 26s ease-in-out infinite;
}

.hero-orb-1 {
  width: min(52vmin, 520px);
  height: min(52vmin, 520px);
  top: 4%;
  left: -4%;
  background: radial-gradient(circle, rgba(252, 0, 37, 0.38) 0%, rgba(252, 0, 37, 0.08) 48%, transparent 72%);
  animation-duration: 28s;
}

.hero-orb-2 {
  width: min(44vmin, 420px);
  height: min(44vmin, 420px);
  top: 12%;
  right: 2%;
  background: radial-gradient(circle, rgba(252, 0, 37, 0.22) 0%, rgba(255, 120, 140, 0.08) 50%, transparent 74%);
  animation-delay: -8s;
  animation-duration: 32s;
}

.hero-orb-3 {
  width: min(38vmin, 360px);
  height: min(38vmin, 360px);
  bottom: 6%;
  left: 10%;
  background: radial-gradient(circle, rgba(252, 0, 37, 0.28) 0%, transparent 70%);
  animation-delay: -14s;
  animation-duration: 24s;
}

.hero-orb-4 {
  width: min(34vmin, 320px);
  height: min(34vmin, 320px);
  bottom: 22%;
  right: 0;
  background: radial-gradient(circle, rgba(255, 80, 100, 0.2) 0%, transparent 68%);
  animation-delay: -5s;
  animation-duration: 30s;
}

.hero-ambient-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 18% 28%, rgba(252, 0, 37, 0.09) 0%, transparent 62%),
    radial-gradient(ellipse 90% 65% at 82% 58%, rgba(252, 0, 37, 0.07) 0%, transparent 58%),
    radial-gradient(ellipse 120% 80% at 50% 50%, rgba(252, 0, 37, 0.04) 0%, transparent 72%);
  animation: hero-glow-pulse 18s ease-in-out infinite alternate;
}

@keyframes hero-orb-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33% { transform: translate3d(36px, -22px, 0) scale(1.06); }
  66% { transform: translate3d(-24px, 18px, 0) scale(0.96); }
}

@keyframes hero-glow-pulse {
  0% { opacity: 0.75; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.06); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  width: 100%;
  max-width: var(--hero-wrap);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 40px);
  box-sizing: border-box;
}

.hero-copy {
  min-width: 0;
}

.hero-copy .btn {
  margin-top: 8px;
}

.hero-preview {
  position: relative;
  width: min(100%, 340px);
  justify-self: end;
  overflow: visible;
  padding: 6px 8px 0;
}

.hero-preview-glow {
  position: absolute;
  inset: 4% 0 -4%;
  border-radius: 28px;
  background: radial-gradient(ellipse 75% 60% at 50% 42%, rgba(252, 0, 37, 0.14), transparent 72%);
  filter: blur(20px);
  pointer-events: none;
  animation: hero-preview-glow 8s ease-in-out infinite alternate;
}

@keyframes hero-preview-glow {
  0% { opacity: 0.55; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1.03); }
}

.hero-preview-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 916 / 640;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  box-shadow:
    0 28px 70px rgba(20, 16, 16, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-preview-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.hero-device-hint {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
}

.hero-device {
  flex-shrink: 0;
  text-align: center;
  max-width: 100%;
  overflow: visible;
  padding-inline: 6px;
}

.hero-device .iphone17 {
  --phone-w: 286px;
  --phone-h: 618px;
}

.hero-device .iphone17-caption {
  margin-top: 16px;
  margin-bottom: 4px;
}

/* Hero phone iframe must not trap page scroll on wheel/touch */
.hero-preview .iphone17-screen iframe {
  pointer-events: none;
}

.hero-preview .iphone17-scroll-bridge {
  position: absolute;
  inset: 0;
  z-index: 5;
  cursor: pointer;
  background: transparent;
  touch-action: pan-y;
}

.hero-preview .iphone17-island {
  z-index: 6;
  pointer-events: none;
}

.eyebrow {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 24px;
}

.eyebrow-light { color: var(--ink-faint); }

.hero-title {
  font-family: var(--display);
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.03em;
  margin: 0 0 28px;
  overflow-wrap: break-word;
}

.hero-title em {
  font-style: italic;
  color: var(--wine);
}

.hero-text {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 28rem;
  margin: 0 0 28px;
  line-height: 1.6;
}

.hero-text strong {
  font-weight: 500;
  color: var(--ink);
}

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

.hero-actions .btn-line--ghost {
  opacity: .88;
}

/* — Moment band (ticker + quote) — light — */
.moment-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(252, 0, 37, 0.06), transparent 55%),
    linear-gradient(180deg, #faf7f2 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.moment-band-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.moment-band-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}

.moment-band-glow-a {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(252, 0, 37, 0.1) 0%, transparent 70%);
}

.moment-band-glow-b,
.moment-band-glow-c {
  display: none;
}

/* — Ticker — */
.ticker-elegant {
  position: relative;
  z-index: 1;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(252, 0, 37, 0.04) 0%, transparent 100%);
  overflow: hidden;
  contain: layout paint;
}

.ticker-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 12vw, 120px);
  z-index: 2;
  pointer-events: none;
}

.ticker-edge-left {
  left: 0;
  background: linear-gradient(90deg, #faf7f2 20%, transparent);
}

.ticker-edge-right {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 20%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-inline: 20px;
  font-family: var(--body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.ticker-dot {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px rgba(252, 0, 37, 0.35);
}

.ticker-item::after {
  content: "·";
  margin-left: 20px;
  color: rgba(252, 0, 37, 0.28);
  font-weight: 400;
  letter-spacing: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; justify-content: center; width: 100%; flex-wrap: wrap; gap: 8px 0; }
  .ticker-item:nth-child(n+7) { display: none; }
  .ticker-item::after { display: none; }
  .ticker-edge { display: none; }
  .moment-band-glow { animation: none; }
}

/* — Quote inside moment band — */
.moment-quote-wrap {
  position: relative;
  z-index: 1;
  padding: clamp(52px, 9vw, 88px) clamp(20px, 4vw, 40px);
  text-align: center;
}

.moment-quote {
  position: relative;
  margin: 0 auto;
  max-width: 38rem;
  padding: clamp(36px, 5vw, 52px) clamp(28px, 5vw, 56px);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(252, 0, 37, 0.12);
  box-shadow:
    0 16px 48px rgba(20, 16, 16, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.moment-quote-mark {
  display: none;
}

.moment-quote-text {
  margin: 0;
  font-family: var(--elegant);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.moment-quote-text em {
  font-style: italic;
  color: var(--brand-dark);
}

/* — Stats — */
.stats {
  border-bottom: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: clamp(32px, 6vw, 48px) clamp(20px, 4vw, 32px);
  border-right: 1px solid var(--line);
  text-align: center;
}

.stat:last-child { border-right: 0; }

.stat-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1;
  color: var(--wine);
  margin-bottom: 12px;
}

.stat-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* — Sections — */
.section {
  padding: clamp(72px, 12vw, 120px) clamp(20px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
}

.section-ink {
  background: var(--ink);
  color: var(--bg);
}

.section-muted { background: var(--bg-muted); }

.section-center { text-align: center; }

.section-center .section-lead { margin-inline: auto; }

.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 48px;
  letter-spacing: -.02em;
}

.section-title-light { color: var(--bg); }

.section-lead {
  color: var(--ink-soft);
  max-width: 28rem;
  margin: 0 0 28px;
}

.section-title + .section-lead {
  margin-top: -32px;
}

.section-ink .section-lead { color: var(--ink-faint); }

/* — Steps — */
.steps-flat {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.steps-flat li span {
  display: block;
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(246, 241, 234, .25);
  line-height: 1;
  margin-bottom: 16px;
}

.steps-flat h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 8px;
}

.steps-flat p {
  margin: 0;
  font-size: .85rem;
  color: rgba(246, 241, 234, .6);
  line-height: 1.55;
}

.steps-flat li {
  padding: clamp(18px, 3vw, 24px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* — Compare — */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.compare-col {
  padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 40px);
  border-right: 1px solid var(--line);
}

.compare-col:last-child { border-right: 0; }

.compare-col-accent {
  background: var(--ink);
  color: var(--bg);
}

.compare-head {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 24px;
}

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.compare-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: .92rem;
}

.compare-col-accent .compare-list li {
  border-color: rgba(246, 241, 234, .2);
  color: rgba(246, 241, 234, .8);
}

.compare-col-accent .compare-head { color: var(--bg); }

/* — Feature list — */
.list-flat {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.list-flat li {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: baseline;
}

.list-flat h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

.list-flat p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .92rem;
}

.list-flat code {
  font-size: .85rem;
}

/* — Pricing — */
.pricing-flat {
  border-top: 1px solid var(--line);
}

.price-row {
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 12px 32px;
  align-items: center;
}

.price-row-accent {
  background: var(--ink);
  color: var(--bg);
  margin: 0 calc(-1 * clamp(20px, 4vw, 40px));
  padding: 40px clamp(20px, 4vw, 40px);
  border-bottom: none;
}

.price-head {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.price-label {
  font-family: var(--display);
  font-size: 1.5rem;
}

.price-amount {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 300;
}

.price-desc {
  grid-column: 1;
  margin: 0;
  font-size: .88rem;
  color: var(--ink-soft);
}

.price-row-accent .price-desc { color: rgba(246, 241, 234, .65); }

.price-row .btn {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

/* — Single price (footer) — */
.section-price { text-align: center; }

.price-single { max-width: 28rem; margin-inline: auto; }

.price-single-amount {
  font-family: var(--display);
  font-size: clamp(3.5rem, 10vw, 5rem);
  font-weight: 300;
  line-height: 1;
  margin: 0 0 16px;
  color: var(--bg);
}

.price-single-desc {
  margin: 0 0 28px;
  font-size: .92rem;
  color: rgba(246, 241, 234, .65);
  line-height: 1.6;
}

/* — Contact — */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 80px);
  align-items: start;
}

.text-link {
  font-weight: 600;
  color: var(--wine);
  border-bottom: 1px solid var(--wine);
  padding-bottom: 2px;
}

.form-flat {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 32px);
  border-radius: var(--radius-lg);
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 40px rgba(20, 16, 16, 0.06);
}

.form-flat label {
  display: grid;
  gap: 8px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.form-flat input,
.form-flat select,
.form-flat textarea {
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font: inherit;
  color: var(--ink);
  border-radius: 0;
  color-scheme: light only;
}

.form-flat select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 28px;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-faint) 50%),
    linear-gradient(135deg, var(--ink-faint) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% + 2px), calc(100% - 12px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-flat input:focus,
.form-flat select:focus,
.form-flat textarea:focus {
  outline: none;
  border-bottom-color: var(--wine);
}

.form-flat textarea { resize: vertical; min-height: 72px; }

.form-msg { font-size: .85rem; margin: 0; min-height: 1.2em; }
.form-msg.ok { color: #2d6a4f; }
.form-msg.ok a {
  color: var(--wine);
  border-bottom: 1px solid rgba(252, 0, 37, 0.35);
  margin-left: 0.25em;
}
.form-msg.err { color: var(--wine); }

.contact-extra {
  margin: 20px 0 0;
}

.gallery-cta {
  margin-top: 20px;
  text-align: center;
}

/* legacy grid (admin etc.) */
.paper-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: clamp(14px, 2.5vw, 20px);
  margin-top: 28px;
}

.paper-card {
  margin: 0;
  padding: 0 0 10px;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}

.paper-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.paper-card-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 495 / 763;
  box-shadow: 0 12px 32px rgba(20, 16, 16, 0.12);
  padding: 0;
}

.paper-card-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 106, 0.28);
  border-radius: 6px;
  pointer-events: none;
  z-index: 2;
}

.paper-card-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.paper-card figcaption {
  margin-top: 12px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.35;
}

/* legacy gallery (wizard etc.) */
.gallery-cat {
  margin: 28px 0 12px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.gallery-cat:first-of-type { margin-top: 8px; }

.design-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 14px;
}

.design-gallery-item {
  margin: 0;
  text-align: center;
}

.design-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  background: var(--ink);
}

.design-gallery-item figcaption {
  margin-top: 8px;
  font-size: .72rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.3;
}

.gallery-cta {
  margin: 36px 0 0;
  text-align: center;
}

@media (max-width: 520px) {
  .design-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .design-gallery-item figcaption {
    font-size: .65rem;
  }

  .gallery-cat {
    margin: 20px 0 10px;
  }
}

/* — Lead contact form — */
.section-contact {
  padding-block: clamp(56px, 9vw, 88px);
}

.lead-form {
  margin-top: 28px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.section-contact .lead-form.reveal {
  clip-path: none;
  -webkit-clip-path: none;
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 28px) clamp(24px, 4vw, 40px);
}

.lead-grid .field {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lead-grid .field.full { grid-column: 1 / -1; }

.lead-form-editorial .field span {
  display: block;
  margin-bottom: 8px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
}

.lead-form-editorial input,
.lead-form-editorial textarea {
  width: 100%;
  padding: 12px 0 10px;
  border: none;
  border-bottom: 1px solid rgba(20, 16, 16, 0.18);
  border-radius: 0;
  font: inherit;
  font-size: 1rem;
  background: transparent;
  color: var(--ink);
  transition: border-color 0.15s;
}

.lead-form-editorial input:focus,
.lead-form-editorial textarea:focus {
  outline: none;
  border-bottom-color: var(--brand);
}

.lead-form-editorial textarea {
  min-height: 88px;
  resize: vertical;
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 8px;
}

@media (max-width: 560px) {
  .lead-grid { grid-template-columns: 1fr; }
}

/* — FAQ accordion — */
.faq-accordion {
  margin-top: clamp(28px, 5vw, 40px);
}

.acc-item {
  border-bottom: 1px solid var(--line);
}

.acc-item:first-child {
  border-top: 1px solid var(--line);
}

.acc-heading {
  margin: 0;
}

.acc-trigger {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: clamp(22px, 4vw, 34px) 0;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
}

.acc-trigger:hover .acc-title {
  color: var(--wine);
}

.acc-title {
  flex: 1;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -.01em;
  transition: color .15s;
}

.acc-icon {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.acc-icon::before,
.acc-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .25s ease;
}

.acc-icon::before {
  width: 12px;
  height: 1.5px;
}

.acc-icon::after {
  width: 1.5px;
  height: 12px;
}

.acc-item.is-open .acc-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.acc-item.is-open .acc-trigger {
  color: var(--wine);
}

.acc-item.is-open .acc-icon {
  border-color: rgba(252, 0, 37, 0.35);
  background: rgba(252, 0, 37, 0.04);
}

.acc-panel {
  padding: 0 0 clamp(24px, 4vw, 32px);
}

.acc-body {
  margin: 0;
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: clamp(.95rem, 1.8vw, 1.05rem);
  line-height: 1.65;
}

.section-faq {
  padding-block: clamp(56px, 9vw, 88px);
}

.section-faq .section-title {
  font-size: clamp(2rem, 5vw, 2.75rem);
}

/* — Footer — */
.foot {
  background: #0e080a;
  color: rgba(246, 241, 234, 0.55);
}

.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.foot .logo { color: var(--bg); }

.foot p { margin: 0; font-size: .8rem; }

/* — Elegant landing refresh — */
.hero-elegant { padding-top: clamp(100px, 14vh, 128px); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin: 20px 0 0;
  max-width: 28rem;
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.hero-note strong { color: var(--ink); font-weight: 600; }

.title-accent {
  font-weight: 300;
  color: var(--ink-soft);
}

.stats-elegant {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.stats-elegant .stat {
  padding: clamp(28px, 5vw, 40px) clamp(16px, 3vw, 24px);
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* — Full-bleed showcase fade (CSS only, autoplay) — */
.showcase-slide {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  height: clamp(216px, 34vw, 360px);
  overflow: hidden;
  background: #0a0a0a;
}

.showcase-slide-inner {
  position: absolute;
  inset: 0;
}

.showcase-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  pointer-events: none;
  user-select: none;
}

.showcase-slide-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  pointer-events: none;
  user-select: none;
}

.showcase-slide-img.is-a,
.showcase-slide-frame.is-a {
  animation: showcase-fade-a 14s ease-in-out infinite;
}

.showcase-slide-img.is-b,
.showcase-slide-frame.is-b {
  animation: showcase-fade-b 14s ease-in-out infinite;
}

@keyframes showcase-fade-a {
  0%, 42% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes showcase-fade-b {
  0%, 42% { opacity: 0; }
  50%, 92% { opacity: 1; }
  100% { opacity: 0; }
}

.steps-elegant li {
  padding: clamp(24px, 4vw, 32px) 0;
  border-radius: 0;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
}

.steps-elegant li:first-child {
  border-top: none;
  padding-top: 0;
}

.benefits-clean li {
  padding: clamp(22px, 3vw, 28px) 0;
  background: transparent;
  border: none;
  border-top: 1px solid var(--line);
  box-shadow: none;
}

.benefits-clean li:first-child,
.benefits-clean li:nth-child(2) {
  border-top: none;
}

@media (min-width: 721px) {
  .benefits-clean {
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(32px, 5vw, 48px);
  }

  .benefits-clean li:nth-child(3) {
    border-top: none;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 24px);
  list-style: none;
  margin: clamp(28px, 5vw, 40px) 0 0;
  padding: 0;
}

.benefits-grid li {
  padding: clamp(22px, 3vw, 28px);
}

.benefits-grid h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  margin: 0 0 8px;
}

.benefits-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .92rem;
}

.benefits-clean h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  margin: 0 0 8px;
}

.benefits-clean p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .92rem;
}

.section-price-elegant {
  padding-block: clamp(64px, 10vw, 96px);
}

/* — Testimonials — */
.section-testimonials {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 11vw, 104px);
  border-bottom: 1px solid var(--line);
}

.testimonials-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.testimonials-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: dark-band-glow-drift 22s ease-in-out infinite alternate;
}

.testimonials-glow-a {
  width: min(50vw, 420px);
  height: min(50vw, 420px);
  top: -18%;
  right: -6%;
  background: radial-gradient(circle, rgba(251, 188, 5, 0.14) 0%, transparent 70%);
}

.testimonials-glow-b {
  width: min(44vw, 380px);
  height: min(44vw, 380px);
  bottom: -20%;
  left: -8%;
  background: radial-gradient(circle, rgba(252, 0, 37, 0.1) 0%, transparent 72%);
  animation-delay: -8s;
}

.testimonials-wrap {
  position: relative;
  z-index: 1;
}

.testimonials-lead {
  max-width: 34rem;
  margin-bottom: clamp(28px, 5vw, 40px);
}

.testimonials-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.testimonials-star {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e8e2da'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.testimonials-star.is-filled {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a962'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.testimonials-carousel {
  --testimonials-per-view: 2;
  --testimonials-gap: 14px;
  width: 100%;
}

.testimonials-carousel-stage {
  overflow: hidden;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  container-type: inline-size;
}

.testimonials-carousel-track {
  display: flex;
  align-items: stretch;
  gap: var(--testimonials-gap);
  width: max-content;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100cqw - (var(--testimonials-per-view) - 1) * var(--testimonials-gap)) / var(--testimonials-per-view));
  width: calc((100cqw - (var(--testimonials-per-view) - 1) * var(--testimonials-gap)) / var(--testimonials-per-view));
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(18px, 3vw, 24px);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(20, 16, 16, 0.08);
  box-shadow:
    0 14px 40px rgba(20, 16, 16, 0.07),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .testimonials-carousel {
    --testimonials-per-view: 3;
  }
}

.testimonial-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--avatar-color, #9334e6);
  color: #fff;
  font-family: var(--body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  box-shadow: 0 2px 8px rgba(20, 16, 16, 0.12);
}

.testimonial-card-meta {
  min-width: 0;
  flex: 1;
}

.testimonial-name {
  margin: 0;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
}

.testimonial-ago {
  margin: 2px 0 0;
  font-size: .76rem;
  color: var(--ink-faint);
}

.testimonial-event {
  margin: 0;
  font-size: .76rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.testimonial-event-type {
  color: var(--brand-dark);
  font-weight: 600;
}

.testimonial-event-dot {
  margin: 0 4px;
  opacity: .5;
}

.testimonial-text {
  margin: 0;
  flex: 1;
}

.testimonial-text p {
  margin: 0;
  font-family: var(--elegant);
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  line-height: 1.5;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonials-carousel-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  pointer-events: none;
}

.testimonials-carousel-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(20, 16, 16, 0.14);
  transition: width 0.3s ease, background 0.3s ease;
}

.testimonials-carousel-progress-dot.is-active {
  width: 22px;
  background: var(--brand);
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-carousel-track {
    transition: none;
  }

  .testimonials-glow {
    animation: none;
  }
}

/* — Pricing (dark band) — */
.section-pricing {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 11vw, 112px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.pricing-ambient,
.dark-band-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.dark-band-glow,
.pricing-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: dark-band-glow-drift 18s ease-in-out infinite alternate;
}

.dark-band-glow-a,
.pricing-glow-a {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, rgba(252, 0, 37, 0.35) 0%, transparent 70%);
}

.dark-band-glow-b,
.pricing-glow-b {
  width: min(45vw, 400px);
  height: min(45vw, 400px);
  bottom: -15%;
  right: -6%;
  background: radial-gradient(circle, rgba(252, 0, 37, 0.22) 0%, transparent 70%);
  animation-delay: -6s;
}

@keyframes dark-band-glow-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(3%, 4%) scale(1.08); }
}

.pricing-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pricing-badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(252, 0, 37, 0.45);
  border-radius: var(--radius-pill);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
}

.pricing-heading {
  margin: 0 0 16px;
  font-family: var(--body);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
}

.pricing-lead {
  margin: 0 auto 48px;
  max-width: 32rem;
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 1.15fr) 1fr;
  gap: clamp(12px, 2vw, 20px);
  max-width: min(960px, 100%);
  margin-inline: auto;
  text-align: left;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.pricing-grid--tiers {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  max-width: min(1080px, 100%);
}

.pricing-tier-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  margin-bottom: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--wine);
}

.pricing-tier-badge.is-empty {
  visibility: hidden;
  pointer-events: none;
}

.pricing-col {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(24px, 3.5vw, 32px) clamp(20px, 2.8vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.pricing-col:last-child {
  border-right: 0;
}

.pricing-col-side {
  background: rgba(0, 0, 0, 0.2);
}

.pricing-col-main {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(252, 0, 37, 0.22);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.pricing-col--custom {
  background: rgba(255, 248, 240, 0.04);
}

.pricing-col-header {
  flex: 0 0 auto;
}

.pricing-col-mid {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
}

.pricing-card-glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 60%;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 248, 240, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.pricing-col-title {
  margin: 0 0 8px;
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}

.pricing-col-desc {
  margin: 0;
  min-height: 2.85em;
  font-size: .82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.48);
  text-wrap: pretty;
}

.pricing-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
  min-height: 3.4rem;
  margin: 22px 0 18px;
}

.pricing-amount {
  font-family: var(--body);
  font-size: clamp(2.25rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
}

.pricing-amount--quote {
  font-size: clamp(1.2rem, 2.1vw, 1.45rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 11rem;
}

.pricing-period {
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.pricing-cta-stack {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
}

.pricing-btn-primary {
  width: 100%;
  min-height: 46px;
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 8px 32px rgba(252, 0, 37, 0.35);
}

.pricing-btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.pricing-btn-secondary {
  width: 100%;
  min-height: 46px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.pricing-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.pricing-features {
  list-style: none;
  margin: auto 0 0;
  padding: 24px 0 0;
  display: grid;
  gap: 11px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  text-wrap: pretty;
}

.pricing-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(252, 0, 37, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fc0025' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
  border: 1px solid rgba(252, 0, 37, 0.35);
}

.pricing-features-main {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* — Pricing mobile slider — */
.pricing-carousel-meta {
  display: none;
}

@media (max-width: 720px) {
  .pricing-lead {
    margin-bottom: 28px;
  }

  .section-pricing .pricing-wrap {
    padding-inline: clamp(20px, 5vw, 28px);
  }

  .pricing-carousel {
    width: 100%;
  }

  .pricing-carousel-viewport {
    margin-inline: 0;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding: 0 0 12px;
    scroll-padding-inline: 0;
  }

  .pricing-carousel-viewport::-webkit-scrollbar {
    display: none;
  }

  .pricing-carousel-viewport:focus-visible {
    outline: 2px solid rgba(252, 0, 37, 0.55);
    outline-offset: 4px;
  }

  .pricing-grid--tiers.pricing-carousel-track {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    max-width: none;
    grid-template-columns: unset;
  }

  .pricing-grid--tiers .pricing-col {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    min-height: 100%;
    box-sizing: border-box;
  }

  .pricing-grid--tiers .pricing-col-main {
    order: 0;
  }

  .pricing-carousel-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding-inline: 20px;
  }

  .pricing-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .pricing-carousel-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
  }

  .pricing-carousel-dot.is-active {
    width: 22px;
    background: var(--brand);
  }

  .pricing-carousel-dot:focus-visible {
    outline: 2px solid rgba(252, 0, 37, 0.65);
    outline-offset: 2px;
  }

  .pricing-carousel-hint {
    margin: 0;
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
  }
}

@media (max-width: 960px) {
  .section-pricing .pricing-grid--tiers {
    grid-template-columns: 1fr;
    max-width: 26rem;
  }

  .pricing-col-desc {
    min-height: 0;
  }

  .pricing-amount--quote {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pricing-grid--tiers {
    grid-template-columns: 1fr;
    max-width: 26rem;
  }
  .pricing-col {
    border-bottom: 0;
  }
  .pricing-col-main {
    order: -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dark-band-glow,
  .pricing-glow { animation: none; }
  .velvet-phone { animation: none; transform: none; }
}

/* — Dark band (shared: scroll, steps, pricing) — */
.dark-band {
  position: relative;
  overflow: hidden;
  background: #0a0808;
  color: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.dark-band-content {
  position: relative;
  z-index: 1;
}

.eyebrow-on-dark {
  color: var(--brand);
  margin-bottom: 16px;
}

.dark-band-title {
  margin: 0 0 16px;
  font-family: var(--body);
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}

.dark-band-title-center {
  text-align: center;
}

.dark-band-title .text-brand {
  color: var(--brand);
}

.dark-band-lead {
  margin: 0 0 32px;
  max-width: 28rem;
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.52);
}

.dark-band-lead-center {
  margin-inline: auto;
  text-align: center;
}

.btn-brand-outline {
  background: transparent;
  border-color: rgba(252, 0, 37, 0.55);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.btn-brand-outline:hover {
  background: rgba(252, 0, 37, 0.12);
  border-color: var(--brand);
  color: #fff;
}

/* — Scroll experience (velvet band) — */
.section-velvet {
  padding-block: clamp(64px, 10vw, 96px);
}

.velvet-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr min(300px, 36vw);
  gap: clamp(32px, 6vw, 56px);
  align-items: center;
}

.velvet-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 36rem;
}

.velvet-lead,
.section-velvet .dark-band-lead {
  margin: 0 0 24px;
}

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

.velvet-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.velvet-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 10px rgba(252, 0, 37, 0.5);
}

.velvet-preview {
  display: flex;
  justify-content: center;
  perspective: 900px;
}

.velvet-phone {
  position: relative;
  width: min(296px, 78vw);
  padding: 9px;
  border-radius: 32px;
  background:
    linear-gradient(155deg, rgba(255, 248, 240, 0.14) 0%, rgba(255, 248, 240, 0.04) 38%, rgba(0, 0, 0, 0.35) 100%);
  box-shadow:
    0 36px 88px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 248, 240, 0.1),
    inset 0 1px 0 rgba(255, 248, 240, 0.16);
  transform: rotateY(-4deg) rotateX(2deg);
}

.velvet-phone-screen {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(252, 0, 37, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 100%, rgba(255, 248, 240, 0.06), transparent 50%),
    linear-gradient(168deg, #1c1210 0%, #120c0a 45%, #080608 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 240, 0.06);
}

.velvet-phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 2;
  width: 52px;
  height: 5px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 248, 240, 0.08);
}

.velvet-phone-nav {
  display: flex;
  gap: 4px;
  margin: 22px 10px 0;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 240, 0.08);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.velvet-phone-nav span {
  flex: 1;
  flex-shrink: 0;
  padding: 7px 4px;
  border-radius: 999px;
  text-align: center;
  color: rgba(255, 248, 240, 0.38);
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.velvet-phone-nav span.is-active {
  color: rgba(255, 250, 245, 0.96);
  background: rgba(255, 248, 240, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 240, 0.12),
    0 4px 14px rgba(0, 0, 0, 0.25);
}

.velvet-phone-body {
  padding: 18px 16px 22px;
  text-align: center;
}

.velvet-phone-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 248, 240, 0.45);
}

.velvet-kicker-line {
  flex: 1;
  max-width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 248, 240, 0.28), transparent);
}

.velvet-phone-hero {
  margin-bottom: 14px;
}

.velvet-hero-frame {
  position: relative;
  padding: 16px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 248, 240, 0.08);
  background:
    linear-gradient(165deg, rgba(255, 248, 240, 0.06) 0%, rgba(255, 248, 240, 0.01) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 248, 240, 0.08);
}

.velvet-hero-frame::before,
.velvet-hero-frame::after {
  content: '◆';
  position: absolute;
  top: 8px;
  font-size: 6px;
  color: rgba(252, 0, 37, 0.45);
  opacity: 0.8;
}

.velvet-hero-frame::before { left: 10px; }
.velvet-hero-frame::after { right: 10px; }

.velvet-phone-name {
  margin: 0 0 8px;
  font-family: 'Italiana', Georgia, serif;
  font-size: clamp(1.5rem, 5.2vw, 1.72rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.12;
  color: rgba(255, 250, 245, 0.98);
}

.velvet-amp {
  display: inline-block;
  margin: 0 0.06em;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.92em;
  color: rgba(255, 220, 210, 0.82);
}

.velvet-phone-date {
  display: inline-block;
  margin: 0;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 240, 0.1);
  background: rgba(0, 0, 0, 0.22);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  color: rgba(255, 248, 240, 0.58);
}

.velvet-phone-story {
  position: relative;
  margin: 0 0 16px;
  padding: 0 4px 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 248, 240, 0.07);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 248, 240, 0.62);
}

.velvet-phone-story::before {
  content: '“';
  display: block;
  margin-bottom: 4px;
  font-family: 'Italiana', Georgia, serif;
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(252, 0, 37, 0.35);
}

.velvet-phone-schedule {
  list-style: none;
  margin: 0 auto 14px;
  padding: 0;
  max-width: 100%;
  display: grid;
  gap: 0;
  text-align: left;
}

.velvet-phone-schedule li {
  position: relative;
  display: grid;
  grid-template-columns: 42px 14px 1fr;
  gap: 0 8px;
  align-items: center;
  padding: 7px 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 248, 240, 0.62);
}

.velvet-phone-schedule li::before {
  content: '';
  grid-column: 2;
  width: 6px;
  height: 6px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(255, 248, 240, 0.78);
  box-shadow: 0 0 0 3px rgba(255, 248, 240, 0.06);
}

.velvet-phone-schedule li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: calc(42px + 8px + 7px);
  top: calc(50% + 6px);
  bottom: -7px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.18), rgba(255, 248, 240, 0.06));
}

.velvet-phone-schedule time {
  grid-column: 1;
  text-align: right;
  font-family: 'Italiana', Georgia, serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 248, 240, 0.48);
}

.velvet-phone-schedule span {
  grid-column: 3;
}

.velvet-phone-location {
  margin: 0 0 16px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 248, 240, 0.08);
  background: rgba(255, 248, 240, 0.03);
  text-align: center;
}

.velvet-phone-location p {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11.5px;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(255, 248, 240, 0.58);
}

.velvet-pin {
  display: block;
  margin-bottom: 5px;
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(252, 0, 37, 0.55);
}

.velvet-phone-rsvp {
  display: inline-block;
  padding: 11px 24px;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(165deg, rgba(255, 252, 248, 0.98) 0%, rgba(255, 240, 232, 0.92) 100%);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a100e;
}

.velvet-cta {
  margin: 24px 0 0;
}

/* — Steps on dark band — */
.section-steps {
  padding-block: clamp(64px, 10vw, 96px);
}

.steps-on-dark {
  margin-top: 8px;
}

.dark-band .steps-flat li span {
  font-family: var(--body);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  opacity: 1;
}

.dark-band .steps-flat h3 {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.dark-band .steps-flat p {
  font-size: .86rem;
  color: rgba(255, 255, 255, 0.52);
}

.dark-band .steps-elegant li {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.wrap-narrow { max-width: min(720px, 92vw); }

.foot-elegant {
  padding: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(212, 175, 106, 0.06), transparent 70%),
    #0e080a;
  color: rgba(246, 241, 234, 0.78);
}

.foot-inner {
  padding: clamp(48px, 8vw, 72px) clamp(20px, 4vw, 40px) clamp(28px, 5vw, 40px);
}

.foot-top {
  display: flex;
  align-items: flex-start;
  gap: clamp(32px, 6vw, 64px);
  overflow: visible;
}

.foot-seal-wrap {
  flex-shrink: 0;
  position: relative;
  width: clamp(132px, 20vw, 176px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: visible;
}

.foot-seal-glow {
  position: absolute;
  inset: -36%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 46% 38%, rgba(252, 0, 37, 0.34) 0%, rgba(200, 50, 70, 0.1) 36%, transparent 68%);
  filter: blur(18px);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 24%, transparent 72%);
  mask-image: radial-gradient(circle at 50% 50%, #000 24%, transparent 72%);
}

.foot-seal {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(252, 0, 37, 0.28));
}

.foot-nav-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 5vw, 56px);
}

.foot-col {
  min-width: 0;
}

.foot-label {
  margin: 0;
  padding: 0;
  border: none;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(246, 241, 234, 0.5);
  width: fit-content;
  max-width: 100%;
  line-height: 1.2;
}

.foot-label::after {
  content: '';
  display: block;
  width: 100%;
  min-width: 2.75rem;
  height: 1px;
  margin-top: 10px;
  margin-bottom: 10px;
  background: rgba(246, 241, 234, 0.2);
}

.foot-links,
.foot-social {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.foot-links a,
.foot-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(246, 241, 234, 0.78);
  font-size: .86rem;
  text-decoration: none;
  line-height: 1.35;
  transition: color 0.15s;
}

.foot-links a .ui-icon,
.foot-social a .ui-icon,
.foot-legal-nav a .ui-icon {
  flex-shrink: 0;
  opacity: 0.72;
  color: rgba(246, 241, 234, 0.9);
}

.foot-links a:hover .ui-icon,
.foot-social a:hover .ui-icon,
.foot-legal-nav a:hover .ui-icon {
  opacity: 1;
  color: #fff;
}

.foot-links a:hover,
.foot-social a:hover { color: #fff; }

.foot-logo-band {
  padding: clamp(32px, 5vw, 48px) clamp(20px, 4vw, 40px) clamp(40px, 6vw, 56px);
  border-top: 1px solid rgba(246, 241, 234, 0.06);
  background: rgba(0, 0, 0, 0.22);
  overflow: visible;
}

.foot-logo-band-inner {
  display: grid;
  gap: clamp(24px, 4vw, 36px);
}

.foot-legal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
  padding-bottom: clamp(20px, 3vw, 28px);
  border-bottom: 1px solid rgba(246, 241, 234, 0.08);
}

.foot-copy {
  margin: 0;
  font-size: .72rem;
  letter-spacing: 0.04em;
  color: rgba(246, 241, 234, 0.42);
  line-height: 1.5;
}

.foot-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.foot-legal-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(246, 241, 234, 0.55);
  text-decoration: none;
  transition: color 0.15s;
}

.foot-legal-nav a:hover {
  color: #fff;
}

.foot-legal-cookie-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: .72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(246, 241, 234, 0.55);
  cursor: pointer;
  transition: color 0.15s;
}

.foot-legal-cookie-btn:hover {
  color: #fff;
}

.foot-paysera {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding-top: clamp(16px, 3vw, 22px);
  border-top: 1px solid rgba(246, 241, 234, 0.06);
}

.foot-paysera-label {
  margin: 0;
  font-size: .68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 241, 234, 0.45);
}

.foot-paysera-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(246, 241, 234, 0.12);
  background: rgba(0, 0, 0, 0.35);
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease;
}

.foot-paysera-badge:hover {
  border-color: rgba(246, 241, 234, 0.22);
  background: rgba(0, 0, 0, 0.5);
}

.foot-paysera-logo {
  display: block;
  width: auto;
  height: clamp(28px, 4.5vw, 36px);
  max-width: min(180px, 42vw);
  object-fit: contain;
}

.foot-paysera-note {
  margin: 0;
  flex: 1 1 220px;
  font-size: .72rem;
  line-height: 1.45;
  color: rgba(246, 241, 234, 0.42);
}

.foot-logo-wide {
  display: block;
  width: 100%;
  max-width: min(920px, 100%);
  height: auto;
  max-height: clamp(72px, 12vw, 128px);
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  visibility: visible;
  clip-path: none;
  -webkit-clip-path: none;
  filter: drop-shadow(0 8px 24px rgba(252, 0, 37, 0.12));
}

/* Legal pages */
.legal-page {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(212, 175, 106, 0.08), transparent 55%),
    var(--bg);
}

.legal-page .masthead {
  position: sticky;
  top: 0;
  z-index: 50;
}

.legal-main {
  padding: clamp(32px, 6vw, 56px) 0 clamp(48px, 8vw, 72px);
}

.legal-doc {
  max-width: min(680px, 92vw);
  position: relative;
}

.legal-doc .section-title {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4.5vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
}

.legal-doc .section-lead {
  margin: 0 0 28px;
  max-width: 42rem;
}

.legal-doc .section-title + .section-lead {
  margin-top: 0;
}

.legal-doc .eyebrow {
  color: var(--ink-faint);
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.legal-doc::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 28px 0 0;
  background: linear-gradient(90deg, var(--velvet-gold), transparent);
  opacity: 0.65;
}

.legal-updated {
  margin: 0 0 36px;
  font-size: .82rem;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}

.legal-block {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-block h2 {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--ink);
}

.legal-block p,
.legal-block ul {
  margin: 0 0 12px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: .98rem;
}

.legal-block ul {
  padding-left: 1.2rem;
}

.legal-block li + li {
  margin-top: 6px;
}

.legal-block a {
  color: #8a6b3a;
  text-decoration: none;
  border-bottom: 1px solid rgba(138, 107, 58, 0.35);
  transition: color 0.15s, border-color 0.15s;
}

.legal-block a:hover {
  color: var(--ink);
  border-bottom-color: rgba(20, 16, 16, 0.25);
}

.legal-block strong {
  color: var(--ink);
  font-weight: 600;
}

.list-flat { display: none; }

@media (max-width: 768px) {
  .showcase-slide {
    height: clamp(168px, 41vw, 240px);
  }

  .benefits-grid { grid-template-columns: 1fr; }
  .foot-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }
  .foot-seal-wrap {
    width: clamp(136px, 36vw, 176px);
    aspect-ratio: 1;
    height: auto;
  }
  .foot-nav-grid {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    text-align: left;
  }
  .foot-legal-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .foot-logo-wide {
    max-height: clamp(64px, 18vw, 96px);
  }
}

/* — Builder page shared — */
.builder-page { background: var(--bg); color: var(--ink); height: 100dvh; overflow: hidden; }

/* — Responsive — */
@media (max-width: 900px) {
  .masthead {
    grid-template-columns: 1fr auto auto;
    grid-template-rows: auto;
    padding: 12px clamp(16px, 4vw, 24px);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.94);
    overflow: visible;
    z-index: 9990;
    transform: none;
    filter: none;
  }

  .masthead.mast-enter {
    animation: mast-enter-mobile 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  @keyframes mast-enter-mobile {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  body.nav-open .masthead {
    z-index: 10005;
    background: transparent;
    border-bottom-color: transparent;
  }

  body.nav-open .mast-actions {
    position: relative;
    z-index: 10006;
  }

  body.nav-open .menu-toggle {
    background: #fff;
    border-color: rgba(20, 16, 16, 0.22);
    box-shadow: 0 4px 18px rgba(20, 16, 16, 0.14);
  }

  body.nav-open .menu-toggle-lines span {
    background: var(--ink);
    height: 2px;
  }

  body.nav-open .mast-login-icon {
    background: #fff;
    border-color: rgba(20, 16, 16, 0.18);
    color: var(--ink);
    box-shadow: 0 2px 10px rgba(20, 16, 16, 0.08);
  }

  body.nav-open .logo-img {
    opacity: 1;
    filter: none;
  }

  .mast-cta--desktop {
    display: none;
  }

  .mast-actions {
    grid-column: 2;
    display: inline-flex;
    gap: 0;
  }

  .mastnav {
    position: fixed;
    inset: 0;
    width: 100%;
    min-height: 100dvh;
    z-index: 10000;
    grid-column: unset;
    grid-row: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding:
      calc(72px + env(safe-area-inset-top, 0px))
      clamp(24px, 6vw, 40px)
      max(28px, env(safe-area-inset-bottom));
    background: rgba(247, 242, 236, 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.32s ease, visibility 0.32s ease;
  }

  .mastnav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mastnav a:not(.mastnav-cta):not(.mast-login-icon) {
    width: min(100%, 340px);
    padding: 15px 8px;
    font-family: var(--display);
    font-size: clamp(1.22rem, 4.5vw, 1.48rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: none;
    text-align: center;
    color: var(--ink);
    border-bottom: 1px solid rgba(20, 16, 16, 0.08);
    opacity: 0;
    transform: translateY(8px);
    transition: color 0.2s, opacity 0.35s ease, transform 0.35s ease;
  }

  .mastnav a:not(.mastnav-cta):not(.mast-login-icon)::after {
    display: none;
  }

  .mastnav.is-open a:not(.mastnav-cta):not(.mast-login-icon) {
    opacity: 1;
    transform: none;
  }

  .mastnav.is-open a:not(.mastnav-cta):not(.mast-login-icon):nth-child(1) { transition-delay: 0.05s; }
  .mastnav.is-open a:not(.mastnav-cta):not(.mast-login-icon):nth-child(2) { transition-delay: 0.09s; }
  .mastnav.is-open a:not(.mastnav-cta):not(.mast-login-icon):nth-child(3) { transition-delay: 0.13s; }
  .mastnav.is-open a:not(.mastnav-cta):not(.mast-login-icon):nth-child(4) { transition-delay: 0.17s; }
  .mastnav.is-open a:not(.mastnav-cta):not(.mast-login-icon):nth-child(5) { transition-delay: 0.21s; }
  .mastnav.is-open a:not(.mastnav-cta):not(.mast-login-icon):nth-child(6) { transition-delay: 0.25s; }

  .mastnav a:not(.mastnav-cta):not(.mast-login-icon):hover,
  .mastnav a:not(.mastnav-cta):not(.mast-login-icon):focus-visible,
  .mastnav a:not(.mastnav-cta):not(.mast-login-icon).is-active {
    color: var(--wine);
  }

  .mastnav a.mastnav-cta.btn-fill {
    display: inline-flex;
    margin-top: auto;
    width: min(100%, 340px);
    padding: 16px 24px;
    font-size: .74rem;
    border-bottom: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.25s, border-color 0.25s;
  }

  .mastnav.is-open a.mastnav-cta.btn-fill {
    opacity: 1;
    transform: none;
    transition-delay: 0.22s;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    position: relative;
    z-index: 10001;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .logo {
    position: relative;
    z-index: 10001;
    grid-column: 1;
    grid-row: 1;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero-preview {
    width: min(100%, 420px);
    justify-self: center;
  }

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

  .hero-note {
    margin-inline: auto;
    text-align: center;
  }

  .hero-orb-3,
  .hero-orb-4 { display: none; }

  .hero-copy { width: 100%; }
  .hero-text { margin-inline: auto; }
  .stats-row { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .steps-flat { grid-template-columns: 1fr 1fr; gap: 24px; }
  .list-flat li { grid-template-columns: 1fr; gap: 8px; }
  .price-row { grid-template-columns: 1fr; }
  .price-row .btn { grid-column: 1; grid-row: auto; justify-self: start; }
  .contact-grid { grid-template-columns: 1fr; }
  .velvet-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .velvet-features { justify-items: center; }
  .velvet-copy { margin-inline: auto; align-items: center; }
  .velvet-phone { transform: none; }
  .dark-band-lead { margin-inline: auto; }
}

@media (max-width: 520px) {
  .steps-flat { grid-template-columns: 1fr; }
  .paper-showcase { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .foot-nav-grid { grid-template-columns: 1fr; }
}

.reveal-section {
  /* legacy section wrapper — child .reveal elements handle motion */
}

/* — Scroll reveal animations — */
.reveal {
  opacity: 0;
  transition:
    opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-mask-position 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    mask-position 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter, clip-path;
}

.reveal-fade-up {
  transform: translateY(36px);
}

.reveal-blur {
  filter: blur(14px);
  transform: translateY(22px) scale(0.985);
}

.reveal-wipe-up {
  clip-path: inset(100% 0 0 0 round 2px);
  transform: translateY(18px);
}

.reveal-fill-left {
  transform: translateX(-32px);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 35%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 35%, transparent 100%);
  -webkit-mask-size: 280% 100%;
  mask-size: 280% 100%;
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.reveal-fill-right {
  transform: translateX(32px);
  -webkit-mask-image: linear-gradient(270deg, #000 0%, #000 35%, transparent 100%);
  mask-image: linear-gradient(270deg, #000 0%, #000 35%, transparent 100%);
  -webkit-mask-size: 280% 100%;
  mask-size: 280% 100%;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.reveal-scale {
  transform: scale(0.94) translateY(16px);
}

.reveal-blur.reveal-scale {
  filter: blur(16px);
  transform: translateY(28px) scale(0.92);
}

.reveal.is-inview,
.reveal-section.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: inset(0 0 0 0 round 2px);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
}

.reveal-fill-right.is-inview {
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
}

.reveal[data-reveal-delay="1"] { transition-delay: 0.08s; }
.reveal[data-reveal-delay="2"] { transition-delay: 0.16s; }
.reveal[data-reveal-delay="3"] { transition-delay: 0.24s; }
.reveal[data-reveal-delay="4"] { transition-delay: 0.32s; }
.reveal[data-reveal-delay="5"] { transition-delay: 0.4s; }
.reveal[data-reveal-delay="6"] { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .site-bg-blob,
  .hero-orb,
  .hero-ambient-glow,
  .hero-preview-glow { animation: none; }
  .hero-orb-3,
  .hero-orb-4 { display: none; }
  .paper-card:hover { transform: none; }
  .btn:hover { transform: none; }
  .mast-enter { animation: none; }
  .reveal,
  .reveal-section {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    transition: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
  .mastnav a,
  .mastnav.is-open a {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .menu-toggle-lines span { transition: none; }
  .showcase-slide-img { animation: none !important; }
  .showcase-slide-img.is-a,
  .showcase-slide-frame.is-a { animation: none !important; opacity: 1; }
  .showcase-slide-img.is-b,
  .showcase-slide-frame.is-b { display: none; }
}

.pricing-pay-note {
  min-height: 2.6em;
  margin: 14px 0 0;
  text-align: left;
  line-height: 1.45;
  color: rgba(255, 248, 240, 0.52);
}

.pricing-pay-note--placeholder {
  visibility: hidden;
  user-select: none;
  pointer-events: none;
}

.pricing-pay-note a {
  color: rgba(255, 248, 240, 0.72);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.payment-result {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.payment-result-page .payment-result .reveal {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: none;
  transition: none;
}

.payment-result .section-title {
  margin: 0 0 16px;
  line-height: 1.2;
}

.payment-result .section-title + .section-lead {
  margin-top: 0;
}

.payment-result .section-lead {
  margin: 0 auto 24px;
  max-width: 34rem;
  line-height: 1.65;
}

.payment-result p:not(.section-lead):not(.payment-result-badge) {
  margin: 0 auto 14px;
  max-width: 34rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.payment-result-badge {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(126, 207, 170, 0.15);
  color: #3a9a72;
  font-size: 1.5rem;
}

.payment-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.payment-credentials {
  margin: 24px auto 0;
  padding: 18px 20px;
  max-width: 420px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.payment-credentials-lead {
  margin: 0 0 14px;
  font-size: .88rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.payment-credentials-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.payment-credentials-list div {
  display: grid;
  gap: 2px;
}

.payment-credentials-list dt {
  margin: 0;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.payment-credentials-list dd {
  margin: 0;
  font-size: .9rem;
  line-height: 1.45;
  color: var(--ink);
  word-break: break-all;
}

.payment-credentials-list code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .88rem;
}

.payment-credentials-note,
.payment-copy-creds {
  margin-top: 14px;
}
.payment-invite-link {
  margin: 14px 0 0;
  font-size: .78rem;
  line-height: 1.5;
  color: var(--ink-faint);
}

/* — Cookie consent — */
body.has-cookie-consent {
  padding-bottom: env(safe-area-inset-bottom);
}

.cookie-consent {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1200;
  padding: 12px clamp(12px, 3vw, 20px) max(12px, env(safe-area-inset-bottom));
  pointer-events: none;
}

.cookie-consent-panel {
  pointer-events: auto;
  max-width: min(720px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 3.5vw, 24px);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(20, 16, 16, 0.1);
  box-shadow:
    0 18px 48px rgba(20, 16, 16, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.cookie-consent-kicker {
  margin: 0 0 6px;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}

.cookie-consent-title {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  font-weight: 500;
  color: var(--ink);
}

.cookie-consent-lead {
  margin: 0 0 16px;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.cookie-consent-actions .btn {
  flex: 1 1 auto;
  min-width: min(100%, 140px);
  justify-content: center;
}

.cookie-consent-links {
  margin: 0;
  font-size: .78rem;
  color: var(--ink-faint);
}

.cookie-consent-links a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent-links span {
  margin: 0 6px;
}

.cookie-consent-options {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.cookie-consent-option {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(244, 239, 232, 0.72);
  border: 1px solid rgba(20, 16, 16, 0.08);
}

.cookie-consent-option p,
.cookie-consent-option small {
  margin: 6px 0 0;
  font-size: .82rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.cookie-consent-option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cookie-consent-pill {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.cookie-consent-toggle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.cookie-consent-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-consent-toggle-ui {
  flex-shrink: 0;
  width: 42px;
  height: 24px;
  margin-top: 2px;
  border-radius: 999px;
  background: rgba(20, 16, 16, 0.14);
  position: relative;
  transition: background .2s ease;
}

.cookie-consent-toggle-ui::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  transition: transform .2s ease;
}

.cookie-consent-toggle input:checked + .cookie-consent-toggle-ui {
  background: var(--brand);
}

.cookie-consent-toggle input:checked + .cookie-consent-toggle-ui::after {
  transform: translateX(18px);
}

.cookie-consent-toggle-copy strong {
  display: block;
  font-size: .92rem;
  color: var(--ink);
}

.cookie-consent-toggle-copy small {
  display: block;
  margin-top: 4px;
  font-size: .8rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

body.legal-page .cookie-consent-panel,
body.site-page .cookie-consent-panel {
  background: rgba(255, 255, 255, 0.96);
}

@media (max-width: 560px) {
  .cookie-consent-actions .btn {
    width: 100%;
    flex-basis: 100%;
  }
}

.payment-invite-link a {
  color: var(--wine);
  word-break: break-all;
}
