:root {
  --ink: #171815;
  --ink-soft: #4b4d46;
  --lacquer: #111b18;
  --lacquer-2: #17241f;
  --ivory: #f2ede3;
  --paper: #f8f5ee;
  --paper-deep: #e8e0d1;
  --cobalt: #1c365c;
  --oxblood: #6a1f24;
  --gold: #a7874f;
  --gold-light: #c6aa72;
  --line: rgba(23, 24, 21, 0.22);
  --line-light: rgba(242, 237, 227, 0.27);
  --shadow: 0 30px 80px rgba(13, 18, 16, 0.16);
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --shell: min(92vw, 1760px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(28, 54, 92, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 54, 92, 0.018) 1px, transparent 1px),
    var(--paper);
  background-size: 64px 64px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: clip;
}

body.no-scroll {
  overflow: hidden;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.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;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--cobalt);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: none;
}

.announcement {
  min-height: 32px;
  padding: 6px 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--ivory);
  background: var(--cobalt);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.announcement a {
  padding-bottom: 1px;
  border-bottom: 1px solid currentColor;
}

.site-header {
  position: relative;
  z-index: 100;
  color: var(--ink);
  background: rgba(248, 245, 238, 0.97);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  position: sticky;
  top: 0;
  box-shadow: 0 6px 30px rgba(17, 27, 24, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}

.wordmark {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.wordmark-seal {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ivory);
  background: var(--lacquer);
  border: 1px solid var(--gold);
  outline: 1px solid var(--lacquer);
  outline-offset: 3px;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.04em;
}

.wordmark > span:last-child {
  display: grid;
  gap: 1px;
}

.wordmark strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.wordmark small {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(25px, 2.4vw, 48px);
}

.main-nav a,
.header-actions button {
  position: relative;
  padding: 7px 0;
  color: var(--ink);
  background: none;
  border: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav a::after,
.header-actions button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.header-actions button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
}

.cart-toggle span {
  min-width: 20px;
  height: 20px;
  margin-left: 5px;
  display: inline-grid;
  place-items: center;
  color: var(--ivory);
  background: var(--oxblood);
  border-radius: 50%;
  font-size: 9px;
}

.menu-button {
  display: none;
}

.salon-hero {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 76% 30%, rgba(167, 135, 79, 0.13), transparent 33%),
    linear-gradient(128deg, var(--lacquer) 0%, #101713 58%, #0e1512 100%);
  border-bottom: 8px solid var(--cobalt);
}

.salon-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(242, 237, 227, 0.18) 50%, transparent 50.1%),
    repeating-linear-gradient(0deg, transparent 0 47px, rgba(242, 237, 227, 0.06) 48px);
}

