:root {
  --neo: #efe8e4;
  --neo-dark: #d8ccc6;
  --neo-light: #ffffff;
  --clay: #efe8e4;
  --clay-deep: #e4d9d3;
  --surface: #efe8e4;
  --paper: #efe8e4;
  --copper: #a65268;
  --copper-deep: #8d4256;
  --copper-soft: #e4b4b8;
  --copper-glow: #f0d4d6;
  --ink: #2a2224;
  --ink-soft: #3a2f2e;
  --muted: #7a6b68;
  --line: #e4d9d3;
  --burgundy: #a65268;
  --burgundy-deep: #8d4256;
  --white: #ffffff;
  --rose: #a65268;
  --rose-pale: #efe8e4;
  --wa: #25d366;
  --danger: #b42318;
  --ok: #067647;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --font-script: "Great Vibes", cursive;
  --container: 1180px;
  --header: 78px;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --bento-gap: 24px;
  --gap: 24px;
  --section: clamp(56px, 7vw, 80px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur: .22s;
  --shadow-out: 6px 6px 14px rgba(184, 168, 160, .42), -6px -6px 14px rgba(255, 255, 255, .88);
  --shadow-out-sm: 4px 4px 8px rgba(184, 168, 160, .35), -4px -4px 8px rgba(255, 255, 255, .8);
  --shadow-hover: 6px 6px 16px rgba(184, 168, 160, .48), -6px -6px 16px rgba(255, 255, 255, .92);
  --shadow-in: inset 4px 4px 8px rgba(184, 168, 160, .35), inset -4px -4px 8px rgba(255, 255, 255, .75);
  --shadow-in-sm: inset 3px 3px 6px rgba(184, 168, 160, .3), inset -3px -3px 6px rgba(255, 255, 255, .7);
  --shadow-rose: 4px 6px 12px rgba(141, 66, 86, .28);
  --shadow-rose-in: inset 3px 3px 6px rgba(90, 35, 50, .22);
  --gutter: clamp(20px, 4vw, 32px);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 38px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--neo);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(193, 123, 132, .18);
}
body::before { display: none; }
body.search-open,
body.menu-open { overflow: hidden; }
main, .newsletter, .footer { position: relative; z-index: 1; }
main { padding-bottom: 16px; }
.nav-backdrop {
  position: fixed; inset: 0; z-index: 45;
  border: 0; padding: 0; margin: 0;
  background: rgba(44, 34, 30, .38);
  cursor: pointer;
}
.nav-backdrop[hidden] { display: none !important; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -.01em;
}
p { margin: 0; }

.container {
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: max(var(--gutter), env(safe-area-inset-left)) max(var(--gutter), env(safe-area-inset-right));
  overflow: visible;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0);
}
.skip-link {
  position: absolute; left: 12px; top: -48px; background: var(--ink); color: #fff;
  padding: 8px 14px; z-index: 90; border-radius: var(--radius-sm);
}
.skip-link:focus { top: 10px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px; border-radius: var(--radius-pill);
  border: 0; font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:active { box-shadow: var(--shadow-in-sm); }
.btn--dark {
  background: var(--ink); color: #fff;
  box-shadow: 6px 6px 14px rgba(42, 34, 36, .28), -3px -3px 8px rgba(255, 255, 255, .2);
}
.btn--dark:hover { background: var(--burgundy); }
.btn--copper {
  background: var(--rose); color: #fff;
  box-shadow: var(--shadow-rose);
}
.btn--copper:hover { background: var(--copper-deep); }
.btn--copper:active { box-shadow: var(--shadow-rose-in); }
.btn--ghost {
  background: var(--neo); color: var(--rose);
  box-shadow: var(--shadow-out-sm);
}
.btn--ghost:hover { background: var(--neo); color: var(--copper-deep); box-shadow: var(--shadow-hover); }
.btn--cart {
  background: var(--neo); color: var(--rose); width: 100%;
  min-height: 40px; margin-top: 10px; font-size: 11px; letter-spacing: .12em;
  box-shadow: var(--shadow-out-sm);
}
.btn--cart:hover { background: var(--neo); color: var(--copper-deep); box-shadow: var(--shadow-hover); }
.btn--cart:active { box-shadow: var(--shadow-in-sm); }
.btn--ghost-light {
  background: transparent; color: #fff;
  box-shadow: none; border: 1px solid rgba(255, 255, 255, .45);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, .12); }
.btn--burgundy {
  background: var(--burgundy); color: #fff; width: 100%; min-height: 52px;
  font-size: 14px; box-shadow: var(--shadow-rose);
}
.btn--burgundy:hover { background: var(--burgundy-deep); }
.btn--burgundy:active { box-shadow: var(--shadow-rose-in); }
.btn--sm { min-height: 42px; padding: 0 16px; font-size: 12px; }
.btn:disabled { opacity: .55; cursor: not-allowed; }

