﻿:root {
  --bg: #05070d;
  --bg-soft: #0c1019;
  --bg-elev: #121826;
  --bg-deep: #03050b;
  --gold: #c7a66a;
  --gold-soft: #e1c58f;
  --gold-amber: #b68446;
  --copper: #8b5a2b;
  --silver: #d3d7de;
  --text: #f4f5f8;
  --muted: #aeb4be;
  --line: #2a3140;
  --max: 1140px;
  --radius: 16px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 32%, rgba(182, 132, 70, 0.22), transparent 34%),
    radial-gradient(circle at 84% 74%, rgba(139, 90, 43, 0.24), transparent 36%),
    linear-gradient(to bottom, transparent 0, rgba(199, 166, 106, 0.06) 50%, transparent 100%);
  opacity: 0.52;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 0.7px, transparent 0.7px);
  background-size: 3px 3px;
  opacity: 0.12;
}

::selection {
  background: rgba(225, 197, 143, 0.32);
  color: #fff;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(199, 166, 106, 0.15), transparent 38%),
    radial-gradient(circle at 90% 0%, rgba(211, 215, 222, 0.09), transparent 28%),
    linear-gradient(160deg, #05070d 10%, #080b13 45%, #0a0e17 100%);
  z-index: -1;
}

.ambient-bg::before,
.ambient-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ambient-bg::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23c7a66a' stroke-width='1.35' stroke-linecap='round'%3E%3Ccircle cx='8.5' cy='8.5' r='3.5'/%3E%3Ccircle cx='23.5' cy='8.5' r='3.5'/%3E%3Cpath d='M11 11.5L20.5 24.5'/%3E%3Cpath d='M21 11.5L11.5 24.5'/%3E%3C/svg%3E");
  background-size: 28px 28px;
  background-repeat: repeat;
  opacity: 0.095;
  mix-blend-mode: screen;
}

.ambient-bg::after {
  background:
    radial-gradient(circle at 22% 18%, rgba(199, 166, 106, 0.13), transparent 28%),
    radial-gradient(circle at 78% 78%, rgba(211, 215, 222, 0.1), transparent 22%),
    radial-gradient(circle at 50% 55%, rgba(182, 132, 70, 0.1), transparent 42%);
  animation: driftAura 18s ease-in-out infinite alternate, emberPulse 8s ease-in-out infinite;
}

h1,
h2,
h3,
.brand-mark {
  font-family: "Cinzel", serif;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 0.45em;
}

h2 {
  text-wrap: balance;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
  max-width: 72ch;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

main {
  position: relative;
}

.section {
  padding: 3.6rem 0;
}

.lux-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: radial-gradient(circle at 50% 30%, rgba(199, 166, 106, 0.18), rgba(5, 7, 13, 0.98) 55%);
  display: grid;
  place-items: center;
  transition: opacity 540ms ease, visibility 540ms ease;
}

.lux-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
  animation: loaderRise 1.15s ease both;
}

.loader-logo {
  width: clamp(112px, 18vw, 168px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.45));
}

.loader-mark {
  margin: 0;
  font-family: "Cinzel", serif;
  color: var(--gold-soft);
  font-size: clamp(2.2rem, 7vw, 4rem);
  letter-spacing: 0.15em;
}

.loader-line {
  margin: 0.4rem 0 0;
  color: var(--silver);
  letter-spacing: 0.25em;
  font-size: 0.68rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 70;
  background: rgba(255, 255, 255, 0.02);
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, rgba(227, 202, 149, 0.2), var(--gold), var(--gold-soft));
  box-shadow: 0 0 12px rgba(199, 166, 106, 0.5);
  transition: width 120ms linear;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(3, 5, 10, 0.9), rgba(5, 7, 13, 0.72));
  border-bottom: 1px solid rgba(199, 166, 106, 0.18);
  box-shadow: inset 0 -1px 0 rgba(225, 197, 143, 0.08), 0 10px 28px rgba(182, 132, 70, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.42));
}

