/* =========================================================
   ТИХОЕ ЛЕТО — DAISYKNIT
   Токены: тёмный #1A1A1A · тёплый акцент #8B6F47 · апельсин #E8651A
   Фон #FAF8F5 · серый #9E9E9E · белый #FFFFFF
   ========================================================= */

:root {
  --dark: #1A1A1A;
  --warm: #8B6F47;
  --orange: #E8651A;
  --bg-light: #FAF8F5;
  --bg-cream: #FBF8F3;
  --bg-catalog: #FAFAF8;
  --gray: #9E9E9E;
  --text-secondary: #3D3D3D;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Raleway', sans-serif;

  --container: 1440px;
  --gutter: 48px;

  --spacing-xl: 80px;
  --spacing-lg: 48px;
  --spacing-md: 32px;
  --spacing-sm: 24px;
  --spacing-xs: 16px;
  --spacing-xxs: 12px;

  --ease: cubic-bezier(.22,.61,.36,1);
}
@media (max-width: 768px) { :root { --gutter: 32px; } }
@media (max-width: 560px) { :root { --gutter: 24px; } }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button {
  font-family: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
ul { list-style: none; margin: 0; padding: 0; }

.tl-main {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.tl-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Живая палитра: прогресс прокрутки (фирменный элемент) ---------- */
.palette-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  z-index: 999;
  background: linear-gradient(90deg,
    #1A1A1A 0%, #1A1A1A 20%,
    #8B6F47 20%, #8B6F47 40%,
    #E8651A 40%, #E8651A 60%,
    #9E9E9E 60%, #9E9E9E 80%,
    #FAF8F5 80%, #FAF8F5 100%);
  background-size: 500% 100%;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .08s linear;
}

/* ---------- Прячем родной header Битрикса (лендинг использует свой) ---------- */
header:not(.site-header) { display: none !important; }

/* ---------- Прячем плавающую кнопку виджета (чат/мессенджер) ---------- */
.multi_button { display: none !important; }

/* ---------- Прячем родной footer Битрикса (лендинг использует свой) ---------- */
.footer-wrapper { display: none !important; }

/* ---------- Прячем всплывающую форму виджета Popmechanic ---------- */
#popmechanic-form-60985 { display: none !important; }

/* ---------- Header ---------- */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 900;
  display: flex;
  justify-content: center;
  padding: 22px 0;
  background: rgba(250,248,245,.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: padding .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(26,26,26,.08);
}
.header-inner {
  width: 100%;
  max-width: var(--container);
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo svg {
  height: 100px;
  width: auto;
  display: block;
  margin-top: -50px;
  margin-bottom: -50px;
}
.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  opacity: .72;
  transition: opacity .2s;
}
.main-nav a:hover { opacity: 1; }
.header-cta {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 0;
  padding: 10px 20px;
  color: var(--white);
  transition: background .2s, border-color .2s;
}
.header-cta:hover { background: var(--warm); border-color: var(--warm); }

@media (max-width: 900px) {
  .main-nav { display: none; }
}
.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: .04em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn span { transition: transform .25s var(--ease); }
.btn:hover span { transform: translateX(4px); }
.btn-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--warm); border-color: var(--warm); }
.btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,.7);
  margin: 0 0 18px;
}
.eyebrow-dark { color: var(--warm); opacity: 1; }
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.1;
  margin: 0 0 22px;
  color: var(--dark);
}
.section-title-light { color: var(--white); }
.lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--dark);
  max-width: 640px;
  margin: 0 0 48px;
}
.lede-light { color: rgba(255,255,255,.82); }
.text-link {
  display: inline-block;
  margin-top: 26px;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.45;
  color: var(--warm);
  max-width: 780px;
  margin: 56px 0;
  position: relative;
  padding-left: 28px;
  border-left: 2px solid var(--warm);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   БЛОК 01 — HERO
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  filter: saturate(1.05) sepia(.08);
}
@media (max-width: 768px) {
  .hero-img { object-position: 35% top; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,.15) 0%, rgba(26,26,26,.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  transition-delay: .3s;
}
.hero-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 72px;
  line-height: 1.1;
  margin: 0 0 40px;
  text-shadow: 0 2px 30px rgba(0,0,0,.15);
}
@media (max-width: 768px) { .hero-title { font-size: 48px; } }
@media (max-width: 560px) { .hero-title { font-size: 40px; } }
.scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .85;
}
.scroll-hint span {
  width: 1px; height: 34px;
  background: var(--white);
  animation: scroll-hint-move 1.8s ease-in-out infinite;
}
@keyframes scroll-hint-move {
  0%,100% { transform: scaleY(1); opacity: .5; }
  50% { transform: scaleY(.5); opacity: 1; }
}

