:root {
  --sea-deep: #15100c;
  --sea: #1e1712;
  --sea-soft: #2e221a;
  --gold: #c87444;
  --gold-light: #dc8f5d;
  --gold-deep: #8d4a26;
  --sand: #c9ad8b;
  --ivory: #f4eee6;
  --wood: #8a5a2f;
  --wood-light: #b07444;
  --graphite: #110c08;
  --muted: rgba(244, 238, 230, .72);
  --line: rgba(201, 173, 139, .14);
  --shadow: 0 28px 80px rgba(0, 0, 0, .42);
  --shadow-gold: 0 18px 48px rgba(200, 116, 68, .3);
  --shell-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ivory);
  background:
    radial-gradient(ellipse at 15% -5%, rgba(200, 116, 68, .2), transparent 32rem),
    radial-gradient(ellipse at 95% 5%, rgba(70, 42, 26, .55), transparent 38rem),
    radial-gradient(ellipse at 50% 100%, rgba(138, 90, 47, .14), transparent 40rem),
    linear-gradient(180deg, #1a130d 0%, var(--sea-deep) 45%, #100b07 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.section-shell {
  width: min(var(--shell-width), calc(100% - 40px));
  margin: 0 auto;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px max(20px, calc((100vw - var(--shell-width)) / 2));
  background: rgba(26, 19, 13, .82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.brand-logo {
  height: 46px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(200, 116, 68, .35));
}

.nav { display: flex; align-items: center; gap: 28px; font-size: 14px; }
.nav-desktop a {
  position: relative;
  color: rgba(244, 238, 230, .78);
  font-weight: 600;
  letter-spacing: .02em;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-desktop a:hover { color: var(--ivory); }
.nav-desktop a:hover::after { width: 100%; }

.nav-cta {
  border: 0;
  color: #15110d;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: 13.5px;
  box-shadow: 0 10px 28px rgba(200, 116, 68, .35), inset 0 1px 0 rgba(255, 255, 255, .35);
  transition: transform .18s ease, box-shadow .18s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(200, 116, 68, .45), inset 0 1px 0 rgba(255, 255, 255, .4);
}

/* hamburger */
.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: rgba(201, 173, 139, .08);
  border: 1px solid rgba(201, 173, 139, .22);
  border-radius: 12px;
  padding: 0;
}
.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* offcanvas */
.offcanvas-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 8, 5, .65);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 70;
  transition: opacity .25s ease, visibility .25s ease;
}
.offcanvas-backdrop.is-open { opacity: 1; visibility: visible; }

.offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: linear-gradient(180deg, #221812 0%, #110b07 100%);
  border-left: 1px solid var(--line);
  box-shadow: -28px 0 80px rgba(0, 0, 0, .5);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  z-index: 80;
  display: flex;
  flex-direction: column;
  padding: 22px 26px 32px;
}
.offcanvas.is-open { transform: translateX(0); }

.offcanvas-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.offcanvas-logo {
  height: 84px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(200, 116, 68, .4));
}
.offcanvas-close {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ivory);
  font-size: 28px;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  padding: 0;
  display: grid;
  place-items: center;
}

.offcanvas-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.offcanvas-nav a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ivory);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 173, 139, .08);
  letter-spacing: -.005em;
  transition: color .2s ease, padding-left .2s ease;
}
.offcanvas-nav a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.offcanvas-cta {
  width: 100%;
  margin-top: auto;
  margin-bottom: 14px;
}
.offcanvas-note {
  margin: 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
}
.eyebrow,
.card-kicker,
.step-count,
.series-card > span,
.footer-col h4,
.offcanvas-note {
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold) !important;
  background: none !important;
  background-clip: initial !important;
  -webkit-background-clip: initial !important;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: .96;
  margin: 0;
}
h1 { font-size: clamp(48px, 6.8vw, 88px); max-width: 860px; letter-spacing: -.035em; }
h2 { font-size: clamp(38px, 4.8vw, 64px); letter-spacing: -.03em; }
h3 { font-size: clamp(24px, 2.6vw, 34px); line-height: 1.05; }
h4 { font-size: 16px; letter-spacing: .04em; }

