:root {
  --ink: #181411;
  --deep: #2a211d;
  --rose: #9b5b50;
  --blush: #e8c9bf;
  --champagne: #c2a06e;
  --sage: #647466;
  --paper: #fbf7f2;
  --soft: #f2e8df;
  --line: rgba(42, 33, 29, 0.12);
  --muted: rgba(42, 33, 29, 0.68);
  --shadow: 0 24px 70px rgba(42, 33, 29, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 76px;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(24, 20, 17, 0.78);
  color: #fffaf5;
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.hero-actions,
.hero-proof,
.market-pills,
.filter-bar {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.brand span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 250, 245, 0.34);
  border-radius: 50%;
  background: rgba(255, 250, 245, 0.12);
  color: #fff;
  font-weight: 900;
}

.brand em {
  padding-left: 10px;
  border-left: 1px solid rgba(255, 250, 245, 0.24);
  color: rgba(255, 250, 245, 0.72);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  justify-content: flex-end;
  gap: 4px;
  font-size: 0.86rem;
  font-weight: 800;
}

.mobile-menu-toggle {
  display: none;
  justify-self: end;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 245, 0.32);
  border-radius: 6px;
  color: #fffaf5;
  background: rgba(255, 250, 245, 0.1);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.main-nav a {
  min-height: 38px;
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 250, 245, 0.84);
}

.main-nav a:hover,
.main-nav .nav-cta,
.main-nav a.active-link {
  color: #fff;
  background: rgba(255, 250, 245, 0.14);
}

.nav-cta {
  border: 1px solid rgba(255, 250, 245, 0.3);
}

.js-enabled .page-panel {
  display: none !important;
}

.js-enabled .page-panel.active-page {
  display: block !important;
  min-height: calc(100vh - 86px);
}

.js-enabled .hero.page-panel.active-page {
  display: flex !important;
}

.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  overflow: hidden;
  background: var(--ink);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 20, 17, 0.9) 0%, rgba(24, 20, 17, 0.6) 42%, rgba(24, 20, 17, 0.2) 100%),
    linear-gradient(0deg, rgba(24, 20, 17, 0.55), rgba(24, 20, 17, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: calc(100vh - 68px);
  max-width: 760px;
  padding: clamp(84px, 11vw, 160px) clamp(20px, 6vw, 76px) 76px;
  color: #fffaf5;
}

.eyebrow {
  margin: 0 0 14px;
  color: #efd5c9;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.15em;
}

.eyebrow.dark {
  color: var(--rose);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.8rem, 6.4vw, 6.8rem);
  line-height: 0.92;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 250, 245, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 920;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(42, 33, 29, 0.14);
}

.button.primary {
  color: #fff;
  border-color: var(--rose);
  background: var(--rose);
}

.button.ghost {
  color: #fffaf5;
  border-color: rgba(255, 250, 245, 0.38);
  background: rgba(255, 250, 245, 0.08);
}

.button.outline {
  color: var(--deep);
  background: #fff;
}

.text-link {
  color: var(--rose);
  font-size: 0.9rem;
  font-weight: 920;
}

.hero-proof {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span,
.market-pills span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 250, 245, 0.26);
  border-radius: 999px;
  color: rgba(255, 250, 245, 0.9);
  font-size: 0.78rem;
  font-weight: 850;
}

.section {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 68px);
}

.market-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 26px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.lookbook-section {
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid var(--line);
  background: #fff;
}

.lookbook-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding-inline: 18px;
  animation: lookbookMove 36s linear infinite;
}

.lookbook-section:hover .lookbook-track {
  animation-play-state: paused;
}

.lookbook-track figure {
  position: relative;
  width: min(420px, 70vw);
  height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 14px 40px rgba(42, 33, 29, 0.12);
  flex: 0 0 auto;
}

.lookbook-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lookbook-track figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fffaf5;
  background: rgba(24, 20, 17, 0.64);
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.salon-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: stretch;
  min-height: 760px;
  background:
    radial-gradient(circle at 8% 18%, rgba(194, 160, 110, 0.22), transparent 34%),
    linear-gradient(135deg, #181411 0%, #2a211d 44%, #5c2f34 100%);
  color: #fffaf5;
}

.salon-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
}

.salon-copy h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(2.45rem, 4.7vw, 5.8rem);
  line-height: 0.95;
}

.salon-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 250, 245, 0.74);
  font-size: 1.02rem;
  line-height: 1.75;
}

