:root {
  --bg: #2c241e;
  --bg-deep: #221b16;
  --bg-elevated: #3a2f27;
  --bg-cream: #f3e8dc;
  --bg-cream-2: #ebe0d2;
  --sand: #e5d3bc;
  --gold: #d7b280;
  --gold-light: #f0d7b0;
  --gold-deep: #b08a52;
  --ink: #241c16;
  --ink-soft: #5d4f43;
  --text: #fff8f0;
  --text-soft: #eadccb;
  --text-muted: #c7b49e;
  --line: rgba(240, 215, 176, 0.24);
  --line-dark: rgba(36, 28, 22, 0.1);
  --shadow: 0 24px 60px rgba(28, 18, 10, 0.28);
  --radius: 18px;
  --container: 1160px;
  --header: 76px;
  --display: "Cormorant Garamond", Georgia, serif;
  --script: "Great Vibes", cursive;
  --body: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.script {
  margin: 0;
  font-family: var(--script);
  font-weight: 400;
  line-height: 1;
  color: var(--gold-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform .25s ease, filter .25s ease, background .25s ease, border-color .25s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn--gold {
  background: linear-gradient(135deg, #f2d9b4, #d4ae78 48%, #b2894f);
  color: #2a1d12;
  box-shadow: 0 12px 28px rgba(176, 138, 82, 0.28);
}

.btn--gold:hover { filter: brightness(1.05); }
.btn--wide { width: 100%; }

.section {
  position: relative;
  padding: clamp(4.2rem, 8vw, 7rem) 0;
}

.section__head {
  max-width: 36rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section__head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.section__sub {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.section__head--light .section__sub { color: #f0e4d5; }

.note {
  margin: 0.55rem 0 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.note--center {
  text-align: center;
  margin-top: 1.2rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(44, 36, 30, 0.35);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.header.is-scrolled {
  background: rgba(44, 36, 30, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 28px rgba(20, 12, 8, 0.25);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  width: min(100% - 2.5rem, var(--container));
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand__mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
  display: block;
}

.brand__text {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.brand__name {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
}
.brand__tag {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.85rem, 2vw, 1.5rem);
}

.nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.03em;
}
.nav a:hover { color: var(--gold-light); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.lang {
  position: relative;
  z-index: 45;
}

.lang__current {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lang__current:hover,
.lang.is-open .lang__current {
  border-color: rgba(240, 215, 176, 0.45);
  background: rgba(240, 215, 176, 0.08);
}

.lang__chevron {
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
  opacity: 0.85;
}

.lang.is-open .lang__chevron {
  transform: rotate(225deg) translateY(-1px);
}

.lang__menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  min-width: 4.4rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(42, 33, 27, 0.96);
  box-shadow: 0 16px 36px rgba(20, 12, 8, 0.35);
  backdrop-filter: blur(12px);
}

.lang__menu[hidden] {
  display: none;
}

.lang__option {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: left;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang__option:hover {
  background: rgba(240, 215, 176, 0.1);
  color: var(--gold-light);
}

.lang__option.is-active {
  color: var(--gold-light);
  background: rgba(240, 215, 176, 0.12);
}

.header__cta {
  min-height: 2.5rem;
  padding-inline: 1.1rem;
  font-size: 0.84rem;
}

.burger {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 1rem;
  height: 1.5px;
  margin: .22rem auto;
  background: var(--gold-light);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  display: flex;
  align-items: center;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(48, 38, 30, 0.72) 0%, rgba(48, 38, 30, 0.38) 46%, rgba(48, 38, 30, 0.18) 72%),
    linear-gradient(180deg, rgba(55, 44, 36, 0.28) 0%, rgba(40, 30, 24, 0.12) 40%, rgba(40, 30, 24, 0.62) 100%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(1.08) contrast(1.04) brightness(1.05);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.script--hero {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.7rem;
  color: #f6e2c4;
  text-shadow: 0 8px 24px rgba(20, 12, 8, 0.35);
}

.hero__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6.4vw, 5.3rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #fffaf3;
  text-shadow: 0 10px 30px rgba(20, 12, 8, 0.35);
}

.hero__title em,
.hero__title .accent {
  font-style: italic;
  color: #f6d9a8;
  font-weight: 500;
}

.hero__lead {
  margin: 1.2rem 0 1.55rem;
  max-width: 32rem;
  color: #f3e7d8;
  font-size: clamp(1.05rem, 1.5vw, 1.16rem);
  font-weight: 500;
  line-height: 1.7;
}

.hero__perks {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1.35rem;
  margin: 1.8rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(240, 215, 176, 0.22);
}

.hero__perks li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #f0e2d2;
  white-space: nowrap;
  flex: 0 0 auto;
}

.perk-icon {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 215, 176, 0.35);
  color: var(--gold-light);
  font-size: 0.8rem;
  flex: 0 0 auto;
}

/* Benefits */
.section--benefits {
  background: #f6eee5;
  color: var(--ink);
  overflow: hidden;
}

.section--benefits .section__sub {
  color: var(--ink-soft);
  max-width: 40rem;
  font-size: 1.02rem;
  line-height: 1.7;
}

.benefits__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.benefits__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 1;
  filter: none;
}

.section--benefits .container {
  position: relative;
  z-index: 1;
}

.section--benefits .section__head {
  position: relative;
  z-index: 2;
  max-width: min(42rem, 62%);
  margin-bottom: clamp(2.2rem, 5vw, 3.4rem);
}

.section__eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(92, 79, 67, 0.65);
}

.section--benefits .section__head h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

.section--benefits .section__head h2 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}

.section__lead {
  margin: 1rem 0 0.7rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--ink);
  line-height: 1.35;
}

.section__lead strong {
  font-weight: 700;
}

.cards {
  display: grid;
  gap: 1rem;
}

.cards--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
  padding: 1.35rem 1.15rem 1.45rem;
  border-radius: var(--radius);
  background: rgba(255, 252, 248, 0.82);
  border: 1px solid rgba(36, 28, 22, 0.08);
  box-shadow: 0 10px 28px rgba(70, 45, 25, 0.05);
  backdrop-filter: blur(4px);
}

.card__icon {
  width: 2.85rem;
  height: 2.85rem;
  color: var(--gold-deep);
  margin-bottom: 0.95rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(246, 217, 168, 0.45), rgba(246, 217, 168, 0) 58%),
    rgba(184, 146, 106, 0.1);
  box-shadow: inset 0 0 0 1px rgba(184, 146, 106, 0.22);
}

.card__icon svg {
  width: 1.55rem;
  height: 1.55rem;
  overflow: visible;
}

.card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.15;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* Stats */
.section--stats {
  background:
    radial-gradient(700px 380px at 80% 20%, rgba(215, 178, 128, 0.14), transparent 65%),
    linear-gradient(180deg, #383028, #2f261f);
}

.stats-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.5rem;
  align-items: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat {
  padding: 1.5rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(240, 215, 176, 0.1), rgba(255,255,255,0.02));
}

.stat__value {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.stat__label {
  margin: 0.7rem 0 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.globe {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
}

.globe__img {
  width: min(280px, 78%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(240, 215, 176, 0.25),
    0 0 60px rgba(215, 178, 128, 0.28);
}

.globe__orb {
  width: min(260px, 70%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(240, 215, 176, 0.55), transparent 28%),
    radial-gradient(circle at 60% 55%, #6f8f86, #2f4a45 55%, #1c2a27 80%);
  box-shadow:
    0 0 0 1px rgba(240, 215, 176, 0.25),
    0 0 60px rgba(215, 178, 128, 0.25),
    inset -20px -30px 50px rgba(0,0,0,0.35);
}

.script--globe {
  position: absolute;
  bottom: 8%;
  font-size: 1.8rem;
  text-align: center;
}

/* Process */
.section--process {
  background: linear-gradient(180deg, #f6eee5, #ebe0d2);
  color: var(--ink);
}

.section--process .section__sub { color: var(--ink-soft); }

.process-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 1.4rem;
  align-items: stretch;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.timeline__item {
  padding: 1.4rem 1.2rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255,252,248,0.78);
  border: 1px solid var(--line-dark);
}

.timeline__num {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--gold-deep);
  line-height: 1;
}

.timeline__item h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
}

.timeline__item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.polaroid {
  margin: 0;
  padding: 0.85rem 0.85rem 1.2rem;
  background: #fffaf4;
  border-radius: 12px;
  box-shadow: var(--shadow);
  align-self: center;
  transform: rotate(2.5deg);
}

.polaroid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
}

.polaroid figcaption {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.8rem;
  text-align: center;
}

.polaroid .script {
  font-size: 1.7rem;
  color: #c4928c;
}

.polaroid figcaption span:last-child {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* Testimonials */
.section--testimonials {
  position: relative;
  overflow: hidden;
  color: var(--text);
}

.testimonials__bg {
  position: absolute;
  inset: 0;
}

.testimonials__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.testimonials__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(34, 26, 20, 0.72), rgba(34, 26, 20, 0.82)),
    linear-gradient(90deg, rgba(44, 36, 30, 0.55), transparent 55%);
}

.script--stories {
  position: absolute;
  right: 8%;
  top: 18%;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #f3d9b8;
  z-index: 1;
}

.section--testimonials .container { position: relative; z-index: 1; }

.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quote {
  margin: 0;
  padding: 1.55rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(240, 215, 176, 0.28);
  background: rgba(255, 248, 240, 0.1);
  backdrop-filter: blur(8px);
}

.stars {
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}

.quote p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.35;
  font-style: italic;
}

.quote footer {
  margin-top: 1.1rem;
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

/* FAQ */
.section--faq {
  background: linear-gradient(180deg, #f6eee5, #efe4d6);
  color: var(--ink);
}

.section--faq .section__sub { color: var(--ink-soft); }

.script--faq {
  margin-top: 0.9rem;
  font-size: 2rem;
  color: #c4928c;
}

.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
}

.faq__item {
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255, 252, 248, 0.82);
  padding: 0.1rem 1rem;
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 1rem;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--gold-deep);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
}

.faq__item[open] summary::after { content: "–"; }

.faq__item p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  padding-right: 1.2rem;
}