.brand-text {
  display: grid;
  gap: 0.05rem;
  color: var(--silver);
  line-height: 1.05;
}

.brand-text strong {
  font-family: "Cinzel", serif;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--gold-soft);
}

.brand-text small {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  position: relative;
  padding-bottom: 3px;
  transition: color 170ms ease;
}

.nav a:hover,
.nav a.active {
  color: var(--gold-soft);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 46px;
  height: 42px;
  border-radius: 10px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--silver);
  margin: 5px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1.7rem;
  align-items: stretch;
  padding-top: 4.4rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(182, 132, 70, 0.16), transparent 34%),
    radial-gradient(circle at 78% 58%, rgba(225, 197, 143, 0.12), transparent 38%);
  filter: blur(2px);
}

.hero-copy {
  position: relative;
}

.hero-brand-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(225, 197, 143, 0.26);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(18, 24, 38, 0.78), rgba(10, 14, 24, 0.64));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.hero-brand-ribbon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.35));
}

.hero-brand-ribbon span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: 2%;
  top: 6%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(225, 197, 143, 0.2);
  box-shadow: inset 0 0 0 6px rgba(225, 197, 143, 0.035);
  opacity: 0.4;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(to right, rgba(225, 197, 143, 0.15), rgba(225, 197, 143, 0.9));
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  color: var(--text);
}

.hero-card,
.card,
.estimator-wrap,
.cta-band,
.contact-panel,
.info-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(18, 24, 38, 0.86), rgba(8, 12, 20, 0.78));
  border: 1px solid rgba(199, 166, 106, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 248, 234, 0.03);
  transform: perspective(900px) rotateX(var(--rx, 0)) rotateY(var(--ry, 0));
  transition: transform 280ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.hero-card::before,
.card::before,
.estimator-wrap::before,
.cta-band::before,
.contact-panel::before,
.info-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(225, 197, 143, 0.2), transparent 35%),
    linear-gradient(-60deg, rgba(211, 215, 222, 0.08), transparent 45%);
  opacity: 0.45;
}

.hero-card::after,
.card::after,
.estimator-wrap::after,
.cta-band::after,
.contact-panel::after,
.info-box::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -42%;
  width: 44%;
  height: 160%;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 230, 188, 0.18) 44%,
    rgba(182, 132, 70, 0.2) 52%,
    transparent 64%
  );
  transform: rotate(8deg);
  opacity: 0;
}

.hero-card:hover,
.card:hover,
.estimator-wrap:hover,
.cta-band:hover,
.contact-panel:hover,
.info-box:hover {
  border-color: rgba(225, 197, 143, 0.5);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 248, 234, 0.09);
}

.hero-card:hover::after,
.card:hover::after,
.estimator-wrap:hover::after,
.cta-band:hover::after,
.contact-panel:hover::after,
.info-box:hover::after {
  opacity: 1;
  animation: goldSweep 1.25s ease;
}

.hero-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-photo-frame,
.photo-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(225, 197, 143, 0.22);
  background: rgba(7, 10, 18, 0.78);
}

