:root {
  --bg-void: #0a0b10;
  --bg-deep: #10121a;
  --bg-surface: #171a24;
  --bg-elevated: #1f2330;
  --bg-elevated-2: #262b3a;
  --border-subtle: rgba(255,255,255,0.07);
  --border-gold: rgba(201,162,75,0.35);
  --text-primary: #ede9e0;
  --text-secondary: #b7b8c4;
  --text-muted: #82849433;
  --text-muted-solid: #82849a;
  --gold: #c9a24b;
  --gold-light: #e6c878;
  --purple: #8b7cf6;
  --purple-deep: #5b4fc4;
  --emerald: #4fd1ae;
  --gradient-hero: linear-gradient(120deg, #e6c878 0%, #c9a24b 28%, #a68ef2 62%, #6b5fd8 100%);
  --gradient-band: linear-gradient(135deg, #171a24 0%, #1f2029 40%, #241f33 100%);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-xl: 38px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.35), 0 2px 6px rgba(0,0,0,.25);
  --shadow-md: 0 6px 10px rgba(0,0,0,.35), 0 16px 32px rgba(0,0,0,.3), 0 2px 6px rgba(201,162,75,.06);
  --shadow-lg: 0 10px 20px rgba(0,0,0,.4), 0 30px 60px rgba(0,0,0,.35), 0 2px 10px rgba(139,124,246,.08);
  --shadow-gold: 0 0 0 1px rgba(201,162,75,.2), 0 10px 40px rgba(201,162,75,.14);
  --ease-out: cubic-bezier(.2,.8,.2,1);
  --ease-in: cubic-bezier(.4,0,1,1);
  --font: 'Plus Jakarta Sans', sans-serif;
  --space-2xs: clamp(0.4rem, 0.6vw, 0.6rem);
  --space-xs: clamp(0.6rem, 1vw, 0.9rem);
  --space-sm: clamp(1rem, 2vw, 1.5rem);
  --space-md: clamp(1.6rem, 3vw, 2.6rem);
  --space-lg: clamp(2.6rem, 5vw, 4.4rem);
  --space-xl: clamp(4rem, 8vw, 7.2rem);
  --space-2xl: clamp(6rem, 11vw, 10rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--text-secondary); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.5rem); }
.section { padding: var(--space-xl) 0; position: relative; }
.section--alt { background: linear-gradient(180deg, var(--bg-deep), var(--bg-surface)); }
.text-gradient {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin-bottom: var(--space-xs);
}
.eyebrow--light { color: var(--purple); }


.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal--visible { opacity: 1; transform: translateY(0); }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.95em 1.9em;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s var(--ease-out), border-color .35s var(--ease-out), color .35s var(--ease-out);
  min-height: 44px;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  color: #241b06;
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201,162,75,.28), var(--shadow-gold); }
.btn--ghost {
  background: rgba(255,255,255,0.03);
  color: var(--text-primary);
  border-color: var(--border-subtle);
}
.btn--ghost:hover { border-color: var(--border-gold); background: rgba(201,162,75,0.08); transform: translateY(-3px); }
.btn--sm { padding: 0.6em 1.2em; font-size: 0.85rem; min-height: 38px; }


.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(10,11,16,0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: transform .5s var(--ease-out);
}
.nav--hidden { transform: translateY(-100%); }
.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(0.8rem, 2vw, 1.1rem) clamp(1.2rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.6rem; }
.nav__mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; color: #100e1a;
  flex-shrink: 0;
}
.nav__name { font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }
.nav__list { display: flex; gap: clamp(1rem, 2vw, 2rem); }
.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0.1rem;
  transition: color .3s var(--ease-out);
}
.nav__link::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gradient-hero);
  transition: width .35s var(--ease-out);
}
.nav__link:hover { color: var(--text-primary); }
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__link--active { color: var(--text-primary); }
.nav__toggle {
  display: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  cursor: pointer;
  align-items: center; justify-content: center;
  transition: background .3s var(--ease-out), border-color .3s var(--ease-out);
}
.nav__toggle:hover { border-color: var(--border-gold); }


.tabbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 600;
  display: none;
  background: rgba(15,16,23,0.92);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--border-subtle);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.4);
  padding: 0.4rem clamp(0.4rem,2vw,1rem) calc(0.4rem + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform .4s var(--ease-out);
}
.tabbar--visible { transform: translateY(0); }
.tabbar__item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
  padding: 0.5rem 0.2rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted-solid);
  font-size: 0.68rem;
  font-weight: 600;
  min-height: 44px;
  transition: color .3s var(--ease-out), background .3s var(--ease-out);
}
.tabbar__item i { font-size: 1.05rem; }
.tabbar__item--active { color: var(--gold-light); background: rgba(201,162,75,0.08); }
.tabbar__item:hover { color: var(--text-primary); }


