:root {
  --navy: #10182a;
  --navy-deep: #0b1120;
  --ink: #1c2436;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --gold: #c4a574;
  --gold-bright: #d4b98a;
  --blush: #e8cfc0;
  --muted: #6b6458;
  --line: rgba(196, 165, 116, 0.28);
  --shadow: 0 24px 60px rgba(16, 24, 42, 0.18);
  --radius: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Figtree", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.12;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
}

h3 {
  font-size: 1.6rem;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 22px;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
}

.btn-dark {
  background: var(--navy);
  color: var(--cream);
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(11, 17, 32, 0.86);
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  color: rgba(246, 241, 232, 0.78);
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: var(--gold-bright);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--cream);
  font-size: 1.4rem;
  cursor: pointer;
}

.hero {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(196, 165, 116, 0.16), transparent 46%),
    linear-gradient(180deg, var(--navy-deep) 0%, #141d32 100%);
  color: var(--cream);
  padding: 72px 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  margin: 18px 0 18px;
  color: var(--paper);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}

.hero p {
  max-width: 34rem;
  color: rgba(246, 241, 232, 0.72);
  font-size: 1.12rem;
}

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

.hero-note {
  margin-top: 28px;
  font-size: 0.88rem;
  color: rgba(246, 241, 232, 0.5);
}

.loyalty-card {
  position: relative;
  width: min(380px, 100%);
  margin-left: auto;
  aspect-ratio: 1.62 / 1;
  border-radius: 24px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.12), rgba(196, 165, 116, 0.2)),
    #182235;
  border: 1px solid rgba(196, 165, 116, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: rotate(4deg);
}

.loyalty-card .mark {
  width: 48px;
  height: 48px;
}

.card-top,
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.loyalty-card small {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--gold);
}

.loyalty-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 40px;
}

.chip {
  width: 38px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #d8c09a, #8c7048);
}

.wave {
  display: block;
  width: 100%;
  height: 90px;
  margin-top: 72px;
}

section {
  padding: 92px 0;
}

.problem {
  background: var(--cream);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.lede {
  margin-top: 16px;
  font-size: 1.2rem;
  color: var(--ink);
  max-width: 28rem;
}

.pain-list {
  display: grid;
  gap: 18px;
}

.pain {
  background: var(--paper);
  border: 1px solid rgba(16, 24, 42, 0.06);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 10px 30px rgba(16, 24, 42, 0.04);
}

.pain h3 {
  margin-bottom: 6px;
}

.services {
  background: var(--navy);
  color: var(--cream);
}

.services p,
.contact p {
  color: rgba(246, 241, 232, 0.68);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 48px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: #182235;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 240px;
}

.card span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card h3,
.card p {
  color: inherit;
}

.card p {
  margin-top: 10px;
  color: rgba(246, 241, 232, 0.66);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 12px;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}

.goals {
  background:
    linear-gradient(180deg, rgba(232, 207, 192, 0.35), transparent 40%),
    var(--cream);
}

.goal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.goal {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(16, 24, 42, 0.06);
}

.goal h3 {
  margin: 12px 0 10px;
}

.audience {
  background: var(--paper);
}

.audience-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pill {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
  font-size: 0.92rem;
}

.contact {
  background: var(--navy-deep);
  color: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-links a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #151d30;
}

.contact-links strong {
  color: var(--gold-bright);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

form {
  display: grid;
  gap: 14px;
  background: #151d30;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(196, 165, 116, 0.22);
  background: #10182a;
  color: var(--cream);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  min-height: 1.2em;
  font-size: 0.9rem;
  color: var(--gold-bright);
}

footer {
  background: #0a0f1c;
  color: rgba(246, 241, 232, 0.55);
  padding: 28px 0;
  font-size: 0.9rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #10182a;
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .split,
  .cards,
  .steps,
  .goal-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .loyalty-card {
    margin: 20px auto 0;
  }
}