.icon-btn {
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  border: 0; background: transparent; color: var(--ink); border-radius: 50%;
  position: relative; flex-shrink: 0;
  box-shadow: none;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.icon-btn:hover, .icon-btn:focus-visible {
  color: var(--burgundy); outline: none;
  background: rgba(255, 255, 255, .35);
  box-shadow: none;
}
.icon-btn--count .count {
  position: absolute; top: 2px; right: 1px; min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 99px; background: var(--burgundy); color: #fff; font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Sticky chrome */
.site-chrome { position: sticky; top: 0; z-index: 50; overflow: visible; }
.topbar {
  background: var(--rose); color: #fff;
  font-size: 11px; font-weight: 600; line-height: 1.3;
  min-height: 38px;
  display: flex; align-items: center; justify-content: center;
  padding: 8px 44px 8px 16px;
  letter-spacing: .08em; text-transform: uppercase;
  position: relative;
}
.topbar[hidden] { display: none !important; }
.topbar__text { text-align: center; }
.topbar__close {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border: 0; background: transparent; color: #fff;
  display: grid; place-items: center;
}
.marquee {
  width: 100%; height: 44px; overflow: hidden;
  display: flex; align-items: center;
}
.marquee__track {
  display: flex; width: max-content; align-items: center; height: 44px;
  animation: marquee-scroll 34s linear infinite;
}
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track {
  animation-play-state: paused;
}
.marquee__group {
  display: flex; align-items: center; gap: 28px; padding: 0 28px 0 0;
  white-space: nowrap; height: 44px;
}
.marquee__item, .marquee__item a {
  display: inline-flex; align-items: center; gap: 8px; color: #f8ecee;
  line-height: 1; height: 42px;
}
.marquee__item--gold { color: #ffd7dc; }
.marquee__item svg {
  color: #ffd7dc; flex-shrink: 0; display: block;
  width: 14px; height: 14px; overflow: visible;
}
.marquee__item:hover { color: #fff; }
.marquee__dot {
  width: 4px; height: 4px; border-radius: 50%; background: #e4b4b8; flex-shrink: 0; opacity: .9;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.header {
  position: relative;
  overflow: visible;
  background: var(--neo);
  min-height: var(--header);
  border-bottom: 1px solid rgba(166, 82, 104, .1);
  transition: box-shadow .25s var(--ease);
}
.header::before { display: none; }
.site-chrome.is-scrolled .header {
  box-shadow: 0 8px 20px rgba(122, 51, 64, .08);
}
.header__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px 24px;
  min-height: var(--header);
  min-width: 0;
  overflow: visible;
  padding-block: 0;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; min-width: 0; }
.brand img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: #f7f1ee;
  flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; min-width: 0; line-height: 1; }
.brand__name {
  font-family: var(--font-serif); font-size: 1.45rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
}
.brand__tag {
  font-family: var(--font-sans); font-size: 9px; color: var(--ink);
  margin-top: 4px; font-weight: 600; letter-spacing: .38em; text-transform: uppercase;
}
.footer .brand__name, .footer .brand__tag { color: var(--ink); }
.nav { display: flex; align-items: center; justify-content: center; gap: 0; min-width: 0; overflow: visible; position: relative; z-index: 3; }
.nav > a, .nav__drop > button {
  background: none; border: 0; padding: 0 10px; font-size: 13px; font-weight: 600;
  color: var(--ink); display: inline-flex; align-items: center; gap: 5px;
  border-radius: 0; white-space: nowrap;
  flex-shrink: 0; letter-spacing: .08em; text-transform: uppercase;
  position: relative; line-height: 1; height: 40px;
  transition: color var(--dur) var(--ease);
}
.nav > a::after, .nav__drop > button::after {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: 4px; height: 1.5px;
  background: var(--rose); transform: scaleX(0); transition: transform var(--dur) var(--ease);
}
.nav > a:hover, .nav__drop > button:hover,
.nav > a.is-active, .nav__drop > button.is-active {
  color: var(--burgundy); background: transparent; box-shadow: none;
}
.nav > a:hover::after, .nav > a.is-active::after,
.nav__drop:hover > button::after, .nav__drop > button.is-active::after { transform: scaleX(1); }
.nav__drop { position: relative; flex-shrink: 0; }
.nav__drop > button svg {
  display: block; width: 11px; height: 11px; margin-top: 1px;
  transition: transform var(--dur) var(--ease);
}
.nav.is-open .nav__drop.is-open > button svg { transform: rotate(180deg); }
.nav__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  margin-top: 8px;
  background: var(--neo);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-out);
  padding: 8px;
  display: none;
  z-index: 80;
}
.nav__menu--wide { min-width: 230px; }
.nav__menu a {
  display: block; padding: 10px 12px; font-size: 13.5px; font-weight: 600;
  border-radius: 10px;
}
.nav__menu a:hover, .nav__menu a.is-active {
  background: var(--neo); color: var(--copper-deep); box-shadow: var(--shadow-in-sm);
}
.nav__drop:hover .nav__menu, .nav__drop:focus-within .nav__menu { display: block; }
.header__tools { display: flex; align-items: center; gap: 4px; justify-self: end; }
.menu-toggle { display: none; }
.search-toggle { display: inline-flex; }

.header-search {
  position: relative;
  display: none;
  align-items: center; gap: 8px;
  width: 176px; height: 40px; padding: 0 12px;
  background: var(--neo); border-radius: var(--radius-pill); flex-shrink: 0;
  border: 0;
  box-shadow: var(--shadow-in-sm);
  transition: box-shadow var(--dur) var(--ease);
}
.header-search svg { color: var(--burgundy); flex-shrink: 0; }
.header-search input {
  flex: 1; min-width: 0; border: 0; background: transparent; outline: none;
  font-size: 13px; font-weight: 500;
}
.header-search input::placeholder { color: #9a7d80; }
.header-search:focus-within {
  background: var(--neo);
  box-shadow: var(--shadow-in);
}
.header-search__drop {
  position: absolute; top: calc(100% + 10px); right: 0;
  width: min(380px, 82vw); background: var(--neo);
  box-shadow: var(--shadow-out); z-index: 80; padding: 8px;
  border-radius: var(--radius);
}
.search-hit {
  display: flex; align-items: center; gap: 12px; padding: 8px;
  border-radius: var(--radius-sm); text-align: left;
}
.search-hit:hover, .search-hit:focus-visible { background: var(--clay); }
.search-hit img {
  width: 52px; height: 52px; object-fit: cover; border-radius: 10px;
  background: var(--clay-deep); flex-shrink: 0;
}
.search-hit strong { display: block; font-size: 13px; font-weight: 700; }
.search-hit em {
  display: block; font-style: normal; font-size: 12px; color: var(--muted);
  margin-top: 3px; font-weight: 600;
}
.search-empty { padding: 18px 12px; text-align: center; color: var(--muted); font-size: 13px; }
.search-all {
  display: block; text-align: center; padding: 10px 8px; margin-top: 4px;
  font-size: 13px; font-weight: 700; color: var(--copper-deep);
  border-top: 1px solid var(--line);
}
.search-all:hover { color: var(--ink); }

.search-overlay {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(44, 34, 30, .46);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid; place-items: start center;
  padding: max(8vh, env(safe-area-inset-top)) var(--gutter) 40px;
}
.search-overlay[hidden] { display: none !important; }
.search-overlay__panel {
  width: min(640px, 100%);
  background: var(--neo);
  border-radius: var(--radius-lg);
  padding: 20px 20px 14px;
  box-shadow: var(--shadow-out);
  animation: search-rise .32s var(--ease);
}
@keyframes search-rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.search-overlay__top {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px;
}
.search-overlay__kicker {
  font-size: 13px; color: var(--copper-deep); font-weight: 700;
}
.search-overlay__bar {
  display: flex; align-items: center; gap: 10px;
  background: var(--neo); border-radius: var(--radius-pill);
  padding: 0 16px; min-height: 52px; box-shadow: var(--shadow-in);
}
.search-overlay__bar:focus-within {
  background: var(--neo);
  box-shadow: var(--shadow-in);
}
.search-overlay__bar svg { color: var(--copper-deep); }
.search-overlay__bar input {
  flex: 1; border: 0; background: transparent; outline: none;
  font-size: 16px; font-weight: 600; min-width: 0;
}
.search-overlay__results { margin-top: 12px; max-height: 52vh; overflow: auto; }

/* Hero — full banner image */
.hero {
  position: relative;
  background: #f6efe9;
  padding: 0;
}
.hero__banner {
  position: relative;
  width: 100%;
  line-height: 0;
}
.hero__banner img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  pointer-events: none;
}
.hero__hotspot {
  position: absolute;
  z-index: 3;
  font-size: 0;
  color: transparent;
  border-radius: 8px;
  cursor: pointer;
}
.hero__hotspot--women {
  left: 4.6%;
  top: 69.2%;
  width: 21.2%;
  height: 8.6%;
}
.hero__hotspot--girls {
  left: 26.6%;
  top: 69.2%;
  width: 19.5%;
  height: 8.6%;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.kicker, .eyebrow {
  display: inline-flex; align-items: center; gap: 10px; color: var(--rose);
  font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
}
.center-title .kicker {
  justify-content: center;
}

.soft-ticker {
  overflow: hidden;
  background: #fff;
  border-block: 1px solid var(--line);
  padding: 10px 0;
}
.soft-ticker__track {
  display: flex; align-items: baseline; gap: 1.2rem;
  width: max-content;
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--rose);
  line-height: 1;
  white-space: nowrap;
  animation: marquee-scroll 32s linear infinite;
}
.soft-ticker i { font-style: normal; opacity: .4; font-family: var(--font-sans); font-size: .55em; }
.soft-quote {
  padding: var(--section) 0;
  background: var(--neo);
  text-align: center;
}
.soft-quote p {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4.2vw, 3rem);
  color: var(--rose);
  line-height: 1.25;
  max-width: 18ch;
  margin-inline: auto;
}
.soft-quote span {
  display: block; margin-top: 16px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: var(--muted);
}