/* ============ HERO ============ */
.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(56px, 8vw, 100px) 0 80px;
}

.hero-copy { min-width: 0; }
.hero-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(244, 238, 230, .82);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.75;
}

.hero-actions, .step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ============ BUTTONS ============ */
.btn {
  border: 0;
  border-radius: 999px;
  padding: 15px 26px;
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  color: #15110d;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  box-shadow: 0 14px 36px rgba(200, 116, 68, .38), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.btn-primary:hover {
  box-shadow: 0 18px 44px rgba(200, 116, 68, .5), inset 0 1px 0 rgba(255, 255, 255, .4);
}
.btn-primary:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.btn-ghost {
  color: var(--ivory);
  background: transparent;
  border: 1px solid rgba(201, 173, 139, .3);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-soft {
  color: var(--ivory);
  background: rgba(201, 173, 139, .1);
  border: 1px solid rgba(201, 173, 139, .22);
}
.btn-soft:hover { background: rgba(201, 173, 139, .16); border-color: rgba(201, 173, 139, .4); }

.section-cta { margin-top: 26px; }

.microcopy { margin-top: 20px; color: rgba(244, 238, 230, .55); font-size: 13.5px; letter-spacing: .02em; }

/* ============ HERO CARD ============ */
.hero-card {
  position: relative;
  width: 100%;
  border: 1px solid rgba(201, 173, 139, .22);
  border-radius: 32px;
  background:
    linear-gradient(160deg, rgba(244, 238, 230, .09), rgba(244, 238, 230, .015)),
    radial-gradient(circle at 70% 20%, rgba(200, 116, 68, .22), transparent 16rem),
    rgba(26, 19, 13, .78);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 173, 139, .12);
  border-radius: 22px;
  pointer-events: none;
}
.hero-card-inner {
  position: relative;
  padding: clamp(32px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
}
.hero-card-icon-wrap {
  width: 100%;
  max-width: 320px;
  padding: 18px 22px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background:
    radial-gradient(ellipse at center, rgba(244, 238, 230, .08), transparent 70%),
    rgba(244, 238, 230, .035);
  border: 1px solid rgba(201, 173, 139, .14);
}
.hero-card-icon {
  width: 100%;
  height: auto;
  max-height: 130px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .45));
}
.hero-card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 800;
}
.hero-card h2 { font-size: clamp(32px, 3.4vw, 44px); }
.hero-card-text {
  color: rgba(244, 238, 230, .78);
  line-height: 1.7;
  margin: 16px 0 0;
  font-size: 15.5px;
  max-width: 380px;
}
.card-note {
  margin-top: 24px;
  color: rgba(244, 238, 230, .85);
  background: rgba(200, 116, 68, .1);
  border: 1px solid rgba(200, 116, 68, .22);
  border-radius: 16px;
  padding: 13px 16px;
  line-height: 1.55;
  font-size: 13.5px;
  width: 100%;
}

/* ============ SECTIONS ============ */
.content-section, .series-section, .config-section, .faq-section { padding: 84px 0; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.two-col p, .section-heading p {
  color: rgba(244, 238, 230, .76);
  line-height: 1.85;
  font-size: 16px;
}
.text-card, .configurator, .series-card, .faq-item {
  border: 1px solid rgba(201, 173, 139, .14);
  background: rgba(244, 238, 230, .04);
  border-radius: 26px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .16);
}
.text-card { padding: clamp(26px, 3.5vw, 38px); }
.text-card p { color: rgba(244, 238, 230, .76); line-height: 1.85; margin: 14px 0 0; }
.text-card p:first-of-type { margin-top: 18px; }
.text-card .btn { margin-top: 26px; }
.wood-card {
  background:
    linear-gradient(145deg, rgba(122, 82, 48, .25), rgba(244, 238, 230, .04));
  border-color: rgba(200, 116, 68, .22);
}

