:root {
  --ink-950: #14161c;
  --ink-900: #1c1f27;
  --ink-800: #2a2e38;
  --ink-700: #3d414d;
  --ink-600: #545967;
  --ink-500: #6b7080;
  --ink-300: #a7abb8;
  --ink-200: #c7c9d1;
  --ink-100: #dcdee3;
  --paper: #f6f4ef;
  --paper-dim: #ece9e2;
  --paper-card: #ffffff;
  --accent: #d9622b;
  --accent-dark: #b84f1f;
  --accent-light: #f2a273;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 26px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(20,22,28,0.06), 0 1px 1px rgba(20,22,28,0.04);
  --shadow-md: 0 6px 16px rgba(20,22,28,0.08), 0 2px 6px rgba(20,22,28,0.06);
  --shadow-lg: 0 24px 48px rgba(20,22,28,0.14), 0 8px 20px rgba(20,22,28,0.08);

  --ease: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Figtree', sans-serif;
  color: var(--ink-800);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: 'Literata', serif; color: var(--ink-950); margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; font-size: 1rem; }


.SiteHeader {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink-950);
  transition: box-shadow .25s var(--ease);
}
.SiteHeader-bar {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.SiteHeader-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Literata', serif; font-weight: 700; font-size: 1.2rem;
  color: var(--paper);
}
.SiteHeader-hamburger {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  transition: background .2s var(--ease);
}
.SiteHeader-hamburger:hover { background: rgba(255,255,255,.08); }
.SiteHeader-hamburger span {
  width: 22px; height: 2px; background: var(--paper);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.SiteHeader-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.SiteHeader-hamburger.is-active span:nth-child(2) { opacity: 0; }
.SiteHeader-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.SiteHeader-nav {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
  background: var(--ink-900);
  border-top: 1px solid rgba(255,255,255,.06);
}
.SiteHeader-nav.is-open { max-height: 600px; }
.SiteHeader-navList {
  max-width: 1280px; margin: 0 auto; padding: 10px 24px 18px;
  display: flex; flex-direction: column; gap: 2px;
}
.SiteHeader-navItem > a {
  display: block; padding: 12px 6px; color: var(--paper-dim);
  font-weight: 500; font-size: 1rem;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.SiteHeader-navItem > a:hover { color: var(--accent-light); padding-left: 12px; }
.SiteHeader-navRow { display: flex; align-items: center; justify-content: space-between; color: var(--paper-dim); }
.SiteHeader-subToggle {
  width: 44px; height: 44px; color: var(--ink-300);
  transition: transform .3s var(--ease), color .2s var(--ease);
}
.SiteHeader-subToggle.is-open { transform: rotate(180deg); color: var(--accent-light); }
.SiteHeader-subnav {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease);
  padding-left: 14px;
}
.SiteHeader-subnav.is-open { max-height: 200px; }
.SiteHeader-subnav li a {
  display: block; padding: 10px 6px; font-size: .92rem; color: var(--ink-300);
  transition: color .2s var(--ease);
}
.SiteHeader-subnav li a:hover { color: var(--accent-light); }

@media (min-width: 900px) {
  .SiteHeader-navList { flex-direction: row; align-items: center; gap: 8px; padding: 14px 24px; flex-wrap: wrap; }
  .SiteHeader-navItem { position: relative; }
  .SiteHeader-navItem > a { border-bottom: none; padding: 10px 14px; border-radius: var(--radius-sm); }
  .SiteHeader-navItem > a:hover { background: rgba(255,255,255,.06); padding-left: 14px; }
  .SiteHeader-navRow { padding: 4px 4px 4px 14px; border-radius: var(--radius-sm); }
  .SiteHeader-navRow:hover { background: rgba(255,255,255,.06); }
  .SiteHeader-subnav { position: static; padding-left: 26px; }
}


.Btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: var(--radius-full);
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s var(--ease);
  min-height: 48px;
}
.Btn--accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.Btn--accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.Btn--ghost { background: transparent; color: var(--paper); border: 1.5px solid rgba(255,255,255,.35); }
.Btn--ghost:hover { border-color: var(--accent-light); color: var(--accent-light); transform: translateY(-2px); }
.Btn--dark { background: var(--ink-950); color: var(--paper); }
.Btn--dark:hover { background: var(--ink-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.Btn--small { padding: 10px 18px; font-size: .85rem; min-height: 40px; }
.Btn--wide { width: 100%; }


.PageHero {
  display: grid; grid-template-columns: 1fr; gap: 0;
  max-width: 1280px; margin: 32px auto; padding: 0 24px;
}
.PageHero-media {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-lg);
}
.PageHero-media img { width: 100%; height: 100%; object-fit: cover; }
.PageHero-panel {
  background: var(--ink-950); color: var(--paper);
  padding: 40px 32px; border-radius: var(--radius-lg);
  margin-top: -40px; margin-left: 16px; margin-right: 16px;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}
.PageHero-eyebrow {
  color: var(--accent-light); font-weight: 600; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px;
}
.PageHero-heading {
  font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 700; line-height: 1.12;
  margin-bottom: 18px;
  color: var(--ink-100);
}
.PageHero-text { color: var(--ink-200); font-size: 1.05rem; margin-bottom: 28px; }
.PageHero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

@media (min-width: 900px) {
  .PageHero { grid-template-columns: 1.3fr .9fr; align-items: center; }
  .PageHero-panel { margin-top: 0; margin-left: -60px; margin-right: 0; padding: 56px 48px; }
}


.Section { padding: 72px 24px; max-width: 1280px; margin: 0 auto; }
.Section--tight { padding: 48px 24px; }
.Section--intro { padding-top: 88px; }
.Section--cards { padding-top: 64px; }
.Section--dark { padding: 0; max-width: none; }
.Section--cta { padding: 56px 24px; }

.Eyebrow {
  display: inline-block; font-weight: 600; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .12em; color: var(--accent-dark);
  margin-bottom: 12px;
}
.Eyebrow--center { display: block; text-align: center; }
.Eyebrow--light { color: var(--accent-light); }

.SectionHeading {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 700; line-height: 1.2;
  margin-bottom: 18px; max-width: 640px;
}
.SectionHeading--center { margin-left: auto; margin-right: auto; text-align: center; max-width: 720px; }
.SectionHeading--light { color: var(--paper); max-width: 560px; }
.SectionHeading--onaccent { color: var(--paper); max-width: 560px; }
.SectionHeading--small { font-size: 1.3rem; margin-bottom: 12px; }

.Body { color: var(--ink-700); font-size: 1.02rem; max-width: 640px; margin-bottom: 16px; }
.Body:last-child { margin-bottom: 0; }
.Body--light { color: var(--ink-200); }
.Body--onaccent { color: var(--ink-200); }


.IntroGrid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.IntroGrid-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.IntroGrid-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5/4; }
@media (min-width: 900px) { .IntroGrid { grid-template-columns: 1.1fr .9fr; gap: 56px; } }