.hero-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-photo-frame figcaption {
  padding: 0.7rem 0.9rem 0.85rem;
  color: var(--silver);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-cta {
  display: flex;
  gap: 0.85rem;
  margin: 1.4rem 0 1.1rem;
  flex-wrap: wrap;
}

.hero-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-meta li {
  border: 1px solid rgba(211, 215, 222, 0.24);
  color: var(--silver);
  border-radius: 999px;
  padding: 0.34rem 0.75rem;
  font-size: 0.85rem;
}

.mini-note {
  border-top: 1px solid rgba(199, 166, 106, 0.25);
  margin-top: 0.2rem;
  padding-top: 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-head {
  margin-bottom: 1.2rem;
}

.section-head h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  position: relative;
  padding-bottom: 0.45rem;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(180px, 38%);
  height: 1px;
  background: linear-gradient(to right, rgba(225, 197, 143, 0.95), rgba(225, 197, 143, 0));
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat-item {
  position: relative;
  border: 1px solid rgba(225, 197, 143, 0.28);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(14, 19, 30, 0.88), rgba(8, 10, 18, 0.78));
  padding: 0.95rem;
  overflow: hidden;
}

.stat-item strong {
  font-family: "Cinzel", serif;
  color: var(--gold-soft);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  line-height: 1;
}

.stat-item span {
  display: block;
  margin-top: 0.35rem;
  color: var(--silver);
  font-size: 0.88rem;
}

.card {
  padding: 1.2rem;
}

.ornament {
  width: min(420px, 86%);
  height: 22px;
  margin: 0 auto 1rem;
  opacity: 0.7;
  background:
    radial-gradient(circle, rgba(225, 197, 143, 0.78) 2px, transparent 3px) center,
    linear-gradient(to right, transparent 0, rgba(199, 166, 106, 0.9) 18%, rgba(225, 197, 143, 0.95) 50%, rgba(199, 166, 106, 0.9) 82%, transparent 100%);
  background-size: 20px 20px, 100% 1px;
  background-repeat: no-repeat;
  background-position: center, center;
}

.card h3 {
  color: var(--gold-soft);
  font-size: 1.05rem;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.timeline li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(199, 166, 106, 0.18);
  background: rgba(9, 14, 24, 0.64);
  position: relative;
}

.timeline li::after {
  content: "";
  position: absolute;
  left: 17px;
  top: calc(100% + 2px);
  width: 1px;
  height: 14px;
  background: linear-gradient(to bottom, rgba(225, 197, 143, 0.4), rgba(225, 197, 143, 0));
}

.timeline li:last-child::after {
  display: none;
}

.timeline span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #111;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
}

.estimator-wrap {
  padding: 1.4rem;
}

.wizard {
  display: grid;
  gap: 1rem;
}

.wizard-progress {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(211, 215, 222, 0.13);
  overflow: hidden;
}

.wizard-progress span {
  display: block;
  width: 33.33%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 12px rgba(199, 166, 106, 0.45);
  transition: width 260ms ease;
}

.wizard-step {
  display: none;
  gap: 0.8rem;
}

.wizard-step.is-active {
  display: grid;
}

.wizard-step h3 {
  margin-bottom: 0.2rem;
}

.wizard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.wizard-check {
  display: grid;
  grid-template-columns: 1rem 1fr;
  align-items: start;
  column-gap: 0.6rem;
  line-height: 1.45;
}

.wizard-check input {
  width: 1rem;
  height: 1rem;
  margin: 0.2rem 0 0;
  padding: 0;
}

.wizard-check span {
  min-width: 0;
}

.wizard-check a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.compare-grid .card {
  display: grid;
  gap: 0.7rem;
}

.compare-card--wide {
  grid-column: 1 / -1;
  max-width: 680px;
  margin-inline: auto;
  width: 100%;
}

.compare-stage {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 260px;
  border-radius: 12px;
  border: 1px solid rgba(199, 166, 106, 0.28);
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}

.compare-stage:focus-visible {
  outline: 2px solid rgba(225, 197, 143, 0.75);
  outline-offset: 2px;
}

.pane {
  position: absolute;
  inset: 0;
}

.pane img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.compare-image--before {
  object-position: center 10%;
}

.compare-image--after {
  object-position: center 8%;
}

.pane span {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  width: fit-content;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pane-before {
  background: rgba(7, 10, 18, 0.72);
}

.pane-before span {
  background: rgba(7, 9, 14, 0.65);
  color: var(--silver);
}

.pane-after {
  clip-path: inset(0 0 0 var(--reveal));
}

.pane-after span {
  background: rgba(255, 245, 226, 0.82);
  color: #231808;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--reveal);
  width: 2px;
  background: rgba(255, 252, 246, 0.85);
  box-shadow: 0 0 0 1px rgba(199, 166, 106, 0.5);
}

.compare-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border: 1px solid rgba(255, 245, 226, 0.7);
}

