:root {
  --ink: #121722;
  --muted: #697386;
  --line: rgba(18, 23, 34, .12);
  --surface: #ffffff;
  --page: #f7f4ee;
  --champagne: #ead8b8;
  --copper: #b76e4b;
  --copper-dark: #8f4b34;
  --navy: #111827;
  --slate: #273244;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(17, 24, 39, .14);
}

* {
  box-sizing: border-box;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(234, 216, 184, .36), transparent 30rem),
    linear-gradient(180deg, #fbf8f2 0%, #f7f4ee 52%, #f5f1ea 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

a {
  color: var(--copper-dark);
  text-underline-offset: .18em;
}

.navbar {
  background: rgba(17, 24, 39, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  padding-top: .2rem;
  padding-bottom: .2rem;
}

.navbar-brand img {
  display: block;
  width: 190px;
  height: auto;
}

.navbar-brand:hover {
  color: #fff;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, .28);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.nav-link {
  color: rgba(255, 255, 255, .72);
  font-weight: 650;
  letter-spacing: -.01em;
  transition: color .2s ease, transform .2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--champagne) !important;
}

.site-header {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(183, 110, 75, .36), transparent 22rem),
    radial-gradient(circle at 10% 10%, rgba(234, 216, 184, .15), transparent 24rem),
    linear-gradient(135deg, #111827 0%, #1d2636 58%, #332016 100%);
  overflow: hidden;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto -12% -34% 45%;
  height: 320px;
  background: radial-gradient(circle, rgba(234, 216, 184, .16), transparent 62%);
  pointer-events: none;
}

.hero {
  padding: 5.25rem 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1,
.article-hero h1 {
  letter-spacing: -.055em;
}

.hero .lead {
  color: rgba(255, 255, 255, .76);
  max-width: 620px;
}

.hero-card,
.img-frame {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: var(--shadow);
}

.hero-card img,
.img-frame img {
  display: block;
  width: 100%;
  transition: transform .55s ease;
}

.hero-card:hover img,
.img-frame:hover img {
  transform: scale(1.035);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--champagne);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.page-note {
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  backdrop-filter: blur(12px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
}

.btn-success {
  --bs-btn-bg: var(--copper);
  --bs-btn-border-color: var(--copper);
  --bs-btn-hover-bg: var(--copper-dark);
  --bs-btn-hover-border-color: var(--copper-dark);
  --bs-btn-active-bg: var(--copper-dark);
  --bs-btn-active-border-color: var(--copper-dark);
  border-radius: 999px;
  box-shadow: 0 16px 35px rgba(183, 110, 75, .28);
  font-weight: 750;
  padding: .78rem 1.2rem;
}

.btn-outline-light {
  border-radius: 999px;
  font-weight: 750;
  padding: .78rem 1.2rem;
  border-color: rgba(255, 255, 255, .32);
  color: #fff;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: 1.4rem;
}

.stat-pill {
  padding: .85rem;
  border-radius: 16px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
}

.stat-pill strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
}

.section-pad {
  padding: 5rem 0;
}

.soft-section {
  background: rgba(255, 255, 255, .42);
}

.cream-section {
  background: linear-gradient(180deg, rgba(234, 216, 184, .23), rgba(255, 255, 255, .18));
}

.section-kicker {
  color: var(--copper-dark);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  margin-bottom: .45rem;
}

.plain-panel,
.feature-card,
.review-card,
.article-card,
.contact-panel {
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(18, 23, 34, .08);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(17, 24, 39, .08);
}

.plain-panel {
  padding: 1.45rem;
}

.feature-card,
.review-card,
.article-card,
.contact-panel {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover,
.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 110, 75, .28);
  box-shadow: 0 24px 60px rgba(17, 24, 39, .12);
}

.lux-icon,
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--copper-dark);
  background: linear-gradient(135deg, rgba(234, 216, 184, .82), rgba(255, 255, 255, .78));
  border: 1px solid rgba(183, 110, 75, .18);
}

.lux-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.fact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  display: flex;
  align-items: start;
  gap: .7rem;
  padding: .8rem 0;
  color: #3f4858;
  border-bottom: 1px solid rgba(18, 23, 34, .09);
}

.fact-list li:last-child {
  border-bottom: 0;
}

