:root {
  --gold: #b8924f;
  --gold-light: #e3c98e;
  --cream: #f7f2ea;
  --ink: #1d1a16;
  --ink-soft: #4a443c;
  --line: rgba(184, 146, 79, 0.25);
  --radius: 4px;
  font-size: 16px;
}

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

body {
  font-family: 'Jost', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .wordmark {
  font-family: 'Cormorant Garamond', serif;
}

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

.wordmark {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.wordmark--sm { font-size: 1.1rem; }

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: var(--radius);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn--ghost {
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn--ghost:hover { background: var(--gold); color: #fff; }

.btn--primary {
  padding: 16px 32px;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1d1a16;
  box-shadow: 0 8px 24px rgba(184, 146, 79, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(184, 146, 79, 0.45); }
.btn--lg { font-size: 1.05rem; padding: 18px 36px; }
.tg-icon { font-size: 1rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #2a2520;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero__media img.ph {
  background: radial-gradient(circle at 30% 20%, #4a3f30, #1d1a16 70%);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,14,0.55) 0%, rgba(20,17,14,0.75) 55%, rgba(20,17,14,0.9) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  color: #fdfaf4;
  max-width: 680px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero .lede {
  font-size: 1.1rem;
  color: #e9e2d6;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero__sub {
  margin-top: 14px;
  font-size: 0.85rem;
  color: #c9bfae;
}
.price-pill {
  display: inline-block;
  margin-bottom: 28px;
  padding: 8px 18px;
  font-size: 0.9rem;
  color: #fdfaf4;
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  background: rgba(184, 146, 79, 0.18);
}
.price-pill strong { color: var(--gold-light); }

/* Why section */
.why { padding: 96px 0; }
.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 600;
}
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  margin-bottom: 48px;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.why__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.why__icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.why__card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.why__card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* Lookbook */
.lookbook { padding: 0 0 96px; }
.lookbook__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lookbook__item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #e7dcc6, #cbb37f);
}
.lookbook__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.lookbook__item:hover img { transform: scale(1.06); }
.lookbook__item img.ph {
  background: linear-gradient(135deg, #efe5d2, #cdb27f);
}

/* Reviews */
.reviews { padding: 0 0 96px; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.review__img {
  aspect-ratio: 3 / 4;
  background: #f1ece1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review__img img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.review__img img.ph {
  width: 100%; height: 100%; object-fit: cover;
  background: linear-gradient(135deg, #efe5d2, #cdb27f);
}
.review__caption {
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
}

/* Proof */
.proof {
  background: var(--ink);
  color: #fdfaf4;
  padding: 64px 0;
}
.proof__inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  text-align: center;
}
.proof__num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--gold-light);
  font-weight: 600;
}
.proof__label {
  font-size: 0.85rem;
  color: #cfc6b6;
  letter-spacing: 0.02em;
}

/* CTA */
.cta {
  padding: 110px 0;
  background: linear-gradient(135deg, #f1e6cf, #f7f2ea);
  text-align: center;
}
.cta__inner { max-width: 640px; margin: 0 auto; }
.cta h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  font-weight: 600;
}
.cta p {
  color: var(--ink-soft);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .lookbook__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .hero { min-height: 100vh; }
  .why__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
}