.section-heading { max-width: 780px; margin: 0 0 38px; }
.faq-section .section-heading { max-width: 100%; }
.series-section .section-heading { max-width: 100%; }
.series-section .section-heading > h2,
.series-section .section-heading > p:not(.series-card-custom):not(.eyebrow) { max-width: 860px; }
.series-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.series-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  background:
    linear-gradient(120deg, rgba(46, 32, 22, .85) 0%, rgba(30, 23, 18, .65) 60%, rgba(30, 23, 18, .2) 100%),
    rgba(26, 19, 13, .55);
}
.series-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 116, 68, .35);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .42);
}
.series-card-info {
  padding: clamp(20px, 2.2vw, 30px) clamp(22px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.series-card-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ivory);
  margin: 0;
}
.series-card-sub {
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold) !important;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
  margin: 0;
}
.series-card-text {
  color: rgba(244, 238, 230, .76);
  line-height: 1.55;
  margin: 4px 0 0;
  font-size: 14px;
  max-width: 480px;
}
.series-card-custom {
  margin: 22px 0 0;
  padding: 16px 22px;
  background: rgba(200, 116, 68, .08);
  border-left: 2px solid var(--gold);
  border-radius: 0 12px 12px 0;
  color: rgba(244, 238, 230, .82);
  font-size: 14.5px;
  line-height: 1.7;
  width: 100%;
  max-width: 100%;
}
.series-card-custom-label {
  display: inline-block;
  margin-right: 6px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
}
.series-card-specs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(201, 173, 139, .14);
  border-radius: 10px;
  min-width: 0;
}
.spec-label {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.spec-value {
  color: var(--ivory);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.005em;
}
.series-card-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #131313 0%, #0a0a0a 100%);
  min-height: 100%;
}
.series-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30, 23, 18, .85) 0%, rgba(30, 23, 18, 0) 28%);
  z-index: 1;
  pointer-events: none;
}
.series-card-image img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 130%;
  width: auto;
  max-width: none;
  object-fit: cover;
  object-position: right center;
  display: block;
  transition: transform .5s ease, height .5s ease;
  z-index: 0;
}
.series-card:hover .series-card-image img { transform: translateY(-50%) scale(1.03); }
.center-cta { margin-top: 32px; display: flex; justify-content: center; }

/* ============ FAQ ============ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin: 0;
}
.faq-item {
  padding: 0;
  overflow: hidden;
  transition: border-color .25s ease, background .25s ease;
}
.faq-item.is-open {
  border-color: rgba(200, 116, 68, .35);
  background: rgba(244, 238, 230, .055);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: transparent;
  border: 0;
  color: var(--ivory);
  text-align: left;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 600;
  letter-spacing: -.005em;
  line-height: 1.25;
}
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201, 173, 139, .3);
  border-radius: 50%;
  transition: background .25s ease, border-color .25s ease, transform .3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
  border-radius: 1px;
  transition: transform .3s ease;
}
.faq-icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-item.is-open .faq-icon { background: rgba(200, 116, 68, .12); border-color: rgba(200, 116, 68, .5); }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.is-open .faq-answer { max-height: 400px; }
.faq-answer p {
  margin: 0;
  padding: 0 26px 24px;
  color: rgba(244, 238, 230, .76);
  line-height: 1.8;
  font-size: 15.5px;
}

/* ============ CONFIGURATOR ============ */
.config-section { padding: 84px 0 100px; }
.config-shell {
  width: 100%;
  max-width: 100%;
  padding: 0 max(20px, calc((100vw - var(--shell-width)) / 2));
}
.config-shell .section-heading { max-width: 100%; margin-left: 0; margin-right: 0; }