.compare-tip {
  margin: 0;
  color: var(--silver);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: "Cinzel", serif;
  color: var(--gold-soft);
  font-size: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-top: 0.65rem;
}

.sticky-cta {
  position: fixed;
  right: 0.95rem;
  bottom: 0.8rem;
  transform: none;
  width: auto;
  display: none;
  gap: 0;
  z-index: 80;
}

.sticky-cta-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(225, 197, 143, 0.65);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #1b1208;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.42);
  display: grid;
  place-items: center;
  cursor: pointer;
  animation: pulseRing 3s ease-in-out infinite;
}

.sticky-cta-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.sticky-cta-actions {
  position: absolute;
  right: 0;
  bottom: 68px;
  display: grid;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.sticky-cta.is-open .sticky-cta-actions {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.sticky-cta-actions .btn {
  min-width: 150px;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(211, 215, 222, 0.28);
  background: rgba(5, 8, 14, 0.94);
  backdrop-filter: blur(7px);
}

.sticky-cta-actions .btn.btn-gold {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border-color: rgba(225, 197, 143, 0.85);
}

.estimator {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: end;
}

label {
  display: grid;
  gap: 0.3rem;
  color: var(--silver);
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(13, 18, 30, 0.85);
  color: var(--text);
  padding: 0.72rem 0.8rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(199, 166, 106, 0.4);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(225, 197, 143, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: #8d93a2;
}

.estimate-output {
  margin-top: 0.85rem;
  color: var(--silver);
  font-weight: 600;
}

.testimonials blockquote {
  margin: 0;
  display: grid;
  gap: 0.85rem;
  color: var(--silver);
}

cite {
  color: var(--gold-soft);
  font-style: normal;
  font-weight: 600;
}

.cta-band {
  padding: 1.8rem;
  text-align: center;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.75rem 1.05rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #16110a;
  box-shadow: 0 10px 25px rgba(199, 166, 106, 0.24);
}

.btn-gold::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 28%;
  height: 280%;
  transform: rotate(22deg);
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.58), transparent);
  transition: left 430ms ease;
}

.btn-gold:hover::after {
  left: 120%;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(211, 215, 222, 0.35);
  color: var(--silver);
}

.btn.full {
  width: 100%;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 0.45rem;
}

.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.nav-toggle:focus-visible,
.sticky-cta-toggle:focus-visible {
  outline: 2px solid rgba(225, 197, 143, 0.9);
  outline-offset: 2px;
}

.page-hero {
  padding-top: 4.2rem;
}

.page-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.8rem);
}

.page-hero p {
  max-width: 68ch;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-item {
  position: relative;
  border: 1px solid rgba(225, 197, 143, 0.24);
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(160deg, rgba(14, 19, 31, 0.82), rgba(7, 10, 18, 0.76));
}

.feature-item h3 {
  color: var(--gold-soft);
  margin-bottom: 0.4rem;
}

.service-spotlight {
  align-items: stretch;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.photo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.photo-copy h2 {
  font-size: clamp(1.45rem, 3vw, 2.05rem);
}

.profile-photo-card {
  grid-row: span 2;
}

.profile-photo-card img {
  object-position: center 22%;
}

.sidebar-photo {
  margin: -0.2rem -0.2rem 1rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(225, 197, 143, 0.22);
  background: rgba(7, 10, 18, 0.78);
}

.sidebar-photo img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  object-position: center 28%;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.contact-panel,
.info-box {
  padding: 1.2rem;
}

.site-footer {
  border-top: 1px solid rgba(199, 166, 106, 0.22);
  margin-top: 2.2rem;
  background: linear-gradient(180deg, rgba(3, 5, 10, 0), rgba(3, 5, 10, 0.65));
}

.footer-inner {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand p {
  margin: 0;
}

.footer-brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.34));
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
  transition: color 170ms ease, transform 170ms ease;
}