.salon-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
}

.salon-controls button {
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 250, 245, 0.18);
  border-radius: 8px;
  color: rgba(255, 250, 245, 0.72);
  background: rgba(255, 250, 245, 0.07);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.salon-controls button:hover,
.salon-controls button.active {
  transform: translateY(-2px);
  border-color: rgba(234, 208, 165, 0.72);
  color: #fffaf5;
  background: rgba(234, 208, 165, 0.16);
}

.salon-stage {
  position: relative;
  display: grid;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 245, 0.16);
  border-radius: 8px;
  background: #120f0d;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.salon-stage::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 15, 13, 0.58), transparent 46%),
    linear-gradient(0deg, rgba(18, 15, 13, 0.9), rgba(18, 15, 13, 0.02) 62%);
  content: "";
  pointer-events: none;
}

.salon-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.salon-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
  transform: scale(1.04);
  transition:
    opacity 420ms ease,
    transform 900ms ease;
}

.salon-stage.is-changing .salon-image-wrap img {
  opacity: 0.56;
  transform: scale(1.08) translateX(1.4%);
}

.salon-panel {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 560px;
  margin: auto 28px 28px auto;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 250, 245, 0.18);
  border-radius: 8px;
  background: rgba(24, 20, 17, 0.78);
  backdrop-filter: blur(18px);
}

.salon-panel span {
  display: inline-block;
  color: #ead0a5;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.salon-panel h3 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 3.8vw, 4.2rem);
  line-height: 0.95;
}

.salon-panel p {
  margin: 14px 0 0;
  color: rgba(255, 250, 245, 0.78);
  line-height: 1.68;
}

.salon-panel dl {
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
}

.salon-panel dl div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 250, 245, 0.14);
}

.salon-panel dt {
  color: rgba(234, 208, 165, 0.86);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.salon-panel dd {
  margin: 0;
  color: rgba(255, 250, 245, 0.82);
  line-height: 1.5;
}

.market-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.42rem;
}

.market-strip p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.market-pills {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.market-pills span {
  color: var(--deep);
  border-color: var(--line);
  background: var(--soft);
}

.rental-system-section {
  background:
    linear-gradient(135deg, rgba(24, 20, 17, 0.92), rgba(54, 39, 33, 0.94)),
    var(--ink);
  color: #fffaf5;
}

.rental-system-section .section-heading h2,
.rental-system-section .section-heading p:not(.eyebrow) {
  color: #fffaf5;
}

.rental-system-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 250, 245, 0.74);
}

.rental-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.rental-card {
  display: grid;
  align-content: start;
  min-height: 290px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 250, 245, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 250, 245, 0.11), rgba(255, 250, 245, 0.04)),
    rgba(255, 250, 245, 0.05);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
}

.primary-rental-card {
  grid-row: span 2;
  min-height: 598px;
  background:
    linear-gradient(0deg, rgba(24, 20, 17, 0.74), rgba(24, 20, 17, 0.32)),
    linear-gradient(135deg, rgba(155, 91, 80, 0.3), rgba(194, 160, 110, 0.12));
}

.rental-card span {
  color: #ead0a5;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rental-card h3 {
  margin-top: 14px;
  font-size: clamp(1.7rem, 3vw, 3.45rem);
  line-height: 0.98;
}

.rental-card p {
  margin: 16px 0 0;
  color: rgba(255, 250, 245, 0.78);
  line-height: 1.68;
}

.rental-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.rental-card li {
  display: flex;
  gap: 10px;
  color: rgba(255, 250, 245, 0.82);
  line-height: 1.55;
}

.rental-card li::before {
  width: 7px;
  height: 7px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--champagne);
  content: "";
  flex: 0 0 auto;
}

.rental-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.rental-proof-grid div {
  min-height: 136px;
  padding: 18px;
  border: 1px solid rgba(255, 250, 245, 0.13);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.06);
}

.rental-proof-grid strong {
  display: block;
  color: #fffaf5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.3vw, 2.5rem);
  line-height: 1;
}

.rental-proof-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 250, 245, 0.72);
  line-height: 1.48;
}

.category-map-section {
  background:
    linear-gradient(135deg, rgba(194, 160, 110, 0.14), rgba(255, 255, 255, 0) 34%),
    #fff;
}

.category-map-section .split-heading > p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

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

