:root {
  --color-bg: #F7F5F0;
  --color-bg-alt: #EFEAE0;
  --color-surface: #FFFFFF;
  --color-ink: #0F1F33;
  --color-ink-soft: #1B2A3D;
  --color-text-muted: #5E6773;
  --color-gold: #B8996A;
  --color-gold-dark: #967C52;
  --color-border: #DCD5C4;
  --radius: 4px;
  --font-heading: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink-soft);
  background: var(--color-bg);
  line-height: 1.65;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-ink);
  margin: 0;
  line-height: 1.18;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  margin: 0 auto 48px;
  max-width: 32ch;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Eyebrow labels */

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  margin-bottom: 18px;
}

.eyebrow--center { text-align: center; }
.eyebrow--light { color: #D8C39B; }

/* Buttons */

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-ink);
}

.btn--primary:hover {
  background: var(--color-gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(138, 106, 56, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn--ghost:hover {
  background: var(--color-ink);
  color: #fff;
}

.btn--text {
  background: none;
  color: var(--color-text-muted);
  text-decoration: underline;
  padding: 15px 0;
  border: none;
}

.btn--text-light {
  color: #E8DCC3;
}

.btn--large {
  padding: 17px 36px;
  font-size: 1rem;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  z-index: 10;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.header__nav {
  display: flex;
  gap: 32px;
}

.header__nav a {
  color: var(--color-ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.header__nav a:hover { color: var(--color-gold-dark); }

.logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: var(--color-ink);
}

/* Hero */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  filter: saturate(0.94) contrast(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 31, 51, 0.55) 0%, rgba(15, 31, 51, 0.74) 55%, rgba(9, 19, 32, 0.9) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 120px 24px 90px;
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  color: #fff;
  margin-bottom: 22px;
}

.hero__lead {
  font-size: 1.1rem;
  color: #E9E2D4;
  margin-bottom: 36px;
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Stats strip */

.stats {
  background: var(--color-ink);
  padding: 40px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat__value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-gold);
}

.stat__label {
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: #C9C1B4;
  text-transform: uppercase;
}

/* Pains */

.pains {
  padding: 96px 0;
}

.pains__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.pain {
  background: var(--color-surface);
  padding: 40px 28px;
  text-align: left;
}

.pain__index {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.pain p {
  font-weight: 500;
  color: var(--color-ink-soft);
  font-size: 1.02rem;
}

/* Gallery */

.gallery {
  background: var(--color-bg-alt);
  padding: 96px 0;
}

.gallery__grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 560px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery__item img {
  filter: saturate(0.94) contrast(1.02);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(184, 153, 106, 0.08), rgba(15, 31, 51, 0.06));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.gallery__item--tall {
  grid-row: span 2;
}

/* How it works */

.how {
  padding: 96px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Included */

.included {
  background: var(--color-ink);
  color: #EDE7DA;
  padding: 96px 0;
}

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

.included__heading {
  text-align: left;
  color: #fff;
  margin: 0 0 28px;
  max-width: none;
}

.included__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.included__list li {
  padding-left: 30px;
  position: relative;
  color: #D8D1C2;
}

.included__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 1px;
  background: var(--color-gold);
}

.included__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.included__visual img {
  filter: saturate(0.94) contrast(1.02);
}

.included__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(184, 153, 106, 0.08), rgba(15, 31, 51, 0.07));
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* FAQ */

.faq {
  padding: 96px 0;
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--color-gold-dark);
  font-weight: 700;
}

.faq__item[open] summary::after {
  content: "\2013";
}

.faq__item p {
  margin-top: 14px;
  color: var(--color-text-muted);
}

/* CTA */

.cta {
  background: var(--color-ink);
  padding: 96px 0;
}

.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.cta__heading {
  text-align: left;
  color: #fff;
  margin: 0 0 16px;
}

.cta__lead {
  color: #C9C1B4;
  margin-bottom: 32px;
  max-width: 40ch;
}

.cta__form {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 36px;
}

.form__fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.cta__form input {
  padding: 13px 14px;
  border-radius: 2px;
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-bg);
}

.cta__form input:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 1px;
}

.form__success {
  font-weight: 600;
  color: var(--color-gold-dark);
}

/* Footer */

.footer {
  padding: 36px 0;
  background: var(--color-ink);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #C9C1B4;
}

.footer .logo--footer { color: #fff; }

.footer a {
  color: #C9C1B4;
  text-decoration: none;
}

/* Responsive */

@media (max-width: 900px) {
  .included__inner,
  .cta__inner {
    grid-template-columns: 1fr;
  }

  .included__visual { order: -1; aspect-ratio: 16/9; }

  .pains__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
  }

  .gallery__item--tall,
  .gallery__item {
    aspect-ratio: 4/3;
    grid-row: auto;
  }

  .header__nav { display: none; }
}

@media (max-width: 560px) {
  .pains__grid,
  .steps,
  .stats__grid {
    grid-template-columns: 1fr;
  }

  .hero__inner { padding: 100px 20px 64px; }
}
