:root {
  --black: #151515;
  --charcoal: #252525;
  --muted: #666;
  --line: #dcdcdc;
  --soft-line: #e9e9e9;
  --paper: #fff;
  --soft: #f6f6f6;
  --placeholder: #cecece;
  --placeholder-dark: #b8b8b8;
  --success-bg: #f2f8f1;
  --success-border: #9fbd99;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 54px);
  --header-height: 96px;
  --display: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.18; }
h1 { font-size: clamp(42px, 5vw, 76px); font-weight: 400; }
h2 { margin-bottom: 28px; font-size: clamp(30px, 3.1vw, 48px); font-weight: 500; letter-spacing: -0.025em; }
h3 { font-size: 18px; font-weight: 600; }
p { margin-bottom: 20px; }

.container { width: min(var(--container), calc(100% - (var(--gutter) * 2))); margin-inline: auto; }
.section { padding: clamp(72px, 8vw, 120px) 0; }
.section-label {
  margin-bottom: 18px;
  color: #565656;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}
.muted-section { background: var(--soft); }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 10px 16px; background: #fff; color: #111; transform: translateY(-140%); }
.skip-link:focus { transform: none; }

/* Header */
.site-header {
  position: relative;
  z-index: 50;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid var(--soft-line);
  background: #fff;
  color: var(--black);
}
.home-page .site-header {
  position: absolute;
  top: 0;
  left: 0;
  border-color: rgba(255,255,255,.18);
  background: rgba(20,20,20,.13);
  color: #fff;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.home-page .site-header.is-scrolled {
  position: fixed;
  border-color: var(--soft-line);
  background: rgba(255,255,255,.97);
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  color: var(--black);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.wordmark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  width: 156px;
  line-height: 0;
}
.wordmark-image { width: 100%; height: auto; }
.desktop-nav > ul { display: flex; align-items: center; gap: clamp(30px, 4vw, 58px); margin: 0; padding: 0; list-style: none; }
.desktop-nav a, .nav-dropdown-toggle { font-size: 15px; font-weight: 500; }
.desktop-nav a { position: relative; display: inline-flex; align-items: center; height: var(--header-height); }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 27px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 8px; height: var(--header-height); border: 0; background: none; color: inherit; cursor: pointer; }
.nav-dropdown-toggle::after { content: ""; width: 6px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  min-width: 230px;
  margin: 0;
  padding: 12px 0;
  border: 1px solid var(--soft-line);
  background: #fff;
  color: var(--black);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity .18s ease, transform .18s ease;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu, .nav-dropdown.is-open .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.nav-dropdown-menu a { display: block; height: auto; padding: 11px 22px; font-size: 14px; white-space: nowrap; }
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: var(--soft); }
.mobile-menu-button { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; border: 0; background: var(--black); color: #fff; cursor: pointer; }
.mobile-menu-button span, .mobile-menu-button::before, .mobile-menu-button::after { content: ""; display: block; position: absolute; width: 20px; height: 1.5px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.mobile-menu-button span { transform: translateY(0); }
.mobile-menu-button::before { transform: translateY(-7px); }
.mobile-menu-button::after { transform: translateY(7px); }
.mobile-menu-button[aria-expanded="true"] span { opacity: 0; }
.mobile-menu-button[aria-expanded="true"]::before { transform: rotate(45deg); }
.mobile-menu-button[aria-expanded="true"]::after { transform: rotate(-45deg); }
.mobile-nav { display: none; }

/* Placeholders */
.media-placeholder { position: relative; overflow: hidden; background-color: var(--placeholder); }
.media-placeholder::before, .media-placeholder::after { content: ""; position: absolute; pointer-events: none; }
.media-placeholder::before { inset: 0; background-image: linear-gradient(135deg, rgba(255,255,255,.16), transparent 38%, rgba(0,0,0,.04)); }
.media-placeholder::after { top: 50%; left: 50%; width: 44px; height: 34px; border: 2px solid rgba(255,255,255,.42); transform: translate(-50%, -50%); }

/* Home */
.hero { position: relative; min-height: 520px; height: clamp(520px, 33.333vw, 700px); overflow: hidden; color: #fff; background: #f2e7d8; }
.hero-media { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hero-copy { position: absolute; right: 0; bottom: 0; left: 0; padding: 40px max(var(--gutter), calc((100% - var(--container))/2)); background: rgba(20,20,20,.60); }
.hero-copy h1 { max-width: 1060px; margin-bottom: 12px; font-family: var(--sans); font-size: clamp(36px, 4.2vw, 61px); font-weight: 500; letter-spacing: -.035em; }
.hero-copy p { margin: 0; font-size: clamp(17px, 1.55vw, 23px); }
.split-layout { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.42fr); gap: clamp(50px, 7vw, 110px); align-items: center; }
.section-copy h2 { max-width: 600px; }
.section-copy p { max-width: 570px; color: #555; }
.factory-media { position: relative; min-height: 500px; overflow: hidden; background: #111; }
.factory-video { position: absolute; inset: 0; display: block; width: 100%; height: 100%; background: #111; object-fit: cover; object-position: center; }
.play-control { position: absolute; top: 50%; left: 50%; z-index: 2; width: 74px; height: 74px; border: 2px solid #fff; border-radius: 50%; transform: translate(-50%, -50%); }
.play-control::after { content: ""; position: absolute; top: 50%; left: 54%; border-top: 11px solid transparent; border-bottom: 11px solid transparent; border-left: 17px solid #fff; transform: translate(-50%, -50%); }
.text-link { display: inline-flex; gap: 10px; align-items: center; padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: 14px; font-weight: 600; }
.section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.section-heading-row > h2 { margin-bottom: 28px; }
.collection-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 2vw, 30px); }
.collection-poster {
  --spot-x: 50%;
  --spot-y: 50%;
  --glow-opacity: 0;
  --glow-gold: rgba(170,131,81,0);
  --glow-wine: rgba(72,25,35,0);
  isolation: isolate;
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.collection-poster-image { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.collection-poster::before {
  z-index: 1;
  background-image:
    radial-gradient(220px circle at var(--spot-x) var(--spot-y), var(--glow-gold), var(--glow-wine) 35%, transparent 70%),
    linear-gradient(135deg, rgba(255,255,255,.16), transparent 38%, rgba(0,0,0,.04));
  opacity: 1;
}
.collection-poster::after {
  z-index: 2;
  display: block;
  inset: -1px;
  width: auto;
  height: auto;
  border: 2px solid transparent;
  background: radial-gradient(190px circle at var(--spot-x) var(--spot-y), rgba(176,138,87,.98), rgba(72,25,35,.62) 36%, transparent 72%) border-box;
  opacity: var(--glow-opacity);
  transform: none;
  transition: opacity .18s ease;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}
.collection-poster.is-glowing,
.collection-poster:focus-visible {
  --glow-opacity: 1;
  --glow-gold: rgba(170,131,81,.30);
  --glow-wine: rgba(72,25,35,.13);
  border-color: rgba(170,131,81,.30);
  box-shadow: 0 18px 38px -26px rgba(72,25,35,.62);
}
.collection-poster span { position: relative; z-index: 3; padding: 12px 30px; background: rgba(17,17,17,.91); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .08em; transition: background .2s ease, transform .2s ease; }
.collection-poster:hover span, .collection-poster:focus-visible span { background: #000; transform: translateY(-2px); }
.capabilities-section { padding-top: 0; }
.capability-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability { padding: 42px 28px; text-align: center; }
.capability + .capability { border-left: 1px solid var(--line); }
.line-icon { display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 23px; border: 1px solid #333; border-radius: 50%; font-size: 12px; letter-spacing: .08em; }
.capability h3 { margin-bottom: 12px; }
.capability p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.media-section { padding-top: 0; }
.rail-controls { display: flex; gap: 8px; padding-bottom: 28px; }
.rail-controls button { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line); background: #fff; cursor: pointer; }
.rail-controls button:hover { background: var(--black); color: #fff; }
.media-rail { display: grid; grid-auto-columns: 34%; grid-auto-flow: column; gap: 18px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; scroll-snap-type: x mandatory; }
.media-rail::-webkit-scrollbar { display: none; }
.rail-item { aspect-ratio: 16 / 9; scroll-snap-align: start; }
.gallery-image { overflow: hidden; background: var(--placeholder); }
.gallery-image img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.contact-prompt { padding: 58px 0; border-top: 1px solid var(--line); background: var(--soft); }
.contact-prompt-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.contact-prompt h2 { margin: 0; font-size: clamp(28px, 3vw, 44px); }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 32px; border: 1px solid var(--black); font-size: 12px; font-weight: 700; letter-spacing: .12em; cursor: pointer; }
.button-dark { background: var(--black); color: #fff; }
.button-dark:hover, .button-dark:focus-visible { background: #3b3b3b; }

/* Page banners */
.page-banner { position: relative; height: 300px; color: #fff; }
.page-banner > .media-placeholder { position: absolute; inset: 0; background: #8f8f8f; }
.page-banner > .media-placeholder::after { display: none; }
.page-banner > .media-placeholder::before { background: rgba(0,0,0,.36); }
.about-banner-media::before { z-index: 1; }
.about-banner-image { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.contact-banner-media::before { z-index: 1; }
.contact-banner-image { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.bob-banner-media::before { z-index: 1; }
.bob-banner-image { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.straight-banner-media::before { z-index: 1; }
.straight-banner-image { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.kinky-curly-banner-media::before { z-index: 1; }
.kinky-curly-banner-image { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.curly-banner-media::before { z-index: 1; }
.curly-banner-image { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-banner-overlay { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; padding: 30px; text-align: center; }
.page-banner h1 { margin: 0; font-family: var(--display); font-size: clamp(48px, 6vw, 80px); }
.compact-banner { height: 360px; }
.category-banner { height: 310px; }

/* About */
.about-intro { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
.portrait-media { min-height: 650px; }
.about-services-poster { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-production-photo { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 52px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.about-feature-grid article { min-height: 220px; padding: 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.about-feature-grid p { margin: 0; color: var(--muted); }
.wide-media-copy > div:first-child { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.wide-media-copy > div:first-child h2 { max-width: 700px; }
.about-media-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 18px; }
.about-media-grid > div { aspect-ratio: 4 / 3; }

/* Catalog */
.catalog-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; margin-bottom: 52px; }
.catalog-intro h2 { margin-bottom: 0; }
.catalog-intro > p { max-width: 440px; margin-bottom: 0; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 50px 24px; }
@media (min-width: 981px) {
  body[data-category="straight"] .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  body[data-category="kinky-curly"] .product-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.product-card { display: block; }
.product-card-media { aspect-ratio: 3 / 4; margin-bottom: 18px; transition: background-color .2s ease; }
.product-card-image { position: relative; overflow: hidden; background: #e4ddd9; isolation: isolate; border-radius: inherit; }
.product-card-image::after { display: none; }
.product-card-foreground { position: absolute; inset: 0; z-index: 1; display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.product-card:hover .product-card-media { background-color: var(--placeholder-dark); }
.product-card-media::after { width: 50px; height: 40px; }
.product-card h3 { margin-bottom: 6px; font-size: 18px; }
.product-card p { margin: 0; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .07em; }

/* Product detail */
.product-main { padding: clamp(50px, 7vw, 92px) 0 clamp(80px, 9vw, 140px); }
.product-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); gap: clamp(48px, 7vw, 100px); align-items: start; }
.product-stage { position: relative; aspect-ratio: 1 / .79; overflow: hidden; background: var(--placeholder); cursor: crosshair; }
.product-visual { position: absolute; inset: 0; }
.product-image-surface { overflow: hidden; background-color: #e4ddd9; isolation: isolate; border-radius: inherit; }
.modal-visual.product-image-surface { position: relative; }
.product-card-image::before,
.product-image-surface::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 0;
  background-image: linear-gradient(rgba(228,221,217,.46), rgba(228,221,217,.46)), var(--product-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(18px);
  transform: scale(1.06);
  pointer-events: none;
}
.product-image-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: var(--product-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.product-visual span { position: absolute; top: calc(50% + 35px); left: 50%; z-index: 2; color: rgba(255,255,255,.72); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; transform: translateX(-50%); }
.zoom-lens { position: absolute; top: 0; left: 0; z-index: 3; width: clamp(150px, 14vw, 190px); aspect-ratio: 1; overflow: hidden; border: 2px solid rgba(255,255,255,.95); border-radius: 50%; background: var(--placeholder); box-shadow: 0 8px 28px rgba(0,0,0,.24), 0 0 0 1px rgba(0,0,0,.16); opacity: 0; pointer-events: none; transform: translate(-50%, -50%); transition: opacity .12s ease; }
.product-stage.is-zooming .zoom-lens { opacity: 1; }
.zoom-lens-visual { position: absolute; top: 0; left: 0; max-width: none; transform-origin: 0 0; will-change: transform; }
.zoom-lens-visual span { position: absolute; top: calc(50% + 35px); left: 50%; z-index: 2; color: rgba(255,255,255,.72); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; transform: translateX(-50%); }
.fullscreen-button { position: absolute; top: 20px; right: 20px; z-index: 4; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(0,0,0,.18); background: rgba(255,255,255,.86); font-size: 22px; cursor: pointer; }
.zoom-hint { position: absolute; right: 20px; bottom: 18px; z-index: 4; padding: 4px 10px; background: rgba(255,255,255,.78); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.thumbnail-row { display: grid; grid-template-columns: repeat(var(--thumbnail-count, 4), 1fr); gap: 14px; margin-top: 16px; }
.thumbnail { position: relative; aspect-ratio: 1 / .8; border: 1px solid transparent; background: var(--placeholder); cursor: pointer; }
.thumbnail::after { content: ""; position: absolute; inset: 6px; border: 1px solid rgba(255,255,255,.30); }
.thumbnail.has-image { background-color: #e4ddd9; background-position: center; background-repeat: no-repeat; background-size: cover; }
.thumbnail.has-image::after { display: none; }
.thumbnail[aria-current="true"] { border-color: var(--black); }
.product-info { padding-top: 8px; }
.product-info h1 { margin-bottom: 24px; font-family: var(--display); font-size: clamp(42px, 4vw, 64px); }
.product-summary { max-width: 560px; margin-bottom: 38px; color: var(--muted); }
.spec-table { margin: 0; border-top: 1px solid var(--line); }
.spec-row { display: grid; grid-template-columns: minmax(140px, .72fr) minmax(0, 1.28fr); padding: 16px 0; border-bottom: 1px solid var(--line); }
.spec-row dt { font-weight: 600; }
.spec-row dd { margin: 0; color: #444; }
.spec-note { margin-top: 24px; color: var(--muted); font-size: 13px; }
.gallery-modal { position: fixed; inset: 0; z-index: 200; display: grid; grid-template-columns: 80px minmax(0, 900px) 80px; place-content: center; align-items: center; gap: 24px; padding: 70px 30px; background: rgba(8,8,8,.95); color: #fff; }
.gallery-modal[hidden] { display: none; }
.modal-visual { width: min(72vw, 900px); aspect-ratio: 1 / .78; }
.modal-visual span { position: absolute; top: calc(50% + 36px); left: 50%; color: rgba(255,255,255,.72); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; transform: translateX(-50%); }
.modal-close { position: absolute; top: 26px; right: 32px; width: 48px; height: 48px; border: 0; background: transparent; color: #fff; font-size: 40px; cursor: pointer; }
.modal-arrow { width: 56px; height: 56px; border: 1px solid rgba(255,255,255,.4); background: transparent; color: #fff; font-size: 25px; cursor: pointer; }
.modal-count { position: absolute; right: 0; bottom: 24px; left: 0; text-align: center; font-size: 12px; letter-spacing: .12em; }

/* Contact */
.consultation-section { padding-bottom: 62px; text-align: center; }
.consultation-section h2 { font-family: var(--display); }
.consultation-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 46px; }
.consultation-card { min-height: 250px; padding: 34px 24px 28px; border: 1px solid var(--line); background: #fff; }
.consultation-card .card-icon { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 26px; border: 1px solid var(--black); border-radius: 50%; font-size: 12px; letter-spacing: .08em; }
.consultation-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.inquiry-section { padding-top: 38px; border-top: 1px solid var(--line); }
.inquiry-layout { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: clamp(50px, 7vw, 110px); }
.inquiry-copy { padding-right: clamp(0px, 3vw, 40px); border-right: 1px solid var(--line); }
.inquiry-copy h2 { font-family: var(--display); }
.inquiry-copy > p { color: var(--muted); }
.contact-details { display: grid; gap: 16px; margin-top: 38px; font-style: normal; }
.contact-details a { display: flex; align-items: center; gap: 12px; }
.contact-details a::before { content: ""; width: 8px; height: 8px; border: 1px solid var(--black); border-radius: 50%; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.inquiry-form label > span, .inquiry-form legend { display: block; margin-bottom: 7px; color: #333; font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.inquiry-form input:not([type="radio"]), .inquiry-form select, .inquiry-form textarea { width: 100%; border: 1px solid #cfcfcf; border-radius: 0; background: #fff; color: var(--black); outline: none; }
.inquiry-form input:not([type="radio"]), .inquiry-form select { height: 52px; padding: 0 14px; }
.inquiry-form textarea { resize: vertical; min-height: 140px; padding: 13px 14px; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--black); box-shadow: 0 0 0 1px var(--black); }
.inquiry-form .is-invalid { border-color: #a62c2c !important; box-shadow: 0 0 0 1px #a62c2c !important; }
.form-wide { grid-column: 1 / -1; }
.inquiry-form fieldset { margin: 20px 0 22px; padding: 0; border: 0; }
.radio-grid { display: flex; flex-wrap: wrap; gap: 13px 25px; }
.radio-grid label { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.radio-grid label > span { margin: 0; color: var(--charcoal); font-weight: 400; }
.radio-grid input { width: 16px; height: 16px; margin: 0; accent-color: var(--black); }
.inquiry-form { position: relative; }
.submit-button { width: 100%; }
.submit-button:disabled { cursor: wait; opacity: .72; }
.form-note { margin: 10px 0 0; color: var(--muted); font-size: 12px; }
.success-message { margin-top: 16px; padding: 13px 16px; border: 1px solid var(--success-border); background: var(--success-bg); color: #34552f; }
.success-message.is-error { border-color: #d7abab; background: #fff3f3; color: #7b2020; }
.form-honeypot { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: 1.05fr .85fr 1.2fr; gap: 60px; padding: 58px 0; }
.footer-brand .wordmark { width: 180px; margin-bottom: 18px; }
.footer-brand p { max-width: 340px; margin: 0; color: var(--muted); font-size: 14px; }
.footer-column h2 { margin-bottom: 18px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-column ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.footer-column a { color: #4c4c4c; font-size: 14px; }
.footer-column a:hover { color: #000; text-decoration: underline; }
.footer-contact { display: grid; gap: 12px; }
.footer-bottom { padding: 17px var(--gutter); border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; text-align: center; }
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 80; display: grid; place-items: center; width: 62px; height: 62px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: #202020; color: #fff; box-shadow: 0 8px 25px rgba(0,0,0,.24); transition: transform .2s ease, background .2s ease; }
.whatsapp-float:hover, .whatsapp-float:focus-visible { background: #000; transform: translateY(-3px); }
.whatsapp-float svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 980px) {
  :root { --header-height: 78px; }
  .desktop-nav { display: none; }
  .mobile-menu-button { position: relative; display: inline-flex; }
  .mobile-nav { position: fixed; top: var(--header-height); right: 0; bottom: 0; left: 0; z-index: 49; display: block; padding: 24px var(--gutter) 50px; background: #fff; color: var(--black); overflow-y: auto; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease; }
  .mobile-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-nav ul { margin: 0; padding: 0; list-style: none; }
  .mobile-nav > ul > li { border-bottom: 1px solid var(--line); }
  .mobile-nav > ul > li > a, .mobile-wigs-button { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 20px 0; border: 0; background: none; color: inherit; font-size: 24px; text-align: left; }
  .mobile-wigs-button::after { content: "+"; font-size: 25px; font-weight: 300; }
  .mobile-wigs-button[aria-expanded="true"]::after { content: "−"; }
  .mobile-submenu { display: none; padding: 0 0 16px 20px !important; }
  .mobile-submenu.is-open { display: grid; }
  .mobile-submenu a { display: block; padding: 10px 0; color: #555; }
  .split-layout, .about-intro, .inquiry-layout, .product-layout { grid-template-columns: 1fr; }
  .factory-section .section-copy { order: 2; }
  .factory-section .factory-media { order: 1; }
  .factory-media { min-height: 430px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .capability:nth-child(4) { border-top: 1px solid var(--line); }
  .consultation-grid { grid-template-columns: repeat(2, 1fr); }
  .inquiry-copy { padding-right: 0; padding-bottom: 48px; border-right: 0; border-bottom: 1px solid var(--line); }
  .product-layout { gap: 48px; }
  .product-gallery { max-width: 760px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  :root { --gutter: 20px; }
  body { font-size: 15px; }
  .section { padding: 66px 0; }
  .wordmark { width: 132px; }
  .hero { min-height: 680px; }
  .hero-copy { right: 20px; bottom: 72px; left: 20px; padding: 24px 20px; text-align: center; }
  .hero-copy h1 { font-size: clamp(34px, 10vw, 45px); line-height: 1.26; }
  .hero-copy p { font-size: 17px; line-height: 1.7; }
  .factory-media { min-height: 300px; }
  .desktop-only { display: none !important; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .collection-poster span { padding: 10px 18px; font-size: 10px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability + .capability, .capability:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
  .media-rail { grid-auto-columns: 84%; }
  .contact-prompt-inner { align-items: flex-start; flex-direction: column; }
  .page-banner { height: 230px; }
  .page-banner h1 { font-size: 52px; }
  .bob-banner-image { object-position: 18% center; }
  .straight-banner-image { object-position: 18% center; }
  .kinky-curly-banner-image { object-position: left center; }
  .curly-banner-image { object-position: left center; }
  .portrait-media { min-height: 430px; }
  .about-feature-grid { grid-template-columns: 1fr; }
  .wide-media-copy > div:first-child { display: block; }
  .about-media-grid { grid-template-columns: 1fr; }
  .about-media-grid > div { aspect-ratio: 16 / 10; }
  .catalog-intro { display: block; margin-bottom: 38px; }
  .catalog-intro h2 { margin-bottom: 22px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 12px; }
  .product-card h3 { font-size: 15px; }
  .product-card p { font-size: 10px; }
  .product-main { padding-top: 30px; }
  .product-stage { aspect-ratio: 4 / 5; }
  .zoom-hint { display: none; }
  .zoom-lens { display: none; }
  .thumbnail-row { gap: 8px; }
  .product-info h1 { font-size: 43px; }
  .spec-row { grid-template-columns: 120px 1fr; gap: 14px; font-size: 14px; }
  .gallery-modal { grid-template-columns: 45px minmax(0, 1fr) 45px; gap: 8px; padding: 70px 10px; }
  .modal-visual { width: 100%; aspect-ratio: 3 / 4; }
  .modal-arrow { width: 42px; height: 52px; }
  .modal-close { top: 14px; right: 16px; }
  .consultation-section { padding-bottom: 48px; }
  .consultation-grid { grid-template-columns: 1fr; gap: 14px; }
  .consultation-card { min-height: 0; padding: 30px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .radio-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 42px; padding: 48px 0; }
  .footer-brand { grid-column: auto; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }
}

@media (hover: none), (pointer: coarse) {
  .collection-poster::before { background-image: linear-gradient(135deg, rgba(255,255,255,.16), transparent 38%, rgba(0,0,0,.04)); opacity: 1; }
  .collection-poster::after { display: none; }
  .collection-poster:active { border-color: rgba(170,131,81,.55); box-shadow: inset 0 0 0 1px rgba(72,25,35,.24); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