.configurator {
  width: 100%;
  max-width: none;
  padding: clamp(28px, 4vw, 48px);
}
.progress { height: 6px; background: rgba(244, 238, 230, .08); border-radius: 999px; overflow: hidden; margin-bottom: 32px; }
.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-deep));
  border-radius: inherit;
  transition: width .3s ease;
}
.step-count {
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin: 0 0 14px;
}
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.option-card {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  color: var(--ivory);
  background: rgba(26, 19, 13, .52);
  border: 1px solid rgba(244, 238, 230, .12);
  border-radius: 16px;
  padding: 18px 20px;
  min-height: 78px;
  font-weight: 600;
  transition: border-color .2s ease, background .2s ease, transform .15s ease;
}
.option-card:hover { border-color: rgba(200, 116, 68, .4); transform: translateY(-1px); }
.option-card.is-selected {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(200, 116, 68, .18), rgba(200, 116, 68, .06));
  box-shadow: inset 0 0 0 1px rgba(200, 116, 68, .5);
}
.option-label { flex: 1; }
.option-check {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(201, 173, 139, .35);
  border-radius: 6px;
  background: rgba(26, 19, 13, .4);
  transition: background .2s ease, border-color .2s ease;
}
.option-card.is-selected .option-check {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  border-color: var(--gold);
}
.option-card.is-selected .option-check::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid #1a120a;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.step-hint {
  margin: 12px 0 0;
  color: rgba(244, 238, 230, .6);
  font-size: 13.5px;
  font-style: italic;
  letter-spacing: .01em;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(244, 238, 230, .82);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .02em;
  margin-top: 16px;
}
.contact-form label.full { width: 100%; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(244, 238, 230, .14);
  background: rgba(26, 19, 13, .58);
  color: var(--ivory);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
  font-weight: 500;
  transition: border-color .2s ease, background .2s ease;
}
input:focus, textarea:focus {
  border-color: var(--gold);
  background: rgba(26, 19, 13, .72);
  box-shadow: 0 0 0 3px rgba(200, 116, 68, .12);
}
textarea { resize: vertical; min-height: 140px; }

.summary-box {
  margin-top: 22px;
  background: rgba(0, 0, 0, .2);
  border: 1px solid rgba(244, 238, 230, .08);
  border-radius: 16px;
  padding: 18px;
  overflow: auto;
}
.summary-box pre { margin: 0; color: rgba(244, 238, 230, .76); white-space: pre-wrap; font-family: 'Manrope', sans-serif; line-height: 1.65; font-size: 13.5px; }
.turnstile-box {
  margin-top: 20px;
  min-height: 65px;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
}
.turnstile-box > div { width: 100% !important; max-width: 100% !important; }
.turnstile-box iframe { display: block; width: 100% !important; max-width: 100% !important; }

@media (max-width: 380px) {
  .turnstile-box {
    transform-origin: top left;
    transform: scale(.88);
    width: 113.6%;
    margin-bottom: -10px;
  }
}

/* ============ PRIVACY CHECKBOX ============ */
.privacy-check {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px !important;
  margin-top: 22px !important;
  cursor: pointer;
  padding: 14px 16px;
  background: rgba(244, 238, 230, .04);
  border: 1px solid rgba(201, 173, 139, .14);
  border-radius: 14px;
  transition: border-color .2s ease, background .2s ease;
}
.privacy-check:hover { border-color: rgba(200, 116, 68, .35); }
.privacy-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0; height: 0;
}
.privacy-check-box {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border: 1.5px solid rgba(201, 173, 139, .35);
  border-radius: 6px;
  background: rgba(26, 19, 13, .55);
  transition: background .2s ease, border-color .2s ease;
}
.privacy-check input:checked + .privacy-check-box {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  border-color: var(--gold);
}
.privacy-check input:checked + .privacy-check-box::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid #1a120a;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.privacy-check-text {
  color: rgba(244, 238, 230, .82);
  font-size: 13.5px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0;
}
.privacy-check-text a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.privacy-check-text a:hover { color: var(--gold); }