.CardGrid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 40px; }
.ContentCard {
  background: var(--paper-card); border-radius: var(--radius-md);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border: 1px solid var(--paper-dim);
}
.ContentCard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ContentCard-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--ink-950); color: var(--accent-light);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  margin-bottom: 18px;
}
.ContentCard-title { font-size: 1.15rem; margin-bottom: 10px; }
.ContentCard-body { color: var(--ink-600); font-size: .96rem; }

@media (min-width: 720px) { .CardGrid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .CardGrid { grid-template-columns: repeat(4,1fr); } }


.CompareGrid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
.CompareCard {
  background: var(--paper-card); border-radius: var(--radius-lg);
  padding: 36px 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--paper-dim);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.CompareCard:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.CompareCard--accent { background: var(--ink-950); border-color: var(--ink-950); }
.CompareCard-title { font-size: 1.3rem; margin-bottom: 6px; }
.CompareCard--accent .CompareCard-title { color: var(--paper); }
.CompareCard-sub { color: var(--ink-500); font-size: .9rem; margin-bottom: 22px; }
.CompareCard--accent .CompareCard-sub { color: var(--ink-300); }
.CompareCard-list { display: flex; flex-direction: column; gap: 14px; }
.CompareCard-row { display: flex; align-items: flex-start; gap: 12px; font-size: .95rem; color: var(--ink-700); }
.CompareCard--accent .CompareCard-row { color: var(--ink-100); }
.CompareCard-row i { margin-top: 4px; color: var(--ink-400); flex-shrink: 0; }
.CompareCard--accent .CompareCard-row i { color: var(--accent-light); }