/* =========================================================
   БЛОК 02 — ВДОХНОВЕНИЕ
   ========================================================= */
.inspiration {
  background: var(--bg-light);
  padding: 80px 0;
  text-align: center;
}
.inspiration .eyebrow {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 3px;
  color: #9E9E9E;
  opacity: 1;
}
.inspiration .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 42px;
  color: var(--dark);
  margin: 0;
}
.inspiration-divider {
  width: 60px;
  height: 1px;
  background: #C8B89A;
  margin: 24px auto;
}
.inspiration .lede {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: #3D3D3D;
  max-width: none;
  margin: 0;
}
.painting-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0 8px;
}
.painting-card {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}
.painting-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  filter: sepia(.15) saturate(1.1);
  transition: transform .6s var(--ease);
}
.painting-card:hover img { transform: scale(1.05); }
.painting-card figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--gray);
}
.inspiration .pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: var(--warm);
  max-width: none;
  margin: 40px 0 0;
  padding-left: 0;
  border-left: none;
  text-align: center;
}
.inspiration .pull-quote cite {
  display: block;
  margin-top: 12px;
  font-family: 'Raleway', sans-serif;
  font-style: normal;
  font-size: 13px;
  color: var(--gray);
}

@media (max-width: 768px) {
  .inspiration { padding: 48px 0; }
  .inspiration .section-title { font-size: 28px; }
  .painting-gallery {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
    padding: 0 var(--gutter) 8px;
    -webkit-overflow-scrolling: touch;
  }
  .painting-card { flex: 0 0 72%; scroll-snap-align: center; }
}

/* =========================================================
   БЛОК 03 — ГЕРОИНЯ
   ========================================================= */
.heroine {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 860px;
}
.heroine-photo { position: relative; overflow: hidden; }
.heroine-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) sepia(.1);
}
.heroine-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--gutter);
  color: var(--white);
}
.heroine-eyebrow-wrap { padding-top: 64px; padding-bottom: 24px; text-align: center; }
.heroine-eyebrow-wrap .eyebrow {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 3px;
  color: #9E9E9E;
  opacity: 1;
  margin: 0;
}
.catalog .eyebrow,
.lookbook .eyebrow {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 3px;
  color: #9E9E9E;
  opacity: 1;
  text-align: center;
}
.heroine .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 38px;
  margin: 0 0 12px;
}
.heroine-kicker {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #9E9E9E;
  margin: 0 0 22px;
}
.heroine-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.85);
  max-width: 480px;
}
.heroine-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.7;
  color: var(--white);
  max-width: 480px;
  margin: 26px 0 0;
}
.heroine-quote cite {
  display: block;
  margin-top: 10px;
  font-family: 'Raleway', sans-serif;
  font-style: normal;
  font-size: 13px;
  color: #9E9E9E;
}
.heroine-content .text-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--orange);
  border-bottom-color: transparent;
  transition: border-color .2s;
}
.heroine-content .text-link:hover { border-bottom-color: currentColor; }

@media (max-width: 768px) {
  .heroine { grid-template-columns: 1fr; height: auto; }
  .heroine-photo { aspect-ratio: 4/5; }
  .heroine-content { padding: 48px var(--gutter); }
  .heroine .section-title { font-size: 26px; }
}

/* =========================================================
   БЛОК 04 — LOOK BOOK
   ========================================================= */
.lookbook { background: #FFFFFF; padding: 80px 0 24px; }
.lookbook .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 42px;
  color: var(--dark);
}
.lookbook .lede {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #9E9E9E;
}
.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.look-card {
  margin: 0;
  cursor: pointer;
}
.look-photo {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-light);
  aspect-ratio: 3/4;
}
.look-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(.1) saturate(1.05);
  transition: transform .5s var(--ease);
}
.look-card:hover .look-photo img { transform: scale(1.06); }
.look-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,26,.55);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s;
}
.look-card:hover .look-overlay { opacity: 1; }
.look-overlay-composition {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  color: var(--white);
  opacity: .9;
}
.look-add-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background: var(--dark);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.look-caption { margin-top: 12px; }
.look-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--dark);
  margin: 0;
}
.look-price {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  margin: 6px 0 0;
}
.look-view {
  display: inline-block;
  margin-top: 8px;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--orange);
}