/* ============ TOAST POPUP ============ */
.toast {
  position: fixed;
  top: 88px;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  z-index: 220;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px 16px 20px;
  width: min(560px, calc(100vw - 24px));
  background: linear-gradient(180deg, rgba(34, 26, 20, .98), rgba(18, 12, 8, .98));
  border: 1px solid rgba(201, 173, 139, .22);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: toast-in .35s cubic-bezier(.34, 1.4, .64, 1) forwards;
}
@keyframes toast-in {
  to { transform: translateX(-50%) translateY(0); }
}
.toast-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
}
.toast-success { border-color: rgba(83, 137, 97, .5); }
.toast-success .toast-icon { background: linear-gradient(135deg, #4d9c66, #2d6e44); color: #fff; }
.toast-error { border-color: rgba(175, 60, 48, .55); }
.toast-error .toast-icon { background: linear-gradient(135deg, #d05c4a, #a3322a); color: #fff; }
.toast-message {
  flex: 1;
  margin: 0;
  color: var(--ivory);
  font-size: 14.5px;
  line-height: 1.5;
  font-weight: 500;
}
.toast-close {
  flex-shrink: 0;
  background: transparent;
  border: 0;
  color: rgba(244, 238, 230, .6);
  font-size: 24px;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 0;
  transition: color .2s ease, background .2s ease;
}
.toast-close:hover { color: var(--ivory); background: rgba(244, 238, 230, .08); }
@media (max-width: 640px) {
  .toast { top: 76px; padding: 14px 14px 14px 16px; gap: 10px; }
  .toast-message { font-size: 13.5px; }
  .toast-icon { width: 28px; height: 28px; font-size: 14px; }
}

/* ============ FOOTER ============ */
.footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 14, 9, .5) 0%, rgba(12, 8, 5, .85) 100%);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: clamp(28px, 5vw, 60px);
  padding: 60px 20px 50px;
}
.footer-brand { max-width: 360px; }
.footer-logo {
  width: 180px;
  height: auto;
  display: block;
  margin-bottom: 18px;
  filter: drop-shadow(0 6px 18px rgba(200, 116, 68, .25));
}
.footer-tagline { color: rgba(244, 238, 230, .62); line-height: 1.7; margin: 0; font-size: 14.5px; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer-col a, .footer-static {
  color: rgba(244, 238, 230, .7);
  font-size: 14.5px;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-whatsapp {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  color: #5be88a !important;
  font-weight: 600;
  transition: color .2s ease, transform .2s ease;
}
.footer-whatsapp:hover { color: #25d366 !important; transform: translateX(2px); }
.footer-whatsapp-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #25d366;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path fill='%23fff' d='M19.11 17.45c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.96-.95 1.16-.17.2-.35.22-.65.07-.3-.15-1.26-.46-2.4-1.48-.89-.79-1.49-1.77-1.66-2.07-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.18.2-.3.3-.5.1-.2.05-.37-.02-.52-.07-.15-.67-1.62-.92-2.22-.24-.58-.49-.5-.67-.51l-.57-.01c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.49 0 1.47 1.06 2.89 1.21 3.09.15.2 2.08 3.18 5.05 4.46.71.31 1.26.49 1.68.62.71.23 1.35.2 1.86.12.57-.08 1.76-.72 2.01-1.42.25-.7.25-1.29.17-1.42-.07-.13-.27-.2-.57-.35zM16.02 4.5C9.7 4.5 4.55 9.65 4.55 15.97c0 2.02.53 4 1.54 5.74L4.5 27.5l5.97-1.57a11.42 11.42 0 0 0 5.55 1.42h.01c6.32 0 11.47-5.15 11.47-11.47 0-3.06-1.19-5.94-3.36-8.11A11.4 11.4 0 0 0 16.02 4.5zm0 21a9.52 9.52 0 0 1-4.86-1.33l-.35-.21-3.55.93.95-3.46-.23-.36a9.52 9.52 0 0 1-1.46-5.1c0-5.26 4.28-9.53 9.53-9.53a9.5 9.5 0 0 1 6.74 2.79 9.5 9.5 0 0 1 2.79 6.74c0 5.25-4.28 9.53-9.53 9.53z'/></svg>");
  background-size: 22px 22px;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, .45), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.footer-bar {
  border-top: 1px solid var(--line);
  background: rgba(12, 8, 5, .7);
}
.footer-bar-inner {
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-bar p {
  margin: 0;
  color: rgba(244, 238, 230, .55);
  font-size: 13px;
  letter-spacing: .02em;
}
.footer-bar-meta { color: rgba(244, 238, 230, .45) !important; display: inline-flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.footer-bar-meta a, .footer-bar-meta .link-btn { color: rgba(244, 238, 230, .65); transition: color .2s ease; }
.footer-bar-meta a:hover, .footer-bar-meta .link-btn:hover { color: var(--gold-light); }
.link-btn {
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

/* ============ LEGAL PAGES ============ */
.legal-header { position: relative; }
.legal-page {
  padding: 60px 0 100px;
  max-width: 900px;
}
.legal-page h1 {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0 0 14px;
}
.legal-updated {
  color: rgba(244, 238, 230, .55);
  font-size: 14px;
  margin: 0 0 50px;
  letter-spacing: .04em;
}
.legal-section { margin-bottom: 44px; }
.legal-section h2 {
  font-size: clamp(24px, 2.4vw, 30px);
  color: var(--ivory);
  margin: 0 0 16px;
  letter-spacing: -.01em;
}
.legal-section h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--gold);
  margin: 0 0 8px;
  text-transform: uppercase;
}
.legal-section p, .legal-section li {
  color: rgba(244, 238, 230, .78);
  line-height: 1.8;
  font-size: 15.5px;
}
.legal-section p { margin: 0 0 14px; }
.legal-section ul { padding-left: 22px; margin: 0 0 14px; }
.legal-section li { margin-bottom: 8px; }
.legal-section a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(200, 116, 68, .4);
  transition: color .2s ease;
}
.legal-section a:hover { color: var(--gold); text-decoration-color: var(--gold); }
.legal-section strong { color: var(--ivory); font-weight: 700; }

.legal-card {
  border: 1px solid rgba(201, 173, 139, .16);
  background: rgba(244, 238, 230, .04);
  border-radius: 18px;
  padding: 22px 24px;
  margin-bottom: 16px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 13.5px;
}
.legal-table th, .legal-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(201, 173, 139, .12);
  color: rgba(244, 238, 230, .78);
  vertical-align: top;
}
.legal-table th {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  border-bottom-color: rgba(200, 116, 68, .3);
}
.legal-table tr:last-child td { border-bottom: 0; }

/* ============ CONSENT BANNER ============ */
.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  background: linear-gradient(180deg, rgba(34, 26, 20, .98), rgba(18, 12, 8, .98));
  border: 1px solid rgba(201, 173, 139, .22);
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .25s ease;
  max-width: 920px;
  margin: 0 auto;
}
.consent-banner.is-visible { transform: translateY(0); opacity: 1; }
.consent-banner-inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px 26px;
}
.consent-banner-text h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  margin: 0 0 6px;
}
.consent-banner-text p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(244, 238, 230, .76);
}
.consent-banner-text a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.consent-banner-actions .btn { min-height: 44px; padding: 11px 18px; font-size: 13.5px; }