.category-map-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(251, 247, 242, 0.88), rgba(255, 255, 255, 1)),
    #fff;
  box-shadow: 0 14px 42px rgba(42, 33, 29, 0.08);
}

.category-map-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--deep);
  font-size: 0.78rem;
  font-weight: 950;
}

.category-map-grid h3 {
  color: var(--deep);
  font-size: 1.42rem;
  line-height: 1.08;
}

.category-map-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.shape-section {
  background:
    linear-gradient(135deg, rgba(100, 116, 102, 0.12), rgba(255, 255, 255, 0) 45%),
    #fff;
}

.shape-section .split-heading > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.shape-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.shape-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.shape-card-large {
  grid-row: span 3;
  min-height: 700px;
}

.shape-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 650ms ease;
}

.shape-card:hover img {
  transform: scale(1.035);
}

.shape-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(24, 20, 17, 0.88), rgba(24, 20, 17, 0.04) 62%),
    linear-gradient(90deg, rgba(24, 20, 17, 0.28), transparent 60%);
  content: "";
}

.shape-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: clamp(22px, 3vw, 34px);
  color: #fffaf5;
}

.shape-card span {
  color: #ead0a5;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shape-card h3 {
  max-width: 620px;
  margin-top: 8px;
  font-size: clamp(1.7rem, 3vw, 3.4rem);
  line-height: 0.98;
}

.shape-card p {
  max-width: 620px;
  margin: 12px 0 0;
  color: rgba(255, 250, 245, 0.8);
  line-height: 1.62;
}

.color-section {
  background:
    linear-gradient(135deg, rgba(80, 116, 151, 0.13), rgba(255, 255, 255, 0) 30%),
    linear-gradient(225deg, rgba(219, 109, 82, 0.13), rgba(255, 255, 255, 0) 36%),
    var(--paper);
}

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

.color-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(42, 33, 29, 0.1);
}

.color-card img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  transition: transform 620ms ease;
}

.color-card:hover img {
  transform: scale(1.04);
}

.color-card div {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.color-card span {
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.color-card:nth-child(1) span {
  color: #47769d;
}

.color-card:nth-child(2) span {
  color: #8060a8;
}

.color-card:nth-child(3) span {
  color: #b85f3d;
}

.color-card:nth-child(4) span {
  color: #0f7565;
}

.color-card h3 {
  color: var(--deep);
  font-size: 1.42rem;
  line-height: 1.08;
}

.color-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin-bottom: 34px;
}

.section-heading h2 {
  color: var(--deep);
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  line-height: 1;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.split-heading {
  max-width: none;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  align-items: end;
}

.best-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}

.best-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.best-card.large {
  grid-row: span 2;
  min-height: 680px;
}

.best-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 600ms ease;
}

.best-card:hover img {
  transform: scale(1.04);
}

.best-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 20, 17, 0.82), rgba(24, 20, 17, 0.02) 58%);
  content: "";
}

.best-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 28px;
  color: #fffaf5;
}

.best-card span {
  color: #efd5c9;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.best-card h3 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 3vw, 3.3rem);
}

.best-card p {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255, 250, 245, 0.78);
  line-height: 1.6;
}

.filter-bar {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-bar button {
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--deep);
  background: #fff;
  font-weight: 850;
  cursor: pointer;
}

.filter-bar button.active {
  color: #fff;
  border-color: var(--deep);
  background: var(--deep);
}

.product-grid,
.accessory-grid,
.logistics-grid {
  display: grid;
  gap: 18px;
}

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

.product-card,
.accessory-card,
.logistics-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 44px rgba(42, 33, 29, 0.08);
}

.product-card {
  display: grid;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.product-card.is-hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  aspect-ratio: 1.12 / 1;
  overflow: hidden;
  background: var(--soft);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.product-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-kicker span {
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--rose);
  background: rgba(155, 91, 80, 0.1);
  font-size: 0.72rem;
  font-weight: 950;
}

.product-body h3 {
  font-size: 1.55rem;
  line-height: 1.04;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.spec-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(42, 33, 29, 0.76);
  font-size: 0.9rem;
}

.spec-list li {
  display: flex;
  gap: 8px;
}

.spec-list li::before {
  width: 5px;
  height: 5px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--champagne);
  content: "";
  flex: 0 0 auto;
}

.accessories-section {
  background: #fff;
}

.trust-section {
  background:
    linear-gradient(135deg, rgba(100, 116, 102, 0.12), rgba(255, 255, 255, 0) 50%),
    #fff;
}

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

