:root {
  --ink: #151313;
  --muted: #5f5c57;
  --line: #d8d6cf;
  --paper: #f7f7f2;
  --panel: #ffffff;
  --accent: #a53655;
  --accent-dark: #7c263f;
  --sage: #2f6653;
  --gold: #c79b47;
  --shadow: 0 18px 50px rgba(29, 22, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

img {
  display: block;
  width: 100%;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(222, 215, 208, 0.8);
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--ink);
  font-weight: 800;
  font-size: 13px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: clamp(34px, 6vw, 78px) clamp(18px, 4vw, 52px) clamp(28px, 4vw, 56px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6.5vw, 82px);
  line-height: 0.95;
  font-weight: 850;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.1;
}

.lead {
  max-width: 630px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
}

.hero-actions,
.feedback-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #ffffff;
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.button.tertiary {
  color: var(--ink);
  border-color: var(--line);
  background: #ffffff;
}

.button.full {
  width: 100%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 560px;
  margin: 28px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.trust-strip div {
  padding: 16px 18px;
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip dd {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 850;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #1b1715;
  box-shadow: var(--shadow);
}

.hero-media img,
.product-image img,
.source-shot img {
  position: relative;
  z-index: 0;
}

.hero-media img {
  aspect-ratio: 4 / 5;
  height: min(680px, calc(100vh - 150px));
  object-fit: cover;
}

.media-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(21, 19, 19, 0.78);
  z-index: 3;
}

.media-caption span {
  color: #e9d0b0;
  font-weight: 850;
}

.section {
  padding: clamp(48px, 7vw, 92px) clamp(18px, 4vw, 52px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 720px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(29, 22, 18, 0.06);
}

.product-card.featured {
  border-color: rgba(182, 64, 54, 0.45);
}

.product-image {
  position: relative;
  overflow: hidden;
  background: #191615;
}

.product-image img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.product-body {
  padding: clamp(18px, 3vw, 28px);
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 6px;
  color: #ffffff;
  background: var(--sage);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.spec {
  color: var(--muted);
  line-height: 1.55;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 22px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-row span {
  font-size: 24px;
  font-weight: 900;
}

.price-row small {
  max-width: 150px;
  color: var(--muted);
  text-align: right;
  line-height: 1.35;
}

.checks {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.checks li {
  position: relative;
  padding-left: 18px;
  line-height: 1.45;
}

.checks li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.product-card.compact {
  display: flex;
  min-height: 290px;
}

.product-card.premium {
  display: grid;
  grid-column: span 2;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
}

.premium-image img {
  height: 100%;
  min-height: 520px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.watermarked {
  position: relative;
  overflow: hidden;
}

.watermarked::before {
  content: attr(data-watermark);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 135%;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: clamp(14px, 2.1vw, 28px);
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  transform: translate(-50%, -50%) rotate(-18deg);
  pointer-events: none;
}

.watermarked::after {
  content: "Wigs Sell Lusaka | WhatsApp +260 978734616";
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 7px 9px;
  border-radius: 6px;
  color: #ffffff;
  background: rgba(21, 19, 19, 0.72);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  pointer-events: none;
}

.product-image.watermarked::before,
.source-shot.watermarked::before {
  color: rgba(255, 255, 255, 0.48);
  font-size: clamp(13px, 1.8vw, 20px);
}

.source-preview {
  background: #e9ece8;
}

.source-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.source-shot {
  margin: 0;
  border-radius: 8px;
  background: #151313;
  box-shadow: 0 10px 30px rgba(29, 22, 18, 0.08);
}

.source-shot img {
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
}

.source-shot:nth-child(2) img {
  aspect-ratio: 1 / 1;
}

.source-shot figcaption {
  position: relative;
  z-index: 3;
  padding: 10px 12px;
  color: #ffffff;
  background: rgba(21, 19, 19, 0.92);
  font-size: 13px;
  font-weight: 800;
}

.proof-section {
  background: #efeae3;
}

.payment-section {
  background: #f3eee7;
}

.payment-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.payment-steps div {
  min-height: 220px;
  padding: 22px;
  background: #ffffff;
}

.payment-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--sage);
  font-weight: 900;
}

.payment-steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.payment-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.preference-section {
  background: #f7f7f2;
}

.preference-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(29, 22, 18, 0.06);
}

.preference-form fieldset {
  display: grid;
  gap: 9px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.preference-form legend,
.text-field {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.choice {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fbfaf7;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
}

.choice input {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  accent-color: var(--accent);
}

.choice:has(input:checked) {
  color: var(--ink);
  border-color: rgba(165, 54, 85, 0.55);
  background: rgba(165, 54, 85, 0.08);
}

.text-field {
  display: grid;
  grid-column: span 2;
  gap: 8px;
}

.text-field input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfaf7;
}

.preference-form .button {
  grid-column: span 1;
  align-self: end;
  border: 0;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.proof-grid div {
  min-height: 180px;
  padding: 22px;
  background: var(--paper);
}

.proof-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.proof-grid p,
.partner-section p,
.footer p {
  color: var(--muted);
  line-height: 1.55;
}

.partner-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
}

.partner-section h2 {
  margin-bottom: 16px;
}

.partner-section p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 18px;
}

.footer {
  padding: 28px clamp(18px, 4vw, 52px) 90px;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
  font-size: 13px;
}

.footer p + p {
  margin-top: 6px;
}

.sticky-bar {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: none;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(222, 215, 208, 0.9);
  border-radius: 10px;
  background: rgba(251, 250, 247, 0.95);
  box-shadow: var(--shadow);
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media img {
    height: auto;
    max-height: none;
  }

  .section-heading {
    display: block;
  }

  .product-grid,
  .proof-grid,
  .payment-steps,
  .partner-section,
  .source-gallery,
  .preference-form {
    grid-template-columns: 1fr;
  }

  .product-card.premium {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .premium-image img {
    min-height: 0;
  }

  .proof-grid div {
    min-height: auto;
  }

  .payment-steps div {
    min-height: auto;
  }

  .source-shot:nth-child(2) img {
    aspect-ratio: 1 / 1;
  }

  .sticky-bar {
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
  }

  .sticky-bar .button {
    flex: 1;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 28px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-actions,
  .feedback-buttons {
    display: grid;
  }

  .text-field,
  .preference-form .button {
    grid-column: 1;
  }

  .button {
    width: 100%;
  }

  .price-row {
    display: block;
  }

  .price-row small {
    display: block;
    max-width: none;
    margin-top: 6px;
    text-align: left;
  }
}