/* ============ CONSENT MODAL ============ */
.consent-modal-wrap {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.consent-modal-wrap.is-open { display: flex; }
.consent-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 7, 4, .72);
  backdrop-filter: blur(6px);
}
.consent-modal {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 40px);
  background: linear-gradient(180deg, #221812 0%, #110b07 100%);
  border: 1px solid rgba(201, 173, 139, .2);
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.consent-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.consent-modal-head h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  margin: 0;
}
.consent-modal-close {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ivory);
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  padding: 0;
  display: grid;
  place-items: center;
  line-height: 1;
}
.consent-modal-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1;
}
.consent-intro {
  margin: 0 0 16px;
  font-size: 14px;
  color: rgba(244, 238, 230, .72);
  line-height: 1.6;
}
.consent-intro a { color: var(--gold-light); text-decoration: underline; }

.consent-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(201, 173, 139, .1);
  cursor: pointer;
}
.consent-row:last-child { border-bottom: 1px solid rgba(201, 173, 139, .1); }
.consent-row > div { display: flex; flex-direction: column; gap: 4px; }
.consent-row-title { color: var(--ivory); font-weight: 800; font-size: 14.5px; }
.consent-row-desc { color: rgba(244, 238, 230, .65); font-size: 13px; line-height: 1.55; }