.trust-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 44px rgba(42, 33, 29, 0.08);
}

.trust-grid span,
.trust-proof strong {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-grid h3 {
  margin-top: 14px;
  font-size: 1.45rem;
}

.trust-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.trust-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.trust-proof span {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--deep);
  background: var(--soft);
  font-size: 0.84rem;
  font-weight: 850;
}

.style-section {
  background:
    linear-gradient(135deg, rgba(100, 116, 102, 0.12), rgba(255, 255, 255, 0) 48%),
    var(--paper);
}

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

.style-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 18px 52px rgba(42, 33, 29, 0.12);
}

.style-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 560ms ease;
}

.style-card:hover img {
  transform: scale(1.04);
}

.style-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 20, 17, 0.78), rgba(24, 20, 17, 0.04) 58%);
  content: "";
}

.style-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 20px;
  color: #fffaf5;
}

.style-card h3 {
  font-size: 1.55rem;
}

.style-card p {
  margin: 8px 0 0;
  color: rgba(255, 250, 245, 0.74);
  line-height: 1.55;
}

.limited-section {
  background:
    linear-gradient(135deg, rgba(194, 160, 110, 0.16), rgba(255, 255, 255, 0) 46%),
    #fffaf5;
}

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

.limited-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(194, 160, 110, 0.28);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.limited-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 700ms ease;
}

.limited-card:hover img {
  transform: scale(1.035);
}

.limited-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 20, 17, 0.82), rgba(24, 20, 17, 0.06) 60%);
  content: "";
}

.limited-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 30px;
  color: #fffaf5;
}

.limited-card span {
  color: #ead0a5;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.limited-card h3 {
  margin-top: 10px;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
}

.limited-card p {
  max-width: 560px;
  color: rgba(255, 250, 245, 0.78);
  line-height: 1.65;
}

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

.accessory-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 54px;
}

.accessory-product-card .product-media {
  aspect-ratio: 1.24 / 1;
}

.accessory-note {
  margin-top: 12px;
  margin-bottom: 24px;
}

.accessory-note h2 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.accessory-card {
  padding: 24px;
}

.accessory-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--sage);
  font-weight: 950;
}

.accessory-card h3 {
  font-size: 1.35rem;
}

.accessory-card p,
.logistics-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.logistics-section {
  background:
    linear-gradient(135deg, rgba(155, 91, 80, 0.12), rgba(255, 255, 255, 0) 46%),
    var(--soft);
}

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

.logistics-grid article {
  padding: 24px;
}

.logistics-grid span {
  color: var(--rose);
  font-size: 0.84rem;
  font-weight: 950;
}

.logistics-grid h3 {
  margin-top: 14px;
  font-size: 1.38rem;
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
  background: var(--ink);
  color: #fffaf5;
}

.inquiry-copy h2 {
  max-width: 700px;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 0.98;
}

.inquiry-copy p:not(.eyebrow) {
  color: rgba(255, 250, 245, 0.76);
  line-height: 1.75;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 245, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.08);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 250, 245, 0.82);
  font-size: 0.84rem;
  font-weight: 850;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 245, 0.14);
  border-radius: 6px;
  padding: 13px;
  color: #fffaf5;
  background: rgba(255, 250, 245, 0.08);
  font: inherit;
  outline: 0;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(255, 250, 245, 0.46);
}

.form-note {
  margin: 0;
  color: rgba(255, 250, 245, 0.68);
  font-size: 0.86rem;
  line-height: 1.55;
}

.form-note a {
  color: #fffaf5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wide {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(18px, 5vw, 68px);
  color: rgba(255, 250, 245, 0.72);
  background: #0f0c0a;
  font-size: 0.9rem;
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: #fffaf5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.detail-page {
  background: #fffaf5;
}

.policy-shell {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(88px, 12vw, 132px) 0 clamp(64px, 8vw, 96px);
  color: var(--deep);
}

.policy-shell h1 {
  max-width: 820px;
  margin: 12px 0 18px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
}

.policy-shell h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.policy-shell p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
}

.policy-shell a {
  color: var(--rose);
  font-weight: 850;
}

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

.policy-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(42, 33, 29, 0.08);
}

.contact-rfq {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(42, 33, 29, 0.08);
}

.contact-rfq h2 {
  margin-top: 0;
}