@media (max-width: 900px) {
  .masonry { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 560px) {
  .lookbook { padding: 48px 0 24px; }
  .lookbook .section-title { font-size: 28px; }
  .masonry { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- Модальное окно сета ---------- */
.set-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  visibility: hidden; opacity: 0;
  touch-action: none;
  transition: opacity .3s var(--ease), visibility .3s;
}
.set-modal.is-open { visibility: visible; opacity: 1; }
.set-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(26,26,26,.6);
}
.set-modal-panel {
  position: relative;
  background: var(--white);
  width: min(420px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  border-radius: 6px;
  transform: translateY(20px);
  transition: transform .35s var(--ease);
}
.set-modal.is-open .set-modal-panel { transform: translateY(0); }
.set-modal-img { display: none; }
.set-modal-body { padding: 40px; }
.set-modal-body h3 { font-family: var(--font-display); font-size: 26px; margin: 0 0 20px; }
.set-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: var(--orange);
  font-size: 22px; line-height: 1; color: var(--white);
  z-index: 2;
}
.set-composition { margin-bottom: 22px; }
.set-composition li {
  display: flex; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid rgba(26,26,26,.08);
  font-size: 14px;
}
.set-composition li span:last-child { color: var(--gray); white-space: nowrap; }
.set-composition li a { color: inherit; text-decoration: none; }
.set-composition li a:hover { text-decoration: underline; }
.set-modal-total {
  display: flex; justify-content: space-between;
  font-size: 15px; font-weight: 700; margin-bottom: 22px;
}
.set-modal-total strong { white-space: nowrap; }
@media (max-width: 700px) {
  .set-modal-body { padding: 20px; }
  .set-modal-body h3 { font-size: 22px; margin: 0 0 14px; }
  .set-composition { margin-bottom: 14px; }
  .set-composition li { padding: 8px 0; }
  .set-modal-total { margin-bottom: 14px; }
}

/* ---------- Лайтбокс просмотра картины ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  visibility: hidden; opacity: 0;
  touch-action: none;
  transition: opacity .3s var(--ease), visibility .3s;
}
.lightbox.is-open { visibility: visible; opacity: 1; }
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(26,26,26,.85);
}
.lightbox-img {
  position: relative;
  max-width: 92vw; max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.12);
  color: var(--white);
  font-size: 24px; line-height: 1;
  z-index: 2;
}

/* =========================================================
   БЛОК 05 — КАТАЛОГ
   ========================================================= */
.catalog { background: var(--bg-light); padding: 24px 0 80px; }
.catalog .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 42px;
  color: var(--dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.catalog .cta-buttons { margin-top: 30px; }
.product-card {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  transition: opacity .3s, transform .3s;
}
.product-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  background: var(--white);
  margin-bottom: 10px;
}
.product-photo-link { position: absolute; inset: 0; display: block; z-index: 1; }
.product-img-main, .product-img-alt {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(.1) saturate(1.05);
  transition: opacity .4s var(--ease);
}
.product-img-alt { opacity: 0; }
.product-photo:hover .product-img-main { opacity: 0; }
.product-photo:hover .product-img-alt { opacity: 1; }
.product-hover {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: linear-gradient(0deg, rgba(26,26,26,.45) 0%, rgba(26,26,26,0) 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.product-photo:hover .product-hover { opacity: 1; pointer-events: auto; }
.product-hover-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  border-radius: 0;
  background: var(--dark);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-name-row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 4px;
}
.product-name {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.3;
  color: var(--dark);
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.product-basket-btn {
  flex-shrink: 0;
  margin-top: 2px;
  padding: 0;
  border: none;
  background: none;
  color: var(--dark);
  opacity: .4;
  cursor: pointer;
  transition: opacity .2s;
}
.product-basket-btn:hover { opacity: 1; }
.product-basket-btn[disabled] { opacity: .2; cursor: default; }
.product-basket-btn svg { display: block; width: 25px; height: 25px; }
.product-price {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  white-space: nowrap;
  margin: 0px !important;
}

@media (max-width: 560px) {
  .catalog { padding: 24px 0 48px; }
  .catalog .section-title { font-size: 28px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}

/* =========================================================
   БЛОК 07 — ФИНАЛЬНЫЙ CTA
   ========================================================= */
.final-cta {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}
.final-cta-media { position: absolute; inset: 0; }
.final-cta-img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.final-cta-overlay { position: absolute; inset: 0; background: rgba(26,26,26,.5); }
.final-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-cta .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  color: var(--white);
}
.final-cta .lede {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgba(255,255,255,.85);
}
.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.final-cta .btn {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 14px 40px;
}
.final-cta .btn-outline { border-color: var(--white); color: var(--white); }
.trust-list { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.trust-list li {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.trust-list li a { text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 560px) {
  .final-cta .section-title { font-size: 32px; }
  .final-cta .lede { font-size: 14px; }
  .cta-buttons { flex-direction: column; width: 100%; gap: 12px; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  color: var(--white);
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
