/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --burgundy: #722F37;
  --burgundy-dark: #5A2329;
  --blush: #F5E6E8;
  --blush-deep: #EAD0D4;
  --rose-gold: #B76E79;
  --rose-gold-light: #D29BA3;
  --cream: #FBF4F2;
  --ink: #2A1518;
  --ink-soft: #5C4448;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(114, 47, 55, 0.08);
  --shadow-md: 0 10px 30px rgba(114, 47, 55, 0.12);
  --shadow-lg: 0 24px 60px rgba(114, 47, 55, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 60px);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--burgundy);
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 0.6em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); margin-bottom: 0.5em; }

p { margin-bottom: 1.1em; }
a { color: var(--rose-gold); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--burgundy); }

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

ul, ol { margin: 0 0 1.2em 1.3em; }
li { margin-bottom: 0.4em; }

/* ===== Layout helpers ===== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(64px, 9vw, 110px);
  position: relative;
}

.section--blush { background: var(--blush); }
.section--cream { background: var(--cream); }
.section--burgundy { background: var(--burgundy); color: var(--blush); }
.section--burgundy h2,
.section--burgundy h3 { color: var(--white); }

.section + .section { border-top: 1px solid var(--blush-deep); }
.section--burgundy + .section,
.section + .section--burgundy { border-top-color: var(--burgundy-dark); }

.section__head {
  max-width: 720px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section__head p { color: var(--ink-soft); font-size: 1.05em; }
.section--burgundy .section__head p { color: var(--blush-deep); }

.eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.8em;
}

.grid {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ===== Header / Navigation ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(114, 47, 55, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(183, 110, 121, 0.25);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--white);
  text-decoration: none;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-light));
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(183, 110, 121, 0.45);
  flex-shrink: 0;
}

.brand__name { line-height: 1.1; }
.brand__name small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blush);
  opacity: 0.8;
}

.brand:hover { color: var(--blush); }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--blush);
  position: relative;
  padding-block: 6px;
  transition: color 0.25s var(--ease);
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--rose-gold);
  transition: width 0.3s var(--ease);
}

.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__links a.active,
.nav__links a[aria-current="page"] {
  color: var(--white);
}
.nav__links a.active::after,
.nav__links a[aria-current="page"]::after {
  width: 100%;
  background: var(--rose-gold-light);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}

.btn--ghost {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn--ghost:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--ghost-light:hover {
  background: var(--white);
  color: var(--burgundy);
  border-color: var(--white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.btn--ghost-rose {
  background: transparent;
  color: var(--rose-gold);
  border-color: var(--rose-gold);
}
.btn--ghost-rose:hover {
  background: var(--rose-gold);
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 26px rgba(183, 110, 121, 0.4);
}

.btn--solid {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}
.btn--solid:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.btn--lg { padding: 16px 34px; font-size: 1.02rem; }
.btn--block { display: flex; width: 100%; }

/* ===== Hero with floating card ===== */
.hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(90, 35, 41, 0.92) 0%, rgba(114, 47, 55, 0.85) 55%, rgba(183, 110, 121, 0.55) 100%),
    radial-gradient(circle at 80% 20%, rgba(210, 155, 163, 0.35), transparent 50%),
    var(--burgundy);
  color: var(--white);
  overflow: hidden;
  padding-block: clamp(80px, 12vw, 140px);
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.35), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero__content { position: relative; z-index: 2; }

.hero__content h1 {
  color: var(--white);
  margin-bottom: 0.4em;
}
.hero__content h1 span { color: var(--rose-gold-light); }

.hero__content .lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--blush);
  max-width: 540px;
  margin-bottom: 1.8em;
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Floating card */
.hero__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  transform: translateY(0) rotate(0deg);
  transition: transform 0.4s var(--ease);
  position: relative;
  z-index: 2;
  margin-right: clamp(-20px, -3vw, -40px);
}

.hero__card:hover { transform: translateY(-6px); }

.hero__card .eyebrow { color: var(--rose-gold); }
.hero__card h2 {
  color: var(--burgundy);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  margin-bottom: 0.5em;
}
.hero__card p { color: var(--ink-soft); margin-bottom: 1.4em; }

.hero__card .btn { width: 100%; }

.hero__stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--blush);
}
.hero__stats div { flex: 1; }
.hero__stats strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--burgundy);
}
.hero__stats span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ===== Cards ===== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(183, 110, 121, 0.12);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-gold);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blush), var(--blush-deep));
  color: var(--burgundy);
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.card:hover .card__icon {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-light));
  color: var(--white);
}

.card h3 {
  color: var(--burgundy);
  margin-bottom: 0.5em;
}
.card p { color: var(--ink-soft); margin-bottom: 1em; flex-grow: 1; }

.card__link {
  font-family: 'Poppins', sans-serif;