.thank-you-shell {
  min-height: calc(100vh - 132px);
}

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

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.82fr);
  min-height: calc(100vh - 68px);
  background: #fff;
}

.detail-media {
  min-height: 620px;
  background: var(--soft);
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(36px, 6vw, 76px);
}

.detail-back {
  width: max-content;
  color: var(--rose);
  font-size: 0.86rem;
  font-weight: 920;
}

.detail-copy h1 {
  color: var(--deep);
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  line-height: 0.92;
}

.detail-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.detail-section {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 68px);
}

.spec-detail-section {
  background:
    linear-gradient(135deg, rgba(100, 116, 102, 0.1), rgba(255, 255, 255, 0) 48%),
    #fff;
}

.spec-detail-section .split-heading > p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.spec-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(250px, 0.78fr) minmax(250px, 0.78fr);
  gap: 18px;
}

.spec-table-card,
.spec-list-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(42, 33, 29, 0.08);
}

.spec-table-card h3,
.spec-list-card h3 {
  margin: 0 0 18px;
  color: var(--deep);
  font-size: 1.56rem;
}

.spec-table {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.spec-table dt {
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-table dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: var(--paper);
}

.detail-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(42, 33, 29, 0.08);
}

.detail-grid h2 {
  margin-bottom: 14px;
  font-size: 1.6rem;
}

.detail-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.quote-builder-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 26px;
  align-items: start;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(155, 91, 80, 0.1), rgba(255, 255, 255, 0) 54%),
    #fff;
}

.quote-builder-copy h2 {
  max-width: 640px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.quote-builder-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.75;
}

.quote-builder-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 50px rgba(42, 33, 29, 0.08);
}

.quote-builder-form label {
  display: grid;
  gap: 7px;
  color: var(--deep);
  font-size: 0.84rem;
  font-weight: 880;
}

.quote-builder-form input,
.quote-builder-form select,
.quote-builder-form textarea {
  min-height: 44px;
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--deep);
  background: #fff;
  font: inherit;
}

.quote-builder-form textarea {
  resize: vertical;
}

.detail-specs {
  font-size: 0.95rem;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(1.2%, -1%, 0);
  }
}

@keyframes lookbookMove {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero > img,
  .lookbook-track,
  .salon-image-wrap img {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 14px;
    left: 14px;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255, 250, 245, 0.18);
    border-radius: 8px;
    background: rgba(24, 20, 17, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  }

  .nav-open .main-nav {
    display: grid;
  }

  .main-nav a {
    min-height: 44px;
    justify-content: center;
    text-align: center;
  }

  .market-strip,
  .salon-section,
  .shape-grid,
  .rental-grid,
  .split-heading,
  .best-grid,
  .detail-hero,
  .spec-detail-grid,
  .quote-builder-section,
  .contact-rfq,
  .inquiry-section {
    grid-template-columns: 1fr;
  }

  .best-card.large {
    min-height: 420px;
  }

  .shape-card-large {
    min-height: 520px;
  }

  .primary-rental-card {
    min-height: 420px;
  }

  .salon-copy {
    min-height: auto;
  }

  .salon-stage {
    min-height: 620px;
  }

  .product-grid,
  .accessory-product-grid,
  .logistics-grid,
  .rental-proof-grid,
  .category-map-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .accessory-grid,
  .color-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .limited-grid {
    grid-template-columns: 1fr;
  }

  .detail-grid,
  .related-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-pills,
  .filter-bar {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    max-width: 130px;
  }

  .brand em {
    display: none;
  }

  .main-nav {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px;
  }

  .main-nav a {
    min-height: 40px;
    padding: 8px 10px;
  }

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .salon-section {
    min-height: auto;
  }

  .salon-controls {
    grid-template-columns: 1fr;
  }

  .salon-stage {
    min-height: 720px;
  }

  .salon-panel {
    margin: auto 14px 14px;
  }

  .salon-panel dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-grid,
  .accessory-product-grid,
  .accessory-grid,
  .style-grid,
  .color-grid,
  .policy-grid,
  .detail-grid,
  .spec-detail-grid,
  .related-detail-grid,
  .shape-grid,
  .rental-grid,
    .rental-proof-grid,
    .category-map-grid,
    .trust-grid,
    .logistics-grid,
    .quote-builder-form,
    .inquiry-form {
    grid-template-columns: 1fr;
  }

  .spec-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .quote-builder-form {
    padding: 16px;
  }

  .section {
    padding-block: 54px;
  }
}