@media (min-width: 900px) { .CompareGrid { grid-template-columns: 1fr 1fr; } }


.DarkBand {
  background: var(--ink-950); color: var(--paper);
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding: 72px 24px; max-width: 1280px; margin: 0 auto;
}
.DarkBand-swiper .swiper-slide { border-radius: var(--radius-md); overflow: hidden; }
.DarkBand-swiper .swiper-slide img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.DarkBand-swiper .swiper-slide p { background: var(--ink-900); padding: 16px 18px; font-size: .92rem; color: var(--ink-200); }
.DarkBand-swiper { padding-bottom: 44px; }
.DarkBand-swiper .swiper-pagination-bullet { background: var(--ink-300); opacity: .5; }
.DarkBand-swiper .swiper-pagination-bullet-active { background: var(--accent); opacity: 1; }
@media (min-width: 1000px) { .DarkBand { grid-template-columns: .9fr 1.1fr; align-items: center; } }
.swiper-slide {
  max-width: 300px !important;
}

.ContactCards { display: grid; grid-template-columns: 1fr; gap: 20px; }
.ContactCard {
  background: var(--paper-card); border-radius: var(--radius-md);
  padding: 30px 26px; text-align: center; box-shadow: var(--shadow-sm);
  border: 1px solid var(--paper-dim);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ContactCard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.ContactCard-icon {
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: var(--radius-full);
  background: var(--ink-950); color: var(--accent-light);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.ContactCard-title { font-size: 1.1rem; margin-bottom: 8px; }
.ContactCard-body { color: var(--ink-600); font-size: .92rem; margin-bottom: 16px; }
.ContactCard-link { color: var(--accent-dark); font-weight: 600; transition: color .2s var(--ease); }
.ContactCard-link:hover { color: var(--accent); }
.ContactCard-link--static { color: var(--ink-600); font-weight: 500; }
@media (min-width: 800px) { .ContactCards { grid-template-columns: repeat(3,1fr); } }


.CtaBlock {
  background: linear-gradient(135deg, var(--ink-900), var(--ink-950));
  border-radius: var(--radius-lg); padding: 48px 36px;
  display: flex; flex-direction: column; gap: 28px; align-items: flex-start;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 900px) { .CtaBlock { flex-direction: row; align-items: center; justify-content: space-between; } }


.InnerHero { max-width: 1280px; margin: 0 auto; padding: 64px 24px 20px; }
.InnerHero-heading { font-size: clamp(1.9rem, 4.2vw, 2.9rem); line-height: 1.15; margin-bottom: 16px; max-width: 760px; }
.InnerHero-text { color: var(--ink-600); font-size: 1.05rem; max-width: 620px; }


.SidebarLayout {
  max-width: 1280px; margin: 0 auto; padding: 20px 24px 80px;
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
.SidebarLayout-sidebar { display: flex; flex-direction: column; gap: 18px; }
.SidebarCard {
  background: var(--paper-card); border: 1px solid var(--paper-dim);
  border-radius: var(--radius-md); padding: 22px 22px; box-shadow: var(--shadow-sm);
}
.SidebarCard-eyebrow { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-dark); font-weight: 600; margin-bottom: 12px; }
.SidebarCard-list li a { display: block; padding: 8px 0; color: var(--ink-600); font-size: .92rem; border-bottom: 1px solid var(--paper-dim); transition: color .2s var(--ease), padding-left .2s var(--ease); }
.SidebarCard-list li:last-child a { border-bottom: none; }
.SidebarCard-list li a:hover { color: var(--accent-dark); padding-left: 6px; }
.SidebarCard-facts li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--ink-600); padding: 8px 0; }
.SidebarCard-facts li i { color: var(--accent-dark); margin-top: 3px; }

@media (min-width: 960px) {
  .SidebarLayout { grid-template-columns: 280px 1fr; align-items: start; }
  .SidebarLayout-sidebar { position: sticky; top: 100px; }
}