/* Sections */
.section { padding: var(--section) 0; }
.section--alt { background: var(--neo); }
.section--tight { padding: clamp(40px, 5vw, 56px) 0; }
.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 32px; flex-wrap: wrap;
}
.section__head h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem); color: var(--ink); font-weight: 600;
}
.section__head .center-title--inline h2 { display: block; font-size: clamp(1.7rem, 3vw, 2.25rem); }
.section__head p { color: var(--muted); font-size: 15px; margin-top: 6px; }
.center-title { text-align: center; margin-bottom: 32px; }
.center-title .kicker { margin-bottom: 10px; }
.center-title h2 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.2rem); color: var(--ink);
  letter-spacing: -.02em; text-transform: none;
}
.center-title h2 a:hover { color: var(--rose); }
.center-title__heart { color: var(--rose); display: flex; justify-content: center; margin-top: 8px; }
.center-title--inline { text-align: left; margin: 0; }
.center-title--inline .center-title__heart { display: inline-flex; margin: 0 0 0 8px; vertical-align: middle; }
.link-all {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--burgundy); padding-bottom: 4px;
}
.link-all:hover { color: var(--ink); }
.section__more { text-align: center; margin-top: 32px; }

.cat-photos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--gap);
}
.cat-photo {
  display: flex; flex-direction: column;
  text-align: center;
  background: var(--neo);
  border-radius: var(--radius);
  padding: 16px 16px 18px;
  min-height: 100%;
  box-shadow: var(--shadow-out-sm);
  transition: box-shadow var(--dur) var(--ease);
}
.cat-photo:hover { transform: none; box-shadow: var(--shadow-hover); }
.cat-photo__media {
  display: block; aspect-ratio: 1; overflow: hidden;
  border-radius: var(--radius-sm); background: var(--neo); position: relative;
  box-shadow: var(--shadow-in-sm);
}
.cat-photo__shop {
  position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%) translateY(8px);
  background: #fff; color: var(--rose);
  font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  opacity: 0; transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.cat-photo:hover .cat-photo__shop { opacity: 1; transform: translateX(-50%) translateY(0); }
.cat-photo__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; max-width: none; object-fit: cover; transition: transform .5s var(--ease);
}
.cat-photo:hover img { transform: scale(1.05); }
.cat-photo__label {
  display: flex; align-items: center; justify-content: center;
  margin-top: 14px; padding: 0 4px;
  min-height: 2.6em;
  background: none; color: var(--ink);
  font-family: var(--font-sans); font-style: normal; font-weight: 700;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  text-align: center; line-height: 1.3;
}

.ig-section {
  background: var(--neo);
  padding: var(--section) 0;
}
.ig-row {
  display: grid;
  grid-template-columns: minmax(220px, .78fr) minmax(0, 2.2fr);
  gap: 20px;
  align-items: stretch;
  background: var(--neo);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-out);
}
.ig-promo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  background: #f3d5d3;
  border-radius: 18px;
  padding: 28px 24px 24px;
  min-height: 100%;
  color: var(--ink);
  box-shadow: 6px 6px 14px rgba(166, 82, 104, .16), -5px -5px 12px rgba(255, 255, 255, .7);
  transition: box-shadow var(--dur) var(--ease);
}
.ig-promo:hover {
  box-shadow: inset 4px 4px 10px rgba(166, 82, 104, .16), inset -4px -4px 10px rgba(255, 255, 255, .45);
}
.ig-promo h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--ink);
}
.ig-promo__handle {
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  color: var(--rose);
  line-height: 1.15;
  margin-bottom: 12px;
}
.ig-promo__copy {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.55;
  max-width: 24ch;
}
.ig-promo__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f3d5d3;
  color: var(--rose);
  box-shadow: 4px 4px 8px rgba(166, 82, 104, .16), -4px -4px 8px rgba(255, 255, 255, .7);
}
.ig-promo svg { color: var(--rose); }
.ig-shots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  min-height: 0;
}
.ig-shot {
  overflow: hidden;
  border-radius: 16px;
  background: var(--neo);
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  height: auto;
  min-height: 0;
  box-shadow: var(--shadow-out-sm);
  transition: box-shadow var(--dur) var(--ease);
}
.ig-shot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; max-width: none;
  object-fit: cover; transition: transform .5s var(--ease);
  border-radius: 0;
}
.ig-shot::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(166, 82, 104, .22);
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.ig-shot:hover { box-shadow: var(--shadow-hover); }
.ig-shot:hover img { transform: scale(1.05); }
.ig-shot:hover::after { opacity: 1; }

