:root {
  color-scheme: light;
  --background: #f2e8e5;
  --surface: #fff8f4;
  --surface-soft: #f8eeea;
  --ink: #261516;
  --muted: #6f4b4f;
  --burgundy-700: #5f0f2e;
  --burgundy-800: #470723;
  --burgundy-900: #300118;
  --burgundy-100: #f3dde4;
  --gold: #d3a14a;
  --border: rgba(73, 7, 35, 0.16);
  --shadow: 0 24px 50px rgba(48, 1, 24, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 0%, rgba(95, 15, 46, 0.26), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(211, 161, 74, 0.16), transparent 28%),
    linear-gradient(180deg, #faefeb 0%, var(--background) 100%);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 4rem;
}

.topbar,
.hero,
.feature-card,
.content-section,
.cta-band {
  backdrop-filter: blur(10px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 248, 244, 0.84);
  box-shadow: var(--shadow);
}

.logo-box {
  display: block;
  width: 196px;
  height: 48px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
}

.brand-link:focus-visible {
  outline: 2px solid var(--burgundy-700);
  outline-offset: 2px;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.top-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--burgundy-800);
  font-weight: 600;
  transition: all 0.2s ease;
}

.top-nav a:hover {
  color: #ffffff;
  background: var(--burgundy-700);
}

.hero {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  padding: 2.2rem;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(95, 15, 46, 0.95), rgba(48, 1, 24, 0.96));
  box-shadow: var(--shadow);
  color: #fff3f7;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(255, 232, 239, 0.86);
}

.hero h1,
.section-head h2,
.feature-card h3 {
  margin: 0;
  font-weight: 700;
  line-height: 1.08;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  max-width: 16ch;
  font-size: clamp(2rem, 5vw, 4rem);
}

.hero-copy {
  max-width: 54ch;
  margin: 1.25rem 0 0;
  font-size: 1.04rem;
  line-height: 1.75;
  color: rgba(255, 236, 242, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.button-primary {
  background: var(--gold);
  color: #2a1a0d;
}

.button-primary:hover {
  background: #e1b05e;
  transform: translateY(-1px);
}

.button-secondary {
  border-color: rgba(255, 238, 243, 0.38);
  background: rgba(255, 255, 255, 0.09);
  color: #fff5f8;
}

.image-shell {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #d7c1c6;
  min-height: 220px;
  position: relative;
}

.image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) contrast(1.02) brightness(0.92);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-metrics article {
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.hero-metrics strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 800;
}

.hero-metrics span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: rgba(255, 239, 244, 0.85);
}

.content-section {
  margin-top: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.section-head {
  margin-bottom: 1rem;
}

.section-head .eyebrow {
  color: var(--burgundy-700);
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  color: var(--burgundy-900);
  font-size: clamp(1.65rem, 4vw, 2.4rem);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-soft);
}

.feature-card h3 {
  margin-top: 0.9rem;
  font-size: 1.12rem;
  color: var(--burgundy-800);
}

.feature-card p,
.site-footer {
  color: var(--muted);
  line-height: 1.6;
}

.dark-card {
  background:
    linear-gradient(140deg, rgba(71, 7, 35, 0.97), rgba(48, 1, 24, 0.96));
  border-color: rgba(255, 235, 241, 0.16);
}

.dark-card h3,
.dark-card p {
  color: #ffeef4;
}

.check-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: rgba(255, 234, 241, 0.92);
}

.check-list li + li {
  margin-top: 0.4rem;
}

.payments {
  background:
    linear-gradient(135deg, rgba(95, 15, 46, 0.1), rgba(211, 161, 74, 0.14));
}

.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.payment-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(95, 15, 46, 0.3);
  background: rgba(255, 251, 248, 0.9);
  color: var(--burgundy-800);
  font-weight: 600;
}

.cta-band {
  margin-top: 1rem;
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(95, 15, 46, 0.36);
  border-radius: 20px;
  background: linear-gradient(120deg, var(--burgundy-700), var(--burgundy-800));
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
}

.cta-band p {
  margin: 0;
  color: #fff1f6;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
}

.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 2.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .card-grid.three-col,
  .card-grid.two-col {
    grid-template-columns: 1fr;
  }

  .hero,
  .content-section {
    padding: 1.5rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    justify-content: flex-start;
  }
}