.footer-links a:hover {
  color: var(--gold-soft);
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 280ms;
}

.price-tag {
  margin-top: auto;
  padding-top: 0.6rem;
}

.price-tag strong {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  color: var(--gold-soft);
  letter-spacing: 0.03em;
}

.anfahrt-hinweis {
  margin-top: 1.4rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(199, 166, 106, 0.25);
  border-radius: 10px;
  background: rgba(14, 19, 30, 0.6);
  color: var(--silver);
  font-size: 0.9rem;
}

@keyframes driftAura {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-1.2%, 1%, 0) scale(1.03);
  }
}

@keyframes loaderRise {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulseRing {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.42), 0 0 0 0 rgba(225, 197, 143, 0.3);
  }
  50% {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.42), 0 0 0 8px rgba(225, 197, 143, 0);
  }
}

@keyframes emberPulse {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

@keyframes goldSweep {
  0% {
    left: -46%;
  }
  100% {
    left: 124%;
  }
}

@media (hover: none) {
  .sticky-cta-toggle {
    animation-duration: 4.5s;
  }
}

@media (max-width: 1000px) {
  .hero,
  .contact-layout,
  .two-col {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-2,
  .wizard-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .estimator {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section {
    padding: 2.8rem 0;
  }

  /* Wizard-Card ist gleichzeitig Container → mehr Luft zu den Rändern */
  .estimator-wrap.container {
    width: min(100% - 3rem, var(--max));
    padding: 1.2rem 1.6rem;
  }

  .grid-3,
  .estimator,
  .wizard-grid,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .compare-stage {
    min-height: 240px;
  }

  .hero-photo {
    height: 190px;
  }

  .photo-card img {
    min-height: 300px;
  }

  .profile-photo-card {
    grid-row: auto;
  }

  .sidebar-photo img {
    height: 190px;
  }

  .sticky-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .nav-toggle {
    display: inline-block;
  }

  .brand {
    gap: 0.6rem;
    min-width: 0;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-text strong {
    font-size: 0.88rem;
  }

  .brand-text small {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
  }

  .hero-brand-ribbon {
    gap: 0.55rem;
    padding: 0.45rem 0.7rem;
  }

  .hero-brand-ribbon img {
    width: 34px;
    height: 34px;
  }

  .hero-brand-ribbon span {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(6, 9, 15, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 1rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: 220ms ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    gap: 0.45rem;
  }
}


/* â”€â”€ Funnel-Elemente â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* VerfÃ¼gbarkeits-Badge (Urgency Indicator) */
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 200, 120, 0.38);
  background: rgba(10, 30, 18, 0.6);
  color: #72e09e;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
}

.avail-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #72e09e;
  animation: availPulse 2.2s ease-in-out infinite;
}

@keyframes availPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(114, 224, 158, 0.5); }
  55%       { box-shadow: 0 0 0 6px rgba(114, 224, 158, 0); }
}

/* Garantie-Zeilen in der Hero-Karte */
.hero-guarantee {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(199, 166, 106, 0.18);
  border-bottom: 1px solid rgba(199, 166, 106, 0.18);
  margin: 0.2rem 0;
  font-size: 0.83rem;
  color: var(--muted);
}

/* Pain-Grid */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.pain-card {
  position: relative;
  border-radius: var(--radius);
  padding: 1.4rem;
  border: 1px solid rgba(199, 166, 106, 0.18);
  background: linear-gradient(160deg, rgba(14, 19, 31, 0.82), rgba(7, 10, 18, 0.76));
}

.pain-card--solution {
  border-color: rgba(72, 200, 130, 0.28);
  background: linear-gradient(160deg, rgba(10, 28, 18, 0.82), rgba(5, 14, 9, 0.76));
}