.features-band {
  background: var(--neo);
  border: 0;
  padding: var(--section) 0;
}
.features-row {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap); text-align: center;
}
.features-row article {
  background: var(--neo); border-radius: var(--radius); padding: 24px 16px;
  box-shadow: var(--shadow-out-sm); border: 0;
}
.features-row article:first-child { background: var(--neo); color: inherit; grid-column: auto; }
.features-row article:hover { transform: none; box-shadow: var(--shadow-hover); }
.features-row svg {
  color: var(--rose); margin: 0 auto 14px;
  width: 52px; height: 52px; padding: 14px;
  background: var(--neo); border-radius: 50%;
  box-shadow: var(--shadow-in-sm);
}
.features-row article:first-child svg { color: var(--rose); }
.features-row h3 { font-family: var(--font-sans); font-size: 13px; font-weight: 700; margin: 0 0 8px; letter-spacing: .08em; text-transform: uppercase; }
.features-row p { color: var(--muted); font-size: 13px; line-height: 1.5; max-width: 22ch; margin-inline: auto; }
.features-row article:first-child p { color: var(--muted); }

.lookbook {
  padding: clamp(24px, 5vw, 48px) 0;
  background: transparent;
}
.lookbook__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--bento-gap);
  align-items: stretch;
}
.lookbook__visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-out); padding: 0; background: var(--neo); }
.lookbook__visual img {
  width: 100%; height: 100%; min-height: 420px; object-fit: cover; border-radius: 0; display: block;
}
.lookbook__stamp {
  position: absolute; right: 18px; top: 18px;
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--burgundy); color: #f8ecee;
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-serif); font-style: italic; font-size: 15px;
  transform: rotate(8deg);
}
.lookbook__copy {
  background: var(--burgundy-deep); color: #f8ecee;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex; flex-direction: column; justify-content: center;
  box-shadow: var(--shadow-out-sm);
}
.lookbook__copy .eyebrow { margin-bottom: 10px; color: var(--copper-soft); }
.lookbook__copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem); font-weight: 500; margin-bottom: 16px; line-height: 1.12;
  color: #fff;
}
.lookbook__copy h2 em { font-style: italic; color: var(--copper-soft); }
.lookbook__copy > p {
  color: #e7c4b6; max-width: 46ch; margin-bottom: 20px; font-size: 1.05rem;
}
.lookbook__pull {
  font-family: var(--font-serif); font-style: italic; font-size: 1.2rem;
  color: #fff !important; margin-bottom: 28px !important;
}
.statement { padding: 8px 0 28px; }
.statement__tile {
  background: var(--burgundy);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px) clamp(24px, 5vw, 56px);
  text-align: center; color: #f8ecee;
  box-shadow: var(--shadow-out);
}
.statement__tile .eyebrow { color: var(--copper-soft); justify-content: center; margin-bottom: 10px; }
.statement__tile h2 {
  font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 500; color: #fff;
  letter-spacing: -.04em; line-height: 1.05; margin-bottom: 12px;
}
.statement__tile h2 em { font-style: italic; color: var(--copper-soft); }
.statement__tile p { color: #f0d4d6; max-width: 42ch; margin: 0 auto 28px; }
.statement__tile .btn { margin-inline: auto; }

.service-bar {
  background: #fff;
  padding: 22px 0;
  border-top: 1px solid rgba(166, 82, 104, .12);
  border-bottom: 0;
}
.service-bar__grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0;
}
.service-bar article {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  background: transparent; border-radius: 0; padding: 10px 18px;
  box-shadow: none; border-right: 1px solid rgba(166, 82, 104, .16);
}
.service-bar article:last-child { border-right: 0; }
.service-bar article:hover { transform: none; box-shadow: none; }
.service-bar svg { color: var(--rose); }
.service-bar h3 { font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.service-bar p { font-size: 12px; color: var(--muted); }

.help-box {
  margin-top: 18px; background: #3a1c24; border-radius: 12px; padding: 16px;
}
.help-box h3 {
  font-family: var(--font-sans); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: #e7c4b6; margin-bottom: 10px;
}
.help-box a {
  display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: 14px;
}
.help-box svg { color: var(--wa); }

.cat-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(92px, 1fr)); gap: 14px;
}
.cat-row--five { max-width: 720px; margin: 32px auto 0; }
.main-cats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 8px;
}
.main-cat {
  background: var(--surface); padding: 26px 18px 20px; text-align: center;
  border-radius: var(--radius); box-shadow: var(--shadow-out);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.main-cat:hover { box-shadow: var(--shadow-hover); transform: none; }
.main-cat__top { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.main-cat h3 { font-size: 1.7rem; color: var(--ink); font-weight: 600; }
.main-cat ul { margin-top: 12px; }
.main-cat li { margin: 6px 0; }
.main-cat li a { font-size: 14px; color: var(--muted); font-weight: 600; }
.main-cat li a:hover { color: var(--copper-deep); }
.subnav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 18px; }
.cat {
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
  color: var(--ink); font-size: 13px; font-weight: 700;
}
.cat__icon {
  width: 76px; height: 76px; border-radius: 50%;
  display: grid; place-items: center; color: var(--copper-deep);
  background: var(--surface); box-shadow: var(--shadow-out-sm);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.cat:hover .cat__icon,
.main-cat:hover .cat__icon {
  background: var(--ink); color: var(--copper-glow);
  transform: translateY(-2px);
}

/* Products */
.grid-6 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--bento-gap);
  align-items: stretch;
}
.grid-6 > *,
.hero__grid > *,
.footer__grid > *,
.enquiry-grid > * { min-width: 0; }
svg { flex-shrink: 0; }
.pcard {
  position: relative; background: var(--neo);
  padding: 12px 12px 16px; border-radius: var(--radius); border: 0;
  display: flex; flex-direction: column; height: 100%;
  box-shadow: var(--shadow-out-sm);
  transition: box-shadow var(--dur) var(--ease);
}
.pcard:hover { box-shadow: var(--shadow-hover); transform: none; }
.pcard__media {
  display: block; background: var(--neo); aspect-ratio: .86; overflow: hidden;
  position: relative; border-radius: var(--radius-sm); flex-shrink: 0;
  box-shadow: var(--shadow-in-sm);
}
.pcard__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; max-width: none; object-fit: cover; transition: transform .7s var(--ease);
}
.pcard:hover img { transform: scale(1.05); }
.pcard__view { display: none; }
.pcard__badge {
  position: absolute; left: 10px; top: 10px; background: #d45a63; color: #fff;
  font-size: 10px; padding: 4px 8px; z-index: 1; border-radius: 4px;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.pcard__wish {
  position: absolute; right: 10px; top: 10px; width: 36px; height: 36px; border-radius: 50%;
  border: 0; background: var(--neo); color: var(--ink); display: grid; place-items: center;
  box-shadow: var(--shadow-out-sm); z-index: 2;
}
.pcard__wish.is-on, .pcard__wish:hover { color: var(--danger); box-shadow: var(--shadow-in-sm); }
.pcard__body {
  display: flex; flex-direction: column; flex: 1;
  padding: 14px 6px 0; min-height: 0; text-align: left; align-items: stretch;
}
.pcard__sku { font-size: 11px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.pcard__title {
  font-family: var(--font-sans); font-size: 14px; font-weight: 600; line-height: 1.35;
  overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;
  min-height: 2.7em;
}
.pcard__price {
  color: var(--burgundy); font-weight: 700; font-size: 15px; margin-top: 6px;
  display: flex; gap: 8px; align-items: baseline; flex-wrap: wrap;
}
.pcard__mrp { color: #9a8b88; font-weight: 500; font-size: 12px; }
.pcard__sizes {
  font-size: 12px; color: var(--muted); margin-top: 4px;
  min-height: 1.45em; line-height: 1.45; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pcard__body .btn--cart { margin-top: auto; width: 100%; }

/* Trust */
.trust { padding: 8px 0 28px; }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}
.trust article {
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  background: var(--surface); padding: 22px 14px; border-radius: var(--radius);
  box-shadow: var(--shadow-out-sm);
}
.trust svg { color: var(--copper); }
.trust h3 { font-family: var(--font-sans); font-size: 14px; color: var(--ink); font-weight: 800; }
.trust p { font-size: 13px; color: var(--muted); font-weight: 500; }

/* About */
.about {
  display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: var(--bento-gap); align-items: stretch;
}
.about__visual { position: relative; }
.about__visual > img {
  width: 100%; height: 100%; min-height: 420px; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-out-sm); display: block;
}
.about__copy {
  background: var(--neo); border-radius: var(--radius-lg);
  padding: 40px 36px; box-shadow: var(--shadow-out);
  display: flex; flex-direction: column; justify-content: center;
}
.about__badge {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 120px; height: 120px; border-radius: 50%; background: var(--paper); padding: 8px;
  box-shadow: var(--shadow-hover);
}
.about__badge img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; aspect-ratio: auto; box-shadow: none; }
.about h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); margin: 8px 0 14px; font-weight: 500; }
.about h2 em { font-style: italic; color: var(--copper-deep); font-weight: 500; }
.about__copy > p:not(.eyebrow),
.about > div > p { color: var(--muted); max-width: 54ch; margin-bottom: 22px; }
.about__points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; margin-bottom: 26px; }
.about__points li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; }
.about__points svg { color: var(--copper-deep); flex-shrink: 0; }

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--bento-gap); }
.quote {
  background: var(--surface); padding: 32px 24px 24px; text-align: left;
  border-radius: var(--radius); box-shadow: var(--shadow-out-sm); position: relative;
}
.quote::before {
  content: "“"; font-family: var(--font-serif); font-size: 56px; line-height: 1;
  color: var(--copper-soft); position: absolute; top: 8px; left: 16px; opacity: .55;
}
.stars { color: #b8942a; display: flex; gap: 2px; margin-bottom: 12px; padding-left: 2px; }
.quote blockquote {
  font-family: var(--font-serif); font-style: italic; font-size: 1.2rem;
  font-weight: 500; color: var(--ink-soft); margin: 0 0 18px; line-height: 1.4;
}
.quote footer { display: flex; align-items: center; gap: 10px; }
.quote img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-out-sm); }
.quote cite { font-style: normal; font-size: 14px; font-weight: 700; }