.hero-index {
  position: relative;
  z-index: 1;
  min-height: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  color: rgba(242, 237, 227, 0.62);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.hero-index span:nth-child(2) {
  text-align: center;
}

.hero-index span:last-child {
  text-align: right;
}

.salon-grid {
  position: relative;
  z-index: 1;
  min-height: min(795px, calc(100vh - 130px));
  padding: clamp(56px, 6vw, 112px) 0 clamp(64px, 5.5vw, 104px);
  display: grid;
  grid-template-columns: minmax(360px, 0.74fr) minmax(560px, 1.26fr);
  gap: clamp(52px, 7vw, 130px);
  align-items: center;
}

.hero-copy {
  position: relative;
  padding-left: clamp(24px, 3vw, 56px);
}

.hero-copy::before {
  position: absolute;
  top: 4px;
  bottom: 0;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(var(--gold), transparent 82%);
}

.micro-label {
  margin-bottom: 24px;
  color: var(--oxblood);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.salon-hero .micro-label {
  color: var(--gold-light);
}

.hero-copy h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(52px, 5.6vw, 112px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.95;
}

.hero-description {
  max-width: 570px;
  margin-bottom: 35px;
  color: rgba(242, 237, 227, 0.76);
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-signature {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-signature > span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  font-family: var(--display);
  font-size: 18px;
}

.hero-signature p {
  margin: 0;
  color: rgba(242, 237, 227, 0.48);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.6;
  text-transform: uppercase;
}

.button {
  min-height: 54px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button span {
  font-size: 16px;
  line-height: 1;
}

.button-ivory {
  min-width: 245px;
  color: var(--lacquer);
  background: var(--ivory);
}

.button-ivory:hover {
  color: var(--ivory);
  background: transparent;
  border-color: var(--ivory);
}

.button-dark {
  color: var(--ivory);
  background: var(--lacquer);
}

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

.button-light {
  color: var(--lacquer);
  background: var(--ivory);
}

.button-light:hover {
  color: var(--ivory);
  background: transparent;
  border-color: rgba(242, 237, 227, 0.65);
}

.underlined-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.underlined-link-ivory,
.underlined-link-light {
  color: var(--ivory);
}

.hero-ledger {
  max-width: 630px;
  margin: clamp(52px, 5.4vw, 86px) 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.hero-ledger div {
  padding: 15px 18px 0 0;
  border-right: 1px solid var(--line-light);
}

.hero-ledger div + div {
  padding-left: 18px;
}

.hero-ledger div:last-child {
  border-right: 0;
}

.hero-ledger dt {
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-ledger dd {
  margin: 0;
  color: rgba(242, 237, 227, 0.7);
  font-size: 10px;
  line-height: 1.5;
}

.hero-gallery {
  min-height: 625px;
  display: grid;
  grid-template-columns: 1.24fr 0.76fr;
  grid-template-rows: 1fr 0.89fr;
  gap: 13px;
}

.hero-tile {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #d8d0c2;
}

.hero-tile::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(transparent 55%, rgba(7, 12, 10, 0.7));
}

.hero-tile-1 {
  grid-row: 1 / span 2;
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 350ms ease;
}

.hero-tile:hover img {
  transform: scale(1.025);
  filter: saturate(1.07);
}

.hero-tile > span {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: grid;
  gap: 5px;
}

.hero-tile small {
  color: rgba(242, 237, 227, 0.72);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.hero-tile strong {
  color: #fffdf8;
  font-family: var(--display);
  font-size: clamp(18px, 1.4vw, 28px);
  font-weight: 400;
  line-height: 1.14;
}

.hero-caption {
  position: absolute;
  right: clamp(14px, 2vw, 34px);
  bottom: clamp(22px, 3vw, 50px);
  display: none;
}

.hero-caption span {
  display: block;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 50px;
}

.hero-caption p {
  margin: 0;
  color: rgba(242, 237, 227, 0.65);
  font-size: 9px;
  letter-spacing: 0.13em;
  line-height: 1.7;
  text-transform: uppercase;
}

.editorial-strip {
  color: var(--paper);
  background: var(--cobalt);
  border-bottom: 1px solid rgba(242, 237, 227, 0.24);
}

.editorial-strip > div {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.editorial-strip span {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.editorial-strip i {
  width: 4px;
  height: 4px;
  background: var(--gold-light);
  transform: rotate(45deg);
}

.collection {
  padding-top: clamp(90px, 9vw, 170px);
  padding-bottom: clamp(100px, 10vw, 190px);
}

.section-header {
  margin-bottom: 60px;
  padding-bottom: 38px;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.47fr);
  gap: 60px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.section-header .micro-label {
  margin-bottom: 18px;
}

.section-header h2,
.story-copy h2,
.visit-panel h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(45px, 5vw, 88px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-header > p {
  max-width: 580px;
  margin: 0 0 4px auto;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.85;
}

.catalog-tools {
  margin-bottom: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 30px;
}

.filter-chip {
  position: relative;
  padding: 6px 0;
  color: #77776f;
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.filter-chip:hover,
.filter-chip.is-active {
  color: var(--ink);
  border-color: var(--oxblood);
}

.catalog-search {
  width: min(280px, 30vw);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--ink);
}

.catalog-search input {
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--display);
  font-size: 15px;
}

.catalog-search input::placeholder {
  color: #7c7c74;
}

.catalog-search b {
  font-size: 18px;
  font-weight: 400;
}

.product-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 3.2vw, 60px) clamp(20px, 2.6vw, 48px);
}

.product-card {
  min-width: 0;
}

.product-card[hidden] {
  display: none;
}

.product-media {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 3 / 4;
  color: var(--ivory);
  background: #ded6c9;
  border-bottom: 4px solid var(--cobalt);
}

.product-media::before {
  position: absolute;
  z-index: 2;
  inset: 10px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0);
  transition: border-color 300ms ease;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.68, 0.22, 1), filter 350ms ease;
}

.product-media:hover img {
  transform: scale(1.025);
  filter: contrast(1.02) saturate(1.05);
}

.product-media:hover::before {
  border-color: rgba(255, 255, 255, 0.7);
}

.product-badge {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  padding: 9px 13px;
  color: var(--paper);
  background: var(--oxblood);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.product-index {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 17px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--display);
  font-size: clamp(22px, 2.3vw, 42px);
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.32);
}

.view-product {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 17px 20px;
  color: var(--paper);
  background: linear-gradient(transparent, rgba(13, 18, 16, 0.75));
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateY(105%);
  transition: transform 250ms ease;
}

.product-media:hover .view-product {
  transform: none;
}

.product-meta {
  padding: 22px 0 17px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.product-meta p {
  margin-bottom: 7px;
  color: var(--oxblood);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-meta h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(20px, 1.7vw, 30px);
  font-weight: 400;
  line-height: 1.15;
}

.product-meta h3 a:hover {
  color: var(--cobalt);
}

.product-price {
  min-width: 105px;
  display: grid;
  align-content: end;
  justify-items: end;
  gap: 3px;
  text-align: right;
}

.product-price strong {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.product-price del {
  color: #8c8a82;
  font-size: 9px;
}

.product-spec {
  min-height: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: #77776f;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-spec span {
  padding: 0 10px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.product-spec span:first-child {
  padding-left: 0;
  text-align: left;
}

.product-spec span:last-child {
  padding-right: 0;
  border-right: 0;
  text-align: right;
}

.product-action {
  width: 100%;
  min-height: 45px;
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-action span {
  font-size: 15px;
  font-weight: 400;
}

.product-action:hover {
  color: var(--oxblood);
}

.catalog-empty {
  margin-top: 30px;
  padding: 55px;
  text-align: center;
  border: 1px solid var(--line);
}

.catalog-empty strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.catalog-empty button {
  padding: 5px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cabinet {
  position: relative;
  padding: clamp(110px, 11vw, 210px) 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(23, 24, 21, 0.08) 50%, transparent 50.05%),
    #e7dfd1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cabinet::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 32vw;
  height: 9px;
  content: "";
  background: var(--oxblood);
}

.cabinet-layout {
  display: grid;
  grid-template-columns: minmax(370px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(70px, 9vw, 165px);
  align-items: center;
}

.cabinet-copy {
  max-width: 660px;
}

.cabinet-copy h2 {
  margin-bottom: 32px;
  font-family: var(--display);
  font-size: clamp(49px, 5.6vw, 96px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.cabinet-copy h2 em {
  color: var(--oxblood);
  font-weight: 400;
}

.cabinet-lead {
  max-width: 570px;
  margin-bottom: 40px;
  color: var(--ink-soft);
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.9;
}

.cabinet-criteria {
  margin: 0 0 36px;
  border-top: 1px solid var(--ink);
}

.cabinet-criteria > div {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.cabinet-criteria dt {
  color: var(--oxblood);
  font-family: var(--display);
  font-size: 17px;
}

.cabinet-criteria dd {
  margin: 0;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 20px;
}

.cabinet-criteria strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
}

.cabinet-criteria span {
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.6;
}

.cabinet-gallery {
  position: relative;
  min-height: clamp(650px, 56vw, 920px);
}

.cabinet-plate {
  position: absolute;
  margin: 0;
  background: var(--paper);
  box-shadow: 0 38px 90px rgba(41, 31, 23, 0.18);
}

.cabinet-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cabinet-plate figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--paper);
  background: linear-gradient(transparent, rgba(10, 14, 12, 0.82));
}

.cabinet-plate figcaption span {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.cabinet-plate figcaption strong {
  max-width: 290px;
  font-family: var(--display);
  font-size: clamp(18px, 1.55vw, 28px);
  font-weight: 400;
  line-height: 1.15;
  text-align: right;
}

.cabinet-plate-main {
  top: 0;
  right: 7%;
  width: 67%;
  height: 76%;
  border-bottom: 5px solid var(--cobalt);
}

.cabinet-plate-detail {
  bottom: 0;
  left: 0;
  width: 44%;
  height: 51%;
  border-bottom: 5px solid var(--oxblood);
}

.cabinet-stamp {
  position: absolute;
  right: 0;
  bottom: 3%;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  color: var(--ivory);
  background: var(--lacquer);
  border: 1px solid var(--gold);
  outline: 1px solid var(--lacquer);
  outline-offset: 7px;
}

.cabinet-stamp span {
  align-self: end;
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
}

.cabinet-stamp small {
  align-self: start;
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.story {
  padding: clamp(90px, 9vw, 170px) 0;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(167, 135, 79, 0.06) 1px, transparent 1px),
    var(--lacquer);
  background-size: 12.5% 100%;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1.04fr) minmax(380px, 0.96fr);
  gap: clamp(70px, 9vw, 160px);
  align-items: center;
}

.story-visual {
  position: relative;
  width: 88%;
  margin-left: 6%;
}

.story-visual::before {
  position: absolute;
  top: -24px;
  right: -24px;
  bottom: 24px;
  left: 24px;
  content: "";
  border: 1px solid var(--gold);
}

.story-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-visual > span {
  position: absolute;
  z-index: 2;
  right: -62px;
  bottom: 50px;
  padding: 22px 20px;
  color: var(--lacquer);
  background: var(--ivory);
  border-top: 5px solid var(--cobalt);
  font-family: var(--display);
  font-size: clamp(18px, 1.5vw, 27px);
  line-height: 1.15;
}

.story-copy {
  max-width: 650px;
}

.story-copy .micro-label {
  color: var(--gold-light);
}

.story-copy h2 {
  margin-bottom: 40px;
}

.story-copy h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.story-copy > p:not(.micro-label) {
  max-width: 560px;
  color: rgba(242, 237, 227, 0.72);
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.9;
}

.story-copy .underlined-link {
  margin-top: 25px;
  color: var(--ivory);
}

.collection-standard {
  padding-top: clamp(100px, 10vw, 185px);
  padding-bottom: clamp(90px, 9vw, 165px);
}

.collection-standard > header {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  align-items: end;
  border-bottom: 1px solid var(--ink);
}

.collection-standard > header .micro-label {
  padding-bottom: 30px;
}

.collection-standard > header h2 {
  margin: 0 0 27px;
  font-family: var(--display);
  font-size: clamp(43px, 5vw, 84px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.standard-grid article {
  min-height: 255px;
  padding: 27px clamp(18px, 2.4vw, 42px);
  border-right: 1px solid var(--line);
}

.standard-grid article:first-child {
  padding-left: 0;
}

.standard-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.standard-grid article > span {
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 22px;
}

.standard-grid h3 {
  margin-bottom: 13px;
  font-family: var(--display);
  font-size: clamp(21px, 1.8vw, 31px);
  font-weight: 400;
  line-height: 1.15;
}

.standard-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.7;
}

.service {
  padding-top: clamp(90px, 9vw, 170px);
  padding-bottom: clamp(100px, 10vw, 190px);
}

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

.service-grid {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.service-grid li {
  min-height: 280px;
  padding: 30px clamp(22px, 3vw, 56px) 42px;
  border-right: 1px solid var(--line);
}

.service-grid li:last-child {
  border-right: 0;
}

.service-grid li > span {
  display: block;
  margin-bottom: 60px;
  color: var(--oxblood);
  font-family: var(--display);
  font-size: 18px;
}

.service-grid h3 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(23px, 2vw, 34px);
  font-weight: 400;
}

.service-grid p {
  max-width: 380px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.visit {
  padding-bottom: clamp(85px, 8vw, 150px);
}

.visit-panel {
  position: relative;
  min-height: 550px;
  padding: clamp(54px, 7vw, 120px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  align-items: center;
  color: var(--ivory);
  background:
    radial-gradient(circle at 85% 50%, rgba(198, 170, 114, 0.16), transparent 28%),
    var(--cobalt);
}

.visit-panel::before,
.visit-panel::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.visit-panel::before {
  inset: 20px;
  border: 1px solid rgba(242, 237, 227, 0.22);
}

.visit-panel::after {
  top: 0;
  right: 30%;
  bottom: 0;
  width: 1px;
  background: rgba(242, 237, 227, 0.15);
}

.visit-panel > div {
  position: relative;
  z-index: 1;
}

.visit-panel .micro-label {
  color: var(--gold-light);
}

.visit-panel h2 {
  margin-bottom: 35px;
}

.visit-panel address {
  max-width: 480px;
  color: rgba(242, 237, 227, 0.72);
  font-size: 13px;
  font-style: normal;
}

.visit-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.visit-mark {
  display: grid;
  justify-items: center;
  gap: 20px;
}

.visit-mark span {
  width: clamp(150px, 14vw, 245px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-light);
  outline: 1px solid rgba(242, 237, 227, 0.27);
  outline-offset: 12px;
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 120px);
}

.visit-mark small {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.concierge {
  padding: clamp(90px, 9vw, 165px) 0;
  color: var(--ivory);
  background:
    linear-gradient(90deg, transparent 24.95%, rgba(242, 237, 227, 0.1) 25%, transparent 25.05%),
    linear-gradient(90deg, transparent 74.95%, rgba(242, 237, 227, 0.1) 75%, transparent 75.05%),
    var(--oxblood);
}

.concierge-inner {
  display: grid;
  grid-template-columns: 0.55fr 1fr auto;
  gap: clamp(35px, 6vw, 110px);
  align-items: center;
}

.concierge p {
  max-width: 250px;
  margin: 0;
  color: rgba(242, 237, 227, 0.68);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-transform: uppercase;
}

.concierge h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 88px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.concierge .button {
  min-width: 220px;
}

.site-footer {
  padding-top: 80px;
  color: var(--ivory);
  background: #0c110f;
}

.footer-main {
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.footer-wordmark .wordmark-seal {
  background: var(--cobalt);
  outline-color: var(--gold);
}

.footer-wordmark strong {
  color: var(--ivory);
}

.footer-wordmark small {
  color: rgba(242, 237, 227, 0.5);
}

.footer-main > div:first-child > p {
  max-width: 420px;
  margin: 30px 0 0;
  color: rgba(242, 237, 227, 0.55);
  font-size: 11px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-nav > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav small {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-nav a {
  width: max-content;
  color: rgba(242, 237, 227, 0.7);
  font-size: 11px;
}

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

.footer-bottom {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(242, 237, 227, 0.4);
  border-top: 1px solid rgba(242, 237, 227, 0.16);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Product page */
.product-header {
  background: var(--paper);
}

.product-page {
  padding-bottom: 130px;
}

.back-to-shop {
  width: var(--shell);
  margin: 30px auto;
  display: block;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.back-to-shop:hover {
  color: var(--oxblood);
}

.product-detail {
  padding-top: 18px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.68fr);
  gap: clamp(60px, 8vw, 150px);
  align-items: start;
}

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

.product-main-image,
.product-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #ded6c9;
}

.product-main-image:first-child {
  grid-column: 1 / -1;
}

.product-detail-sticky {
  position: sticky;
  top: 128px;
}

.product-detail-copy .micro-label {
  margin-bottom: 18px;
}

.product-detail-copy h1 {
  margin-bottom: 25px;
  font-family: var(--display);
  font-size: clamp(45px, 4.5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.product-lead {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.detail-price {
  margin-bottom: 25px;
  padding: 19px 0;
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-price strong {
  font-family: var(--display);
  font-size: 31px;
  font-weight: 400;
}

.detail-price del {
  color: #8c8a82;
  font-size: 12px;
}

.detail-cart-button {
  width: 100%;
  margin-bottom: 28px;
}

.product-facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.product-facts div {
  padding: 12px 0;
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.product-facts dt {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-facts dd {
  margin: 0;
  font-size: 11px;
  text-align: right;
}

.product-description {
  margin-top: 38px;
}

.product-description h2 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 400;
}

.product-description p,
.condition-note {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.85;
}

.condition-note {
  margin-top: 22px;
  padding: 17px 18px;
  border-left: 3px solid var(--gold);
  background: #ece5d8;
}

.related {
  padding-top: 90px;
  border-top: 1px solid var(--line);
}

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

.not-found {
  min-height: 55vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  margin-bottom: 15px;
  font-family: var(--display);
  font-size: clamp(45px, 5vw, 78px);
  font-weight: 400;
}

/* Cart and checkout */
.drawer-backdrop {
  position: fixed;
  z-index: 500;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: rgba(5, 9, 7, 0.64);
  transition: opacity 250ms ease;
}

.drawer-backdrop.is-visible {
  pointer-events: auto;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 510;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(470px, 100vw);
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: var(--ink);
  background: var(--paper);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.18);
  transform: translateX(105%);
  transition: transform 350ms cubic-bezier(0.25, 0.75, 0.25, 1);
}

.cart-drawer.is-open {
  transform: none;
}

.cart-drawer > header {
  padding: 26px 28px 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.cart-drawer header small,
.checkout-dialog header small {
  color: var(--oxblood);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cart-drawer header h2,
.checkout-dialog header h2 {
  margin: 3px 0 0;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
}

.cart-drawer header button,
.checkout-dialog header button {
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 21px;
  line-height: 1;
}

.cart-items {
  padding: 10px 28px;
  overflow-y: auto;
}

.cart-item {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 88px;
  height: 112px;
  object-fit: cover;
}

.cart-item > div {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 8px;
}

.cart-item > div > a {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.2;
}

.cart-item strong {
  font-size: 10px;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
}

.quantity-control button {
  width: 31px;
  height: 29px;
  padding: 0;
  background: transparent;
  border: 0;
}

.quantity-control span {
  min-width: 27px;
  text-align: center;
  font-size: 10px;
}

.cart-drawer > footer {
  padding: 22px 28px 26px;
  border-top: 1px solid var(--line);
}

.cart-drawer > footer > div {
  margin-bottom: 7px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.cart-drawer > footer > small {
  display: block;
  margin-bottom: 17px;
  color: var(--ink-soft);
  font-size: 9px;
}

.cart-drawer .checkout-button {
  width: 100%;
}

.empty-cart {
  min-height: 70%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
}

.empty-cart > span {
  width: 74px;
  height: 74px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--cobalt);
  font-family: var(--display);
  font-size: 27px;
}

.empty-cart h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 400;
}

.empty-cart p {
  max-width: 260px;
  color: var(--ink-soft);
  font-size: 11px;
}

.empty-cart button {
  padding: 5px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-dialog {
  width: min(800px, calc(100vw - 30px));
  max-height: min(92vh, 950px);
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 0;
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.35);
}

.checkout-dialog::backdrop {
  background: rgba(5, 9, 7, 0.72);
}

.checkout-dialog form > header {
  padding: 24px 30px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.checkout-body {
  max-height: 63vh;
  padding: 25px 30px;
  overflow-y: auto;
}

.checkout-body section + section {
  margin-top: 27px;
}

.checkout-body h3 {
  margin-bottom: 15px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 400;
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.checkout-grid label,
.payment-option {
  display: grid;
  gap: 5px;
}

.checkout-grid label > span {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-grid input,
.checkout-grid textarea {
  width: 100%;
  padding: 11px 12px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
}

.checkout-grid input:focus,
.checkout-grid textarea:focus {
  border-color: var(--cobalt);
}

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

.payment-option {
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
}

.payment-option + .payment-option {
  margin-top: 8px;
}

.payment-option input {
  margin-top: 5px;
  accent-color: var(--cobalt);
}

.payment-option span {
  display: grid;
  gap: 3px;
}

.payment-option strong {
  font-size: 11px;
}

.payment-option small {
  color: var(--ink-soft);
  font-size: 9px;
}

.payment-option.is-disabled {
  opacity: 0.5;
}

.checkout-summary {
  margin-top: 25px;
  padding: 17px;
  background: #ece5d8;
  border-left: 3px solid var(--gold);
}

.checkout-summary > div {
  padding: 4px 0;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}

.checkout-summary .checkout-total {
  margin-top: 7px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.checkout-error {
  margin-top: 12px;
  color: var(--oxblood);
  font-size: 11px;
}

.checkout-dialog form > footer {
  padding: 17px 30px 22px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--line);
}

.order-success {
  padding: clamp(38px, 6vw, 70px);
  text-align: center;
}

.success-mark {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--lacquer);
  font-size: 26px;
}

.order-success h2 {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 45px;
  font-weight: 400;
}

.success-total {
  max-width: 440px;
  margin: 24px auto;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bank-card {
  max-width: 440px;
  margin: 20px auto;
  padding: 18px;
  text-align: left;
  background: #ece5d8;
}

.bank-card p {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 10px;
}

.bank-card small,
.success-note {
  color: var(--ink-soft);
  font-size: 9px;
}

.button-whatsapp {
  margin: 10px auto;
  color: #fff;
  background: #1f6d49;
}

.order-success > .underlined-link {
  margin: 20px auto 0;
}

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

.has-js .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.has-js .reveal.is-revealed {
  opacity: 1;
  transform: none;
}

@media (min-width: 1800px) {
  body {
    font-size: 17px;
  }

  .header-inner {
    min-height: 108px;
  }

  .hero-gallery {
    min-height: 735px;
  }

  .salon-grid {
    min-height: 900px;
  }

  .product-grid {
    gap: 70px 56px;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    gap: 20px;
  }

  .wordmark small {
    display: none;
  }

  .salon-grid {
    grid-template-columns: minmax(330px, 0.8fr) minmax(470px, 1.2fr);
    gap: 50px;
  }

  .hero-copy {
    padding-left: 24px;
  }

  .hero-gallery {
    min-height: 540px;
  }

  .product-grid {
    gap: 45px 25px;
  }

  .story-layout {
    gap: 80px;
  }

  .story-visual {
    width: 92%;
    margin-left: 0;
  }

  .visit-panel {
    padding: 70px;
  }

  .cabinet-layout {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 70px;
  }

  .cabinet-gallery {
    min-height: 660px;
  }

  .cabinet-stamp {
    width: 115px;
    height: 115px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(90vw, 760px);
  }

  .header-inner {
    min-height: 76px;
    grid-template-columns: 40px 1fr auto;
    gap: 16px;
  }

  .wordmark {
    justify-self: center;
  }

  .wordmark-seal {
    width: 39px;
    height: 39px;
    font-size: 15px;
  }

  .wordmark strong {
    font-size: 18px;
  }

  .menu-button {
    width: 34px;
    height: 34px;
    padding: 8px 5px;
    display: grid;
    align-content: center;
    gap: 6px;
    background: transparent;
    border: 0;
  }

  .menu-button span {
    width: 23px;
    height: 1px;
    background: var(--ink);
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 18px 5vw 26px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 25px 50px rgba(17, 27, 24, 0.12);
  }

  .menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 10px 0;
  }

  .search-toggle {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .hero-index {
    grid-template-columns: 1fr 1fr;
  }

  .hero-index span:nth-child(2) {
    text-align: right;
  }

  .hero-index span:last-child {
    display: none;
  }

  .salon-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .hero-copy h1 {
    max-width: 620px;
  }

  .hero-gallery {
    min-height: 720px;
  }

  .hero-tile-1 {
    grid-row: 1 / span 2;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-header > p {
    margin-left: 0;
  }

  .catalog-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-search {
    width: 100%;
    max-width: 420px;
  }

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

  .cabinet-layout {
    grid-template-columns: 1fr;
  }

  .cabinet-copy {
    max-width: 700px;
  }

  .cabinet-gallery {
    min-height: 780px;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-visual {
    width: min(84%, 580px);
    margin-left: 4%;
  }

  .story-visual > span {
    right: -55px;
  }

  .story-copy {
    max-width: 700px;
  }

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

  .collection-standard > header {
    grid-template-columns: 1fr;
  }

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

  .standard-grid article:nth-child(2) {
    border-right: 0;
  }

  .standard-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .standard-grid article:nth-child(3) {
    padding-left: 0;
  }

  .service-grid li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-grid li:last-child {
    border-bottom: 0;
  }

  .service-grid li > span {
    margin-bottom: 25px;
  }

  .visit-panel {
    min-height: 0;
    padding: 70px 60px;
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .visit-panel::after {
    display: none;
  }

  .visit-mark {
    justify-self: start;
  }

  .visit-mark span {
    width: 150px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .product-detail-sticky {
    position: static;
  }

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

  .concierge-inner {
    grid-template-columns: 1fr 1fr;
  }

  .concierge p {
    grid-column: 1 / -1;
    max-width: 430px;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100vw - 34px);
  }

  body {
    background-size: 34px 34px;
  }

  .announcement {
    padding-inline: 17px;
    justify-content: space-between;
    font-size: 7px;
    letter-spacing: 0.12em;
  }

  .announcement span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-inner {
    min-height: 70px;
  }

  .wordmark {
    gap: 10px;
  }

  .wordmark > span:last-child {
    display: none;
  }

  .cart-toggle {
    font-size: 8px !important;
  }

  .hero-index {
    min-height: 43px;
    font-size: 6px;
    letter-spacing: 0.14em;
  }

  .salon-grid {
    padding: 47px 0 52px;
    gap: 45px;
  }

  .hero-copy {
    padding-left: 17px;
  }

  .hero-copy h1 {
    margin-bottom: 22px;
    font-size: clamp(46px, 15vw, 69px);
  }

  .hero-description {
    font-size: 13px;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

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

  .button-ivory {
    width: 100%;
    min-width: 0;
  }

  .hero-ledger {
    margin-top: 42px;
    grid-template-columns: 1fr;
  }

  .hero-ledger div,
  .hero-ledger div + div {
    padding: 12px 0;
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .hero-ledger div:last-child {
    border-bottom: 0;
  }

  .hero-gallery {
    min-height: 610px;
    grid-template-columns: 1fr 0.72fr;
    gap: 7px;
  }

  .hero-tile > span {
    right: 13px;
    bottom: 13px;
    left: 13px;
  }

  .hero-tile small {
    font-size: 6px;
  }

  .hero-tile strong {
    font-size: 16px;
  }

  .editorial-strip > div {
    min-height: 42px;
    justify-content: flex-start;
    overflow: hidden;
  }

  .editorial-strip span {
    font-size: 6px;
  }

  .editorial-strip span:nth-of-type(n + 3),
  .editorial-strip i:nth-of-type(n + 3) {
    display: none;
  }

  .collection,
  .service {
    padding-top: 85px;
    padding-bottom: 95px;
  }

  .section-header {
    margin-bottom: 38px;
    padding-bottom: 28px;
  }

  .section-header h2,
  .story-copy h2,
  .visit-panel h2 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .section-header > p {
    font-size: 12px;
  }

  .catalog-tools {
    margin-bottom: 28px;
    gap: 20px;
  }

  .filter-row {
    gap: 7px 19px;
  }

  .product-grid,
  .related-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product-media {
    aspect-ratio: 4 / 5;
  }

  .view-product {
    transform: none;
  }

  .product-meta h3 {
    font-size: 25px;
  }

  .cabinet {
    padding: 88px 0;
  }

  .cabinet-layout {
    gap: 65px;
  }

  .cabinet-copy h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .cabinet-criteria dd {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cabinet-gallery {
    min-height: 540px;
  }

  .cabinet-plate-main {
    right: 0;
    width: 79%;
    height: 74%;
  }

  .cabinet-plate-detail {
    width: 51%;
    height: 46%;
  }

  .cabinet-stamp {
    right: 4px;
    width: 86px;
    height: 86px;
  }

  .cabinet-stamp span {
    font-size: 32px;
  }

  .cabinet-plate figcaption {
    padding: 13px;
  }

  .cabinet-plate figcaption strong {
    font-size: 14px;
  }

  .story {
    padding: 90px 0;
  }

  .story-layout {
    gap: 70px;
  }

  .story-visual {
    width: calc(100% - 28px);
    margin-left: 0;
  }

  .story-visual::before {
    top: -15px;
    right: -15px;
    bottom: 15px;
    left: 15px;
  }

  .story-visual > span {
    right: -27px;
    bottom: 24px;
    padding: 15px 13px;
    font-size: 17px;
  }

  .service-grid li {
    padding: 25px 0 30px;
  }

  .collection-standard {
    padding-top: 85px;
    padding-bottom: 80px;
  }

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

  .standard-grid article,
  .standard-grid article:first-child,
  .standard-grid article:nth-child(3) {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .standard-grid article:last-child {
    border-bottom: 0;
  }

  .standard-grid article > span {
    margin-bottom: 25px;
  }

  .visit {
    width: 100%;
    padding-bottom: 0;
  }

  .visit-panel {
    padding: 68px 30px;
  }

  .visit-panel::before {
    inset: 12px;
  }

  .visit-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-main {
    gap: 45px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 20px;
  }

  .footer-bottom {
    min-height: 82px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  .concierge-inner {
    grid-template-columns: 1fr;
  }

  .concierge .button {
    width: 100%;
  }

  .product-page {
    padding-bottom: 80px;
  }

  .back-to-shop {
    margin: 20px auto;
  }

  .product-detail {
    padding-top: 0;
    padding-bottom: 70px;
    gap: 42px;
  }

  .product-gallery {
    gap: 7px;
  }

  .product-detail-copy h1 {
    font-size: 46px;
  }

  .related {
    padding-top: 70px;
  }

  .checkout-dialog {
    width: 100vw;
    height: 100dvh;
    max-height: none;
    margin: 0;
  }

  .checkout-dialog form > header,
  .checkout-body,
  .checkout-dialog form > footer {
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .wide-field {
    grid-column: auto;
  }
}

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

/* Brand and commerce refinement — V6 */
.header-inner {
  min-height: 112px;
}

.brand-mark {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(167, 135, 79, 0.45),
    0 10px 28px rgba(13, 25, 35, 0.16);
}

.wordmark {
  gap: 20px;
}

.wordmark-copy strong {
  font-size: clamp(27px, 1.7vw, 34px);
  letter-spacing: -0.035em;
}

.wordmark-copy small {
  font-size: 7px;
  letter-spacing: 0.31em;
}

.brand-mark-footer {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(198, 170, 114, 0.45),
    0 24px 65px rgba(0, 0, 0, 0.35);
}

.brand-intro {
  background:
    radial-gradient(circle at 50% 45%, rgba(167, 135, 79, 0.2), transparent 28%),
    linear-gradient(135deg, #061528 0%, #071d1a 52%, #061528 100%);
  animation: brand-intro-lift 2.85s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.brand-intro::before {
  inset: 28px;
  border: 1px solid rgba(198, 170, 114, 0.32);
  border-radius: 2px;
}

.brand-intro::after {
  top: 50%;
  bottom: auto;
  left: 50%;
  width: min(62vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(198, 170, 114, 0.12);
  border-radius: 50%;
  background: transparent;
  box-shadow:
    0 0 0 70px rgba(198, 170, 114, 0.025),
    0 0 0 140px rgba(198, 170, 114, 0.018);
  transform: translate(-50%, -50%) rotate(0);
  animation: intro-aureole 12s linear infinite;
}

.brand-intro-inner {
  z-index: 2;
  flex-direction: column;
  gap: 25px;
  text-align: center;
  animation: brand-seal-arrive 1.35s 0.12s cubic-bezier(0.18, 0.82, 0.2, 1) both;
}

.intro-seal-wrap {
  position: relative;
  width: clamp(150px, 14vw, 220px);
  aspect-ratio: 1;
  display: block;
}

.intro-seal-wrap::before {
  position: absolute;
  inset: -18px;
  content: "";
  border: 1px solid rgba(198, 170, 114, 0.28);
  border-radius: 50%;
  animation: intro-ring-pulse 1.8s ease-in-out infinite;
}

.intro-seal-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(198, 170, 114, 0.7),
    0 30px 80px rgba(0, 0, 0, 0.35);
}

.brand-intro-inner strong {
  font-size: clamp(44px, 4.2vw, 72px);
}

.brand-intro-inner > div > span {
  font-size: 7px;
  letter-spacing: 0.42em;
}

.intro-progress {
  bottom: 6vh;
}

.intro-progress i {
  animation-duration: 1.8s;
}

.home-page .site-header {
  animation-delay: 2.08s;
}

.home-page .hero-copy > :nth-child(1) { animation-delay: 2.12s; }
.home-page .hero-copy > :nth-child(2) { animation-delay: 2.2s; }
.home-page .hero-copy > :nth-child(3) { animation-delay: 2.28s; }
.home-page .hero-copy > :nth-child(4) { animation-delay: 2.36s; }
.home-page .hero-copy > :nth-child(5) { animation-delay: 2.44s; }
.home-page .hero-copy > :nth-child(6) { animation-delay: 2.52s; }
.home-page .hero-tile-1 { animation-delay: 2.1s; }
.home-page .hero-tile-2 { animation-delay: 2.26s; }
.home-page .hero-tile-3 { animation-delay: 2.4s; }
.home-page .hero-caption { animation-delay: 2.48s; }

.social-stage {
  gap: 16px;
}

.social-card {
  min-height: 250px;
  padding: clamp(34px, 3.2vw, 55px);
  grid-template-columns: auto minmax(0, 1fr) auto;
  isolation: isolate;
  border-color: rgba(242, 237, 227, 0.26);
  box-shadow: inset 0 0 0 1px rgba(10, 15, 13, 0.2);
}

.social-card-instagram {
  background:
    radial-gradient(circle at 8% 110%, rgba(168, 74, 65, 0.65), transparent 45%),
    linear-gradient(128deg, #4d1f2b 0%, #221821 62%, #111513 100%);
}

.social-card-whatsapp {
  background:
    radial-gradient(circle at 7% 105%, rgba(38, 139, 99, 0.48), transparent 48%),
    linear-gradient(128deg, #0d4b38 0%, #102b23 62%, #101513 100%);
}

.social-card::before {
  z-index: 2;
}

.social-card .social-icon,
.social-card > span:nth-child(2),
.social-card > b {
  position: relative;
  z-index: 3;
}

.social-card > span:nth-child(2) {
  max-width: 56%;
}

.social-icon {
  width: 68px;
  height: 68px;
  border-color: rgba(242, 237, 227, 0.42);
  background: rgba(9, 14, 12, 0.18);
  backdrop-filter: blur(8px);
}

.social-icon svg {
  width: 27px;
  height: 27px;
}

.social-card small {
  color: rgba(255, 248, 237, 0.66);
  font-size: 7px;
}

.social-card strong {
  font-size: clamp(30px, 2.5vw, 45px);
  text-wrap: balance;
}

.social-card > b {
  align-self: start;
  font-size: 40px;
}

.social-product-shot {
  position: absolute !important;
  z-index: -1 !important;
  top: 0;
  right: 0;
  bottom: 0;
  width: 43%;
  max-width: none !important;
  display: block !important;
  overflow: hidden;
  opacity: 0.72;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 50%);
  mask-image: linear-gradient(90deg, transparent 0, #000 50%);
}

.social-product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 850ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.social-card:hover .social-product-shot img {
  transform: scale(1.1);
}

.cart-drawer {
  width: min(560px, 100vw);
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  background:
    linear-gradient(rgba(28, 54, 92, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 54px;
}

.cart-drawer > .cart-head {
  min-height: 132px;
  padding: 25px 34px;
  align-items: center;
  color: var(--ivory);
  background:
    radial-gradient(circle at 15% 10%, rgba(167, 135, 79, 0.18), transparent 38%),
    var(--lacquer);
  border-bottom: 4px solid var(--gold);
}

.cart-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cart-brand img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border: 1px solid rgba(198, 170, 114, 0.62);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.cart-drawer .cart-head small {
  color: var(--gold-light);
}

.cart-drawer .cart-head h2 {
  margin-top: 5px;
  color: var(--ivory);
  font-size: 42px;
  line-height: 0.9;
}

.cart-drawer .cart-head > button {
  color: var(--ivory);
  border-color: rgba(242, 237, 227, 0.3);
}

.cart-assurance {
  min-height: 54px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  color: var(--ink-soft);
  background: #e9e0d2;
  border-bottom: 1px solid var(--line);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.cart-assurance span + span {
  border-left: 1px solid rgba(23, 24, 21, 0.17);
}

.cart-items {
  padding: 18px 32px 28px;
}

.cart-item {
  padding: 18px;
  grid-template-columns: 118px 1fr;
  gap: 22px;
  background: rgba(255, 253, 248, 0.62);
  border: 1px solid rgba(23, 24, 21, 0.14);
  box-shadow: 0 14px 35px rgba(22, 24, 20, 0.05);
}

.cart-item + .cart-item {
  margin-top: 12px;
}

.cart-item-image {
  position: relative;
  overflow: hidden;
  background: #ddd2c2;
}

.cart-item-image::after {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.56);
  pointer-events: none;
}

.cart-item img {
  width: 118px;
  height: 148px;
  transition: transform 450ms ease;
}

.cart-item:hover img {
  transform: scale(1.045);
}

.cart-item-copy {
  min-width: 0;
  padding-top: 4px;
}

.cart-item-copy > small {
  color: var(--oxblood);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cart-item .cart-item-name {
  color: var(--ink);
  font-size: 25px;
  letter-spacing: -0.025em;
}

.cart-item-copy > strong {
  color: var(--cobalt);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
}

.quantity-control {
  margin-top: 5px;
  background: var(--paper);
  border-color: rgba(23, 24, 21, 0.2);
}

.quantity-control button {
  width: 37px;
  height: 34px;
  font-size: 15px;
}

.quantity-control span {
  min-width: 34px;
}

.cart-drawer > footer {
  padding: 25px 34px 31px;
  color: var(--ivory);
  background: #111713;
  border-top: 0;
}

.cart-drawer > footer > .cart-total {
  margin-bottom: 9px;
  align-items: baseline;
}

.cart-total > span {
  color: rgba(242, 237, 227, 0.57);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cart-total > strong {
  color: var(--ivory);
  font-family: var(--display);
  font-size: 31px;
  font-weight: 500;
}

.cart-drawer > footer > small {
  color: rgba(242, 237, 227, 0.48);
}

.cart-drawer > footer > .cart-payment-note {
  margin: 17px 0;
  padding: 12px 0;
  display: flex;
  justify-content: flex-start;
  gap: 22px;
  color: var(--gold-light);
  border-top: 1px solid rgba(242, 237, 227, 0.13);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-drawer .checkout-button {
  color: var(--ink);
  background: var(--ivory);
  border-color: var(--ivory);
}

.empty-cart {
  min-height: 100%;
}

.empty-cart > img {
  width: 132px;
  height: 132px;
  margin-bottom: 16px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 22px 55px rgba(13, 25, 35, 0.17);
}

.empty-cart > small {
  color: var(--gold);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.empty-cart h3 {
  margin-bottom: 3px;
  font-size: 34px;
}

@keyframes brand-seal-arrive {
  0% { opacity: 0; transform: translateY(28px) scale(0.82); filter: blur(8px); }
  60% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes intro-ring-pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.94); }
  50% { opacity: 0.9; transform: scale(1.04); }
}

@keyframes intro-aureole {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes brand-intro-lift {
  0%, 69% { opacity: 1; visibility: visible; transform: translateY(0); }
  100% { opacity: 1; visibility: hidden; pointer-events: none; transform: translateY(-100%); }
}

@media (max-width: 1100px) {
  .brand-mark {
    width: 68px;
    height: 68px;
  }

  .header-inner {
    min-height: 96px;
  }

  .social-card {
    min-height: 220px;
  }
}

@media (max-width: 700px) {
  .header-inner {
    min-height: 80px;
  }

  .brand-mark {
    width: 64px;
    height: 64px;
  }

  .brand-intro::before {
    inset: 14px;
  }

  .intro-seal-wrap {
    width: 145px;
  }

  .brand-intro-inner strong {
    font-size: 43px;
  }

  .social-card {
    min-height: 190px;
    padding: 27px 22px;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .social-icon {
    width: 50px;
    height: 50px;
  }

  .social-card > span:nth-child(2) {
    max-width: 72%;
  }

  .social-card strong {
    font-size: 25px;
  }

  .social-product-shot {
    width: 48%;
    opacity: 0.47;
  }

  .cart-drawer > .cart-head {
    min-height: 112px;
    padding: 20px;
  }

  .cart-brand {
    gap: 13px;
  }

  .cart-brand img {
    width: 60px;
    height: 60px;
  }

  .cart-drawer .cart-head h2 {
    font-size: 34px;
  }

  .cart-assurance {
    min-height: 46px;
    padding: 0 15px;
    font-size: 5.5px;
  }

  .cart-items {
    padding: 14px;
  }

  .cart-item {
    padding: 13px;
    grid-template-columns: 94px 1fr;
    gap: 14px;
  }

  .cart-item img {
    width: 94px;
    height: 122px;
  }

  .cart-item .cart-item-name {
    font-size: 21px;
  }

  .cart-drawer > footer {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-intro {
    animation-duration: 0.01ms;
  }

  .intro-seal-wrap::before,
  .brand-intro::after {
    animation: none;
  }
}

/* V4 — refined porcelain house */
:root {
  --ink: #1d1b18;
  --ink-soft: #686159;
  --lacquer: #18201d;
  --lacquer-2: #222c28;
  --ivory: #f7f2e9;
  --paper: #f5f1e9;
  --paper-deep: #e8ded0;
  --cobalt: #233c58;
  --oxblood: #762938;
  --gold: #aa8956;
  --gold-light: #ccb280;
  --line: rgba(29, 27, 24, 0.15);
  --line-light: rgba(247, 242, 233, 0.19);
  --shadow: 0 32px 80px rgba(20, 17, 14, 0.14);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --shell: min(91vw, 1640px);
}

body {
  color: var(--ink);
  background: var(--paper);
  background-image: none;
  font-size: 14px;
  letter-spacing: -0.005em;
}

.announcement {
  min-height: 34px;
  color: rgba(247, 242, 233, 0.8);
  background: #151715;
  font-size: 8px;
  letter-spacing: 0.17em;
}

.site-header {
  background: rgba(245, 241, 233, 0.96);
  border-color: rgba(29, 27, 24, 0.12);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 35px rgba(20, 17, 14, 0.07);
}

.header-inner {
  min-height: 88px;
}

.wordmark {
  gap: 17px;
}

.wordmark-seal {
  width: 46px;
  height: 54px;
  color: var(--ivory);
  background: var(--lacquer);
  border-color: var(--gold);
  outline: 0;
  font-size: 18px;
}

.wordmark strong {
  font-size: 25px;
  letter-spacing: -0.025em;
}

.wordmark small {
  font-size: 7px;
  letter-spacing: 0.22em;
}

.main-nav a,
.header-actions button {
  font-size: 9px;
  letter-spacing: 0.16em;
}

.main-nav a::after,
.header-actions button::after {
  background: var(--oxblood);
}

.salon-hero {
  color: var(--ivory);
  background: var(--lacquer);
  border-bottom: 0;
}

.salon-hero::before {
  opacity: 0.11;
  background:
    radial-gradient(circle at 72% 34%, rgba(204, 178, 128, 0.25), transparent 32%),
    linear-gradient(90deg, transparent 43.9%, rgba(247, 242, 233, 0.11) 44%, transparent 44.1%);
}

.hero-index {
  min-height: 48px;
  color: rgba(247, 242, 233, 0.44);
  border-bottom-color: rgba(247, 242, 233, 0.14);
  font-size: 7px;
}

.salon-grid {
  min-height: min(810px, calc(100vh - 122px));
  padding: clamp(60px, 6vw, 104px) 0;
  grid-template-columns: minmax(370px, 0.78fr) minmax(600px, 1.22fr);
  gap: clamp(65px, 8vw, 145px);
}

.hero-copy {
  padding-left: 0;
}

.hero-copy::before {
  display: none;
}

.hero-copy .micro-label {
  margin-bottom: 30px;
  color: var(--gold-light);
}

.hero-copy h1 {
  max-width: 670px;
  margin-bottom: 32px;
  font-size: clamp(64px, 6.2vw, 116px);
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.hero-description {
  max-width: 520px;
  margin-bottom: 38px;
  color: rgba(247, 242, 233, 0.66);
  font-size: clamp(13px, 0.92vw, 16px);
  line-height: 1.85;
}

.button {
  min-height: 56px;
  padding: 15px 22px;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.button-ivory {
  min-width: 238px;
  color: var(--ink);
  background: var(--ivory);
}

.hero-signature {
  margin-top: 45px;
}

.hero-signature > span {
  width: 40px;
  height: 46px;
  font-size: 17px;
}

.hero-ledger {
  margin-top: 46px;
  border-color: rgba(247, 242, 233, 0.14);
}

.hero-ledger div,
.hero-ledger div + div {
  padding-top: 14px;
}

.hero-ledger dd {
  color: rgba(247, 242, 233, 0.55);
  font-size: 9px;
}

.hero-gallery {
  min-height: 620px;
  gap: 8px;
}

.hero-tile {
  background: #d9d0c3;
}

.hero-tile::after {
  background: linear-gradient(transparent 62%, rgba(10, 13, 11, 0.67));
}

.hero-tile > span {
  right: 20px;
  bottom: 18px;
  left: 20px;
}

.hero-tile strong {
  max-width: 320px;
  font-size: clamp(20px, 1.55vw, 29px);
}

.editorial-strip {
  color: var(--ink);
  background: #e7dfd2;
  border-color: rgba(29, 27, 24, 0.1);
}

.editorial-strip > div {
  min-height: 49px;
}

.editorial-strip span {
  font-size: 7px;
  letter-spacing: 0.18em;
}

.editorial-strip i {
  width: 3px;
  height: 3px;
  background: var(--oxblood);
  border-radius: 50%;
  transform: none;
}

.collection {
  padding-top: clamp(110px, 10vw, 180px);
  padding-bottom: clamp(120px, 11vw, 200px);
}

.section-header {
  margin-bottom: 48px;
  padding-bottom: 34px;
  grid-template-columns: 1fr minmax(310px, 0.4fr);
  border-bottom-color: rgba(29, 27, 24, 0.18);
}

.section-header h2,
.story-copy h2,
.visit-panel h2 {
  font-size: clamp(54px, 5vw, 88px);
  line-height: 0.9;
}

.section-header > p {
  font-size: 11px;
  line-height: 1.8;
}

.catalog-tools {
  margin-bottom: 34px;
}

.filter-chip {
  color: #827b72;
  font-size: 8px;
}

.filter-chip:hover,
.filter-chip.is-active {
  color: var(--oxblood);
}

.catalog-search {
  width: min(260px, 30vw);
}

.product-grid,
.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(45px, 4vw, 72px) clamp(18px, 2.2vw, 38px);
}

.product-media {
  aspect-ratio: 4 / 5;
  border-bottom: 0;
  background: #e5ddd1;
}

.product-media::before {
  inset: 12px;
}

.product-media:hover::before {
  border-color: rgba(255, 255, 255, 0.56);
}

.product-badge {
  top: 14px;
  left: 14px;
  padding: 8px 11px;
  color: var(--ivory);
  background: rgba(24, 32, 29, 0.88);
  backdrop-filter: blur(8px);
}

.product-index {
  top: 17px;
  right: 18px;
  font-size: clamp(20px, 1.8vw, 32px);
}

.view-product {
  padding: 35px 18px 15px;
  font-size: 7px;
}

.product-meta {
  padding: 20px 0 14px;
  border-bottom-color: rgba(29, 27, 24, 0.12);
}

.product-meta p {
  margin-bottom: 6px;
  font-size: 7px;
}

.product-meta h3 {
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.05;
}

.product-price {
  min-width: 94px;
}

.product-price strong {
  font-size: 10px;
}

.product-spec {
  min-height: 34px;
  color: #8b847a;
  border-bottom-color: rgba(29, 27, 24, 0.12);
  font-size: 6px;
}

.product-action {
  min-height: 46px;
  font-size: 7px;
  border-bottom-color: rgba(29, 27, 24, 0.18);
}

.cabinet {
  padding: clamp(120px, 11vw, 205px) 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 77% 36%, rgba(170, 137, 86, 0.13), transparent 27%),
    var(--lacquer);
  border: 0;
}

.cabinet::before {
  top: 0;
  right: auto;
  left: 4.5vw;
  width: 120px;
  height: 5px;
  background: var(--gold);
}

.cabinet-layout {
  grid-template-columns: minmax(380px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(80px, 10vw, 175px);
}

.cabinet-copy .micro-label {
  color: var(--gold-light);
}

.cabinet-copy h2 {
  font-size: clamp(58px, 5.7vw, 102px);
}

.cabinet-copy h2 em {
  color: var(--gold-light);
}

.cabinet-lead {
  color: rgba(247, 242, 233, 0.65);
  font-size: 13px;
}

.cabinet-criteria {
  border-top-color: rgba(247, 242, 233, 0.24);
}

.cabinet-criteria > div {
  border-bottom-color: rgba(247, 242, 233, 0.14);
}

.cabinet-criteria dt {
  color: var(--gold-light);
}

.cabinet-criteria span {
  color: rgba(247, 242, 233, 0.54);
}

.cabinet-copy .underlined-link {
  color: var(--ivory);
}

.cabinet-plate {
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.25);
}

.cabinet-plate-main {
  border-bottom-color: var(--gold);
}

.cabinet-plate-detail {
  border-bottom-color: var(--oxblood);
}

.cabinet-stamp {
  color: var(--ink);
  background: var(--ivory);
  border-color: var(--gold);
  outline-color: rgba(247, 242, 233, 0.35);
}

.story {
  padding: clamp(115px, 11vw, 200px) 0;
  color: var(--ink);
  background: #ede4d8;
  background-image: none;
}

.story-layout {
  grid-template-columns: minmax(480px, 1.04fr) minmax(390px, 0.96fr);
}

.story-visual {
  width: 88%;
}

.story-visual::before {
  border-color: var(--oxblood);
}

.story-visual > span {
  color: var(--ivory);
  background: var(--oxblood);
  border-top: 0;
}

.story-copy .micro-label {
  color: var(--oxblood);
}

.story-copy h2 em {
  color: var(--oxblood);
}

.story-copy > p:not(.micro-label) {
  color: var(--ink-soft);
  font-size: 13px;
}

.story-copy .underlined-link {
  color: var(--ink);
}

.collection-standard {
  padding-top: clamp(110px, 10vw, 180px);
  padding-bottom: clamp(90px, 8vw, 145px);
}

.collection-standard > header {
  margin-bottom: 42px;
}

.standard-grid article {
  min-height: 225px;
}

.standard-grid article > span {
  margin-bottom: 44px;
  color: var(--oxblood);
}

.standard-grid h3 {
  font-size: clamp(24px, 2vw, 33px);
}

.service {
  width: 100%;
  padding: clamp(100px, 9vw, 165px) max(4.5vw, calc((100vw - 1640px) / 2));
  color: var(--ivory);
  background: var(--cobalt);
}

.service .micro-label {
  color: var(--gold-light);
}

.service .section-header {
  border-color: rgba(247, 242, 233, 0.22);
}

.service-grid {
  border-color: rgba(247, 242, 233, 0.3);
}

.service-grid li {
  min-height: 260px;
  border-color: rgba(247, 242, 233, 0.15);
}

.service-grid li > span {
  color: var(--gold-light);
}

.service-grid p {
  color: rgba(247, 242, 233, 0.62);
}

.visit {
  width: 100%;
  padding: 0;
}

.visit-panel {
  min-height: 600px;
  padding: clamp(65px, 8vw, 135px) max(4.5vw, calc((100vw - 1640px) / 2));
  grid-template-columns: 1fr 0.42fr;
  background:
    radial-gradient(circle at 83% 50%, rgba(204, 178, 128, 0.17), transparent 27%),
    var(--oxblood);
}

.visit-panel::before {
  inset: 22px;
}

.visit-panel::after {
  right: 31%;
}

.visit-mark span {
  width: clamp(150px, 12vw, 215px);
}

.concierge {
  padding: clamp(90px, 8vw, 145px) 0;
  background: #131613;
  background-image: none;
}

.concierge h2 {
  font-size: clamp(55px, 5.3vw, 92px);
}

.site-footer {
  padding-top: 90px;
  background: #0d100e;
}

.footer-main {
  padding-bottom: 80px;
}

.product-detail {
  padding-top: 34px;
}

.product-main-image,
.product-gallery img {
  background: #e5ddd1;
}

.product-detail-copy h1 {
  font-size: clamp(54px, 4.8vw, 86px);
  line-height: 0.92;
}

.detail-price strong {
  font-size: 37px;
}

@media (max-width: 1100px) {
  .salon-grid {
    grid-template-columns: minmax(330px, 0.8fr) minmax(470px, 1.2fr);
    gap: 50px;
  }

  .hero-gallery {
    min-height: 560px;
  }

  .cabinet-layout {
    grid-template-columns: 0.84fr 1.16fr;
    gap: 70px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 74px;
  }

  .salon-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .hero-gallery {
    min-height: 720px;
  }

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

  .cabinet-layout {
    grid-template-columns: 1fr;
  }

  .cabinet-gallery {
    min-height: 770px;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .service {
    padding-inline: 5vw;
  }

  .visit-panel {
    grid-template-columns: 1fr;
    padding-inline: 8vw;
  }

  .visit-panel::after {
    display: none;
  }

  .visit-mark {
    justify-self: start;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  .announcement {
    font-size: 6px;
  }

  .hero-index {
    font-size: 6px;
  }

  .salon-grid {
    padding: 48px 0 54px;
  }

  .hero-copy h1 {
    font-size: clamp(54px, 16vw, 72px);
  }

  .hero-gallery {
    min-height: 580px;
  }

  .hero-ledger {
    grid-template-columns: 1fr;
  }

  .hero-ledger div,
  .hero-ledger div + div {
    padding: 11px 0;
  }

  .product-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .product-media {
    aspect-ratio: 4 / 5;
  }

  .cabinet {
    padding: 90px 0;
  }

  .cabinet-copy h2 {
    font-size: clamp(50px, 14vw, 68px);
  }

  .cabinet-gallery {
    min-height: 520px;
  }

  .cabinet-stamp {
    width: 84px;
    height: 84px;
  }

  .section-header h2,
  .story-copy h2,
  .visit-panel h2 {
    font-size: clamp(48px, 14vw, 66px);
  }

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

  .service {
    padding: 85px 16px;
  }

  .visit-panel {
    padding: 72px 30px;
  }

  .concierge-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .section-header {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .section-header > p {
    width: 100%;
    max-width: 620px;
    margin-left: 0;
  }
}

/* Premium identity, motion and social footer — V5 */
.wordmark {
  gap: 17px;
}

.brand-crest {
  position: relative;
  width: 58px;
  height: 66px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--lacquer);
  background:
    radial-gradient(circle at 50% 20%, rgba(167, 135, 79, 0.16), transparent 31%),
    var(--ivory);
  border: 1px solid var(--gold);
  border-radius: 50% 50% 45% 45% / 42% 42% 58% 58%;
  box-shadow:
    inset 0 0 0 3px var(--lacquer),
    inset 0 0 0 4px rgba(167, 135, 79, 0.55);
}

.brand-crest::before,
.brand-crest::after {
  position: absolute;
  top: 12px;
  width: 9px;
  height: 20px;
  content: "";
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  opacity: 0.9;
}

.brand-crest::before {
  left: 8px;
  border-left: 1px solid var(--gold);
  border-radius: 100% 0 0 100%;
  transform: rotate(-16deg);
}

.brand-crest::after {
  right: 8px;
  border-right: 1px solid var(--gold);
  border-radius: 0 100% 100% 0;
  transform: rotate(16deg);
}

.crest-ornament {
  position: absolute;
  top: 9px;
  width: 4px;
  height: 4px;
  background: var(--oxblood);
  border-radius: 50%;
  box-shadow:
    -7px 5px 0 -1px var(--gold),
    7px 5px 0 -1px var(--gold);
}

.crest-vase {
  position: relative;
  width: 21px;
  height: 25px;
  margin-top: -4px;
  display: block;
  background:
    linear-gradient(90deg, transparent 46%, var(--oxblood) 47% 53%, transparent 54%),
    linear-gradient(var(--ivory), #e8ddc9);
  border: 1.5px solid var(--cobalt);
  border-radius: 29% 29% 47% 47% / 20% 20% 68% 68%;
  box-shadow: inset 0 -5px 0 rgba(28, 54, 92, 0.07);
}

.crest-vase::before {
  position: absolute;
  top: -6px;
  left: 5px;
  width: 9px;
  height: 6px;
  content: "";
  border: 1.5px solid var(--cobalt);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}

.crest-vase::after {
  position: absolute;
  top: 7px;
  left: 6px;
  width: 6px;
  height: 6px;
  content: "";
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.crest-vase i {
  position: absolute;
  top: -10px;
  left: 9px;
  width: 1px;
  height: 7px;
  display: block;
  background: var(--gold);
  transform: rotate(-12deg);
}

.brand-crest > small {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  color: var(--cobalt);
  font-family: var(--sans);
  font-size: 4.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1;
  text-align: center;
}

.wordmark-copy {
  display: grid;
  gap: 2px;
}

.wordmark-copy strong {
  font-size: clamp(22px, 1.45vw, 28px);
  font-weight: 500;
}

.wordmark-copy small {
  color: var(--ink-soft);
  font-size: 7px;
  letter-spacing: 0.26em;
}

.brand-intro {
  position: fixed;
  z-index: 4000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 50% 48%, rgba(167, 135, 79, 0.15), transparent 25%),
    var(--lacquer);
  animation: brand-intro-exit 2.2s cubic-bezier(0.72, 0, 0.22, 1) forwards;
}

.brand-intro::before,
.brand-intro::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.brand-intro::before {
  inset: 22px;
  border: 1px solid rgba(198, 170, 114, 0.38);
}

.brand-intro::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(198, 170, 114, 0.34), transparent);
}

.brand-intro-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  animation: brand-lockup-in 1.15s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.brand-crest-intro {
  width: 86px;
  height: 98px;
  transform: scale(1.02);
}

.brand-crest-intro .crest-vase {
  width: 29px;
  height: 35px;
}

.brand-crest-intro .crest-vase::before {
  top: -7px;
  left: 7px;
  width: 11px;
  height: 7px;
}

.brand-crest-intro .crest-vase::after {
  top: 11px;
  left: 9px;
  width: 8px;
  height: 8px;
}

.brand-crest-intro .crest-vase i {
  top: -12px;
  left: 13px;
}

.brand-crest-intro > small {
  bottom: 10px;
  font-size: 5.5px;
}

.brand-intro-inner > div {
  display: grid;
  gap: 4px;
}

.brand-intro-inner strong {
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.brand-intro-inner > div > span {
  color: var(--gold-light);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.35em;
}

.intro-progress {
  position: absolute;
  bottom: 9vh;
  left: 50%;
  width: min(240px, 45vw);
  height: 1px;
  overflow: hidden;
  background: rgba(242, 237, 227, 0.16);
  transform: translateX(-50%);
}

.intro-progress i {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--gold-light);
  transform: translateX(-100%);
  animation: brand-progress 1.35s 0.25s cubic-bezier(0.65, 0, 0.35, 1) both;
}

.home-page .site-header {
  animation: page-enter-down 0.75s 1.45s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.home-page .hero-copy > * {
  animation: page-enter-up 0.9s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.home-page .hero-copy > :nth-child(1) { animation-delay: 1.48s; }
.home-page .hero-copy > :nth-child(2) { animation-delay: 1.57s; }
.home-page .hero-copy > :nth-child(3) { animation-delay: 1.66s; }
.home-page .hero-copy > :nth-child(4) { animation-delay: 1.75s; }
.home-page .hero-copy > :nth-child(5) { animation-delay: 1.84s; }
.home-page .hero-copy > :nth-child(6) { animation-delay: 1.93s; }

.home-page .hero-tile {
  animation: hero-image-reveal 1.15s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.home-page .hero-tile-1 { animation-delay: 1.48s; }
.home-page .hero-tile-2 { animation-delay: 1.65s; }
.home-page .hero-tile-3 { animation-delay: 1.78s; }

.home-page .hero-caption {
  animation: page-enter-up 0.8s 1.95s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero-tile img {
  transform: scale(1.025) translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 450ms ease;
}

.hero-tile:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.07) translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
}

.site-footer {
  position: relative;
  padding-top: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 11% 82%, rgba(106, 31, 36, 0.22), transparent 25%),
    radial-gradient(circle at 88% 13%, rgba(167, 135, 79, 0.1), transparent 23%),
    #0b100e;
}

.site-footer::before {
  position: absolute;
  top: 10%;
  right: 5vw;
  width: min(32vw, 470px);
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(198, 170, 114, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(198, 170, 114, 0.025),
    0 0 0 76px rgba(198, 170, 114, 0.018);
}

.footer-eyebrow {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(242, 237, 227, 0.42);
  border-bottom: 1px solid rgba(242, 237, 227, 0.12);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.footer-main {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 7vw, 120px) 0 clamp(60px, 6vw, 95px);
  grid-template-columns: minmax(0, 1.35fr) minmax(420px, 0.65fr);
  gap: clamp(70px, 10vw, 180px);
}

.footer-brand h2 {
  max-width: 760px;
  margin: clamp(40px, 5vw, 78px) 0 26px;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(52px, 5.2vw, 94px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.footer-brand h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.footer-main .footer-brand > p {
  max-width: 510px;
  margin-top: 0;
  color: rgba(242, 237, 227, 0.52);
  font-size: 12px;
  line-height: 1.8;
}

.footer-wordmark .brand-crest {
  background: var(--ivory);
}

.footer-wordmark .wordmark-copy strong {
  color: var(--ivory);
}

.footer-wordmark .wordmark-copy small {
  color: rgba(242, 237, 227, 0.46);
}

.brand-crest-footer {
  width: 66px;
  height: 76px;
}

.footer-nav {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
  padding-top: 12px;
}

.footer-nav > div {
  gap: 13px;
}

.footer-nav small {
  margin-bottom: 20px;
}

.footer-nav a,
.footer-nav address {
  width: auto;
  color: rgba(242, 237, 227, 0.68);
  font-size: 12px;
  font-style: normal;
  line-height: 1.8;
}

.social-stage {
  position: relative;
  z-index: 1;
  padding: 0 0 clamp(65px, 6vw, 95px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.social-card {
  position: relative;
  min-height: 150px;
  padding: clamp(25px, 2.5vw, 40px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  border: 1px solid rgba(242, 237, 227, 0.17);
  transition:
    color 300ms ease,
    background 300ms ease,
    border-color 300ms ease,
    transform 300ms ease;
}

.social-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.09), transparent 60%);
  transform: translateX(-120%);
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.social-card:hover {
  border-color: rgba(242, 237, 227, 0.48);
  transform: translateY(-4px);
}

.social-card:hover::before {
  transform: translateX(120%);
}

.social-card-instagram:hover {
  background: var(--oxblood);
}

.social-card-whatsapp:hover {
  background: #185b42;
}

.social-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--ivory);
  border: 1px solid rgba(242, 237, 227, 0.22);
  border-radius: 50%;
}

.social-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-card > span:nth-child(2) {
  display: grid;
  gap: 7px;
}

.social-card small {
  color: rgba(242, 237, 227, 0.45);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.social-card strong {
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(23px, 2vw, 34px);
  font-weight: 500;
  line-height: 1;
}

.social-card > b {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 31px;
  font-weight: 400;
}

.footer-bottom {
  min-height: 74px;
}

.whatsapp-float {
  position: fixed;
  z-index: 240;
  right: 24px;
  bottom: 24px;
  min-width: 230px;
  min-height: 66px;
  padding: 10px 19px 10px 11px;
  display: grid;
  grid-template-columns: 45px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  color: #fff;
  background: #176b4b;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(8, 32, 23, 0.3);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.whatsapp-float:hover {
  background: #12805a;
  box-shadow: 0 22px 52px rgba(8, 32, 23, 0.4);
  transform: translateY(-4px);
}

.whatsapp-float > span {
  width: 45px;
  height: 45px;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.whatsapp-float strong {
  align-self: end;
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.whatsapp-float small {
  align-self: start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  line-height: 1.35;
}

.product-footer {
  margin-top: clamp(80px, 9vw, 150px);
  color: var(--ivory);
  background: #0b100e;
}

.product-footer-inner {
  min-height: 220px;
  display: grid;
  grid-template-columns: 1fr 0.7fr auto;
  align-items: center;
  gap: 60px;
}

.product-footer-inner > p {
  max-width: 390px;
  margin: 0;
  color: rgba(242, 237, 227, 0.55);
  font-size: 11px;
}

.product-footer-inner > div {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.product-footer-inner > div a {
  color: rgba(242, 237, 227, 0.72);
  font-size: 10px;
  letter-spacing: 0.08em;
}

@keyframes brand-lockup-in {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes brand-progress {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

@keyframes brand-intro-exit {
  0%, 72% { opacity: 1; visibility: visible; }
  99% { opacity: 0; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

@keyframes page-enter-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes page-enter-down {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-image-reveal {
  from { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateY(16px); }
  to { opacity: 1; clip-path: inset(0); transform: translateY(0); }
}

@media (max-width: 1000px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .footer-nav {
    max-width: 720px;
  }

  .product-footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .product-footer-inner > div {
    grid-column: 1 / -1;
    padding-bottom: 35px;
    grid-auto-flow: column;
    justify-content: start;
  }
}

@media (max-width: 700px) {
  .brand-crest {
    width: 50px;
    height: 58px;
  }

  .wordmark {
    gap: 12px;
  }

  .wordmark-copy strong {
    font-size: 20px;
  }

  .brand-intro-inner {
    width: calc(100vw - 52px);
    gap: 18px;
  }

  .brand-crest-intro {
    width: 70px;
    height: 80px;
  }

  .brand-intro-inner strong {
    font-size: clamp(34px, 10vw, 48px);
  }

  .brand-intro-inner > div > span {
    font-size: 5.5px;
    letter-spacing: 0.25em;
  }

  .footer-eyebrow {
    min-height: 58px;
    font-size: 5.5px;
  }

  .footer-eyebrow span:last-child {
    display: none;
  }

  .footer-main {
    padding-top: 65px;
  }

  .footer-brand h2 {
    margin-top: 48px;
    font-size: clamp(49px, 14.5vw, 68px);
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .social-stage {
    grid-template-columns: 1fr;
  }

  .social-card {
    min-height: 118px;
    padding: 22px;
    gap: 17px;
  }

  .social-icon {
    width: 43px;
    height: 43px;
  }

  .social-card strong {
    font-size: 23px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-width: 58px;
    width: 58px;
    min-height: 58px;
    height: 58px;
    padding: 6px;
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 50%;
  }

  .whatsapp-float > span {
    width: 46px;
    height: 46px;
    grid-row: auto;
  }

  .whatsapp-float > strong,
  .whatsapp-float > small {
    display: none;
  }

  .product-footer-inner {
    padding: 55px 0;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-footer-inner > div {
    grid-column: auto;
    padding: 0;
    grid-auto-flow: row;
    justify-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-intro {
    animation-duration: 0.01ms;
  }

  .brand-intro *,
  .home-page .site-header,
  .home-page .hero-copy > *,
  .home-page .hero-tile,
  .home-page .hero-caption {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
  }

  .hero-tile img {
    transform: none !important;
  }
}

/* V6 final cascade */
.header-inner { min-height: 112px; }
.wordmark { gap: 20px; }
.wordmark-copy strong { font-size: clamp(27px, 1.7vw, 34px); letter-spacing: -0.035em; }
.wordmark-copy small { font-size: 7px; letter-spacing: 0.31em; }

.brand-intro {
  background:
    radial-gradient(circle at 50% 45%, rgba(167, 135, 79, 0.2), transparent 28%),
    linear-gradient(135deg, #061528 0%, #071d1a 52%, #061528 100%);
  animation: brand-intro-lift 2.85s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.brand-intro::before {
  inset: 28px;
  border: 1px solid rgba(198, 170, 114, 0.32);
  border-radius: 2px;
}

.brand-intro::after {
  top: 50%;
  bottom: auto;
  left: 50%;
  width: min(62vw, 720px);
  height: auto;
  aspect-ratio: 1;
  border: 1px solid rgba(198, 170, 114, 0.12);
  border-radius: 50%;
  background: transparent;
  box-shadow:
    0 0 0 70px rgba(198, 170, 114, 0.025),
    0 0 0 140px rgba(198, 170, 114, 0.018);
  transform: translate(-50%, -50%) rotate(0);
  animation: intro-aureole 12s linear infinite;
}

.brand-intro-inner {
  z-index: 2;
  flex-direction: column;
  gap: 25px;
  text-align: center;
  animation: brand-seal-arrive 1.35s 0.12s cubic-bezier(0.18, 0.82, 0.2, 1) both;
}

.brand-intro-inner strong { font-size: clamp(44px, 4.2vw, 72px); }
.brand-intro-inner > div > span { font-size: 7px; letter-spacing: 0.42em; }
.intro-progress { bottom: 6vh; }
.intro-progress i { animation-duration: 1.8s; }

.home-page .site-header { animation-delay: 2.08s; }
.home-page .hero-copy > :nth-child(1) { animation-delay: 2.12s; }
.home-page .hero-copy > :nth-child(2) { animation-delay: 2.2s; }
.home-page .hero-copy > :nth-child(3) { animation-delay: 2.28s; }
.home-page .hero-copy > :nth-child(4) { animation-delay: 2.36s; }
.home-page .hero-copy > :nth-child(5) { animation-delay: 2.44s; }
.home-page .hero-copy > :nth-child(6) { animation-delay: 2.52s; }
.home-page .hero-tile-1 { animation-delay: 2.1s; }
.home-page .hero-tile-2 { animation-delay: 2.26s; }
.home-page .hero-tile-3 { animation-delay: 2.4s; }
.home-page .hero-caption { animation-delay: 2.48s; }

.social-stage { gap: 16px; }
.social-card {
  min-height: 250px;
  padding: clamp(34px, 3.2vw, 55px);
  grid-template-columns: auto minmax(0, 1fr) auto;
  isolation: isolate;
  border-color: rgba(242, 237, 227, 0.26);
  box-shadow: inset 0 0 0 1px rgba(10, 15, 13, 0.2);
}

.social-card-instagram {
  background:
    radial-gradient(circle at 8% 110%, rgba(168, 74, 65, 0.65), transparent 45%),
    linear-gradient(128deg, #4d1f2b 0%, #221821 62%, #111513 100%);
}

.social-card-whatsapp {
  background:
    radial-gradient(circle at 7% 105%, rgba(38, 139, 99, 0.48), transparent 48%),
    linear-gradient(128deg, #0d4b38 0%, #102b23 62%, #101513 100%);
}

.social-card::before { z-index: 2; }
.social-card .social-icon,
.social-card > span:nth-child(2),
.social-card > b { position: relative; z-index: 3; }
.social-card > span:nth-child(2) { max-width: 56%; }
.social-icon {
  width: 68px;
  height: 68px;
  border-color: rgba(242, 237, 227, 0.42);
  background: rgba(9, 14, 12, 0.18);
  backdrop-filter: blur(8px);
}
.social-icon svg { width: 27px; height: 27px; }
.social-card small { color: rgba(255, 248, 237, 0.66); font-size: 7px; }
.social-card strong { font-size: clamp(30px, 2.5vw, 45px); text-wrap: balance; }
.social-card > b { align-self: start; font-size: 40px; }

.social-product-shot {
  position: absolute !important;
  z-index: -1 !important;
  top: 0;
  right: 0;
  bottom: 0;
  width: 43%;
  max-width: none !important;
  display: block !important;
  overflow: hidden;
  opacity: 0.72;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 50%);
  mask-image: linear-gradient(90deg, transparent 0, #000 50%);
}
.social-product-shot img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1100px) {
  .header-inner { min-height: 96px; }
}

@media (max-width: 700px) {
  .header-inner { min-height: 80px; }
  .brand-intro::before { inset: 14px; }
  .brand-intro-inner strong { font-size: 43px; }
  .social-card {
    min-height: 190px;
    padding: 27px 22px;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  .social-icon { width: 50px; height: 50px; }
  .social-card > span:nth-child(2) { max-width: 72%; }
  .social-card strong { font-size: 25px; }
  .social-product-shot { width: 48%; opacity: 0.47; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-intro { animation-duration: 0.01ms; }
  .intro-seal-wrap::before,
  .brand-intro::after { animation: none; }
}

/* V7 — heritage identity and editorial commerce */
.section-brand-seal,
.hero-caption-seal,
.cabinet-stamp img,
.visit-mark img,
.standard-title-lockup img,
.service-visual figcaption img,
.product-archive-bar img,
.product-dossier-brand img {
  display: block;
  object-fit: contain;
  border-radius: 50%;
}

.hero-signature {
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 16px;
}

.section-brand-seal {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 11px 20px rgba(0, 0, 0, 0.22));
}

.hero-caption {
  gap: 14px;
}

.hero-caption-seal {
  width: 57px;
  height: 57px;
  flex: 0 0 auto;
  filter: drop-shadow(0 9px 16px rgba(0, 0, 0, 0.28));
}

.cabinet-stamp {
  gap: 13px;
}

.cabinet-stamp img {
  width: 76px;
  height: 76px;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.24));
}

.cabinet-stamp small {
  letter-spacing: 0.22em;
  line-height: 1.7;
}

.collection-standard {
  position: relative;
  scroll-margin-top: 126px;
  margin-top: clamp(105px, 10vw, 180px);
  padding: clamp(62px, 6vw, 105px);
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 82% 4%, rgba(183, 150, 89, 0.18), transparent 25%),
    radial-gradient(circle at 6% 98%, rgba(106, 31, 36, 0.24), transparent 29%),
    linear-gradient(132deg, #081511 0%, #111b17 56%, #08120f 100%);
  border: 1px solid rgba(177, 145, 84, 0.44);
  box-shadow: 0 35px 90px rgba(24, 26, 22, 0.14);
}

.collection-standard::before {
  position: absolute;
  top: -250px;
  right: -155px;
  width: 540px;
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(218, 190, 132, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(218, 190, 132, 0.025),
    0 0 0 90px rgba(218, 190, 132, 0.018);
}

.collection-standard::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold-light));
  opacity: 0.58;
}

.collection-standard > header {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(54px, 6vw, 92px);
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.58fr);
  align-items: end;
  gap: clamp(60px, 9vw, 150px);
  border: 0;
}

.standard-title-lockup {
  display: flex;
  align-items: center;
  gap: clamp(25px, 3vw, 48px);
}

.standard-title-lockup img {
  width: clamp(92px, 8vw, 132px);
  height: clamp(92px, 8vw, 132px);
  flex: 0 0 auto;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.32));
}

.collection-standard > header .micro-label {
  margin-bottom: 15px;
  color: var(--gold-light);
}

.collection-standard > header h2 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(55px, 5.3vw, 92px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.8;
}

.collection-standard > header h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.standard-lead {
  max-width: 520px;
  margin: 0 0 5px;
  color: rgba(242, 237, 227, 0.6);
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.85;
}

.standard-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(242, 237, 227, 0.2);
  border-bottom: 1px solid rgba(242, 237, 227, 0.2);
}

.standard-grid article {
  position: relative;
  min-height: 350px;
  padding: clamp(30px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.015);
  border: 0;
  border-right: 1px solid rgba(242, 237, 227, 0.16);
  transition: background 330ms ease, transform 330ms ease;
}

.standard-grid article:last-child {
  border-right: 0;
}

.standard-grid article:hover {
  z-index: 2;
  background: rgba(181, 145, 78, 0.12);
  transform: translateY(-8px);
}

.standard-card-head {
  margin-bottom: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.standard-card-head span {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
}

.standard-card-head small {
  color: rgba(242, 237, 227, 0.38);
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 0.23em;
}

.standard-grid article h3 {
  margin: 70px 0 15px;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(26px, 2vw, 35px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.standard-grid article p {
  margin: 0;
  color: rgba(242, 237, 227, 0.54);
  font-size: 10px;
  line-height: 1.8;
}

.standard-grid article b {
  margin-top: 32px;
  padding-top: 17px;
  color: var(--gold-light);
  border-top: 1px solid rgba(242, 237, 227, 0.12);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service {
  scroll-margin-top: 126px;
  margin-top: clamp(105px, 10vw, 180px);
  padding: 0;
}

.service-frame {
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(390px, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
  background: #efe9df;
  border: 1px solid rgba(26, 35, 30, 0.17);
  box-shadow: 0 36px 100px rgba(28, 25, 20, 0.12);
}

.service-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #18211d;
}

.service-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 45%, rgba(7, 15, 12, 0.94) 100%),
    linear-gradient(90deg, rgba(7, 15, 12, 0.12), transparent 40%);
}

.service-visual > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.service-frame:hover .service-visual > img {
  transform: scale(1.035);
}

.service-visual figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 3vw, 48px);
  bottom: clamp(28px, 4vw, 58px);
  left: clamp(24px, 3vw, 48px);
  display: flex;
  align-items: center;
  gap: 23px;
  color: var(--ivory);
}

.service-visual figcaption img {
  width: 84px;
  height: 84px;
  flex: 0 0 auto;
}

.service-visual figcaption span {
  display: grid;
  gap: 8px;
}

.service-visual figcaption small {
  color: var(--gold-light);
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.service-visual figcaption strong {
  font-family: var(--display);
  font-size: clamp(28px, 2.4vw, 43px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.service-content {
  padding: clamp(54px, 6vw, 105px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
}

.service-heading {
  margin: 0 0 clamp(38px, 5vw, 70px);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr minmax(220px, 0.6fr);
  column-gap: 42px;
  align-items: end;
  border: 0;
}

.service-heading .micro-label {
  grid-column: 1 / -1;
  margin-bottom: 14px;
}

.service-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(61px, 5.8vw, 96px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.78;
}

.service-heading h2 em {
  color: var(--oxblood);
  font-weight: 400;
}

.service-heading > p:last-child {
  margin: 0 0 4px;
  color: rgba(26, 35, 30, 0.62);
  font-size: 11px;
  line-height: 1.8;
}

.service-grid {
  margin: 0;
  padding: 0;
  display: block;
  border-top: 1px solid rgba(26, 35, 30, 0.23);
}

.service-grid li {
  min-height: 143px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: start;
  gap: 26px;
  border: 0;
  border-bottom: 1px solid rgba(26, 35, 30, 0.18);
  transition: padding 300ms ease, background 300ms ease;
}

.service-grid li:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: rgba(106, 31, 36, 0.055);
}

.service-grid li > span {
  color: var(--oxblood);
  font-family: var(--display);
  font-size: 47px;
  line-height: 0.85;
}

.service-grid li h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(27px, 2.1vw, 36px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.service-grid li p {
  max-width: 540px;
  margin: 0;
  color: rgba(26, 35, 30, 0.6);
  font-size: 10px;
  line-height: 1.75;
}

.visit {
  scroll-margin-top: 126px;
  margin-top: clamp(105px, 10vw, 180px);
  padding: 0;
}

.visit-panel {
  position: relative;
  min-height: 610px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(440px, 1.08fr) minmax(250px, 0.57fr);
  gap: 0;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 85% 12%, rgba(180, 147, 83, 0.16), transparent 24%),
    #0b1512;
  border: 1px solid rgba(176, 145, 84, 0.42);
  box-shadow: 0 38px 95px rgba(19, 29, 24, 0.18);
}

.visit-panel::before,
.visit-panel::after {
  display: none;
}

.visit-panel > div {
  position: relative;
  z-index: 1;
}

.visit-photo {
  min-width: 0;
  overflow: hidden;
}

.visit-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 62%, rgba(5, 12, 10, 0.82));
  pointer-events: none;
}

.visit-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.visit-panel:hover .visit-photo img {
  transform: scale(1.035);
}

.visit-photo > span {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  color: rgba(242, 237, 227, 0.75);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.visit-content {
  padding: clamp(52px, 5vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-panel .micro-label {
  color: var(--gold-light);
}

.visit-panel h2 {
  margin: 18px 0 24px;
  color: var(--ivory);
  font-size: clamp(53px, 4.7vw, 81px);
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.visit-intro {
  max-width: 560px;
  margin: 0 0 30px;
  color: rgba(242, 237, 227, 0.57);
  font-size: 11px;
  line-height: 1.8;
}

.visit-panel address {
  max-width: 520px;
  padding: 22px 0;
  color: rgba(242, 237, 227, 0.82);
  border-top: 1px solid rgba(242, 237, 227, 0.15);
  border-bottom: 1px solid rgba(242, 237, 227, 0.15);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.visit-actions {
  margin-top: 30px;
}

.visit-mark {
  min-width: 0;
  padding: 45px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.035);
  border-left: 1px solid rgba(242, 237, 227, 0.14);
}

.visit-mark img {
  width: clamp(130px, 11vw, 190px);
  height: clamp(130px, 11vw, 190px);
  margin-bottom: 26px;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.42));
}

.visit-mark small {
  color: var(--gold-light);
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.visit-mark strong {
  margin-top: 18px;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.social-card {
  min-height: 282px;
}

.social-card > span:nth-child(2) {
  gap: 9px;
}

.social-card > span:nth-child(2) em {
  margin-top: 7px;
  color: rgba(255, 248, 237, 0.68);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.04em;
}

.social-card-instagram {
  background:
    linear-gradient(90deg, rgba(73, 19, 35, 0.94), rgba(38, 18, 30, 0.8) 58%, rgba(13, 17, 15, 0.25)),
    radial-gradient(circle at 8% 110%, rgba(195, 83, 75, 0.72), transparent 45%),
    #27151d;
}

.social-card-whatsapp {
  background:
    linear-gradient(90deg, rgba(7, 74, 50, 0.94), rgba(12, 49, 37, 0.79) 58%, rgba(11, 18, 15, 0.25)),
    radial-gradient(circle at 7% 105%, rgba(45, 168, 116, 0.55), transparent 48%),
    #0d3327;
}

.social-card:hover .social-product-shot img {
  transform: scale(1.07);
}

.social-product-shot img {
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

/* Product dossier */
.product-page {
  background:
    linear-gradient(rgba(26, 35, 30, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 35, 30, 0.022) 1px, transparent 1px),
    #f3eee6;
  background-size: 52px 52px;
}

.product-page .product-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(246, 242, 235, 0.92);
  border-bottom: 1px solid rgba(26, 35, 30, 0.13);
  backdrop-filter: blur(18px);
}

.product-page .product-header .header-inner {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.product-page .wordmark-copy strong {
  white-space: nowrap;
}

.product-page .back-to-shop {
  justify-self: center;
}

.product-page .cart-toggle {
  justify-self: end;
}

.product-archive-bar {
  min-height: 106px;
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr)) 78px;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(26, 35, 30, 0.18);
}

.product-archive-bar > span {
  display: grid;
  gap: 8px;
}

.product-archive-bar small {
  color: var(--oxblood);
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.product-archive-bar strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
}

.product-archive-bar img {
  width: 68px;
  height: 68px;
  justify-self: end;
}

.product-page .product-detail {
  padding-top: clamp(38px, 4vw, 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(470px, 0.72fr);
  gap: clamp(34px, 4vw, 74px);
  align-items: start;
}

.product-page .product-gallery {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.product-image-stage {
  position: relative;
  padding: clamp(16px, 1.6vw, 28px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 25%, rgba(183, 151, 91, 0.13), transparent 35%),
    #111a16;
  border: 1px solid rgba(177, 145, 84, 0.5);
  box-shadow: 0 32px 85px rgba(20, 27, 23, 0.18);
}

.product-image-stage::before,
.product-image-stage::after {
  position: absolute;
  z-index: 2;
  width: 56px;
  height: 56px;
  content: "";
  pointer-events: none;
}

.product-image-stage::before {
  top: 9px;
  left: 9px;
  border-top: 1px solid var(--gold-light);
  border-left: 1px solid var(--gold-light);
}

.product-image-stage::after {
  right: 9px;
  bottom: 9px;
  border-right: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
}

.product-page .product-main-image {
  width: 100%;
  height: clamp(680px, 52vw, 900px);
  min-height: 0;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: center;
}

.image-index,
.image-view-note {
  position: absolute;
  z-index: 3;
  color: var(--ivory);
  background: rgba(8, 17, 13, 0.82);
  backdrop-filter: blur(8px);
}

.image-index {
  top: 44px;
  left: 44px;
  padding: 10px 14px;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.image-view-note {
  right: 44px;
  bottom: 44px;
  padding: 14px 17px;
  color: rgba(242, 237, 227, 0.74);
  border-left: 2px solid var(--gold-light);
  font-size: 8px;
  line-height: 1.55;
}

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

.product-gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(26, 35, 30, 0.14);
}

.product-page .product-detail-copy {
  min-width: 0;
  padding: clamp(34px, 3.6vw, 64px);
  background: rgba(248, 244, 237, 0.92);
  border: 1px solid rgba(26, 35, 30, 0.16);
  box-shadow: 0 30px 80px rgba(36, 31, 24, 0.1);
}

.product-page .product-detail-sticky {
  top: 142px;
}

.product-dossier-brand {
  margin-bottom: clamp(37px, 4vw, 62px);
  padding-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(26, 35, 30, 0.16);
}

.product-dossier-brand img {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
}

.product-dossier-brand span {
  display: grid;
  gap: 5px;
}

.product-dossier-brand small {
  color: var(--oxblood);
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 0.23em;
}

.product-dossier-brand strong {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 500;
}

.product-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.product-title-row .micro-label {
  margin: 0;
}

.product-title-row > span {
  padding: 7px 10px;
  color: #1c654c;
  background: rgba(28, 101, 76, 0.08);
  border: 1px solid rgba(28, 101, 76, 0.24);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.product-page .product-detail-copy h1 {
  max-width: 670px;
  margin: 20px 0 26px;
  font-size: clamp(59px, 5vw, 91px);
  letter-spacing: -0.06em;
  line-height: 0.82;
  text-wrap: balance;
}

.product-page .product-lead {
  max-width: 600px;
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.product-page .detail-price {
  margin: 0 0 18px;
  padding: 25px 28px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  color: var(--ivory);
  background:
    radial-gradient(circle at 92% 20%, rgba(178, 144, 79, 0.18), transparent 27%),
    #101914;
  border: 1px solid rgba(177, 145, 84, 0.4);
}

.product-page .detail-price strong {
  color: var(--ivory);
  font-size: clamp(35px, 3vw, 52px);
  font-weight: 400;
}

.product-page .detail-price del {
  color: rgba(242, 237, 227, 0.45);
}

.product-page .detail-cart-button {
  min-height: 76px;
  padding-right: 28px;
  padding-left: 28px;
  color: var(--ivory);
  background: var(--oxblood);
  border-color: var(--oxblood);
}

.product-page .detail-cart-button:hover {
  color: var(--ink);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.detail-inquiry-link {
  margin-top: 13px;
  padding: 17px 0;
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  border-bottom: 1px solid rgba(26, 35, 30, 0.2);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-trust-row {
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(26, 35, 30, 0.16);
  border-bottom: 1px solid rgba(26, 35, 30, 0.16);
}

.product-trust-row span {
  min-height: 89px;
  padding: 17px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  color: var(--muted);
  border-right: 1px solid rgba(26, 35, 30, 0.13);
  font-size: 7px;
  line-height: 1.45;
}

.product-trust-row span:last-child {
  border-right: 0;
}

.product-trust-row b {
  color: var(--oxblood);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 500;
}

.product-dossier {
  margin-top: 42px;
  border-top: 1px solid rgba(26, 35, 30, 0.2);
}

.product-page .product-facts {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-page .product-facts > div {
  min-height: 77px;
  padding: 18px 0;
  display: grid;
  gap: 8px;
  border-bottom: 1px solid rgba(26, 35, 30, 0.13);
}

.product-page .product-facts > div:nth-child(odd) {
  padding-right: 18px;
  border-right: 1px solid rgba(26, 35, 30, 0.13);
}

.product-page .product-facts > div:nth-child(even) {
  padding-left: 18px;
}

.product-page .product-facts dt {
  color: var(--oxblood);
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.product-page .product-facts dd {
  margin: 0;
  font-family: var(--display);
  font-size: 18px;
}

.product-page .product-description {
  margin-top: 42px;
  padding: 34px;
  background: #e9e1d4;
  border-left: 3px solid var(--oxblood);
}

.product-page .product-description .micro-label {
  margin-bottom: 13px;
}

.product-page .product-description h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 500;
}

.product-page .product-description p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.product-page .condition-note {
  margin: 24px 0 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  border-left: 1px solid var(--gold);
  font-size: 9px;
  line-height: 1.75;
}

@supports (animation-timeline: view()) {
  .standard-grid article,
  .service-grid li,
  .visit-panel {
    animation: v7-rise linear both;
    animation-timeline: view();
    animation-range: entry 4% cover 27%;
  }
}

@keyframes v7-rise {
  from {
    opacity: 0;
    transform: translateY(38px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .collection-standard > header {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .standard-lead {
    margin-left: clamp(117px, 11vw, 166px);
  }

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

  .standard-grid article:nth-child(2) {
    border-right: 0;
  }

  .standard-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(242, 237, 227, 0.16);
  }

  .service-frame {
    grid-template-columns: minmax(330px, 0.75fr) minmax(0, 1.25fr);
  }

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

  .service-heading > p:last-child {
    margin-top: 27px;
  }

  .visit-panel {
    grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1.15fr);
  }

  .visit-mark {
    grid-column: 1 / -1;
    min-height: 190px;
    padding: 26px 45px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 26px;
    text-align: left;
    border-top: 1px solid rgba(242, 237, 227, 0.14);
    border-left: 0;
  }

  .visit-mark img {
    width: 126px;
    height: 126px;
    margin: 0;
  }

  .visit-mark strong {
    margin: 0 0 0 auto;
    text-align: right;
  }

  .product-page .product-detail {
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.82fr);
  }

  .product-page .product-detail-copy h1 {
    font-size: clamp(54px, 5.8vw, 74px);
  }
}

@media (max-width: 900px) {
  .service-frame,
  .visit-panel,
  .product-page .product-detail {
    grid-template-columns: 1fr;
  }

  .service-visual {
    min-height: 560px;
  }

  .visit-photo {
    min-height: 490px;
  }

  .product-page .product-detail-sticky {
    position: static;
  }

  .product-page .product-main-image {
    height: min(108vw, 780px);
  }
}

@media (max-width: 700px) {
  .hero-signature {
    grid-template-columns: 58px 1fr;
  }

  .section-brand-seal {
    width: 58px;
    height: 58px;
  }

  .collection-standard {
    width: calc(100% - 28px);
    margin-top: 88px;
    padding: 46px 22px 28px;
  }

  .standard-title-lockup {
    align-items: flex-start;
    gap: 17px;
  }

  .standard-title-lockup img {
    width: 70px;
    height: 70px;
  }

  .collection-standard > header h2 {
    font-size: clamp(47px, 13vw, 63px);
  }

  .standard-lead {
    margin-left: 0;
  }

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

  .standard-grid article {
    min-height: 265px;
    padding: 29px 5px;
    border-right: 0;
    border-bottom: 1px solid rgba(242, 237, 227, 0.16);
  }

  .standard-grid article h3 {
    margin-top: 48px;
  }

  .service,
  .visit {
    width: calc(100% - 28px);
    margin-top: 88px;
  }

  .service-visual {
    min-height: 390px;
  }

  .service-visual figcaption {
    gap: 14px;
  }

  .service-visual figcaption img {
    width: 62px;
    height: 62px;
  }

  .service-content {
    padding: 45px 23px 32px;
  }

  .service-heading h2 {
    font-size: clamp(60px, 18vw, 77px);
  }

  .service-grid li {
    min-height: 0;
    padding: 25px 0;
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .service-grid li > span {
    font-size: 34px;
  }

  .visit-photo {
    min-height: 345px;
  }

  .visit-content {
    padding: 45px 23px;
  }

  .visit-panel h2 {
    font-size: clamp(50px, 14vw, 66px);
  }

  .visit-actions {
    align-items: stretch;
  }

  .visit-mark {
    min-height: 220px;
    padding: 28px 22px;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 8px 18px;
  }

  .visit-mark img {
    width: 90px;
    height: 90px;
    grid-row: 1 / 3;
  }

  .visit-mark small,
  .visit-mark strong {
    margin: 0;
    text-align: left;
  }

  .social-card {
    min-height: 218px;
  }

  .social-card > span:nth-child(2) em {
    max-width: 150px;
    font-size: 8px;
  }

  .product-page .product-header .header-inner {
    min-height: 86px;
    grid-template-columns: 1fr auto;
  }

  .product-page .back-to-shop {
    display: none;
  }

  .product-archive-bar {
    min-height: 96px;
    grid-template-columns: 1fr 1fr 58px;
    gap: 14px;
  }

  .product-archive-bar > span:nth-child(3) {
    display: none;
  }

  .product-archive-bar strong {
    font-size: 14px;
  }

  .product-archive-bar img {
    width: 54px;
    height: 54px;
  }

  .product-page .product-detail {
    width: calc(100% - 28px);
    padding-top: 20px;
    gap: 20px;
  }

  .product-image-stage {
    padding: 10px;
  }

  .product-page .product-main-image {
    height: 470px;
  }

  .image-index {
    top: 24px;
    left: 24px;
  }

  .image-view-note {
    right: 24px;
    bottom: 24px;
  }

  .product-page .product-detail-copy {
    padding: 30px 22px;
  }

  .product-dossier-brand {
    margin-bottom: 36px;
  }

  .product-dossier-brand img {
    width: 61px;
    height: 61px;
  }

  .product-page .product-detail-copy h1 {
    margin-top: 17px;
    font-size: clamp(50px, 15vw, 66px);
  }

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

  .product-trust-row span {
    min-height: 60px;
    padding: 13px 3px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(26, 35, 30, 0.12);
  }

  .product-page .product-facts {
    grid-template-columns: 1fr;
  }

  .product-page .product-facts > div:nth-child(odd),
  .product-page .product-facts > div:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .product-page .product-description {
    padding: 26px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .standard-grid article,
  .service-grid li,
  .visit-panel {
    animation: none !important;
  }
}