.pain-num {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.pain-card--solution .pain-num {
  color: #72e09e;
}

.pain-card h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.pain-solution-tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.14rem 0.6rem;
  border-radius: 999px;
  background: rgba(72, 200, 130, 0.14);
  border: 1px solid rgba(72, 200, 130, 0.32);
  color: #72e09e;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Social-Proof-Bar */
.social-proof-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
  padding: 0.95rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(199, 166, 106, 0.22);
  background: linear-gradient(165deg, rgba(18, 24, 38, 0.86), rgba(8, 12, 20, 0.78));
}

.social-proof-bar > span {
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-proof-bar > span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #72e09e;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(72, 200, 130, 0.18);
}

/* Garantie-Strip (Risk Reversal) */
.guarantee-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(199, 166, 106, 0.22);
  background: linear-gradient(165deg, rgba(18, 24, 38, 0.86), rgba(8, 12, 20, 0.78));
}

.guarantee-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 0.6rem 1rem;
}

.guarantee-item strong {
  display: block;
  font-family: "Cinzel", serif;
  color: var(--gold-soft);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.guarantee-item span {
  color: var(--muted);
  font-size: 0.83rem;
}

.guarantee-divider {
  width: 1px;
  height: 50px;
  background: rgba(199, 166, 106, 0.22);
  flex-shrink: 0;
}

/* CTA-Gruppe im finalen CTA-Band */
.cta-group {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Responsive: Pain-Grid & Garantie-Strip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 760px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-divider {
    width: 80%;
    height: 1px;
  }

  .social-proof-bar {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ── Flatpickr Kalender – Dark-Gold Theme ─────────────────────────────── */
.flatpickr-calendar {
  background: #0b0e1a;
  border: 1px solid rgba(199, 166, 106, 0.35);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
  border-radius: 14px;
  font-family: "Manrope", sans-serif;
}

.flatpickr-calendar.arrowTop::before {
  border-bottom-color: rgba(199, 166, 106, 0.35);
}

.flatpickr-calendar.arrowTop::after {
  border-bottom-color: #0b0e1a;
}

.flatpickr-months {
  background: rgba(14, 19, 30, 0.95);
  border-radius: 14px 14px 0 0;
  border-bottom: 1px solid rgba(199, 166, 106, 0.2);
  padding: 0.3rem 0;
}

.flatpickr-month,
.flatpickr-current-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  color: #e1c58f;
  fill: #e1c58f;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: transparent;
}

.flatpickr-prev-month,
.flatpickr-next-month {
  color: #c7a66a !important;
  fill: #c7a66a !important;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
  fill: #e1c58f;
}

.flatpickr-weekdays {
  background: rgba(10, 14, 24, 0.95);
}

span.flatpickr-weekday {
  color: rgba(199, 166, 106, 0.65);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}

.flatpickr-days {
  background: #0b0e1a;
  border-radius: 0 0 14px 14px;
}

.dayContainer {
  padding: 0.3rem 0.4rem 0.5rem;
}

.flatpickr-day {
  color: #d3d7de;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.88rem;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
  background: rgba(199, 166, 106, 0.18);
  border-color: rgba(199, 166, 106, 0.42);
  color: #e1c58f;
}

.flatpickr-day.today {
  border-color: rgba(199, 166, 106, 0.6);
  color: #e1c58f;
  font-weight: 700;
}

.flatpickr-day.today:hover {
  background: rgba(199, 166, 106, 0.18);
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: linear-gradient(135deg, #c7a66a, #e1c58f);
  border-color: #c7a66a;
  color: #07090e;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(199, 166, 106, 0.38);
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: rgba(211, 215, 222, 0.2);
  cursor: not-allowed;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: rgba(211, 215, 222, 0.3);
}

.numInputWrapper:hover {
  background: rgba(199, 166, 106, 0.08);
}

.numInputWrapper span.arrowUp::after {
  border-bottom-color: #c7a66a;
}

.numInputWrapper span.arrowDown::after {
  border-top-color: #c7a66a;
}