.ContentSection { padding: 28px 0 44px; border-bottom: 1px solid var(--paper-dim); }
.ContentSection:last-child { border-bottom: none; }
.ContentSection-figure { margin-top: 24px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.ContentSection-figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.ContentSection-figure--half img { aspect-ratio: 4/3; }
.ContentSection-figure figcaption { padding: 12px 16px; background: var(--paper-card); color: var(--ink-500); font-size: .85rem; }
.ContentSection-portrait { margin-top: 24px; display: flex; align-items: center; gap: 18px; }
.ContentSection-portrait img { width: 120px; height: 120px; border-radius: var(--radius-full); object-fit: cover; box-shadow: var(--shadow-sm); }
.ContentSection-portrait p { color: var(--ink-500); font-size: .9rem; max-width: 260px; }


.ModuleList { margin-top: 24px; display: flex; flex-direction: column; gap: 22px; }
.ModuleItem { display: flex; gap: 18px; align-items: flex-start; }
.ModuleItem-index { font-family: 'Literata', serif; font-size: 1.6rem; font-weight: 700; color: var(--accent); min-width: 44px; }
.ModuleItem-title { font-size: 1.08rem; margin-bottom: 6px; }
.ModuleItem-body { color: var(--ink-600); font-size: .94rem; max-width: 560px; }

.WorkshopGallery { margin-top: 36px; }
.WorkshopGallery .swiper-slide { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.WorkshopGallery .swiper-slide img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.WorkshopGallery .swiper-pagination-bullet { background: var(--ink-300); opacity: .6; }
.WorkshopGallery .swiper-pagination-bullet-active { background: var(--accent); opacity: 1; }
.WorkshopGallery .swiper-button-prev, .WorkshopGallery .swiper-button-next { color: var(--ink-900); }
.WorkshopGallery { padding-bottom: 44px; }

.InlineCta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }


.ContactLayout { display: grid; grid-template-columns: 1fr; gap: 48px; }
.ContactForm { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; max-width: 520px; }
.ContactForm-field { display: flex; flex-direction: column; gap: 8px; }
.ContactForm-field label { font-size: .88rem; font-weight: 600; color: var(--ink-700); }
.ContactForm-field input, .ContactForm-field textarea {
  padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--paper-dim);
  background: var(--paper-card); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  min-height: 48px;
}
.ContactForm-field textarea { min-height: 120px; resize: vertical; }
.ContactForm-field input:focus, .ContactForm-field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(217,98,43,.12);
}
.ContactForm-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--ink-600); }
.ContactForm-checkbox input { margin-top: 4px; width: 20px; height: 20px; flex-shrink: 0; }
.ContactForm-checkbox a { color: var(--accent-dark); font-weight: 600; }

.ContactLayout-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 24px; }
.ContactLayout-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ContactLayout-image figcaption { background: var(--paper-card); padding: 14px 18px; color: var(--ink-500); font-size: .85rem; }

@media (min-width: 960px) { .ContactLayout { grid-template-columns: 1.1fr .9fr; } }

.MapEmbed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-top: 30px; }


.LegalHero { max-width: 1280px; margin: 0 auto; padding: 64px 24px 10px; }
.LegalHero-heading { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 10px; }
.LegalHero-date { color: var(--ink-500); font-size: .9rem; }
.LegalContent { max-width: 880px; }
.LegalContent-intro { margin-bottom: 36px; }
.LegalQA { display: flex; flex-direction: column; gap: 30px; }
.LegalQA-item { padding-bottom: 26px; border-bottom: 1px solid var(--paper-dim); }
.LegalQA-item:last-child { border-bottom: none; }
.LegalQA-question { font-size: 1.15rem; margin-bottom: 10px; }
.LegalQA-answer { color: var(--ink-700); font-size: .96rem; line-height: 1.7; }


