@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #1a2346;
  --ink-soft: #2b3863;
  --slate: #55607b;
  --line: #e7dfeb;
  --mist: #f8f3f8;
  --white: #ffffff;
  --gold: #d1a05f;
  --gold-soft: #f2e4cf;
  --rose: #b87395;
  --rose-soft: #f7eaf2;
  --deep: #101833;
  --ok: #0e7a56;
  --err: #b73045;
  --radius: 18px;
  --shadow: 0 14px 34px rgba(16, 24, 51, 0.11);
  --shadow-soft: 0 8px 24px rgba(16, 24, 51, 0.08);
  --space-xs: 8px;
  --space-sm: 14px;
  --space-md: 22px;
  --space-lg: 30px;
  --space-xl: 40px;
  --space-section: 72px;
  --plus-pattern-navy: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath d='M15 12v6M12 15h6' stroke='%231a2346' stroke-opacity='.1' stroke-width='1.05' stroke-linecap='round'/%3E%3C/svg%3E");
  --plus-pattern-rose: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath d='M15 12v6M12 15h6' stroke='%23b87395' stroke-opacity='.12' stroke-width='1.05' stroke-linecap='round'/%3E%3C/svg%3E");
  --plus-pattern-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cpath d='M14 11v6M11 14h6' stroke='%23ffffff' stroke-opacity='.16' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");
  --dot-pattern-navy: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 26'%3E%3Ccircle cx='13' cy='13' r='1.25' fill='%231a2346' fill-opacity='.1'/%3E%3C/svg%3E");
  --dot-pattern-rose: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 26'%3E%3Ccircle cx='13' cy='13' r='1.25' fill='%23b87395' fill-opacity='.12'/%3E%3C/svg%3E");
  --dot-pattern-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='1.2' fill='%23ffffff' fill-opacity='.18'/%3E%3C/svg%3E");
  --title-display: clamp(56px, 7vw, 92px);
  --title-section: clamp(36px, 4.5vw, 52px);
  --title-card: clamp(32px, 3.6vw, 42px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", "Avenir Next", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background-color: #eaf0fc;
  background-image: linear-gradient(180deg, #f2f6ff 0%, #e9f0fd 54%, #e4ebfa 100%);
}

body {
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
}

body::before {
  width: 380px;
  height: 380px;
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(184, 115, 149, 0.23) 0%, rgba(184, 115, 149, 0) 72%);
  animation: floatRose 14s ease-in-out infinite;
}

