:root {
  color-scheme: dark;
  --bg: #10100f;
  --panel: #181614;
  --panel-2: #211d19;
  --text: #fff7ec;
  --muted: #cbbba6;
  --line: rgba(255, 235, 199, 0.14);
  --gold: #eab35d;
  --gold-dark: #9a6425;
  --green: #5f7f67;
  --rose: #a5645d;
  --shadow: 0 18px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(154, 100, 37, 0.18), transparent 32rem),
    linear-gradient(180deg, #0c0c0b 0%, var(--bg) 46%, #0c0c0b 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(12, 12, 11, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(234, 179, 93, 0.48);
  border-radius: 50%;
  color: var(--gold);
  font-size: 11px;
}

.main-nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(234, 179, 93, 0.34);
  border-radius: 8px;
  color: #f4e4ce;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.header-link:hover {
  border-color: rgba(234, 179, 93, 0.7);
  color: var(--text);
}

.header-call,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-call {
  padding: 0 18px;
  background: linear-gradient(180deg, #f2c77d, #ce8737);
  color: #241307;
}

.button {
  padding: 0 22px;
}

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

.primary {
  background: linear-gradient(180deg, #f2c77d, #ce8737);
  color: #241307;
  box-shadow: 0 10px 24px rgba(206, 135, 55, 0.24);
}

.secondary {
  border: 1px solid rgba(234, 179, 93, 0.42);
  background: rgba(16, 16, 15, 0.64);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 64px);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.98) 0%, rgba(9, 8, 7, 0.78) 38%, rgba(9, 8, 7, 0.18) 76%),
    linear-gradient(0deg, rgba(16, 16, 15, 1) 0%, rgba(16, 16, 15, 0) 34%),
    url("hero-hair.png") center right / cover no-repeat;
  filter: saturate(1.04);
}

.shop-hero .hero-media {
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.98) 0%, rgba(9, 8, 7, 0.76) 40%, rgba(9, 8, 7, 0.18) 76%),
    linear-gradient(0deg, rgba(16, 16, 15, 1) 0%, rgba(16, 16, 15, 0) 34%),
    url("hero-hair.png") center right / cover no-repeat;
}

.hero-content {
  position: relative;
  max-width: 680px;
}

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 78px);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.hero-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

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

.hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 610px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(24, 22, 20, 0.72);
  color: #f4e4ce;
  text-align: center;
  font-weight: 700;
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.feature-grid,
.steps,
.hair-grid,
.info-grid,
.example-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article,
.steps article,
.review-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(33, 29, 25, 0.92), rgba(20, 18, 16, 0.92));
  box-shadow: var(--shadow);
}

.feature-grid p,
.steps p,
.sale-band p,
.cta p,
.site-footer p,
.note,
.estimate-panel p,
.review-grid p,
.faq-list p {
  color: var(--muted);
}

.feature-icon,
.steps strong {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(234, 179, 93, 0.15);
  color: var(--gold);
  font-size: 12px;
}

.compact {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.estimate-panel {
  max-width: 1180px;
  margin: -58px auto 0;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 235, 199, 0.18);
  border-radius: 14px;
  background: rgba(248, 241, 230, 0.97);
  color: #221710;
  box-shadow: var(--shadow);
}

.estimate-panel h2,
.estimate-panel .eyebrow {
  color: #2a1710;
}