/* Newsletter / Footer */
.newsletter {
  background: transparent;
  color: var(--ink);
  padding: 8px 0 36px;
}
.newsletter__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  background: var(--neo); padding: 28px 32px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-out);
  color: var(--ink);
}
.newsletter__copy { display: flex; align-items: center; gap: 14px; }
.newsletter__copy h2 { font-family: var(--font-serif); font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 500; color: var(--ink); }
.newsletter__copy h2 em { font-style: italic; color: var(--rose); }
.newsletter__copy p { color: var(--muted); font-size: 14px; font-weight: 500; }
.newsletter__copy svg { color: var(--rose); flex-shrink: 0; }
.newsletter__form {
  display: flex; gap: 0; min-width: min(400px, 100%);
  background: var(--neo); padding: 6px; border-radius: 999px;
  box-shadow: var(--shadow-in);
}
.newsletter__form input {
  flex: 1; border: 0; min-height: 44px; padding: 0 16px; background: transparent; outline: none; min-width: 0;
}
.newsletter__form button {
  background: var(--burgundy); color: #fff; border: 0; padding: 0 20px; min-height: 44px;
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-radius: 999px;
}
.newsletter__form button:hover { background: var(--ink); }

.footer {
  background: var(--neo); color: var(--ink); padding-top: var(--section);
  padding-bottom: 0;
}
.footer__bottom {
  background: var(--rose); border-top: 0; padding: 16px 0; text-align: center;
  color: #fff; font-size: 13px;
  box-shadow: none;
}
.footer h3 {
  font-family: var(--font-sans); font-size: 13px; color: var(--ink);
  margin-bottom: 14px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.footer a:hover { color: var(--rose); }
.footer__brand p { margin: 14px 0 16px; color: var(--muted); font-size: 14px; max-width: 36ch; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; color: var(--rose);
  background: var(--neo);
  box-shadow: var(--shadow-out-sm);
}
.footer__social a:hover { background: var(--neo); color: var(--copper-deep); box-shadow: var(--shadow-in-sm); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, .85fr) 1fr;
  gap: 32px; padding-bottom: 48px;
}
.footer__social { display: flex; gap: 10px; }
.footer li { margin-bottom: 8px; font-size: 14px; }
.footer__contact li { display: flex; align-items: flex-start; gap: 8px; }
.eco { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--copper-soft); font-size: 13px; }
.footer .brand img { box-shadow: none; }