/* Apply */
.section--apply {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.apply__media {
  position: absolute;
  inset: 0;
}

.apply__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.apply__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34, 26, 20, 0.78) 0%, rgba(34, 26, 20, 0.55) 48%, rgba(34, 26, 20, 0.35) 100%),
    linear-gradient(180deg, rgba(34, 26, 20, 0.35), rgba(34, 26, 20, 0.65));
}

.script--apply {
  position: absolute;
  right: 8%;
  top: 18%;
  z-index: 1;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #f4dfc0;
}

.apply {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.apply .section__head {
  margin-bottom: 0;
  position: sticky;
  top: calc(var(--header) + 1rem);
}

.form {
  position: relative;
  padding: clamp(1.25rem, 3vw, 1.9rem);
  border-radius: 22px;
  border: 1px solid rgba(240, 215, 176, 0.28);
  background: rgba(255, 248, 240, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.field { display: grid; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.field span {
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--text-soft);
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(240, 215, 176, 0.28);
  background: rgba(20, 14, 10, 0.35);
  color: var(--text);
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); }

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(215, 178, 128, 0.18);
}

.field.is-invalid input,
.field.is-invalid textarea { border-color: #d48a7a; }

.form__note {
  margin: 0.9rem 0 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.form__status {
  min-height: 1.35rem;
  margin: 0.65rem 0 0;
  text-align: center;
  font-size: 0.92rem;
}
.form__status.is-success { color: var(--gold-light); }
.form__status.is-error { color: #e2a598; }

/* Footer */
.footer {
  background: #1c1612;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.4rem;
  padding-bottom: 1.6rem;
}

.footer__motto {
  margin: 0.9rem 0 0;
  font-family: var(--script);
  font-size: 1.6rem;
  color: var(--gold-light);
}

.footer__links {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.footer__links a {
  color: var(--text-soft);
  font-size: 0.92rem;
}
.footer__links a:hover { color: var(--gold-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(240, 215, 176, 0.12);
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* Cookie banner */
.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 1rem;
  pointer-events: none;
}

.cookie[hidden] { display: none !important; }

.cookie__inner {
  pointer-events: auto;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(240, 215, 176, 0.28);
  background: rgba(36, 28, 22, 0.94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.cookie__text {
  margin: 0;
  color: #f3e7d8;
  font-size: 0.9rem;
  line-height: 1.45;
}

.cookie__text a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie__btn {
  flex: 0 0 auto;
  min-height: 2.4rem;
  padding-inline: 1.1rem;
  font-size: 0.86rem;
}

/* Legal pages */
.legal-page {
  background: #1c1612;
}

.legal {
  padding: calc(var(--header) + 2.5rem) 0 4rem;
}

.legal__wrap {
  max-width: 46rem;
  color: #f3e7d8;
}

.legal__eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 215, 176, 0.7);
}

.legal h1 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #fffaf3;
}

.legal__updated {
  margin: 0 0 1.4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal__note {
  padding: 0.95rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(240, 215, 176, 0.2);
  background: rgba(255, 248, 240, 0.06);
  color: #e8d8c4;
}

.legal h2 {
  margin: 1.8rem 0 0.7rem;
  font-family: var(--display);
  font-size: 1.45rem;
  color: #f6e2c4;
}

.legal p,
.legal li {
  line-height: 1.7;
  color: #e8d8c4;
}

.legal ul {
  padding-left: 1.2rem;
}

.legal a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal__back {
  margin-top: 2.4rem;
}

.legal-page .header__inner {
  grid-template-columns: 1fr auto;
}

@media (max-width: 700px) {
  .cookie__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie__btn { width: 100%; }
}


/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0s);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .cards--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .benefits__bg {
    object-position: 72% center;
    opacity: 0.92;
  }

  .section--benefits .section__head {
    max-width: 100%;
  }
  .stats-layout,
  .process-layout,
  .apply { grid-template-columns: 1fr; }
  .apply .section__head { position: static; }
  .polaroid { max-width: 320px; margin-inline: auto; }
  .script--stories,
  .script--apply { display: none; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: var(--header) 0 auto 0;
    display: grid;
    gap: 0;
    background: rgba(52, 40, 32, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 0.35rem 1.25rem 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
  }
  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(240, 215, 176, 0.12);
    font-size: 1rem;
    color: #f4e7d8;
  }
  .burger { display: inline-block; }
  .header__cta { display: none; }
  .header__inner { grid-template-columns: 1fr auto; }

  .hero {
    min-height: min(100svh, 760px);
    align-items: flex-end;
    padding: 5.5rem 0 1.8rem;
  }

  .hero__content {
    max-width: none;
    width: 100%;
  }

  .hero__perks {
    flex-wrap: wrap;
    gap: 0.75rem 1.1rem;
  }

  .hero__media img {
    object-position: 70% center;
  }

  .quotes { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header: 68px; }
  body { font-size: 16px; }
  .container,
  .header__inner { width: min(100% - 1.4rem, var(--container)); }

  .hero__title { font-size: clamp(2.45rem, 11vw, 3.2rem); }
  .hero__lead { font-size: 1.05rem; }
  .hero__perks {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }
  .stats,
  .form__grid,
  .footer__grid,
  .cards--5 { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .section__head h2 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .quote p { font-size: 1.28rem; }
}

@media (max-width: 390px) {
  .hero__title { font-size: 2.35rem; }
  .script--hero { font-size: 1.55rem; }
  .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