.estimate-panel .eyebrow {
  color: var(--gold-dark);
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-grid article {
  min-height: 84px;
  padding: 18px;
  border: 1px solid rgba(95, 69, 43, 0.16);
  border-radius: 8px;
  background: #fffaf2;
}

.info-grid span,
.example-grid span,
.review-grid span {
  display: block;
  color: #8a7055;
  font-size: 13px;
}

.info-grid strong {
  display: block;
  margin-top: 4px;
  color: #2a1710;
}

.wide {
  width: 100%;
  margin-top: 18px;
}

.hair-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hair-grid article,
.catalog-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hair-grid h3 {
  min-height: 62px;
  display: grid;
  align-items: center;
  margin: 0;
  padding: 14px;
  font-size: 15px;
  text-align: center;
}

.hair-thumb {
  display: block;
  height: 150px;
  background-image: url("hero-hair.png");
  background-size: 210%;
  background-repeat: no-repeat;
}

.thumb-natural {
  background-position: 86% 44%;
}

.thumb-light {
  background-position: 65% 42%;
  filter: saturate(0.82) brightness(1.2);
}

.thumb-length {
  background-position: 75% 58%;
}

.thumb-dense {
  background-position: 95% 54%;
  filter: contrast(1.08);
}

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

.catalog-grid article div {
  padding: 18px;
}

.catalog-grid .hair-thumb {
  background-size: cover;
  background-position: center;
}

.catalog-grid .thumb-light {
  background-image: url("catalog-blonde.png");
}

.catalog-grid .thumb-natural {
  background-image: url("catalog-chestnut.png");
}

.catalog-grid .thumb-dense {
  background-image: url("catalog-dark.png");
}

.catalog-grid .thumb-length {
  background-image: url("catalog-long.png");
}

.catalog-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.sale-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(95, 127, 103, 0.16), rgba(165, 100, 93, 0.12)),
    var(--panel);
}

.sale-band > div {
  max-width: 820px;
}

.price-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(24, 22, 20, 0.82);
}

.price-row {
  display: grid;
  grid-template-columns: 0.8fr repeat(3, 1fr);
  min-width: 720px;
}

.price-row + .price-row {
  border-top: 1px solid var(--line);
}

.price-row span {
  padding: 18px;
  border-left: 1px solid var(--line);
}

.price-row span:first-child {
  border-left: 0;
}

.price-head {
  color: var(--gold);
  font-weight: 700;
  background: rgba(234, 179, 93, 0.08);
}

.note {
  margin: 14px 0 0;
  font-size: 14px;
}

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

.steps.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.examples {
  background: rgba(255, 255, 255, 0.015);
}

.example-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.example-grid article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(12, 12, 11, 0.08), rgba(12, 12, 11, 0.88)),
    url("hero-hair.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.example-grid strong {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(11, 11, 10, 0.72);
  color: var(--text);
}

.feature-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  letter-spacing: 0;
}

.review-grid article {
  min-height: 160px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(24, 22, 20, 0.82);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 700;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
}

.cta {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(154, 100, 37, 0.12), rgba(16, 16, 15, 0.96)),
    var(--panel-2);
}

.cta .hero-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 36px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: #0b0b0a;
}

.footer-brand {
  margin-bottom: 10px;
}

address {
  color: var(--muted);
  font-style: normal;
  text-align: right;
}

address strong {
  color: var(--text);
}

address a {
  color: var(--gold);
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 720px;
    align-items: end;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(9, 8, 7, 0.2) 0%, rgba(9, 8, 7, 0.74) 48%, rgba(9, 8, 7, 0.98) 100%),
      url("hero-hair.png") center top / cover no-repeat;
  }

  .hero-points,
  .feature-grid,
  .steps,
  .steps.five,
  .hair-grid,
  .catalog-grid,
  .info-grid,
  .example-grid,
  .review-grid,
  .feature-grid.four,
  .sale-band {
    grid-template-columns: 1fr 1fr;
  }

  .sale-band {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
  }

  .header-actions {
    width: 100%;
  }

  .header-link,
  .header-call {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .header-link,
  .header-call {
    flex: 1;
  }

  .brand {
    font-size: 14px;
  }

  .hero {
    min-height: 690px;
    padding-top: 42px;
  }

  .button {
    width: 100%;
  }

  .hero-points,
  .feature-grid,
  .steps,
  .steps.five,
  .hair-grid,
  .catalog-grid,
  .info-grid,
  .example-grid,
  .review-grid,
  .feature-grid.four,
  .sale-band {
    grid-template-columns: 1fr;
  }

  .price-table {
    overflow-x: auto;
  }

  .site-footer {
    display: block;
  }

  address {
    margin-top: 24px;
    text-align: left;
  }
}