.help-float {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 90;
  width: 168px;
  background: var(--neo);
  color: var(--ink);
  border-radius: 20px;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  box-shadow: var(--shadow-out);
}
.help-float:hover { transform: none; box-shadow: var(--shadow-hover); }
.help-float strong {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
}
.help-float span { font-size: 11px; color: var(--muted); line-height: 1.3; }
.help-float svg { color: var(--wa); margin-top: 6px; width: 28px; height: 28px; }

.arrivals { display: flex; align-items: center; gap: 6px; }
.arrivals__track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; flex: 1; padding: 4px 2px 8px;
}
.arrivals__track::-webkit-scrollbar { display: none; }
.arrivals__track .pcard {
  flex: 0 0 calc((100% - 80px) / 6); scroll-snap-align: start; min-width: 160px;
}
.arrivals__nav {
  width: 36px; height: 36px; border: 0; background: transparent; color: #9a8b88;
  display: grid; place-items: center; flex-shrink: 0;
}
.arrivals__nav:hover { color: var(--ink); }
.wa-float { display: none; }
.toast {
  position: fixed; left: 50%; bottom: max(24px, env(safe-area-inset-bottom));
  transform: translate(-50%, 20px);
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: var(--radius-sm);
  opacity: 0; pointer-events: none; transition: .25s var(--ease); z-index: 70; font-size: 14px;
  max-width: calc(100vw - 32px);
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* Page hero */
.page-hero {
  padding: clamp(36px, 5vw, 56px) 0 clamp(28px, 4vw, 40px); text-align: center;
  background: transparent;
}
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); color: var(--ink); font-weight: 600; }
.page-hero .script,
.script {
  font-family: var(--font-serif); font-style: italic; color: var(--copper);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem); display: block; margin-bottom: 4px; font-weight: 500;
}
.page-hero p { color: var(--muted); margin-top: 8px; max-width: 48ch; margin-inline: auto; }
.crumbs {
  font-size: 13px; color: var(--muted); margin-bottom: 10px; font-weight: 600;
  overflow-wrap: anywhere;
}
.crumbs a:hover { color: var(--copper-deep); }
.shop-search {
  display: flex; align-items: center; gap: 8px;
  max-width: 560px; margin: 22px auto 0;
  background: var(--neo); border-radius: var(--radius-pill);
  padding: 6px 6px 6px 16px; box-shadow: var(--shadow-in);
}
.shop-search__icon { color: var(--copper-deep); display: grid; place-items: center; }
.shop-search input {
  flex: 1; border: 0; background: transparent; outline: none;
  min-height: 42px; padding: 0 10px; font-size: 15px; font-weight: 600; min-width: 0;
}
.shop-search .btn { border-radius: var(--radius-pill); min-height: 42px; }

/* Product page */
.pdp {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--bento-gap); align-items: start;
}
.pdp__media {
  background: var(--surface); padding: 12px; border-radius: var(--radius);
  box-shadow: var(--shadow-out-sm);
}
.pdp__info {
  background: var(--surface); padding: 32px 28px; border-radius: var(--radius);
  box-shadow: var(--shadow-out-sm);
}
.pdp__media img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-sm); }
.pdp h1 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.pdp .price { font-size: 1.6rem; color: var(--copper-deep); font-weight: 700; margin: 12px 0; }
.pdp .mrp { font-size: 1rem; color: #8d7d74; font-weight: 500; margin-left: 8px; }
.sizes { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 22px; }
.size-pill {
  min-width: 44px; min-height: 44px; border-radius: 50%; border: 0;
  background: var(--neo); display: grid; place-items: center; font-size: 13px; font-weight: 700;
  box-shadow: var(--shadow-out-sm); cursor: pointer;
}
.size-pill.is-on, .size-pill:hover {
  background: var(--rose); color: #fff;
  box-shadow: var(--shadow-rose-in);
}
.pdp__actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0; }

/* Enquiry */
.enquiry-hero { padding: 20px 0 8px; position: relative; overflow: hidden; }
.enquiry-hero h1 { color: var(--ink); font-size: clamp(2rem, 5vw, 3rem); }
.enquiry-hero__art {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px;
}
.enquiry-hero__art img {
  width: min(260px, 26vw); margin-inline: auto;
  border-radius: var(--radius); box-shadow: var(--shadow-out);
}
.assist {
  position: absolute; left: max(16px, env(safe-area-inset-left)); top: 16px;
  background: var(--surface); padding: 10px 14px;
  display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700;
  color: var(--burgundy); box-shadow: var(--shadow-out-sm); border-radius: var(--radius-pill);
}
.enquiry-wrap { padding: 20px 0 64px; }
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--bento-gap); }
.e-card {
  background: var(--surface); padding: 20px; border-radius: var(--radius);
  margin-bottom: 20px; box-shadow: var(--shadow-out);
}
.e-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
  background: var(--burgundy); color: #fff;
  margin: -20px -20px 16px; padding: 12px 16px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.e-num {
  width: 28px; height: 28px; border-radius: 8px; background: #fff; color: var(--burgundy);
  display: grid; place-items: center; font-weight: 800; font-size: 13px;
}
.e-head h2 { font-family: var(--font-sans); font-size: 14px; font-weight: 800; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.field .req { color: var(--burgundy); }
.input {
  width: 100%; min-height: 46px; border: 0; border-radius: var(--radius-sm);
  padding: 0 12px 0 40px; background: var(--clay); box-shadow: var(--shadow-in);
}
.input-wrap { position: relative; }
.input-wrap svg {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--burgundy); pointer-events: none;
}
.input-wrap .input { padding-left: 40px; }
textarea.input { min-height: 150px; padding: 12px 12px 12px 40px; resize: vertical; }
.input:focus, textarea.input:focus {
  outline: none; background: var(--neo);
  box-shadow: var(--shadow-in);
}