.consent-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0; height: 0;
}
.consent-toggle {
  position: relative;
  width: 44px;
  height: 26px;
  border-radius: 999px;
  background: rgba(244, 238, 230, .12);
  border: 1px solid rgba(201, 173, 139, .2);
  transition: background .2s ease, border-color .2s ease;
  flex-shrink: 0;
}
.consent-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ivory);
  transition: transform .2s ease, background .2s ease;
}
.consent-check:checked + .consent-toggle,
.consent-toggle.is-on {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-color: var(--gold);
}
.consent-check:checked + .consent-toggle::after,
.consent-toggle.is-on::after { transform: translateX(18px); background: #fff; }
.consent-toggle.is-locked { opacity: .7; cursor: not-allowed; }
.consent-row-locked { cursor: default; }

.consent-modal-actions {
  display: flex;
  gap: 10px;
  padding: 18px 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  justify-content: flex-end;
  background: rgba(11, 7, 4, .35);
}
.consent-modal-actions .btn { min-height: 44px; padding: 11px 18px; font-size: 13.5px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: inline-block; }
  .site-header { padding: 12px 18px; }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 40px 0 56px;
    gap: 32px;
  }
  h1 { font-size: clamp(42px, 8vw, 64px); }
  h2 { font-size: clamp(34px, 5.5vw, 48px); }

  .hero-card-icon-wrap { max-width: 280px; }
  .hero-card-icon { max-height: 110px; }

  .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .two-col.reverse > *:first-child { order: 2; }
  .two-col.reverse > *:last-child { order: 1; }

  .series-card { grid-template-columns: 1fr; }
  .series-card-image {
    order: -1;
    position: relative;
    height: auto;
    min-height: 0;
    background: transparent;
    line-height: 0;
  }
  .series-card-image::before { display: none; }
  .series-card-image img {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: unset;
    object-position: center;
    display: block;
  }
  .series-card:hover .series-card-image img { transform: none; }
  .options-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-main { grid-template-columns: 1fr; padding: 50px 20px 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section-shell { width: min(100% - 26px, var(--shell-width)); }
  .site-header { padding: 12px 16px; }
  .brand-logo { height: 38px; max-width: 170px; }

  .hero { padding: 30px 0 48px; }
  h1 { font-size: 42px; line-height: 1; }
  h2 { font-size: 34px; }
  .hero-lead { font-size: 15.5px; line-height: 1.65; }
  .hero-actions, .step-actions { flex-direction: column; }
  .btn { width: 100%; }

  .hero-card-inner { padding: 28px 22px; gap: 22px; }
  .hero-card-icon-wrap { max-width: 240px; padding: 14px 18px; }
  .hero-card-icon { max-height: 90px; }
  .hero-card h2 { font-size: 30px; }
  .card-kicker { font-size: 10.5px; letter-spacing: .18em; }

  .content-section, .series-section, .config-section, .faq-section { padding: 56px 0; }
  .text-card, .configurator, .series-card { border-radius: 22px; }
  .text-card { padding: 24px 22px; }
  .series-card-info { padding: 24px 22px; gap: 12px; }
  .series-card-name { font-size: 38px; }
  .series-card-specs { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .spec { padding: 10px 11px; }
  .spec-value { font-size: 17px; }
  .spec-label { font-size: 10px; letter-spacing: .14em; }
  .options-grid { grid-template-columns: 1fr; }
  .contact-form .form-grid { grid-template-columns: 1fr; }

  .faq-question { padding: 18px 20px; font-size: 18px; gap: 12px; }
  .faq-icon { width: 28px; height: 28px; }
  .faq-icon::before { width: 10px; }
  .faq-icon::after { height: 10px; }
  .faq-answer p { padding: 0 20px 20px; font-size: 15px; }

  .footer-main { padding: 40px 18px 32px; }
  .footer-cols { grid-template-columns: 1fr; gap: 20px; }
  .footer-logo { width: 150px; }
  .footer-bar-inner { padding: 16px 18px; justify-content: center; text-align: center; }

  .consent-banner { left: 10px; right: 10px; bottom: 10px; border-radius: 20px; }
  .consent-banner-inner { grid-template-columns: 1fr; padding: 18px 20px; gap: 16px; }
  .consent-banner-text h3 { font-size: 22px; }
  .consent-banner-actions { justify-content: stretch; }
  .consent-banner-actions .btn { flex: 1; min-width: 0; }
  .consent-modal { max-height: calc(100vh - 24px); border-radius: 18px; }
  .consent-modal-head, .consent-modal-body, .consent-modal-actions { padding-left: 18px; padding-right: 18px; }
  .consent-modal-actions { flex-direction: column; }
  .consent-modal-actions .btn { width: 100%; }

  .legal-page { padding: 40px 0 70px; }
  .legal-table { font-size: 12.5px; }
  .legal-table th, .legal-table td { padding: 8px 8px; }
}
