:root {
  --white: #fff;
  --beige: #f6f2eb;
  --grey: #ecedef;
  --ink: #171717;
  --muted: #69655f;
  --gold: #c8a44d;
  --line: rgba(23, 23, 23, .14);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --shell: min(1320px, calc(100vw - 48px));
  --radius: 2px;
  --shadow: 0 24px 70px rgba(28, 24, 18, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  background: var(--ink);
  color: var(--white);
  padding: 12px 16px;
}
.skip-link:focus { top: 16px; }
.shell { width: var(--shell); margin-inline: auto; }

.preview-banner {
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 6px 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
}
.brand { display: inline-flex; width: 98px; }
.brand img { width: 100%; height: 48px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.2vw, 38px); }
.desktop-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 8px; }
.icon-button, .cart-button, .menu-button {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.icon-button { display: grid; place-items: center; font-size: 28px; }
.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cart-count { display: grid; place-items: center; min-width: 22px; height: 22px; padding: 0 5px; border-radius: 50%; background: var(--ink); color: var(--white); font-size: 10px; }
.search-icon { width: 18px; height: 18px; border: 1.5px solid var(--ink); border-radius: 50%; position: relative; }
.search-icon::after { content: ""; position: absolute; right: -5px; bottom: -3px; width: 7px; height: 1.5px; background: var(--ink); transform: rotate(45deg); }
.menu-button { display: none; flex-direction: column; justify-content: center; gap: 6px; padding: 12px; }
.menu-button span { width: 22px; height: 1px; background: currentColor; transition: transform .2s ease; }
.mobile-nav { position: absolute; inset: 100% 0 auto; padding: 20px 24px 28px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
.mobile-nav a { display: block; padding: 13px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 27px; }

.hero {
  min-height: calc(100svh - 110px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 88px);
  padding-block: 64px;
}
.eyebrow { margin: 0 0 22px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; line-height: .98; }
h1 { max-width: 760px; font-size: clamp(56px, 6.1vw, 104px); }
h2 { font-size: clamp(46px, 5.1vw, 82px); }
h3 { font-size: clamp(32px, 3vw, 52px); }
.hero-lead { max-width: 600px; margin: 34px 0 0; color: var(--muted); font-size: clamp(17px, 1.45vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 42px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: #32302d; }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--beige); }
.button-outline { background: transparent; border-color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--white); }
.button-full { width: 100%; }
.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.hero-visual { position: relative; min-height: 660px; overflow: hidden; background: var(--beige); }
.hero-orbit { position: absolute; border: 1px solid rgba(200, 164, 77, .45); border-radius: 50%; }
.orbit-one { width: 520px; height: 520px; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.orbit-two { width: 710px; height: 710px; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.hero-product { position: absolute; margin: 0; filter: drop-shadow(0 22px 22px rgba(38, 31, 22, .12)); }
.hero-product img { width: 100%; height: 100%; object-fit: contain; }
.hero-product-main { width: 48%; height: 76%; left: 18%; top: 12%; z-index: 2; }
.hero-product-secondary { width: 40%; height: 58%; right: 5%; bottom: 5%; z-index: 3; transform: rotate(4deg); }
.hero-note { position: absolute; left: 28px; bottom: 24px; z-index: 4; display: flex; align-items: flex-start; gap: 12px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.hero-note span { color: var(--gold); }
.hero-note p { margin: 0; }

.service-strip { border-block: 1px solid var(--line); }
.service-strip-inner { min-height: 74px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.service-strip p { margin: 0; text-align: center; color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.service-strip p + p { border-left: 1px solid var(--line); }
.service-strip span { margin-right: 10px; color: var(--gold); }

.section { padding-block: clamp(96px, 10vw, 160px); }
.section-heading { margin-bottom: 64px; }
.split-heading { display: grid; grid-template-columns: 1fr minmax(280px, 420px); gap: 40px; align-items: end; }
.split-heading > p { margin: 0 0 6px; color: var(--muted); line-height: 1.7; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 42px 18px; }
.product-card { position: relative; min-width: 0; }
.product-card-media { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--beige); cursor: pointer; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-card-media img { transform: scale(1.025); }
.product-card-badge { position: absolute; left: 12px; top: 12px; z-index: 2; padding: 7px 9px; background: var(--white); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.quick-add {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  min-height: 46px;
  border: 0;
  background: rgba(255, 255, 255, .95);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateY(64px);
  transition: transform .22s ease;
}
.product-card:hover .quick-add, .quick-add:focus-visible { transform: translateY(0); }
.product-card-copy { padding: 18px 2px 0; }
.product-type { margin: 0 0 7px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-card h3 { font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: 0; line-height: 1.35; }
.product-meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 10px; color: var(--muted); font-size: 13px; }
.product-benefit { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-price { flex: 0 0 auto; color: var(--ink); font-weight: 600; }
.section-action { display: flex; justify-content: center; margin-top: 58px; }

.concerns-section { background: var(--beige); }
.concern-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.concern-card { position: relative; min-height: 300px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; padding: 28px; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; cursor: pointer; transition: filter .2s ease; }
.concern-card:hover { filter: brightness(.975); }
.concern-index { font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.concern-title { font-family: var(--serif); font-size: clamp(30px, 3vw, 48px); line-height: 1; letter-spacing: -.03em; }
.concern-arrow { position: absolute; right: 24px; top: 22px; font-size: 22px; }
.concern-warm { background: #e7ddd1; }
.concern-silver { background: #e7e9e9; }
.concern-sand { background: #ddd0bc; }
.concern-light { background: #f7f5f0; }
.concern-gold { background: #d8c796; }
.concern-white { background: #fff; }

.routine-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.routine-card { display: flex; flex-direction: column; background: #f6f2eb; }
.routine-visual { min-height: 390px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: end; padding: 28px 12px 0; overflow: hidden; }
.routine-visual img { width: 118%; max-width: none; margin-left: -9%; filter: drop-shadow(0 20px 18px rgba(30, 25, 20, .1)); }
.routine-copy { padding: 28px; border-top: 1px solid var(--line); }
.routine-copy h3 { font-size: 34px; }
.routine-copy > p { min-height: 48px; color: var(--muted); }
.routine-products { margin: 22px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.routine-products li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.routine-total { display: flex; justify-content: space-between; margin-bottom: 18px; font-weight: 600; }
.finder-callout { margin-top: 28px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; padding: 44px; background: var(--ink); color: var(--white); }
.finder-callout .eyebrow { color: #c9c5bd; }

.shop-section { background: #faf9f7; }
.shop-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.product-total { color: var(--muted); }
.shop-toolbar { min-height: 78px; display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 42px; border-block: 1px solid var(--line); }
.filter-chips { display: flex; gap: 4px; overflow: auto; scrollbar-width: none; }
.filter-chip, .sort-button { min-height: 44px; border: 0; background: transparent; font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; }
.filter-chip { padding: 0 16px; color: var(--muted); }
.filter-chip.is-active { background: var(--ink); color: var(--white); }
.sort-button { flex: 0 0 auto; }
.load-more { display: flex; margin: 56px auto 0; }

.authority-section { background: var(--white); }
.authority-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr); gap: clamp(54px, 8vw, 120px); align-items: center; }
.authority-image { margin: 0; }
.authority-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 20%; }
.authority-image figcaption { margin-top: 12px; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.authority-copy > p:not(.eyebrow):not(.verification-note) { max-width: 600px; margin: 32px 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.authority-placeholder { margin: 38px 0 12px; padding: 24px 0 24px 28px; border-left: 1px solid var(--gold); font-family: var(--serif); font-size: 28px; line-height: 1.35; }
.authority-copy .verification-note { margin: 0 0 30px; color: var(--muted); font-size: 11px; }

.salon-section { padding-block: 74px; background: var(--beige); border-top: 1px solid var(--line); }
.salon-inner { display: grid; grid-template-columns: 1.3fr .8fr auto; align-items: center; gap: 48px; }
.salon-inner h2 { font-size: 52px; }
.salon-inner p { color: var(--muted); }
.salon-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.site-footer { padding: 80px 0 24px; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 48px; }
.footer-brand img { width: 100px; height: 48px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-brand p { margin-top: 24px; color: #bbb7af; }
.site-footer h3 { margin-bottom: 24px; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.site-footer a, .site-footer span { display: block; margin: 11px 0; color: #bbb7af; font-size: 13px; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 70px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); }

.overlay { position: fixed; inset: 0; z-index: 80; background: rgba(23, 23, 23, .38); backdrop-filter: blur(2px); }
.drawer { position: fixed; top: 0; right: 0; z-index: 90; width: min(470px, 100vw); height: 100dvh; display: flex; flex-direction: column; padding: 28px; background: var(--white); box-shadow: var(--shadow); transform: translateX(105%); transition: transform .26s ease; }
.drawer.is-open { transform: translateX(0); }
.drawer-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.drawer-header h2 { font-size: 42px; }
.close-button { font-family: var(--sans); font-size: 28px; }
.search-field { margin-top: 26px; }
.search-field input { width: 100%; min-height: 54px; padding: 0 0 12px; border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; outline: none; font-family: var(--serif); font-size: 28px; }
.search-results { margin-top: 30px; overflow: auto; }
.drawer-intro { color: var(--muted); }
.search-result { display: grid; grid-template-columns: 72px 1fr auto; align-items: center; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); cursor: pointer; }
.search-result { width: 100%; border-top: 0; border-right: 0; border-left: 0; background: transparent; text-align: left; }
.search-result img { width: 72px; aspect-ratio: 1; object-fit: cover; background: var(--beige); }
.search-result h3 { font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 0; line-height: 1.3; }
.search-result p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.cart-items { flex: 1; overflow: auto; padding: 18px 0; }
.cart-empty { min-height: 50vh; display: grid; place-items: center; color: var(--muted); text-align: center; }
.cart-item { display: grid; grid-template-columns: 84px 1fr auto; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 84px; aspect-ratio: 1; object-fit: cover; background: var(--beige); }
.cart-item h3 { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0; line-height: 1.3; }
.cart-item p { margin: 5px 0; color: var(--muted); font-size: 12px; }
.quantity-control { display: inline-flex; border: 1px solid var(--line); }
.quantity-control button { width: 32px; height: 30px; border: 0; background: transparent; cursor: pointer; }
.quantity-control span { width: 28px; display: grid; place-items: center; font-size: 12px; }
.remove-item { border: 0; background: transparent; color: var(--muted); font-size: 18px; cursor: pointer; }
.cart-footer { padding-top: 20px; border-top: 1px solid var(--line); }
.cart-footer > p { color: var(--muted); font-size: 12px; }
.cart-subtotal { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 18px; }

dialog { border: 0; padding: 0; color: var(--ink); box-shadow: var(--shadow); }
dialog::backdrop { background: rgba(23, 23, 23, .55); backdrop-filter: blur(3px); }
.dialog-close { position: absolute; right: 18px; top: 16px; z-index: 3; background: rgba(255,255,255,.9); }
.product-dialog { width: min(1120px, calc(100vw - 32px)); max-height: calc(100dvh - 32px); overflow: auto; }
.product-dialog-grid { display: grid; grid-template-columns: 1fr 1fr; }
.product-dialog-media { min-height: 650px; display: grid; place-items: center; background: var(--beige); }
.product-dialog-media img { width: 90%; height: 90%; object-fit: contain; }
.product-dialog-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 6vw, 84px); }
.product-dialog-copy h2 { font-size: clamp(44px, 5vw, 72px); }
.dialog-type { margin: 0 0 18px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.dialog-description { margin: 24px 0; color: var(--muted); line-height: 1.75; }
.dialog-price { margin: 0 0 24px; font-size: 22px; font-weight: 600; }
.dialog-benefits { margin: 0 0 30px; padding: 20px 0; list-style: none; border-block: 1px solid var(--line); }
.dialog-benefits li { padding: 5px 0; font-size: 13px; }
.dialog-benefits li::before { content: "✓"; margin-right: 10px; color: var(--gold); }
.finder-dialog { width: min(820px, calc(100vw - 32px)); min-height: 620px; padding: clamp(32px, 6vw, 74px); }
.finder-progress { position: absolute; inset: 0 0 auto; height: 4px; background: var(--grey); }
.finder-progress span { display: block; width: 33.33%; height: 100%; background: var(--gold); transition: width .25s ease; }
.finder-content { min-height: 470px; display: flex; flex-direction: column; justify-content: center; }
.finder-step { margin-bottom: 14px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.finder-content h2 { max-width: 650px; font-size: clamp(42px, 6vw, 70px); }
.finder-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 38px; }
.finder-option { min-height: 62px; padding: 12px 18px; border: 1px solid var(--line); background: var(--white); text-align: left; cursor: pointer; }
.finder-option:hover, .finder-option:focus-visible { border-color: var(--ink); background: var(--beige); }
.finder-result { display: grid; grid-template-columns: 180px 1fr; gap: 34px; align-items: center; }
.finder-result img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--beige); }
.finder-result h2 { font-size: clamp(38px, 5vw, 62px); }
.finder-result p { color: var(--muted); }
.toast { position: fixed; z-index: 120; left: 50%; bottom: 28px; min-width: 260px; padding: 14px 20px; background: var(--ink); color: var(--white); text-align: center; font-size: 12px; transform: translate(-50%, 150%); transition: transform .22s ease; }
.toast.is-visible { transform: translate(-50%, 0); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: 90px 1fr 90px; }
  .desktop-nav { display: none; }
  .menu-button { display: flex; }
  .brand { justify-self: center; }
  .cart-button > span:first-child, .header-actions .icon-button { display: none; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 570px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .routine-grid { grid-template-columns: 1fr; }
  .routine-card { display: grid; grid-template-columns: 1fr 1fr; }
  .routine-visual { min-height: 360px; }
  .salon-inner { grid-template-columns: 1fr 1fr; }
  .salon-inner .button { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 32px, 1320px); }
  .preview-banner { min-height: 38px; font-size: 9px; }
  .header-inner { min-height: 64px; }
  .brand { width: 82px; }
  .brand img { height: 38px; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 44px; padding-block: 50px 32px; }
  h1 { font-size: clamp(52px, 16vw, 74px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-visual { min-height: 490px; margin-inline: -16px; }
  .hero-note { left: 18px; }
  .service-strip-inner { min-height: auto; grid-template-columns: 1fr; padding-block: 4px; }
  .service-strip p { padding: 13px 0; }
  .service-strip p + p { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding-block: 88px; }
  .section-heading { margin-bottom: 42px; }
  .split-heading { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 10px; }
  .quick-add { position: static; width: 100%; margin-top: 10px; border: 1px solid var(--line); transform: none; }
  .product-card-copy { padding-top: 13px; }
  .product-meta { display: block; }
  .product-price { display: block; margin-top: 6px; }
  .concern-grid { grid-template-columns: 1fr 1fr; }
  .concern-card { min-height: 220px; padding: 20px; }
  .concern-title { font-size: 30px; }
  .routine-card { display: flex; }
  .routine-visual { min-height: 330px; }
  .finder-callout { grid-template-columns: 1fr; padding: 28px; }
  .shop-heading { align-items: flex-start; flex-direction: column; }
  .shop-toolbar { align-items: stretch; flex-direction: column; padding-block: 14px; }
  .sort-button { align-self: flex-start; }
  .authority-grid { grid-template-columns: 1fr; }
  .authority-copy { padding-top: 12px; }
  .salon-inner { grid-template-columns: 1fr; }
  .salon-inner .button { grid-column: auto; }
  .salon-meta { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .product-dialog-grid { grid-template-columns: 1fr; }
  .product-dialog-media { min-height: 390px; }
  .product-dialog-copy { padding: 36px 24px 44px; }
  .finder-dialog { min-height: calc(100dvh - 20px); }
  .finder-options { grid-template-columns: 1fr; }
  .finder-result { grid-template-columns: 1fr; }
  .finder-result img { width: 160px; }
}

@media (max-width: 390px) {
  .product-grid { grid-template-columns: 1fr; }
  .concern-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Editorial direction V2: product catalogue, not generic luxury landing page. */

:root {
  --serif: "Baskerville", "Times New Roman", serif;
  --sans: "Helvetica Neue", "Avenir Next", Arial, sans-serif;
  --catalogue: #e9e9e6;
}

h1,
h2,
h3 {
  font-family: var(--sans);
  font-weight: 650;
  letter-spacing: -.06em;
}

.header-inner {
  min-height: 70px;
  grid-template-columns: 140px 1fr 140px;
}

.brand { width: 86px; }
.desktop-nav { gap: clamp(20px, 2.6vw, 44px); }
.desktop-nav a { font-size: 11px; letter-spacing: .16em; }

.hero {
  min-height: 760px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  padding-block: 32px 54px;
  align-items: stretch;
}

.hero-copy {
  grid-column: 1 / 6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 56px 46px 0;
}

.hero-edition {
  display: flex;
  justify-content: space-between;
  margin-bottom: auto;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero .eyebrow { margin-top: auto; }

.eyebrow {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 10px;
  letter-spacing: .2em;
}

h1 {
  font-size: clamp(68px, 7vw, 112px);
  line-height: .84;
  text-transform: uppercase;
}

h2 {
  max-width: 980px;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: .9;
  text-transform: uppercase;
}

h3 { letter-spacing: -.045em; }

.hero-lead {
  max-width: 530px;
  margin-top: 30px;
  font-size: 17px;
  line-height: 1.58;
}

.hero-actions { margin-top: 34px; }

.hero-visual {
  grid-column: 6 / 13;
  min-height: 674px;
  background: var(--catalogue);
  border-left: 1px solid var(--ink);
}

.hero-number {
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(23, 23, 23, .07);
  font-size: clamp(180px, 23vw, 350px);
  font-weight: 700;
  letter-spacing: -.1em;
  line-height: .8;
}

.hero-visual-label {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 5;
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-product-main {
  width: 48%;
  height: 76%;
  left: 13%;
  top: 13%;
}

.hero-product-secondary {
  width: 42%;
  height: 61%;
  right: 3%;
  bottom: 3%;
  transform: none;
}

.hero-note {
  left: 24px;
  bottom: 20px;
  width: calc(100% - 48px);
  justify-content: space-between;
  border-top: 1px solid var(--ink);
  padding-top: 12px;
}

.service-strip-inner {
  grid-template-columns: repeat(3, 1fr);
}

.service-strip a {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-strip a + a { border-left: 1px solid var(--line); }
.service-strip a:hover { background: var(--ink); color: var(--white); }
.service-strip a span { margin-right: 14px; color: var(--gold); }

.section { padding-block: clamp(94px, 9vw, 138px); }
.section-heading { margin-bottom: 46px; }
.split-heading {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.product-grid {
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-card-media {
  aspect-ratio: 1;
  background: var(--catalogue);
  border-bottom: 1px solid var(--line);
}

.product-image-button {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.product-card-media img { transition: none; }
.product-image-button img { width: 100%; height: 100%; object-fit: cover; }
.product-card:hover .product-card-media img { transform: none; }

.product-card-copy {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.product-card h3 {
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -.02em;
  text-transform: none;
}

.product-meta { margin-top: auto; padding-top: 18px; }

.quick-add {
  z-index: 2;
  right: 10px;
  bottom: 10px;
  left: auto;
  width: 44px;
  min-height: 44px;
  overflow: hidden;
  padding: 0;
  background: var(--ink);
  color: transparent;
  transform: none;
}

.quick-add::after {
  content: "+";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 22px;
  font-weight: 400;
}

.product-card-badge {
  padding: 5px 7px;
  background: var(--gold);
  color: var(--ink);
}

.concerns-section { background: var(--white); }

.concern-grid {
  grid-template-columns: repeat(2, 1fr);
  border-left: 0;
  border-top: 1px solid var(--ink);
}

.concern-card,
.concern-warm,
.concern-silver,
.concern-sand,
.concern-light,
.concern-gold,
.concern-white {
  min-height: 142px;
  display: grid;
  grid-template-columns: 52px 1fr 40px;
  align-items: center;
  gap: 12px;
  padding: 22px 26px;
  background: var(--white);
  border-right: 0;
  border-bottom: 1px solid var(--ink);
}

.concern-card:nth-child(odd) { border-right: 1px solid var(--ink); }

.concern-card:hover,
.concern-card:focus-visible {
  background: var(--ink);
  color: var(--white);
  filter: none;
}

.concern-index { color: var(--gold); }

.concern-title {
  font-family: var(--sans);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .98;
  text-transform: uppercase;
}

.concern-arrow {
  position: static;
  justify-self: end;
}

.routines-section { border-top: 1px solid var(--line); }

.routine-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.routine-card {
  grid-column: span 3;
  background: var(--white);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.routine-card:first-child { grid-column: span 6; }
.routine-visual { min-height: 320px; background: var(--catalogue); }
.routine-card:first-child .routine-visual { min-height: 390px; }
.routine-copy { padding: 24px; }
.routine-copy h3 { font-size: 30px; text-transform: uppercase; }
.routine-products li { font-size: 11px; }

.finder-callout {
  margin-top: 0;
  padding: 38px 42px;
  border: 1px solid var(--ink);
  border-top: 0;
}

.finder-callout h3 {
  font-size: 40px;
  text-transform: uppercase;
}

.shop-section { background: var(--beige); }
.shop-heading { padding-top: 20px; border-top: 1px solid var(--ink); }
.shop-toolbar { border-color: var(--ink); }
.filter-chip.is-active { background: var(--gold); color: var(--ink); }

.authority-section {
  background: var(--ink);
  color: var(--white);
}

.authority-grid { grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr); }
.authority-image img { aspect-ratio: 5 / 6; filter: grayscale(1) contrast(1.04); }
.authority-image figcaption { color: #a9a59f; }
.authority-copy .eyebrow { color: var(--gold); }
.authority-copy > p:not(.eyebrow):not(.verification-note) { color: #bcb8b1; }
.authority-copy .verification-note { color: #8e8a84; }
.authority-placeholder { border-left-color: var(--gold); font-size: 24px; }
.authority-copy .text-link { border-bottom-color: var(--white); }

.salon-section { background: var(--catalogue); }

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: 90px 1fr 90px; }
  .hero-copy { grid-column: 1 / 6; padding-right: 28px; }
  .hero-visual { grid-column: 6 / 13; }
  h1 { font-size: clamp(62px, 8vw, 88px); }
  .routine-card { display: flex; flex-direction: column; }
  .routine-card,
  .routine-card:first-child { grid-column: span 4; }
  .routine-card:first-child .routine-visual { min-height: 320px; }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 24px 34px;
  }

  .hero-copy {
    grid-column: auto;
    min-height: 560px;
    padding: 22px 0 38px;
  }

  .hero-edition { margin-bottom: auto; }
  .hero .eyebrow { margin-top: auto; }

  h1 {
    font-size: clamp(58px, 18vw, 78px);
    line-height: .86;
  }

  h2 { font-size: clamp(42px, 12vw, 58px); }

  .hero-visual {
    grid-column: auto;
    min-height: 500px;
    margin-inline: -16px;
    border-left: 0;
    border-top: 1px solid var(--ink);
  }

  .hero-number { font-size: 210px; }
  .hero-actions .button { width: 100%; }

  .service-strip-inner { grid-template-columns: 1fr; }
  .service-strip a + a { border-left: 0; border-top: 1px solid var(--line); }

  .split-heading { grid-template-columns: 1fr; }

  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-add { position: absolute; width: 42px; margin-top: 0; border: 0; }
  .product-card-copy { min-height: 156px; padding: 14px; }
  .product-benefit { display: none; }

  .concern-grid { grid-template-columns: 1fr; }
  .concern-card,
  .concern-card:nth-child(odd) { min-height: 116px; border-right: 0; }
  .concern-title { font-size: 27px; }

  .routine-grid { grid-template-columns: 1fr; }
  .routine-card,
  .routine-card:first-child { grid-column: auto; }
  .routine-visual,
  .routine-card:first-child .routine-visual { min-height: 300px; }
  .finder-callout { padding: 28px 22px; }
  .finder-callout h3 { font-size: 32px; }

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

@media (max-width: 390px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* Light and optimistic refinement. */

body { background: #fffefa; }

.preview-banner {
  background: #f1eadb;
  color: #5f574b;
  border-bottom: 1px solid rgba(23, 23, 23, .09);
}

.site-header { background: rgba(255, 254, 250, .95); }

.cart-count {
  background: var(--gold);
  color: var(--ink);
}

.hero-copy { background: #fffefa; }

.hero h1 {
  color: #24221f;
  font-weight: 520;
  text-transform: none;
}

.hero-visual {
  background: #f3efe7;
  border-left-color: rgba(23, 23, 23, .22);
}

.hero-number { color: rgba(200, 164, 77, .15); }

.button-dark {
  background: var(--gold);
  color: var(--ink);
}

.button-dark:hover { background: #d4b767; }

.service-strip { background: #fffefa; }
.service-strip a:hover { background: var(--beige); color: var(--ink); }

.product-card-media,
.routine-visual { background: #f3f0e9; }

.quick-add {
  background: rgba(255, 254, 250, .96);
  border: 1px solid rgba(23, 23, 23, .28);
}

.quick-add::after { color: var(--ink); }

.concern-card:hover,
.concern-card:focus-visible {
  background: #f1eadb;
  color: var(--ink);
}

.routines-section { background: #fffefa; }

.finder-callout {
  background: #e8e9e7;
  color: var(--ink);
}

.finder-callout .eyebrow { color: #6b655d; }
.finder-callout .button-light { background: var(--gold); }
.finder-callout .button-light:hover { background: #d4b767; }

.shop-section { background: #f6f2eb; }

.authority-section {
  background: #f0ede6;
  color: var(--ink);
}

.authority-image img { filter: none; }
.authority-image figcaption { color: var(--muted); }
.authority-copy .eyebrow { color: #7f681f; }
.authority-copy > p:not(.eyebrow):not(.verification-note) { color: var(--muted); }
.authority-copy .verification-note { color: #817c74; }
.authority-copy .text-link { border-bottom-color: var(--ink); }

.services-section {
  background: #fffefa;
  border-top: 1px solid rgba(23, 23, 23, .15);
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: end;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.services-intro h2 { margin-bottom: 0; }

.services-summary {
  max-width: 520px;
  padding-bottom: 8px;
}

.services-summary > p:first-child {
  margin: 0;
  color: #302e2a;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.35;
}

.services-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.services-list { margin-top: clamp(54px, 7vw, 90px); }

.service-row {
  display: grid;
  grid-template-columns: minmax(150px, 210px) 42px minmax(170px, .7fr) minmax(260px, 1.25fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 310px;
  padding: 24px 0;
  border-top: 1px solid var(--ink);
}

.service-row:last-child { border-bottom: 1px solid var(--ink); }

.service-media {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #f0ede6;
}

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

.service-index {
  color: #8b712b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 540;
  letter-spacing: -.045em;
}

.service-row p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.service-row strong {
  min-width: 88px;
  font-size: 13px;
  letter-spacing: .06em;
  text-align: right;
  text-transform: uppercase;
}

.services-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 34px;
}

.salon-section { background: #fffefa; }

.site-footer {
  background: #e9e9e6;
  color: var(--ink);
  border-top: 1px solid rgba(23, 23, 23, .15);
}

.footer-brand img { filter: none; }
.footer-brand p,
.site-footer a,
.site-footer span { color: var(--muted); }
.site-footer a:hover { color: var(--ink); }
.footer-bottom { border-top-color: rgba(23, 23, 23, .16); }

@media (max-width: 760px) {
  .hero-visual { border-left: 0; border-top-color: rgba(23, 23, 23, .2); }

  .services-intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .services-summary { padding-bottom: 0; }

  .service-row {
    grid-template-columns: 112px 30px minmax(0, 1fr) auto;
    gap: 10px 14px;
    align-items: baseline;
    min-height: 0;
    padding: 24px 0;
  }

  .service-media {
    grid-column: 1;
    grid-row: 1 / span 2;
    height: 142px;
  }

  .service-row p {
    grid-column: 2 / -1;
    padding-right: 6px;
  }

  .service-row strong { min-width: 72px; font-size: 11px; }
  .services-action .button { width: 100%; }
}

@media (max-width: 470px) {
  .service-row { grid-template-columns: 34px minmax(0, 1fr) auto; }

  .service-media {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 230px;
    margin-bottom: 10px;
  }

  .service-row p { grid-column: 2 / -1; }
}

/* WordPress and WooCommerce production integration. */

.announcement-bar {
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 6px 16px;
  background: #f1eadb;
  color: #5f574b;
  border-bottom: 1px solid rgba(23, 23, 23, .09);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.admin-bar .site-header { top: 32px; }
.vhlab-menu,
.vhlab-mobile-menu,
.mobile-nav .vhlab-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.desktop-nav .vhlab-menu { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 44px); }
.mobile-nav .vhlab-menu,
.vhlab-mobile-menu { display: block; }
.mobile-nav li { margin: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.hero-product a { display: block; width: 100%; height: 100%; }
.hero-product .woocommerce-placeholder { object-fit: contain; }
.hero-note p { max-width: 65%; text-align: right; }
.product-card .price del { color: var(--muted); font-weight: 400; }
.product-card .price ins { text-decoration: none; }
.product-card.outofstock .quick-add { opacity: .45; pointer-events: none; }
.routine-card.is-recommended { box-shadow: inset 0 0 0 4px var(--gold); }
.routine-visual img { align-self: end; aspect-ratio: 1 / 1.35; object-fit: contain; }
.routine-copy form { margin: 0; }
.routine-copy .button[disabled] { cursor: not-allowed; opacity: .6; }
.finder-result-copy { max-width: 630px; }
.finder-result-copy > p:not(.finder-step) { margin: 26px 0 32px; color: var(--muted); font-size: 17px; line-height: 1.7; }

.vhlab-search-form { display: grid; gap: 28px; }
.vhlab-mini-cart { min-height: 0; flex: 1; display: flex; flex-direction: column; overflow: auto; }
.vhlab-mini-cart .woocommerce-mini-cart { margin: 0; padding: 12px 0; list-style: none; }
.vhlab-mini-cart .woocommerce-mini-cart-item {
  position: relative;
  min-height: 100px;
  padding: 14px 32px 14px 98px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.vhlab-mini-cart .woocommerce-mini-cart-item > a:not(.remove) { display: block; font-weight: 650; line-height: 1.4; }
.vhlab-mini-cart .woocommerce-mini-cart-item img { position: absolute; left: 0; top: 14px; width: 82px; height: 82px; object-fit: cover; background: var(--beige); }
.vhlab-mini-cart .remove_from_cart_button { position: absolute; right: 0; top: 12px; width: 30px; height: 30px; display: grid; place-items: center; color: var(--muted) !important; font-size: 22px; }
.vhlab-mini-cart .quantity { display: block; margin-top: 8px; color: var(--muted); }

/* Turn every routine visual into a compact, readable three-step sequence. */
@media (min-width: 1101px) {
  .routine-card,
  .routine-card:first-child { grid-column: span 4; }
}

.routine-visual,
.routine-card:first-child .routine-visual {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  padding: 0;
  background: #f6f2eb;
}

.routine-step {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  color: var(--ink);
  background: #f6f2eb;
}

.routine-step:nth-child(2) { background: #f0eee9; }
.routine-step:nth-child(3) { background: #f4efe7; }
.routine-step + .routine-step { border-left: 1px solid var(--ink); }

.routine-step-meta {
  min-width: 0;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(23, 23, 23, .22);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.routine-step-meta span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.routine-visual .routine-step img,
.routine-card:first-child .routine-visual .routine-step img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  aspect-ratio: 1 / 1;
  align-self: stretch;
  object-fit: cover;
  filter: none;
}

@media (max-width: 760px) {
  .routine-step-meta {
    display: grid;
    justify-content: start;
    padding: 9px 8px;
    font-size: 8px;
  }
}
.vhlab-mini-cart .woocommerce-mini-cart__total { display: flex; justify-content: space-between; margin: auto 0 0; padding: 20px 0 14px; border-top: 1px solid var(--ink); }
.vhlab-mini-cart .woocommerce-mini-cart__buttons { display: grid; gap: 8px; margin: 0; }
.vhlab-mini-cart .woocommerce-mini-cart__buttons .button {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.vhlab-mini-cart .woocommerce-mini-cart__buttons .checkout { background: var(--gold); border-color: var(--gold); }
.vhlab-mini-cart .woocommerce-mini-cart__empty-message { min-height: 55vh; display: grid; place-items: center; color: var(--muted); text-align: center; }

.vhlab-content,
.vhlab-commerce { padding-block: clamp(64px, 8vw, 120px); }
.vhlab-page-header { max-width: 980px; margin-bottom: 64px; padding-top: 18px; border-top: 1px solid var(--ink); }
.vhlab-page-header h1,
.vhlab-commerce .woocommerce-products-header__title,
.vhlab-commerce .page-title { font-size: clamp(52px, 7vw, 96px); line-height: .9; }
.vhlab-entry-content,
.vhlab-article { max-width: 980px; }
.vhlab-entry-content > *:first-child { margin-top: 0; }
.vhlab-entry-content a:not(.button) { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.vhlab-article { padding: 32px 0; border-top: 1px solid var(--line); }
.vhlab-article h2 { font-size: clamp(34px, 4vw, 56px); text-transform: none; }
.vhlab-empty-state { max-width: 820px; padding: clamp(50px, 8vw, 110px) 0; }
.vhlab-empty-state h1,
.vhlab-empty-state h2 { margin-bottom: 28px; }
.vhlab-empty-state p:not(.eyebrow) { max-width: 620px; margin-bottom: 34px; color: var(--muted); font-size: 17px; }

.woocommerce .woocommerce-breadcrumb { margin-bottom: 42px; color: var(--muted); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.woocommerce .woocommerce-breadcrumb span { margin-inline: 8px; color: var(--gold); }
.woocommerce-products-header { margin-bottom: 44px; padding-top: 18px; border-top: 1px solid var(--ink); }
.woocommerce-products-header__description { max-width: 670px; color: var(--muted); }
.woocommerce .woocommerce-result-count { margin: 12px 0 34px; color: var(--muted); font-size: 13px; }
.woocommerce .woocommerce-ordering { margin: 0 0 30px; }
.woocommerce .woocommerce-ordering select {
  min-height: 46px;
  padding: 0 38px 0 14px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}
.woocommerce ul.products,
.woocommerce-page ul.products {
  clear: both;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product { float: none; width: auto; margin: 0; }
.woocommerce nav.woocommerce-pagination { margin-top: 56px; }
.woocommerce nav.woocommerce-pagination ul { display: inline-flex; border: 1px solid var(--ink); }
.woocommerce nav.woocommerce-pagination ul li { border-right: 1px solid var(--ink); }
.woocommerce nav.woocommerce-pagination ul li:last-child { border-right: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span { min-width: 44px; min-height: 44px; display: grid; place-items: center; padding: 0; }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--gold); color: var(--ink); }

.woocommerce-notices-wrapper { margin-bottom: 24px; }
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  margin: 0 0 18px;
  padding: 18px 20px 18px 50px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  background: var(--beige);
  color: var(--ink);
  list-style: none;
}
.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before { top: 18px; color: var(--gold); }
.woocommerce-message .button,
.woocommerce-info .button { float: right; margin-left: 18px; }

.vhlab-single-product { padding-bottom: clamp(80px, 9vw, 140px); }
.vhlab-product-top {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
  padding-bottom: clamp(80px, 9vw, 130px);
}
.vhlab-product-gallery { min-width: 0; background: #f3f0e9; }
.woocommerce div.product div.images,
.woocommerce-page div.product div.images { float: none; width: 100%; margin: 0; }
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper { margin: 0; }
.woocommerce div.product div.images img { width: 100%; background: #f3f0e9; }
.woocommerce div.product div.images .flex-control-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; padding-top: 1px; background: var(--line); }
.woocommerce div.product div.images .flex-control-thumbs li { float: none; width: auto; background: var(--white); }
.vhlab-product-summary { position: sticky; top: 130px; padding-top: 20px; border-top: 1px solid var(--ink); }
.admin-bar .vhlab-product-summary { top: 162px; }
.woocommerce div.product .vhlab-product-summary { float: none; width: auto; margin: 0; }
.vhlab-product-summary .product_title { max-width: 620px; font-size: clamp(48px, 5.8vw, 78px); line-height: .9; text-transform: none; }
.woocommerce div.product .vhlab-product-summary .price { margin: 28px 0 0; color: var(--ink); font-size: 24px; font-weight: 650; }
.woocommerce div.product .vhlab-product-summary .price ins { text-decoration: none; }
.woocommerce div.product .woocommerce-product-details__short-description { max-width: 600px; margin: 25px 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.woocommerce div.product form.cart { display: flex; gap: 10px; margin: 28px 0 0; }
.woocommerce .quantity .qty { width: 72px; min-height: 54px; border: 1px solid var(--ink); border-radius: 0; background: var(--white); }
.woocommerce div.product form.cart .button,
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt {
  min-height: 54px;
  flex: 1;
  padding: 14px 24px;
  border-radius: 0;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.woocommerce div.product form.cart .button:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover { background: #d4b767; color: var(--ink); }
.woocommerce div.product .stock { margin: 16px 0 0; color: #486047; font-size: 12px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.woocommerce div.product .out-of-stock { color: #8a3d36; }
.vhlab-purchase-notes { margin: 30px 0 0; padding: 20px 0; border-block: 1px solid var(--line); list-style: none; }
.vhlab-purchase-notes li { padding: 5px 0; font-size: 13px; }
.vhlab-purchase-notes li::before { content: "✓"; margin-right: 10px; color: var(--gold); }
.vhlab-product-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.vhlab-product-section { min-height: 300px; padding: clamp(32px, 5vw, 68px); border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.vhlab-product-section h2 { font-size: clamp(36px, 4.5vw, 62px); text-transform: none; }
.vhlab-product-section-copy { max-width: 620px; margin-top: 28px; color: var(--muted); line-height: 1.75; }
.vhlab-product-section-copy p:first-child { margin-top: 0; }
.woocommerce .related.products { padding-top: clamp(80px, 9vw, 130px); }
.woocommerce .related.products > h2 { margin-bottom: 42px; padding-top: 18px; border-top: 1px solid var(--ink); }

.woocommerce form .form-row { padding: 0; margin: 0 0 20px; }
.woocommerce form .form-row label { margin-bottom: 7px; font-size: 12px; font-weight: 650; letter-spacing: .05em; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #aaa59d;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}
.select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 26px; padding: 0; }
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 48px; }
.woocommerce form .form-row.woocommerce-invalid input.input-text { border-color: #a23b32; }

.woocommerce-cart .vhlab-content,
.woocommerce-checkout .vhlab-content { width: min(1180px, calc(100vw - 48px)); max-width: none; }
.woocommerce-cart .vhlab-entry-content,
.woocommerce-checkout .vhlab-entry-content { max-width: none; }
.woocommerce table.shop_table { border: 0; border-collapse: collapse; border-radius: 0; }
.woocommerce table.shop_table th { padding: 15px 12px; border-bottom: 1px solid var(--ink); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.woocommerce table.shop_table td { padding: 18px 12px; border-bottom: 1px solid var(--line); }
.woocommerce-cart table.cart img { width: 96px; background: var(--beige); }
.woocommerce-cart table.cart td.actions .coupon .input-text { width: 180px; min-height: 48px; padding: 0 12px; border: 1px solid var(--ink); }
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
  min-height: 48px;
  padding: 13px 19px;
  border-radius: 0;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover { background: #34312e; color: var(--white); }
.cart-collaterals { margin-top: 48px; }
.woocommerce .cart-collaterals .cart_totals { width: min(100%, 520px); }
.woocommerce .cart-collaterals .cart_totals h2,
.woocommerce-checkout h3 { margin-bottom: 28px; font-size: clamp(30px, 3vw, 44px); text-transform: none; }
.woocommerce-checkout form.checkout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); gap: clamp(40px, 7vw, 90px); align-items: start; }
.woocommerce-checkout #customer_details { display: grid; gap: 28px; }
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review { grid-column: 2; }
.woocommerce-checkout #order_review_heading { grid-row: 1; margin-top: 0; }
.woocommerce-checkout #order_review { grid-row: 1; position: sticky; top: 125px; margin-top: 68px; padding: 26px; background: var(--beige); }
.woocommerce-checkout-payment { background: transparent !important; }
.woocommerce-checkout-payment ul.payment_methods { padding: 20px 0 !important; border-bottom-color: var(--line) !important; }
.woocommerce-checkout-payment .place-order { padding: 20px 0 0 !important; }

.wc-block-cart,
.wc-block-checkout { --wp--preset--color--contrast: var(--ink); font-family: var(--sans); }
.wc-block-components-button { border-radius: 0 !important; }
.wc-block-components-button.wp-element-button { background: var(--gold); color: var(--ink); }

@media (max-width: 980px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .vhlab-product-top { grid-template-columns: 1fr 1fr; gap: 38px; }
  .woocommerce-checkout form.checkout { grid-template-columns: 1fr; }
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review { grid-column: auto; grid-row: auto; }
  .woocommerce-checkout #order_review { position: static; margin-top: 0; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
  .admin-bar .vhlab-product-summary { top: 176px; }
}

@media (max-width: 760px) {
  .announcement-bar { min-height: 29px; font-size: 9px; }
  .desktop-nav .vhlab-menu { display: none; }
  .hero-note p { max-width: 70%; }
  .woocommerce ul.products,
  .woocommerce-page ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vhlab-product-top { grid-template-columns: 1fr; gap: 42px; }
  .vhlab-product-summary { position: static; }
  .vhlab-product-summary .product_title { font-size: clamp(46px, 14vw, 68px); }
  .woocommerce div.product form.cart { align-items: stretch; }
  .woocommerce div.product form.cart .button { min-width: 0; padding-inline: 10px; }
  .vhlab-product-details { grid-template-columns: 1fr; }
  .vhlab-product-section { min-height: 0; }
  .woocommerce-cart .vhlab-content,
  .woocommerce-checkout .vhlab-content { width: min(100% - 32px, 1180px); }
  .woocommerce-cart table.cart .product-thumbnail { display: block; }
  .woocommerce table.shop_table_responsive tr td::before { margin-right: 18px; }
  .woocommerce-message .button,
  .woocommerce-info .button { float: none; display: flex; margin: 0 0 14px; }
}

@media (max-width: 390px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products { grid-template-columns: 1fr; }
}