.choice-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.choice-row.choice-row--4 { grid-template-columns: 1fr 1fr; }
.choice {
  border: 0; border-radius: var(--radius-sm); padding: 12px 10px; text-align: center;
  cursor: pointer; background: var(--clay); display: flex; flex-direction: column;
  align-items: center; gap: 6px; font-size: 12px; font-weight: 700;
  box-shadow: var(--shadow-in); min-height: 44px;
}
.choice svg { color: var(--burgundy); }
.choice input { accent-color: var(--burgundy); }
.choice:has(input:checked), .choice.is-on {
  background: var(--neo); box-shadow: var(--shadow-out-sm);
  color: var(--burgundy);
}
.etype { display: grid; gap: 8px; }
.etype label {
  display: flex; align-items: center; gap: 10px; border: 0; border-radius: var(--radius-sm);
  padding: 12px 12px; cursor: pointer; background: var(--clay); min-height: 48px;
  box-shadow: var(--shadow-in); font-weight: 600;
}
.etype label:has(input:checked) {
  background: var(--neo); box-shadow: var(--shadow-out-sm); color: var(--burgundy);
}
.etype svg { color: var(--burgundy); flex-shrink: 0; }
.hidden { display: none !important; }
.callback {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--clay); border-radius: var(--radius-sm); padding: 14px; margin: 8px 0 16px;
  box-shadow: var(--shadow-in);
}
.callback strong { font-size: 13px; color: var(--burgundy); }
.callback p { font-size: 13px; color: var(--muted); }
.callback__icons { display: flex; gap: 8px; }
.callback__icons a {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff;
}
.callback__icons .wa { background: var(--wa); }
.callback__icons .ph { background: var(--burgundy); }
.thanks { text-align: center; font-size: 13px; color: var(--muted); margin-top: 10px; }
.form-error { color: var(--danger); font-size: 13px; margin-top: 4px; }
.form-success {
  background: #ecfdf3; color: var(--ok); padding: 14px; border-radius: var(--radius-sm); margin-bottom: 16px;
}

.enquiry-footer { background: var(--burgundy-deep); color: #f6e8ea; padding: 40px 0 0; }
.enquiry-footer .container {
  display: grid; grid-template-columns: 1.1fr 1.1fr 1.1fr .9fr; gap: 24px; padding-bottom: 28px;
}
.enquiry-footer h3 {
  font-family: var(--font-sans); font-size: 13px; color: #e7c4b6; margin-bottom: 12px;
}
.enquiry-footer a:hover { color: #fff; }
.qr-block {
  text-align: center; background: var(--paper); color: var(--ink); padding: 14px;
  border-radius: var(--radius); box-shadow: var(--shadow-out-sm);
}
.qr-block img { width: 140px; height: 140px; margin: 0 auto 8px; }
.qr-block p { font-size: 12px; font-weight: 700; }
.values {
  background: #3b1722; display: grid; grid-template-columns: repeat(4, 1fr);
  color: #e7c4b6; font-size: 12px; font-weight: 700;
}
.values span {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border-right: 1px solid #5a2a38;
}

/* Misc pages */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 28px 0 10px; color: var(--ink); font-weight: 600; }
.prose p, .prose li { color: var(--muted); margin-bottom: 10px; }
.prose ul { padding-left: 18px; list-style: disc; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--bento-gap); }
.feature-card {
  background: var(--surface); padding: 26px 22px; border-radius: var(--radius);
  box-shadow: var(--shadow-out); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.feature-card:hover { transform: none; box-shadow: var(--shadow-hover); }
.feature-card svg { color: var(--copper-deep); margin-bottom: 12px; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 8px; font-weight: 600; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--bento-gap); }
.contact-card {
  background: var(--surface); padding: 20px; display: flex; gap: 14px;
  border-radius: var(--radius); box-shadow: var(--shadow-out-sm); align-items: center;
}
.contact-card h3 { font-family: var(--font-sans); font-size: 15px; font-weight: 800; }
.empty { text-align: center; padding: 48px 16px; color: var(--muted); }
.cart-list { display: grid; gap: 12px; }
.cart-row {
  display: grid; grid-template-columns: 88px minmax(0, 1fr) auto; gap: 14px;
  background: var(--surface); padding: 12px; border-radius: var(--radius);
  box-shadow: var(--shadow-out-sm); align-items: center;
}
.cart-row img {
  width: 88px; height: 88px; object-fit: cover; background: var(--clay);
  border-radius: 12px;
}
.cart-row h3 { font-family: var(--font-sans); font-size: 15px; font-weight: 700; }
.qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty button {
  width: 36px; height: 36px; border: 0; background: var(--clay);
  border-radius: 10px; box-shadow: var(--shadow-out-sm); font-weight: 800;
}
.checkout { padding-bottom: 24px; }
.checkout__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: var(--bento-gap);
  align-items: start;
}
.checkout__split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkout .input, .checkout select.input, .checkout textarea.input {
  padding-left: 14px;
  appearance: none;
}
.checkout textarea.input { min-height: 96px; padding: 12px 14px; }
.checkout__alert { margin-bottom: 18px; }
.checkout__line {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.checkout__line img {
  width: 56px; height: 56px; object-fit: cover; border-radius: 10px; background: var(--clay);
}
.checkout__line strong { display: block; font-size: 14px; }
.checkout__line span, .checkout__line em { font-size: 13px; color: var(--muted); font-style: normal; }
.checkout__totals { margin: 16px 0 8px; }
.checkout__totals div { display: flex; justify-content: space-between; gap: 12px; margin: 6px 0; font-size: 14px; }
.checkout__grand { font-size: 1.1rem; font-weight: 700; padding-top: 8px; border-top: 1px solid var(--line); }
.checkout__note { font-size: 13px; color: var(--muted); margin: 8px 0 16px; }
.checkout__secure {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center;
}
.checkout-done { max-width: 640px; }
.checkout-done__items { margin: 16px 0; }
.checkout-done__items li { display: flex; justify-content: space-between; gap: 12px; margin: 8px 0; }
.checkout-done__total { font-size: 1.2rem; font-weight: 700; margin: 12px 0; }
.btn--burgundy:disabled { opacity: .55; cursor: not-allowed; }
.cart-total { font-size: 1.25rem; font-weight: 800; }

/* Scroll reveals */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; }
.nav a:focus-visible, .btn:focus-visible { outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .search-overlay__panel { animation: none; }
}