.hero {
  position: relative;
  padding: calc(var(--space-2xl) + 3rem) 0 var(--space-xl);
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(0,0.85fr);
  gap: var(--space-lg);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(1.2rem, 4vw, 2.5rem);
  padding-right: clamp(1.2rem, 4vw, 2.5rem);
  background:
    radial-gradient(circle at 15% 20%, rgba(139,124,246,0.14), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(201,162,75,0.12), transparent 40%);
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-sm);
}
.hero__title {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: var(--space-md);
}
.hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 46ch;
  margin-bottom: var(--space-md);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__media { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero__image { width: 100%; height: clamp(280px, 40vw, 460px); object-fit: cover; }
.hero__media-glow {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,11,16,0.55) 100%);
  pointer-events: none;
}


.compare__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.compare__col {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
}
.compare__col--yes { border-top: 3px solid var(--gold); }
.compare__col--no { border-top: 3px solid var(--purple); }
.compare__label { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.05rem; margin-bottom: var(--space-sm); }
.compare__col--yes .compare__label i { color: var(--gold-light); }
.compare__col--no .compare__label i { color: var(--purple); }
.compare__list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.96rem;
}
.compare__list li:last-child { border-bottom: none; }


.zigzag__row {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.15fr);
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-lg) 0;
}
.zigzag__row--reverse { grid-template-columns: minmax(0,1.15fr) minmax(0,1fr); }
.zigzag__row--reverse .zigzag__media { order: 2; }
.zigzag__row--reverse .zigzag__content { order: 1; }
.zigzag__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.zigzag__media img { width: 100%; height: clamp(260px, 32vw, 400px); object-fit: cover; transition: transform .6s var(--ease-out); }
.zigzag__media:hover img { transform: scale(1.04); }
.zigzag__title { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: var(--space-sm); }
.checklist { display: flex; flex-direction: column; gap: 0.6rem; margin-top: var(--space-sm); }
.checklist li { display: flex; gap: 0.6rem; font-size: 0.95rem; color: var(--text-secondary); }
.checklist i { color: var(--gold-light); margin-top: 0.2rem; flex-shrink: 0; }


.manifesto {
  position: relative;
  background: var(--gradient-band);
  padding: var(--space-2xl) 0;
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
  margin: var(--space-lg) 0;
}
.manifesto__inner { max-width: 780px; margin: 0 auto; text-align: center; padding: 0 clamp(1.2rem, 4vw, 2.5rem); }
.manifesto__quote {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}
.manifesto__body { color: var(--text-secondary); font-size: 1.05rem; }


.section__header { max-width: 680px; margin: 0 auto var(--space-lg); text-align: center; }
.section__title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: var(--space-sm); }
.section__subtitle { color: var(--text-secondary); font-size: 1.05rem; }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,260px), 1fr));
  gap: var(--space-md);
}
.offerings-grid--four { grid-template-columns: repeat(auto-fit, minmax(min(100%,220px), 1fr)); }
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-gold); }
.card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(201,162,75,0.18), rgba(139,124,246,0.18));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold-light);
  margin-bottom: var(--space-sm);
}
.card__title { font-size: 1.15rem; margin-bottom: 0.6rem; }
.card__body { color: var(--text-secondary); font-size: 0.95rem; margin: 0; }


.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,300px), 1fr));
  gap: var(--space-md);
}
.article-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.article-card__image { width: 100%; height: 200px; object-fit: cover; }
.article-card__body { padding: var(--space-sm) var(--space-md) var(--space-md); }
.article-card__tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--purple);
  margin-bottom: 0.6rem;
}
.article-card__title { font-size: 1.2rem; margin-bottom: 0.6rem; line-height: 1.3; }
.article-card__excerpt { color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 1rem; }
.article-card__link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold-light); font-weight: 600; font-size: 0.9rem; transition: gap .3s var(--ease-out); }
.article-card__link:hover { gap: 0.8rem; }


.cta-band {
  background: linear-gradient(120deg, rgba(201,162,75,0.1), rgba(139,124,246,0.12));
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.cta-band__inner { max-width: 680px; margin: 0 auto; text-align: center; padding: 0 clamp(1.2rem, 4vw, 2.5rem); }
.cta-band__title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: var(--space-sm); }
.cta-band__body { color: var(--text-secondary); margin-bottom: var(--space-md); }