.fact-list li::before,
.tips-list li::before {
  content: "";
  width: .48rem;
  height: .48rem;
  margin-top: .5rem;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 4px rgba(183, 110, 75, .12);
  flex: 0 0 auto;
}

.step-list {
  counter-reset: steps;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(18, 23, 34, .1);
}

.step-list li:last-child {
  border-bottom: 0;
}

.step-list li::before {
  content: "0" counter(steps);
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--slate));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  font-size: .86rem;
}

.play-process {
  display: grid;
  gap: .9rem;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.05rem;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 250, 241, .86));
  border: 1px solid rgba(18, 23, 34, .08);
  box-shadow: 0 16px 42px rgba(17, 24, 39, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.process-step:hover {
  transform: translateY(-3px);
  border-color: rgba(183, 110, 75, .25);
  box-shadow: 0 22px 55px rgba(17, 24, 39, .12);
}

.process-step::after {
  content: "";
  position: absolute;
  left: 2.35rem;
  top: calc(100% - .25rem);
  width: 1px;
  height: 1.15rem;
  background: linear-gradient(180deg, rgba(183, 110, 75, .35), transparent);
}

.process-step:last-child::after {
  display: none;
}

.process-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  box-shadow: 0 12px 26px rgba(183, 110, 75, .28);
}

.process-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
}

.process-step h3 {
  margin-bottom: .25rem;
}

.process-step p {
  color: var(--muted);
}

.tips-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .95rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tips-list li {
  display: flex;
  align-items: start;
  gap: .75rem;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(18, 23, 34, .08);
}

.review-line {
  height: 100%;
  padding: 1.35rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(18, 23, 34, .08);
}

.review-line p {
  color: #3f4858;
}

.table {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(17, 24, 39, .08);
}

.table thead th {
  background: var(--navy);
  color: #fff;
  border-color: rgba(255, 255, 255, .1);
}

.accordion-item {
  border-color: rgba(18, 23, 34, .09);
  background: rgba(255, 255, 255, .82);
}

.accordion-button {
  font-weight: 760;
  color: var(--ink);
  background: rgba(255, 255, 255, .88);
}

.accordion-button:not(.collapsed) {
  color: var(--ink);
  background: #fff6ea;
  box-shadow: inset 0 -1px 0 rgba(183, 110, 75, .14);
}

.article-hero {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(183, 110, 75, .26), transparent 21rem),
    linear-gradient(135deg, #111827 0%, #202b3c 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.article-hero .lead {
  color: rgba(255, 255, 255, .72);
}

.content-wrap {
  max-width: 880px;
}

.content-wrap h2 {
  margin-top: 2.25rem;
  letter-spacing: -.025em;
}

.article-card {
  overflow: hidden;
}

.article-card img,
.article-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  border-radius: 16px;
}

.article-thumb {
  height: 330px;
  margin-bottom: 1.65rem;
  box-shadow: var(--shadow);
}

.footer {
  background: #0f1520;
  color: rgba(255, 255, 255, .72);
}

.footer a {
  color: var(--champagne);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  width: min(100% - 2rem, 520px);
  color: #fff;
  background: rgba(15, 21, 32, .96);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(17, 24, 39, .26);
  padding: 1rem;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.cookie-banner a {
  color: var(--champagne);
  font-weight: 700;
}

.cookie-banner__title {
  margin-bottom: .35rem;
  font-weight: 800;
  letter-spacing: -.01em;
}

.cookie-banner__actions {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  margin-top: .9rem;
}

.cookie-banner .btn {
  border-radius: 999px;
  font-weight: 750;
}

.text-bg-success {
  color: #fff !important;
  background-color: var(--copper) !important;
}

.text-success {
  color: var(--copper-dark) !important;
}

.reveal {
  animation: fadeUp .7s ease both;
}

.reveal-delay-1 {
  animation-delay: .08s;
}

.reveal-delay-2 {
  animation-delay: .16s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 991.98px) {
  .stat-strip,
  .tips-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding: 3.4rem 0;
  }

  .section-pad {
    padding: 3.2rem 0;
  }

  .display-4 {
    font-size: 2.55rem;
  }

  .article-thumb {
    height: 230px;
  }

  .cookie-banner {
    right: .75rem;
    bottom: .75rem;
    width: calc(100% - 1.5rem);
  }
}