/* —— Responsive —— */
@media (min-width: 1181px) {
  .header-search { display: none; }
  .search-toggle { display: inline-flex; }
}

@media (max-width: 1180px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav.is-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--neo);
    padding: 8px var(--gutter) max(24px, env(safe-area-inset-bottom));
    box-shadow: var(--shadow-out);
    max-height: min(78vh, calc(100dvh - var(--header) - 44px));
    overflow: auto;
    gap: 4px;
  }
  .nav.is-open > a, .nav.is-open .nav__drop > button {
    min-height: 48px; justify-content: space-between; padding: 12px 14px;
    background: var(--neo); box-shadow: var(--shadow-out-sm); margin-bottom: 6px;
  }
  .nav.is-open .nav__menu {
    position: static; display: none; box-shadow: none; background: transparent; padding: 4px 0 8px 12px;
  }
  .nav.is-open .nav__drop.is-open .nav__menu { display: block; }
  .nav.is-open .nav__menu a { min-height: 44px; display: flex; align-items: center; }
  .hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 28px;
  }
  .hero__visual {
    order: -1;
    aspect-ratio: 4 / 3;
    max-height: 420px;
    height: auto;
    border-radius: var(--radius);
  }
  .hero__copy { padding: 4px 0 8px; }
  .hero__line { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .hero__accent { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero__dots { padding: 12px 0 24px; }
  .lookbook__grid { grid-template-columns: 1fr; }
  .lookbook__stamp { right: 16px; top: 16px; }
  .lookbook__copy, .about__copy, .pdp__info { padding: 28px 22px; }
  .lookbook__visual > img, .about__visual > img { min-height: 280px; }
  .main-cats { grid-template-columns: 1fr; }
  .about, .enquiry-grid, .pdp, .contact-grid, .checkout__grid, .checkout__split { grid-template-columns: 1fr; }
  .footer__grid, .enquiry-footer .container { grid-template-columns: 1fr 1fr; }
  .quotes, .feature-grid { grid-template-columns: 1fr 1fr; }
  .newsletter__inner { flex-direction: column; align-items: stretch; padding: 18px; }
  .newsletter__form { min-width: 0; }
  .marquee__track { animation-duration: 24s; }
  .enquiry-hero__art { grid-template-columns: 1fr; }
  .enquiry-hero__art img:first-child,
  .enquiry-hero__art img:last-child { display: none; }
  .assist { position: static; margin: 0 auto 12px; width: max-content; max-width: 100%; }
  .choice-row { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .about__points { grid-template-columns: 1fr; }
  .cat-photos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ig-row { grid-template-columns: 1fr; padding: 20px; gap: 20px; }
  .ig-promo { min-height: 200px; }
  .ig-shots { grid-template-columns: repeat(4, minmax(0, 1fr)); min-height: 220px; }
  .features-row, .service-bar__grid { grid-template-columns: 1fr 1fr; }
  .features-row article:first-child { grid-column: auto; }
  .service-bar article { border-right: 0; border-bottom: 1px solid rgba(166, 82, 104, .12); }
  .service-bar article:nth-child(2n) { border-right: 0; }
  .nav.is-open > a::after, .nav.is-open .nav__drop > button::after { display: none; }
}

@media (max-width: 720px) {
  :root { --header: 68px; }
  .brand img { width: 44px; height: 44px; }
  .brand__tag { letter-spacing: .28em; }
  .brand__name { font-size: 1rem; }
  .cat-row, .cat-row--five { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  main { padding-bottom: 88px; }
  .help-float { right: 12px; bottom: 12px; }
  .help-float span { display: none; }
  .cart-actions { flex-direction: column; align-items: stretch; }
  .cart-actions .hero__actions { width: 100%; }
  .cart-actions .btn { flex: 1 1 auto; }
  input, select, textarea { font-size: 16px !important; }
  .footer__grid, .enquiry-footer .container { grid-template-columns: 1fr; }
  .pdp__actions .btn { width: 100%; }
  .callback { flex-direction: column; text-align: center; }
  .shop-search { flex-direction: column; border-radius: var(--radius); padding: 10px; }
  .shop-search .btn { width: 100%; }
  .cart-row { grid-template-columns: 72px minmax(0, 1fr); }
  .cart-row > :last-child {
    grid-column: 1 / -1;
    display: flex; justify-content: space-between; align-items: center;
  }
  .cart-row img { width: 72px; height: 72px; }
  .section__head { align-items: flex-start; }
  .hero__actions .btn { flex: 1 1 140px; }
  .quotes, .feature-grid { grid-template-columns: 1fr; }
  .pcard__wish { width: 36px; height: 36px; right: 12px; top: 12px; }
  .cat-photos { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .ig-shots { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .hero__hotspot--women,
  .hero__hotspot--girls {
    height: 11%;
    top: 68%;
  }
  .features-row, .service-bar__grid { grid-template-columns: 1fr; }
  .features-row article:first-child { grid-column: auto; }
  .features-row article { padding: 12px 8px; }
  .service-bar article { border-right: 0; border-bottom: 1px solid rgba(166, 82, 104, .12); justify-content: flex-start; }
  .service-bar article:last-child { border-bottom: 0; }
}

@media (max-width: 540px) {
  .brand__name { font-size: 1.1rem; }
  .help-float strong { font-size: 12px; }
}

@media (max-width: 420px) {
  .cat-row, .cat-row--five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .header__tools { gap: 4px; }
  .icon-btn { width: 42px; height: 42px; }
  .values { grid-template-columns: 1fr; }
  .values span { border-right: 0; border-bottom: 1px solid #5a2a38; }
  .choice-row.choice-row--4 { grid-template-columns: 1fr; }
}

@media (min-width: 640px) {
  .grid-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
}
@media (min-width: 960px) {
  .grid-6 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1180px) {
  .grid-new { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px; }
}
@media (min-width: 1280px) {
  .grid-6 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (hover: none) {
  .pcard__view { opacity: 1; transform: none; background: color-mix(in srgb, var(--ink) 55%, transparent); }
  .pcard:hover { transform: none; }
  .main-cat:hover { transform: none; }
}

@media (max-height: 480px) and (orientation: landscape) {
  .nav.is-open { max-height: 70vh; }
}

@media (min-width: 1181px) and (max-width: 1439px) {
  .nav > a, .nav__drop > button { padding: 8px 7px; font-size: 12.5px; }
}