.page-hero {
  padding: calc(var(--space-2xl) + 2.5rem) 0 var(--space-lg);
  max-width: 1240px; margin: 0 auto;
  padding-left: clamp(1.2rem, 4vw, 2.5rem);
  padding-right: clamp(1.2rem, 4vw, 2.5rem);
  display: grid;
  gap: var(--space-lg);
  background: radial-gradient(circle at 20% 10%, rgba(139,124,246,0.14), transparent 45%);
}
.page-hero__inner { max-width: 720px; }
.page-hero--legal { grid-template-columns: 1fr; padding-bottom: var(--space-md); }
.page-hero__eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: var(--space-sm); }
.page-hero__title { font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.1; margin-bottom: var(--space-sm); }
.page-hero__subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 60ch; }
.page-hero__media { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.page-hero__image { width: 100%; height: clamp(240px, 34vw, 380px); object-fit: cover; }


.walkthrough-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.walkthrough-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
}
.walkthrough-item:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: var(--border-gold); }
.walkthrough-item__icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(201,162,75,0.18), rgba(139,124,246,0.18));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 1.2rem;
}
.walkthrough-item__body h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.walkthrough-item__body p { font-size: 0.94rem; margin-bottom: 0.5rem; }
.walkthrough-item__meta { font-size: 0.8rem; color: var(--text-muted-solid); display: inline-flex; gap: 0.4rem; align-items: center; }


.contact-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.2fr); gap: var(--space-lg); align-items: start; }
.contact-info__title { font-size: 1.5rem; margin-bottom: var(--space-sm); }
.contact-info__list { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: var(--space-md); }
.contact-info__list li { display: flex; align-items: center; gap: 0.8rem; color: var(--text-secondary); font-size: 0.98rem; }
.contact-info__list i { color: var(--gold-light); width: 20px; }
.contact-info__consult {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-md);
}
.contact-info__consult h3 { font-size: 1.1rem; display: flex; gap: 0.6rem; align-items: center; margin-bottom: 0.7rem; }
.contact-info__consult h3 i { color: var(--purple); }
.contact-info__consult p { font-size: 0.94rem; margin: 0; }
.contact-info__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border-subtle); }
.contact-info__map iframe { display: block; filter: grayscale(0.3) invert(0.92) contrast(0.9); }

.contact-form-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.form__group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: var(--space-sm); }
.form__group--full { grid-column: 1 / -1; }
.form__label { font-size: 0.88rem; font-weight: 600; color: var(--text-secondary); }
.form__input, .form__textarea {
  background: var(--bg-elevated-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.96rem;
  transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
  min-height: 44px;
}
.form__textarea { min-height: 140px; resize: vertical; }
.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.15);
}
.form__checkbox-group { display: flex; align-items: flex-start; gap: 0.7rem; margin: var(--space-sm) 0; }
.form__checkbox-group input { margin-top: 0.3rem; width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; }
.form__checkbox-group label { font-size: 0.88rem; color: var(--text-secondary); }
.form__submit { width: 100%; margin-top: 0.4rem; }


.legal__container { max-width: 860px; }
.legal h2 { font-size: 1.35rem; margin: var(--space-md) 0 0.8rem; color: var(--text-primary); }
.legal p { font-size: 0.98rem; }
.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-sm) 0 var(--space-md);
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
}
.legal__table th, .legal__table td { padding: 0.9rem 1rem; text-align: left; border-bottom: 1px solid var(--border-subtle); vertical-align: top; }
.legal__table th { background: var(--bg-elevated-2); color: var(--gold-light); font-weight: 700; }
.legal__table tr:last-child td { border-bottom: none; }
.legal__dl { margin: var(--space-sm) 0 var(--space-md); }
.legal__dl dt { font-weight: 700; color: var(--gold-light); margin-top: 0.9rem; }
.legal__dl dd { margin: 0.3rem 0 0; color: var(--text-secondary); font-size: 0.95rem; }