.SiteFooter { background: var(--ink-950); color: var(--paper-dim); margin-top: 40px; }
.SiteFooter-top {
  max-width: 1280px; margin: 0 auto; padding: 64px 24px 40px;
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
.SiteFooter-logo { display: flex; align-items: center; gap: 10px; font-family: 'Literata', serif; font-weight: 700; font-size: 1.2rem; color: var(--paper); margin-bottom: 14px; }
.SiteFooter-tagline { color: var(--ink-300); font-size: .92rem; max-width: 320px; }
.SiteFooter-heading { color: var(--paper); font-size: .95rem; margin-bottom: 16px; font-family: 'Figtree', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.SiteFooter-list { display: flex; flex-direction: column; gap: 10px; }
.SiteFooter-list li { color: var(--ink-300); font-size: .9rem; display: flex; align-items: flex-start; gap: 8px; }
.SiteFooter-list a { color: var(--ink-300); transition: color .2s var(--ease); }
.SiteFooter-list a:hover { color: var(--accent-light); }
.SiteFooter-list i { margin-top: 3px; color: var(--accent-light); }
.SiteFooter-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 24px; text-align: center; font-size: .82rem; color: var(--ink-500); }
@media (min-width: 800px) { .SiteFooter-top { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }


.ThanksSection { max-width: 640px; margin: 0 auto; padding: 90px 24px 100px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.Envelope { position: relative; width: 160px; height: 110px; margin-bottom: 20px; }
.Envelope-back {
  position: absolute; inset: 0; background: var(--ink-900); border-radius: 8px;
  box-shadow: var(--shadow-md);
}
.Envelope-flap {
  position: absolute; top: 0; left: 0; width: 100%; height: 0;
  border-left: 80px solid transparent; border-right: 80px solid transparent;
  border-top: 60px solid var(--ink-700);
  transform-origin: top; animation: flapOpen 1.8s var(--ease) forwards;
  z-index: 3;
}
.Envelope-letter {
  position: absolute; left: 20px; right: 20px; bottom: 8px; height: 70px;
  background: var(--paper); border-radius: 4px; box-shadow: var(--shadow-sm);
  padding: 10px 12px; display: flex; flex-direction: column; gap: 6px;
  transform: translateY(10px); opacity: 0; z-index: 2;
  animation: letterSlide 1.8s var(--ease) forwards; animation-delay: .5s;
}
.Envelope-letter span { display: block; height: 4px; border-radius: 2px; background: var(--ink-200); }
.Envelope-letter span:nth-child(2) { width: 70%; }
.Envelope-letter span:nth-child(3) { width: 50%; }
@keyframes flapOpen { from { transform: rotateX(0deg); } to { transform: rotateX(180deg); } }
@keyframes letterSlide { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(-56px); opacity: 1; } }
.ThanksSection-heading { font-size: clamp(1.8rem, 4vw, 2.4rem); opacity: 0; animation: fadeUp .8s var(--ease) forwards; animation-delay: 1.6s; }
.ThanksSection-text { color: var(--ink-600); opacity: 0; animation: fadeUp .8s var(--ease) forwards; animation-delay: 1.85s; }
.ThanksSection > .Btn { opacity: 0; animation: fadeUp .8s var(--ease) forwards; animation-delay: 2.1s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }


.CookieConsent {
  position: fixed; left: 20px; bottom: 20px; z-index: 999;
  max-width: 360px; width: calc(100% - 40px);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.CookieConsent.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.CookieConsent-card {
  background: var(--paper-card); border-radius: var(--radius-md);
  padding: 22px 22px 20px; box-shadow: var(--shadow-lg); border: 1px solid var(--paper-dim);
}
.CookieConsent-text { font-size: .88rem; color: var(--ink-700); margin-bottom: 16px; line-height: 1.6; }
.CookieConsent-actions { display: flex; flex-direction: column; gap: 10px; }
.CookieConsent-customize { font-size: .85rem; color: var(--ink-500); display: flex; align-items: center; justify-content: center; gap: 6px; padding: 8px; transition: color .2s var(--ease); }
.CookieConsent-customize:hover { color: var(--accent-dark); }
.CookieConsent-customize i { transition: transform .3s var(--ease); font-size: .75rem; }
.CookieConsent-customize.is-open i { transform: rotate(180deg); }
.CookieConsent-panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.CookieConsent-panel.is-open { max-height: 300px; margin-top: 12px; }
.CookieConsent-option { display: flex; align-items: center; gap: 10px; font-size: .84rem; color: var(--ink-700); padding: 6px 0; }
.CookieConsent-option span { color: var(--ink-400); font-size: .75rem; margin-left: auto; }
.CookieConsent-option input { width: 18px; height: 18px; }
#cookieSavePrefs { margin-top: 10px; width: 100%; }


@media (max-width: 599px) {
  .Section { padding: 56px 20px; }
  .PageHero { margin: 20px auto; padding: 0 16px; }
}
html, body { overflow-x: hidden; max-width: 100%; }