body::after {
  width: 420px;
  height: 420px;
  bottom: -180px;
  left: -140px;
  background: radial-gradient(circle, rgba(209, 160, 95, 0.2) 0%, rgba(209, 160, 95, 0) 74%);
  animation: floatGold 18s ease-in-out infinite;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--deep);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1200px, 94vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  border-bottom: 1px solid rgba(26, 35, 70, 0.12);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.site-header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand img {
  width: 146px;
  height: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-desktop a {
  position: relative;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  transition: color 160ms ease, transform 160ms ease;
  padding-bottom: 10px;
}

.nav-desktop a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-desktop a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(26, 35, 70, 0.16);
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(145deg, #fff, #f4ebf5);
  box-shadow: 0 6px 16px rgba(184, 115, 149, 0.12);
}

.nav-desktop .lang-switcher {
  transform: translateY(-4px);
}

.lang-switcher .lang-option {
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.03em;
  position: static;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease;
}

.lang-switcher .lang-option.is-active {
  background: linear-gradient(145deg, #fffdf8 0%, #fff0d9 100%);
  box-shadow: inset 0 0 0 1px rgba(209, 160, 95, 0.5);
}

.lang-switcher .lang-option:not(.is-active):hover {
  background: rgba(184, 115, 149, 0.08);
  transform: none;
}

.mobile-toggle {
  display: none;
  border: 1px solid rgba(26, 35, 70, 0.18);
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 84px 0 0 0;
  background: rgba(16, 24, 51, 0.45);
  z-index: 110;
}

.mobile-overlay.is-open {
  display: block;
}

.mobile-panel {
  margin-left: auto;
  width: min(360px, 88vw);
  height: 100%;
  background:
    var(--dot-pattern-rose) 0 0/26px 26px,
    linear-gradient(170deg, #fff 0%, #f7f1f8 100%);
  border-left: 1px solid var(--line);
  padding: 20px;
}

.mobile-nav {
  display: grid;
  gap: 12px;
}

.mobile-nav > a {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  color: var(--ink);
}

.lang-switcher-mobile {
  margin-top: 4px;
  width: fit-content;
}

.mobile-nav .lang-option {
  min-width: 52px;
  padding: 8px 14px;
  font-size: 13px;
}

main {
  padding-top: 84px;
}

.section {
  padding: var(--space-section) 0;
}

.section.white {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    var(--plus-pattern-rose) 0 0/30px 30px,
    linear-gradient(145deg, #ffffff 0%, #fcf6fb 65%, #ffffff 100%);
}

.section h1,
.section h2 {
  margin: 0;
  line-height: 1.15;
  font-size: var(--title-section);
}

.section > .container {
  position: relative;
}

.section > .container > h1:first-child,
.section > .container > h2:first-child {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  font-size: var(--title-section);
}

.section > .container > h1:first-child::after,
.section > .container > h2:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(90px, 16vw, 170px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(209, 160, 95, 0.95) 0%, rgba(209, 160, 95, 0.35) 100%);
}

.section > .container > h1:first-child + *,
.section > .container > h2:first-child + * {
  margin-top: var(--space-lg);
}

.section > .container > .grid-2,
.section > .container > .grid-3,
.section > .container > .portraits,
.section > .container > .faq,
.section > .container > .stack {
  margin-top: var(--space-xl);
}

.section h1,
.section h2,
.section h3,
.faq summary,
.band {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.01em;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: stretch;
}

.eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
}

.h1 {
  margin-top: 16px;
  font-size: var(--title-display);
  line-height: 0.98;
  color: var(--ink);
}

.lead {
  margin-top: 20px;
  font-size: 19px;
  line-height: 1.64;
  color: var(--slate);
  max-width: 74ch;
}

.lead.lead-compact {
  max-width: 62ch;
  font-size: 17px;
}

.actions {
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.actions + h2,
.actions + .faq,
.actions + .grid-2,
.actions + .grid-3 {
  margin-top: var(--space-xl);
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--deep) 0%, var(--ink-soft) 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(16, 24, 51, 0.28);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -35%;
  width: 34%;
  height: 320%;
  transform: rotate(24deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(245, 220, 184, 0.76) 52%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shimmerSweep 4.6s ease-in-out infinite;
  pointer-events: none;
}

.btn-quiz-cta {
  background: #172246;
  border-color: #172246;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(16, 24, 51, 0.3);
}

.btn-quiz-cta::after {
  display: none;
}

.btn-secondary {
  background: linear-gradient(140deg, #fff 0%, var(--rose-soft) 100%);
  border-color: rgba(209, 160, 95, 0.38);
  color: var(--ink);
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26, 35, 70, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(209, 160, 95, 0.85) 0%, rgba(184, 115, 149, 0.5) 62%, rgba(255, 255, 255, 0) 100%);
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 115, 149, 0.32);
  box-shadow: 0 14px 30px rgba(16, 24, 51, 0.13);
}

.card-dark {
  position: relative;
  overflow: hidden;
  background:
    var(--dot-pattern-light) 0 0/24px 24px,
    linear-gradient(145deg, #111b3a 0%, #223a70 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.card-dark::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -60px;
  top: -50px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(209, 160, 95, 0.35) 0%, rgba(209, 160, 95, 0) 72%);
  pointer-events: none;
  animation: orbitGlow 9s ease-in-out infinite;
}

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

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

.span-2 {
  grid-column: span 2;
}

.card h2 {
  font-size: var(--title-card);
  color: var(--ink);
}

.card h3 {
  margin: 0;
  font-size: var(--title-card);
  color: var(--ink);
}

.card p,
.card li {
  color: var(--slate);
  line-height: 1.64;
  font-size: 15px;
}

.card h2 + p,
.card h2 + .list,
.card h3 + p,
.card h3 + .list,
.card p + .list {
  margin-top: var(--space-sm);
}

.card-dark h2,
.card-dark h3,
.card-dark p,
.card-dark li {
  color: rgba(255, 255, 255, 0.95);
}

.card a {
  color: var(--ink-soft);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.faq {
  margin-top: var(--space-xl);
  display: grid;
  gap: 14px;
}

.faq details {
  border: 1px solid rgba(26, 35, 70, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.faq details[open] {
  border-color: rgba(184, 115, 149, 0.38);
  background: linear-gradient(170deg, #fff 0%, #fff7fb 100%);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 30px);
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.01em;
  line-height: 1.18;
  color: var(--ink);
  text-decoration: none;
}

.faq details p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.48;
  color: var(--slate);
  font-family: "Manrope", "Avenir Next", "Trebuchet MS", sans-serif;
  font-weight: 400;
}

.band {
  background:
    var(--plus-pattern-light) 0 0/28px 28px,
    linear-gradient(145deg, #101833 0%, #213567 100%);
  background-size: 28px 28px, 180% 180%;
  color: #fff;
  padding: 22px 0;
  text-align: center;
  font-weight: 700;
  font-size: clamp(30px, 3.2vw, 40px);
  animation: bandGlow 16s ease-in-out infinite;
}

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

.portraits img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(26, 35, 70, 0.14);
  box-shadow: var(--shadow-soft);
}

.alps-panel {
  border: 1px solid rgba(26, 35, 70, 0.14);
  border-radius: 22px;
  background: linear-gradient(160deg, #f4f8ff 0%, #eef4ff 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.alps-art {
  position: relative;
  height: 190px;
  background:
    linear-gradient(180deg, #1a2448 0%, #233b74 58%, #2d4b8d 100%),
    var(--dot-pattern-light);
  background-size: auto, 24px 24px;
}

.alps-star {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%) scale(var(--size, 1));
  color: rgba(255, 223, 173, 0.9);
  font-size: 12px;
  line-height: 1;
  pointer-events: none;
  text-shadow: 0 0 10px rgba(255, 206, 132, 0.48);
  animation: alpsTwinkle 5.4s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.alps-peak {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.alps-peak-back {
  height: 70%;
  background: linear-gradient(180deg, rgba(240, 244, 252, 0.92) 0%, rgba(187, 203, 233, 0.88) 100%);
  clip-path: polygon(0% 100%, 14% 64%, 24% 72%, 33% 52%, 45% 66%, 58% 42%, 71% 68%, 84% 50%, 100% 100%);
  animation: alpsFloatBack 14s ease-in-out infinite;
}

.alps-peak-mid {
  height: 62%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(220, 229, 245, 0.92) 100%);
  clip-path: polygon(0% 100%, 9% 70%, 20% 58%, 31% 71%, 43% 44%, 57% 73%, 67% 56%, 79% 69%, 89% 48%, 100% 100%);
  animation: alpsFloatMid 12s ease-in-out infinite;
}

.alps-peak-front {
  height: 48%;
  background: linear-gradient(180deg, rgba(244, 247, 255, 0.96) 0%, rgba(202, 216, 242, 0.9) 100%);
  clip-path: polygon(0% 100%, 12% 78%, 23% 63%, 36% 74%, 47% 58%, 59% 70%, 70% 57%, 82% 74%, 93% 62%, 100% 100%);
  animation: alpsFloatFront 10s ease-in-out infinite;
}

.alps-copy {
  padding: 24px 24px 26px;
}

.alps-copy h2 {
  font-size: var(--title-card);
}

.alps-copy p {
  margin-top: 12px;
  color: var(--slate);
  line-height: 1.65;
}

.market-grid {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  background: linear-gradient(162deg, #ffffff 0%, #fff8f1 68%, #ffffff 100%);
  text-align: center;
  padding: 32px 22px 30px;
}

.card p.stat-value {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(60px, 6.5vw, 100px);
  line-height: 0.72;
  letter-spacing: -0.015em;
  color: #a4712f;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.card p.stat-value .fc-editable {
  display: inline-block;
  max-width: 100%;
  word-break: break-word;
}

.stat-card p:not(.stat-value) {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink-soft);
}

.source-marker {
  margin-left: 5px;
  font-size: 0.58em;
  vertical-align: super;
  font-weight: 700;
  color: #7f5020;
}

.source-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--slate);
}

.source-list {
  margin: 16px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.4;
}

.source-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.source-index {
  margin-top: 1px;
  font-size: 12px;
  font-weight: 700;
  color: #7f5020;
  letter-spacing: 0.01em;
}

.source-list a {
  color: var(--ink-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.star-list {
  gap: 10px;
}

.star-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: flex-start;
}

.star-bullet {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(209, 160, 95, 0.52);
  background: radial-gradient(circle at 32% 28%, #f5d9ae 0%, #d8a35f 72%);
  color: #42280e;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(209, 160, 95, 0.3);
}

.quiz-box {
  margin-top: var(--space-xl);
  display: grid;
  gap: 14px;
}

.quiz-actions {
  justify-content: flex-end;
}

.quiz-question {
  margin: 0;
  border: 1px solid rgba(26, 35, 70, 0.15);
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(145deg, #ffffff 0%, #f8f3f8 100%);
}

.quiz-question legend {
  padding: 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 30px);
  color: var(--ink);
}

.quiz-options {
  margin-top: 10px;
  display: grid;
  gap: 9px;
}

.quiz-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(26, 35, 70, 0.14);
  border-radius: 11px;
  padding: 10px 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quiz-option:has(input:checked) {
  border-color: rgba(209, 160, 95, 0.65);
  box-shadow: 0 0 0 3px rgba(209, 160, 95, 0.15);
}

.quiz-option input {
  margin-top: 3px;
  accent-color: #a4712f;
}

.quiz-option span {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.48;
}

.quiz-error {
  min-height: 18px;
  margin: 0;
}

.quiz-result {
  border: 1px solid rgba(26, 35, 70, 0.16);
  border-radius: 14px;
  background: linear-gradient(145deg, #f0f6ff 0%, #eef7fb 100%);
  padding: 14px;
}

.quiz-result h3 {
  margin: 0;
  font-size: clamp(26px, 2.6vw, 34px);
}

.quiz-result p {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 15px;
  color: var(--slate);
}

.contact-meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--slate);
  font-size: 14px;
}

.form {
  display: grid;
  gap: 12px;
}

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

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(26, 35, 70, 0.18);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(184, 115, 149, 0.5);
  box-shadow: 0 0 0 3px rgba(184, 115, 149, 0.16);
}

.field textarea {
  resize: vertical;
}

.error {
  font-size: 12px;
  color: var(--err);
}

.success {
  font-size: 13px;
  color: var(--ok);
}

.hidden-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    var(--dot-pattern-rose) 0 0/26px 26px,
    linear-gradient(160deg, #fff 0%, #f7f1f8 100%);
}

.site-footer-inner {
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  color: var(--slate);
}

.footer-links a:hover {
  color: var(--ink);
}

.legal-title {
  font-size: clamp(40px, 4.2vw, 56px);
}

.stack {
  display: grid;
  gap: 12px;
}

.legal-meta {
  margin-top: 24px;
  border: 1px solid rgba(26, 35, 70, 0.14);
  border-radius: 14px;
  background: linear-gradient(150deg, #fff, #fff9fc);
  padding: 14px;
  color: var(--slate);
  font-size: 14px;
}

.calendly-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  background: rgba(16, 24, 51, 0.72);
  padding: 14px;
}

.calendly-overlay.is-open {
  display: flex;
}

.calendly-modal {
  width: min(980px, 100%);
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(26, 35, 70, 0.16);
  padding: 14px;
  box-shadow: var(--shadow);
}

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

.calendly-head h2 {
  margin: 0;
  font-size: 32px;
  color: var(--ink);
}

.calendly-close {
  border: 1px solid rgba(26, 35, 70, 0.2);
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  font-weight: 700;
  color: var(--ink);
}

.calendly-frame {
  margin-top: 12px;
  border: 1px solid rgba(26, 35, 70, 0.16);
  border-radius: 12px;
  width: 100%;
  height: min(68vh, 650px);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  z-index: 140;
  width: min(860px, 94vw);
  border: 1px solid rgba(26, 35, 70, 0.14);
  border-radius: 16px;
  background: linear-gradient(155deg, #fff 0%, #fff8fc 100%);
  box-shadow: var(--shadow);
  padding: 14px;
  display: none;
}

.cookie-banner.is-open {
  display: block;
}

.cookie-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.js .reveal-item {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes dotDrift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 48px 28px, 0 0;
  }
}

@keyframes floatRose {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-24px, 16px, 0);
  }
}

@keyframes floatGold {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(26px, -22px, 0);
  }
}

@keyframes shimmerSweep {
  0%,
  72% {
    transform: translateX(0) rotate(24deg);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(360%) rotate(24deg);
    opacity: 0;
  }
}

@keyframes orbitGlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-16px, 12px) scale(1.08);
  }
}

@keyframes bandGlow {
  0%,
  100% {
    background-position: 0 0, 0% 50%;
  }
  50% {
    background-position: 20px 12px, 100% 50%;
  }
}

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

@keyframes alpsFloatMid {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

@keyframes alpsFloatFront {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

@keyframes alpsTwinkle {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(calc(var(--size, 1) * 0.9));
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(calc(var(--size, 1) * 1.15));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .market-grid,
  .portraits,
  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .nav-desktop {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .section {
    padding: 52px 0;
  }

  .alps-art {
    height: 148px;
  }

  .h1 {
    font-size: clamp(44px, 12vw, 66px);
  }

  .card h2,
  .card h3,
  .band,
  .calendly-head h2 {
    font-size: clamp(30px, 8.8vw, 40px);
  }

  .faq summary {
    font-size: clamp(22px, 6.8vw, 28px);
  }

  .faq details p {
    font-size: clamp(14px, 4.2vw, 16px);
  }

  .quiz-question legend {
    font-size: clamp(22px, 6.8vw, 28px);
  }

  .card p.stat-value {
    font-size: clamp(45px, 13.5vw, 76px);
  }

  .span-2 {
    grid-column: auto;
  }
}