.thanks { padding: calc(var(--space-2xl) + 3rem) 0 var(--space-2xl); display: flex; justify-content: center; }
.thanks__inner { text-align: center; max-width: 560px; padding: 0 clamp(1.2rem,4vw,2.5rem); }
.envelope { width: 140px; height: 100px; margin: 0 auto var(--space-lg); position: relative; }
.envelope__body {
  position: relative; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-elevated-2), var(--bg-elevated));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  overflow: visible;
}
.envelope__letter {
  position: absolute;
  left: 15%; right: 15%; top: 30%;
  height: 60px;
  background: linear-gradient(160deg, #fdf8ee, #efe4c9);
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transform: translateY(20px);
  animation: letterSlide 2.4s ease-in-out infinite;
  z-index: 1;
}
.envelope__flap {
  position: absolute; top: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: top center;
  animation: flapOpen 2.4s ease-in-out infinite;
  z-index: 2;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
@keyframes flapOpen {
  0%, 15% { transform: rotateX(0deg); }
  45%, 100% { transform: rotateX(180deg); }
}
@keyframes letterSlide {
  0%, 30% { transform: translateY(20px); opacity: 0; }
  55% { transform: translateY(-24px); opacity: 1; }
  85%, 100% { transform: translateY(-24px); opacity: 1; }
}
.thanks__title { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: var(--space-sm); }
.thanks__body { color: var(--text-secondary); margin-bottom: var(--space-md); }


.footer { background: var(--bg-deep); border-top: 1px solid var(--border-subtle); padding: var(--space-xl) 0 0; }
.footer__inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem) var(--space-lg);
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.3fr);
  gap: var(--space-lg);
}
.footer__logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: var(--space-sm); }
.footer__story { color: var(--text-secondary); font-size: 0.98rem; margin-bottom: var(--space-md); max-width: 46ch; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.footer__heading { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-light); margin-bottom: var(--space-sm); }
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a { color: var(--text-secondary); font-size: 0.92rem; transition: color .3s var(--ease-out); }
.footer__col a:hover { color: var(--gold-light); }
.footer__address { font-style: normal; color: var(--text-secondary); font-size: 0.92rem; line-height: 1.8; }
.footer__address a { transition: color .3s var(--ease-out); }
.footer__address a:hover { color: var(--gold-light); }
.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  padding: var(--space-sm) clamp(1.2rem, 4vw, 2.5rem);
  font-size: 0.82rem;
  color: var(--text-muted-solid);
}


.cookie-consent { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900; }
.cookie-consent__bell {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-elevated-2), var(--bg-elevated));
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  position: relative;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.cookie-consent__bell:hover { transform: scale(1.08); box-shadow: var(--shadow-gold); }
.cookie-consent__badge {
  position: absolute; top: 2px; right: 2px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--emerald);
  border: 2px solid var(--bg-void);
  display: none;
}
.cookie-consent__badge--active { display: block; }
.cookie-consent__panel {
  position: absolute; bottom: 68px; right: 0;
  width: min(360px, 88vw);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm) var(--space-sm) var(--space-md);
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform .4s var(--ease-out), opacity .4s var(--ease-out);
  max-height: 70vh;
  overflow-y: auto;
}
.cookie-consent__panel--open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.cookie-consent__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem; }
.cookie-consent__header h3 { font-size: 1.05rem; }
.cookie-consent__close { background: none; border: none; color: var(--text-secondary); font-size: 1.4rem; cursor: pointer; line-height: 1; min-width: 30px; min-height: 30px; }
.cookie-consent__intro { font-size: 0.85rem; margin-bottom: 0.8rem; }
.cookie-consent__intro a { color: var(--gold-light); }
.cookie-consent__option { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border-subtle); }
.cookie-consent__option-text strong { font-size: 0.88rem; }
.cookie-consent__option-text p { font-size: 0.78rem; margin: 0.2rem 0 0; }
.cookie-consent__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: var(--space-sm); }
.cookie-consent__actions .btn { flex: 1; min-width: 100px; }

.switch { position: relative; display: inline-block; width: 42px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch__slider {
  position: absolute; cursor: pointer; inset: 0;
  background: var(--bg-elevated-2);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  transition: background .3s var(--ease-out);
}
.switch__slider::before {
  content: ''; position: absolute; height: 16px; width: 16px; left: 3px; top: 3px;
  background: var(--text-muted-solid); border-radius: 50%;
  transition: transform .3s var(--ease-out), background .3s var(--ease-out);
}
.switch input:checked + .switch__slider { background: rgba(201,162,75,0.3); border-color: var(--border-gold); }
.switch input:checked + .switch__slider::before { transform: translateX(18px); background: var(--gold-light); }
.switch input:disabled + .switch__slider { opacity: 0.6; cursor: not-allowed; }


@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .zigzag__row, .zigzag__row--reverse { grid-template-columns: 1fr; }
  .zigzag__row--reverse .zigzag__media, .zigzag__row--reverse .zigzag__content { order: 0; }
  .compare__grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .nav__menu { display: none; }
  .nav__toggle { display: flex; }
  .tabbar { display: flex; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .offerings-grid, .offerings-grid--four { grid-template-columns: repeat(auto-fit, minmax(min(100%,240px), 1fr)); }
  body { padding-bottom: 0; }
  .thanks, .section, .page-hero, .hero { padding-bottom: calc(var(--space-lg) + 70px); }
}

@media (max-width: 480px) {
  .footer__links { grid-template-columns: 1fr; }
  .cookie-consent { bottom: 5.5rem; right: 1rem; }
  .cookie-consent__panel { bottom: 68px; right: -0.5rem; width: min(320px, 92vw); }
}