@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Manrope:wght@600;700;800&display=swap");

@view-transition {
  navigation: auto;
}

:root {
  --ivory: #f7f3ea;
  --ivory-deep: #ece4d5;
  --paper: #fffdf8;
  --charcoal: #171717;
  --charcoal-soft: #34312d;
  --gold: #b9904a;
  --gold-deep: #76541f;
  --burgundy: #5b1f2a;
  --white: #ffffff;
  --border: rgba(23, 23, 23, 0.16);
  --shadow: 0 22px 60px rgba(35, 28, 20, 0.12);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1240px;
  --header-height: 80px;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
select {
  color: inherit;
  font: inherit;
  font-weight: 700;
}

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

button {
  border: 0;
}

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

h1,
h2,
h3 {
  color: var(--charcoal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3.15rem, 7vw, 6.75rem);
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4.2rem);
}

h3 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

address {
  font-style: normal;
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -6rem;
  z-index: 2000;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--charcoal);
  color: var(--white);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.narrow-container {
  width: min(calc(100% - 2rem), 860px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section--paper {
  background: var(--paper);
}

.section--dark {
  background: var(--charcoal);
  color: var(--white);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section--dark .eyebrow,
.hero .eyebrow,
.style-hero .eyebrow,
.style-cta .eyebrow {
  color: #e6c98f;
}

.lede {
  max-width: 680px;
  color: var(--charcoal-soft);
  font-size: clamp(1rem, 1.4vw, 1.17rem);
  line-height: 1.8;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-header h2 {
  max-width: 700px;
  margin-bottom: 0;
}

.section-header__copy {
  max-width: 560px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.button::after {
  position: absolute;
  top: -70%;
  left: -45%;
  width: 28%;
  height: 240%;
  background: rgba(255, 255, 255, 0.28);
  content: "";
  pointer-events: none;
  transform: rotate(24deg) translateX(-220%);
  transition: transform 650ms ease;
}

.button:hover::after {
  transform: rotate(24deg) translateX(620%);
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 17px;
  height: 17px;
}

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

.button--gold:hover {
  background: #c8a45f;
}

.button--dark {
  background: var(--charcoal);
  color: var(--white);
}

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

.button--outline {
  border-color: currentColor;
  background: transparent;
  color: currentColor;
}

.button--outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.button[disabled] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 2px solid var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link svg {
  width: 16px;
  transition: transform var(--transition);
}

.text-link:hover svg {
  transform: translateX(4px);
}

.announcement {
  padding: 0.55rem 1rem;
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  background: rgba(247, 243, 234, 0.94);
  backdrop-filter: blur(18px);
  transition: background-color 260ms ease, box-shadow 260ms ease;
}

.site-header--scrolled {
  background: rgba(247, 243, 234, 0.98);
  box-shadow: 0 12px 34px rgba(23, 23, 23, 0.1);
}

.site-header__inner {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  transition: min-height 260ms ease;
}

.site-header--scrolled .site-header__inner {
  min-height: 68px;
}

.wordmark {
  display: inline-flex;
  width: clamp(8.75rem, 14vw, 10.75rem);
  flex: 0 0 auto;
  align-items: center;
  justify-self: start;
}

.wordmark img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 2.5vw, 2.2rem);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 0.84rem;
  font-weight: 800;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--burgundy);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity var(--transition), transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.cart-link {
  position: relative;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--paper);
}

.cart-link svg {
  width: 21px;
  height: 21px;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -4px;
  display: grid;
  min-width: 23px;
  height: 23px;
  padding-inline: 5px;
  place-items: center;
  border: 2px solid var(--ivory);
  border-radius: 999px;
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}

.menu-button svg {
  width: 22px;
}

.hero {
  --hero-parallax: 0px;
  --hero-pointer-x: 78%;
  --hero-pointer-y: 38%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(860px, calc(100vh - 30px));
  background: var(--charcoal);
  color: var(--white);
}

.hero__media,
.hero__wash {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -3;
  overflow: hidden;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--hero-pointer-x) var(--hero-pointer-y), rgba(217, 184, 119, 0.22), transparent 30%);
  content: "";
  pointer-events: none;
}

.hero__wash {
  z-index: -2;
  background: linear-gradient(90deg, rgba(16, 15, 14, 0.96) 0%, rgba(16, 15, 14, 0.82) 35%, rgba(16, 15, 14, 0.28) 63%, rgba(16, 15, 14, 0.08) 100%), linear-gradient(0deg, rgba(12, 11, 10, 0.55), transparent 54%);
}

.hero__inner {
  position: relative;
  display: flex;
  min-height: min(860px, calc(100vh - 30px));
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 650px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: clamp(7rem, 13vw, 11rem);
}

.hero__content h1 {
  margin-bottom: 1.4rem;
  color: var(--white);
}

.hero__content > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 2rem;
  color: #e9e3d8;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.hero__image {
  width: 100%;
  height: calc(100% + 100px);
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--hero-parallax), 0) scale(1.045);
  transition: transform 90ms linear;
  will-change: transform;
}

.hero__note {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: clamp(1rem, 4vw, 3rem);
  z-index: 2;
  max-width: 250px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-md);
  background: rgba(23, 23, 23, 0.65);
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  line-height: 1.5;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 1.9rem;
  left: 0;
  z-index: 2;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__scroll-cue svg {
  width: 18px;
  animation: scroll-cue 1.8s ease-in-out infinite;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 490px;
  border-radius: var(--radius-lg);
  background: var(--charcoal);
  color: var(--white);
}

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

.category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 9, 8, 0.82), transparent 62%);
  content: "";
}

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

.category-card__content {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.category-card__heading {
  display: grid;
}

.category-card__heading .eyebrow {
  margin-bottom: 0.2rem;
}

.category-card__title {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.category-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
}

.category-card__icon svg {
  width: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-grid.is-updating {
  opacity: 0.45;
  transform: translateY(8px);
}

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

.product-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--paper);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  will-change: transform;
}

.product-card:hover {
  border-color: rgba(185, 144, 74, 0.55);
  box-shadow: var(--shadow);
  transform: perspective(900px) translateY(-5px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.product-card__image-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ivory-deep);
}

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

.product-card:hover .product-card__image {
  transform: scale(1.025);
}

.product-card__tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--charcoal);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}

.product-card__body {
  padding: 1.1rem;
}

.product-card__heading {
  display: flex;
  min-height: 54px;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product-card__heading h3 {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.product-card__heading h3 a {
  transition: color var(--transition);
}

.product-card__heading h3 a:hover {
  color: var(--burgundy);
}

.product-card__heading p {
  margin: 0;
  color: var(--burgundy);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.product-card__details-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 0.45rem;
  margin: -0.25rem 0 0.75rem;
  color: var(--burgundy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__details-link svg {
  width: 15px;
  transition: transform var(--transition);
}

.product-card__details-link:hover svg {
  transform: translateX(4px);
}

.product-card__actions {
  display: grid;
  grid-template-columns: minmax(100px, 0.75fr) 1.25fr;
  gap: 0.65rem;
}

.product-card__add {
  width: 100%;
  min-height: 52px;
  padding-inline: 0.75rem;
}

.product-card__add.is-added {
  background: var(--burgundy);
  color: var(--white);
}

.size-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.14rem;
  padding: 0.28rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
}

.size-field span {
  color: var(--gold-deep);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.size-field select {
  width: 100%;
  min-height: 28px;
  border: 0;
  outline: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
}

.size-field:has(select[aria-invalid="true"]) {
  border-color: #a11d31;
  box-shadow: 0 0 0 2px rgba(161, 29, 49, 0.16);
}

.product-card__message {
  min-height: 18px;
  margin: 0.5rem 0 -0.35rem;
  color: #8a1728;
  font-size: 0.7rem;
  font-weight: 800;
}

.story-band {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--burgundy);
  color: var(--white);
}

.story-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
}

.story-band__copy {
  padding: clamp(2rem, 6vw, 5rem);
}

.story-band__copy h2 {
  margin-bottom: 1rem;
  color: var(--white);
}

.story-band__copy p {
  max-width: 590px;
  color: #f4e8e7;
}

.story-band__stats {
  display: grid;
  align-self: stretch;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.story-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.story-stat:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.story-stat strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.story-stat span {
  margin-top: 0.5rem;
  color: #ecd7d9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  max-width: 920px;
  margin: 0 auto 1.2rem;
  color: var(--white);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: #e3ddd3;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.about-story__image-wrap {
  position: relative;
}

.about-story__image {
  width: 100%;
  max-height: 700px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.about-story__badge {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  display: grid;
  width: 145px;
  height: 145px;
  place-items: center;
  padding: 1rem;
  border: 7px solid var(--ivory);
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.about-story__copy h2 {
  margin-bottom: 1.3rem;
}

.about-story__copy p {
  color: var(--charcoal-soft);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.value-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.value-card__number {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
}

.value-card h3 {
  margin-bottom: 0.75rem;
}

.value-card p {
  margin-bottom: 0;
  color: var(--charcoal-soft);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--charcoal);
  color: var(--white);
}

.visit-copy {
  padding: clamp(2rem, 5vw, 4.5rem);
}

.visit-copy h2 {
  margin-bottom: 1rem;
  color: var(--white);
}

.visit-copy address,
.visit-copy p {
  color: #ded8ce;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0;
}

.contact-list a,
.contact-list address,
.contact-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.contact-list svg,
.contact-list__item svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 0.2rem;
  color: #e6c98f;
}

.contact-list__item {
  color: #ded8ce;
}

.contact-list__details {
  display: grid;
  gap: 0.12rem;
}

.contact-list__details strong {
  color: var(--white);
  font-weight: 800;
}

.map-wrap {
  min-height: 540px;
  background: var(--ivory-deep);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
}

.selection-grid,
.experience-grid,
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.selection-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--paper), rgba(236, 228, 213, 0.62));
}

.selection-card::after {
  position: absolute;
  right: -60px;
  bottom: -75px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(185, 144, 74, 0.3);
  border-radius: 50%;
  content: "";
}

.selection-card__mark,
.experience-step__number {
  display: block;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--burgundy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.selection-card h3,
.experience-step h3,
.fit-card h3 {
  margin-bottom: 0.8rem;
}

.selection-card p,
.experience-step p,
.fit-card p {
  margin-bottom: 0;
}

.about-experience {
  position: relative;
  overflow: hidden;
}

.about-experience::before {
  position: absolute;
  top: -250px;
  left: 45%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 144, 74, 0.2), transparent 68%);
  content: "";
  pointer-events: none;
}

.about-experience .container {
  position: relative;
}

.about-experience h2,
.experience-step h3,
.fit-card h3,
.style-cta h2 {
  color: var(--white);
}

.about-experience__intro,
.fit-intro {
  max-width: 540px;
  margin-bottom: 0;
  color: #d8d0c5;
}

.experience-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.experience-step {
  min-height: 290px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.experience-step__number {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  color: #e6c98f;
}

.experience-step p {
  color: #c9c1b5;
}

.reviews-disclosure {
  max-width: 470px;
  margin-bottom: 0;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--ivory-deep);
  color: var(--charcoal-soft);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.65;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(35, 28, 20, 0.07);
}

.review-card::before {
  position: absolute;
  top: 0;
  right: 2rem;
  left: 2rem;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  content: "";
}

.review-card__rating {
  margin-bottom: 1.5rem;
  color: var(--gold-deep);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
}

.review-card blockquote {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: clamp(0.96rem, 1.3vw, 1.06rem);
  line-height: 1.8;
}

.review-card blockquote p {
  margin-bottom: 1.5rem;
}

.review-card__author {
  margin: auto 0 0;
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.faq-intro p:not(.eyebrow) {
  max-width: 480px;
  color: var(--charcoal-soft);
}

.faq-intro__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  font-size: clamp(0.92rem, 1.4vw, 1.04rem);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--burgundy);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-width: 680px;
  padding: 0 3.5rem 1.5rem 0;
  color: var(--charcoal-soft);
}

.faq-answer p {
  margin-bottom: 0;
}

.style-hero {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.style-hero::before {
  position: absolute;
  top: -28%;
  left: -10%;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 31, 42, 0.55), transparent 68%);
  content: "";
  pointer-events: none;
}

.style-hero__grid {
  position: relative;
  display: grid;
  min-height: min(790px, calc(100vh - 30px));
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(5rem, 9vw, 8rem);
}

.style-hero__content {
  position: relative;
  z-index: 2;
}

.style-hero h1 {
  max-width: 650px;
  margin-bottom: 1.4rem;
  color: var(--white);
  font-size: clamp(3.4rem, 6.8vw, 6.8rem);
}

.style-hero__content > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 2rem;
  color: #ded8ce;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.style-hero__collage {
  position: relative;
  min-height: 610px;
}

.style-hero__collage img {
  position: absolute;
  width: 47%;
  height: 70%;
  border: 7px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  object-fit: cover;
}

.style-hero__collage img:nth-child(1) {
  bottom: 2%;
  left: 0;
  z-index: 2;
}

.style-hero__collage img:nth-child(2) {
  top: 0;
  left: 27%;
  z-index: 1;
}

.style-hero__collage img:nth-child(3) {
  right: 0;
  bottom: 8%;
  z-index: 3;
  width: 38%;
  height: 48%;
}

.look-nav {
  border-bottom: 1px solid var(--border);
  background: var(--paper);
}

.look-nav__inner {
  display: flex;
  overflow-x: auto;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.2rem);
  padding-block: 0.8rem;
  scrollbar-width: none;
}

.look-nav__inner::-webkit-scrollbar {
  display: none;
}

.look-nav a {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: background-color var(--transition), color var(--transition);
}

.look-nav a:hover,
.look-nav a:focus-visible {
  background: var(--burgundy);
  color: var(--white);
}

.style-look {
  scroll-margin-top: 100px;
}

.style-look__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.style-look--reverse .look-collage {
  order: 2;
}

.style-look--reverse .style-look__copy {
  order: 1;
}

.look-collage {
  display: grid;
  min-height: 640px;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.look-product {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: var(--radius-md);
  background: var(--ivory-deep);
}

.look-product--primary {
  grid-row: 1 / 3;
}

.look-product::after {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(0deg, rgba(14, 13, 12, 0.82), transparent);
  content: "";
  pointer-events: none;
}

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

.look-product:hover img {
  transform: scale(1.035);
}

.look-product span {
  position: absolute;
  right: 1rem;
  bottom: 0.9rem;
  left: 1rem;
  z-index: 2;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
}

.style-look__copy h2 {
  margin-bottom: 1.2rem;
}

.style-look__copy h3 {
  margin: 2rem 0 1rem;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.style-look__lede {
  color: var(--charcoal-soft);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.8;
}

.style-tips {
  display: grid;
  gap: 0.8rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.style-tips li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--charcoal-soft);
}

.style-tips li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.fit-grid {
  margin-top: 1rem;
}

.fit-card {
  min-height: 300px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.fit-card__label {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(230, 201, 143, 0.4);
  border-radius: 999px;
  color: #e6c98f;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fit-card p {
  color: #c9c1b5;
}

.style-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--burgundy), #36131a);
  color: var(--white);
}

.style-cta > div:first-child {
  max-width: 700px;
}

.style-cta h2 {
  margin-bottom: 1rem;
}

.style-cta p:not(.eyebrow) {
  margin-bottom: 0;
  color: #eadde0;
}

.style-cta__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.style-cta .button--outline {
  color: var(--white);
}

.shop-intro {
  padding-block: clamp(4rem, 8vw, 7rem) 2.5rem;
}

.shop-intro__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.shop-intro h1,
.cart-title h1 {
  margin-bottom: 0.8rem;
  font-size: clamp(3rem, 7vw, 6rem);
}

.product-count {
  margin-bottom: 1rem;
  color: var(--burgundy);
  font-size: 0.85rem;
  font-weight: 800;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.filter-button {
  min-height: 44px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
}

.filter-button:hover,
.filter-button--active {
  background: var(--burgundy);
  color: var(--white);
}

.sort-field {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
}

.sort-field span {
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sort-field select {
  min-height: 44px;
  padding: 0.5rem 2.3rem 0.5rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  font-size: 0.76rem;
}

.shop-products {
  padding-block: 1.5rem clamp(5rem, 9vw, 8rem);
}

.product-detail-section {
  min-height: 62vh;
  padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(5rem, 9vw, 8rem);
}

.product-breadcrumb {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.product-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  color: var(--charcoal-soft);
  font-size: 0.7rem;
  font-weight: 700;
  list-style: none;
}

.product-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.product-breadcrumb li + li::before {
  color: var(--gold-deep);
  content: "/";
}

.product-breadcrumb a {
  transition: color var(--transition);
}

.product-breadcrumb a:hover {
  color: var(--burgundy);
}

.product-breadcrumb [aria-current="page"] {
  color: var(--charcoal);
  font-weight: 800;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 1.04fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6.5rem);
}

.product-detail__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ivory-deep);
  box-shadow: var(--shadow);
}

.product-detail__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-detail__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--charcoal);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}

.product-detail__content {
  max-width: 600px;
}

.product-detail__content h1 {
  margin-bottom: 0.8rem;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.product-detail__price {
  margin-bottom: 1.6rem;
  color: var(--burgundy);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 800;
}

.product-detail__description {
  max-width: 560px;
  margin-bottom: 1.5rem;
  color: var(--charcoal-soft);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.8;
}

.product-detail__highlights {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.product-detail__highlights li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--charcoal-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.product-detail__highlights li::before {
  position: absolute;
  top: 0.12rem;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(185, 144, 74, 0.18);
  color: var(--burgundy);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 800;
}

.product-detail__purchase {
  display: grid;
  grid-template-columns: minmax(150px, 0.78fr) minmax(180px, 1.22fr);
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(35, 28, 20, 0.07);
}

.product-detail__size-field {
  min-height: 56px;
  justify-content: center;
  padding-inline: 0.9rem;
}

.product-detail__size-field select {
  font-size: 0.82rem;
  font-weight: 700;
}

.product-detail__add {
  width: 100%;
  min-height: 56px;
}

.product-detail__message {
  min-height: 20px;
  grid-column: 1 / -1;
  margin: -0.1rem 0 0;
}

.product-detail__demo-note {
  margin: 1rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
  color: var(--charcoal-soft);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.65;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: clamp(3rem, 6vw, 5rem) 0 0;
}

.product-spec {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--paper), rgba(236, 228, 213, 0.56));
}

.product-spec dt {
  margin-bottom: 0.75rem;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-spec dd {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.65;
}

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

.product-detail__loading {
  display: grid;
  min-height: 55vh;
  place-items: center;
  align-content: center;
  gap: 1rem;
  color: var(--charcoal-soft);
  font-weight: 700;
  text-align: center;
}

.product-detail__loading > span {
  width: 44px;
  height: 44px;
  border: 4px solid var(--ivory-deep);
  border-top-color: var(--burgundy);
  border-radius: 50%;
  animation: product-loading 850ms linear infinite;
}

.product-detail__loading p {
  margin: 0;
}

.product-not-found {
  display: grid;
  min-height: 55vh;
  place-items: center;
  align-content: center;
  padding: 3rem 1rem;
  text-align: center;
}

.product-not-found__icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 1.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--ivory-deep);
  color: var(--burgundy);
}

.product-not-found__icon svg {
  width: 32px;
}

.product-not-found h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.product-not-found p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 1.6rem;
  color: var(--charcoal-soft);
}

@keyframes product-loading {
  to { transform: rotate(360deg); }
}

.cart-main {
  min-height: 60vh;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.cart-title {
  margin-bottom: 3rem;
}

.cart-title p {
  color: var(--charcoal-soft);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
}

.cart-items {
  border-top: 1px solid var(--border);
}

.cart-item {
  display: grid;
  overflow: hidden;
  max-height: 340px;
  grid-template-columns: 145px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: opacity 220ms ease, transform 220ms ease, max-height 260ms ease, padding 260ms ease;
}

.cart-item.is-removing {
  max-height: 0;
  padding-block: 0;
  opacity: 0;
  transform: translateX(22px);
}

.cart-item.is-changing {
  animation: cart-row-feedback 360ms ease;
}

.cart-item__image-link {
  display: block;
  width: 145px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.cart-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.cart-item__image-link:hover .cart-item__image {
  transform: scale(1.035);
}

.cart-item__details h2 a {
  transition: color var(--transition);
}

.cart-item__details h2 a:hover {
  color: var(--burgundy);
}

.cart-item__details h2 {
  margin-bottom: 0.55rem;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  font-weight: 800;
  line-height: 1.3;
}

.cart-item__details .eyebrow {
  margin-bottom: 0.4rem;
  font-size: 0.64rem;
}

.cart-item__meta {
  margin-bottom: 1.1rem;
  color: var(--charcoal-soft);
  font-size: 0.79rem;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 42px 42px 42px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--paper);
}

.quantity-control button,
.quantity-control span {
  display: grid;
  min-height: 42px;
  place-items: center;
}

.quantity-control button {
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
}

.quantity-control button:hover {
  background: var(--ivory-deep);
}

.quantity-control span {
  font-size: 0.82rem;
}

.text-button {
  min-height: 44px;
  padding: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--burgundy);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
}

.cart-item__total {
  align-self: start;
  margin-top: 1.5rem;
  color: var(--burgundy);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.order-summary {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  background: var(--charcoal);
  color: var(--white);
}

.order-summary h2 {
  margin-bottom: 1.8rem;
  color: var(--white);
  font-size: 2rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #ded8ce;
  font-size: 0.82rem;
}

.summary-row--total {
  margin-top: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  font-size: 1rem;
}

.order-summary .button {
  width: 100%;
  margin-top: 1.2rem;
}

.order-summary__note {
  margin: 1rem 0 0;
  color: #c9c1b5;
  font-size: 0.7rem;
  text-align: center;
}

.empty-cart {
  padding: clamp(3rem, 8vw, 7rem) 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--paper);
  text-align: center;
}

.empty-cart__icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--ivory-deep);
  color: var(--burgundy);
}

.empty-cart__icon svg {
  width: 30px;
}

.empty-cart h2 {
  margin-bottom: 0.8rem;
}

.empty-cart p {
  max-width: 480px;
  margin: 0 auto 1.5rem;
  color: var(--charcoal-soft);
}

.site-footer {
  padding-block: clamp(3.5rem, 7vw, 6rem) 1.5rem;
  background: #11100f;
  color: #f5f0e7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.65fr 0.95fr 1.25fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3.5rem;
}

.footer-brand .wordmark {
  width: min(11.75rem, 100%);
  margin-bottom: 1.2rem;
}

.footer-brand p {
  max-width: 340px;
  color: #bbb3a8;
  font-size: 0.8rem;
}

.footer-column h2 {
  margin-bottom: 1.2rem;
  color: #e6c98f;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-column address,
.footer-column p {
  color: #d6cfc5;
  font-size: 0.78rem;
  line-height: 1.65;
}

.footer-links a:hover,
.footer-column a:hover {
  color: #e6c98f;
}

.footer-column p {
  margin-bottom: 0.55rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #948d84;
  font-size: 0.68rem;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1500;
  max-width: min(360px, calc(100vw - 2rem));
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: var(--charcoal);
  box-shadow: var(--shadow);
  color: var(--white);
  font-size: 0.76rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition);
}

.toast--visible {
  opacity: 1;
  transform: translateY(0);
}

.cart-count--pulse {
  animation: cart-pulse 440ms ease;
}

.motion-ready [data-reveal] {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 26px, 0);
  transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms), filter 680ms ease var(--reveal-delay, 0ms), transform 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

::view-transition-old(root) {
  animation: 180ms ease both fade-out;
}

::view-transition-new(root) {
  animation: 360ms cubic-bezier(0.22, 1, 0.36, 1) both fade-in;
}

@keyframes scroll-cue {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(5px); }
}

@keyframes cart-pulse {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.28); box-shadow: 0 0 0 7px rgba(91, 31, 42, 0.14); }
}

@keyframes cart-row-feedback {
  0%, 100% { background: transparent; }
  45% { background: rgba(185, 144, 74, 0.14); }
}

@keyframes fade-out {
  to { opacity: 0; transform: translateY(-5px); }
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(7px); }
}

@media (max-width: 1024px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    height: calc(100vh - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 2rem 1rem;
    background: var(--ivory);
  }

  .site-nav--open {
    display: flex;
  }

  .site-nav a {
    justify-content: space-between;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--border);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
  }

  .site-nav a::after {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .header-shop-button {
    display: none;
  }

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

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

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

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

  .order-summary {
    position: static;
  }

  .style-hero__grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
    gap: 2rem;
  }

  .style-look__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 2.5rem;
  }
}

@media (max-width: 820px) {
  .hero,
  .hero__inner {
    min-height: 720px;
  }

  .hero__content {
    max-width: 580px;
    padding-block: 7rem 10rem;
  }

  .hero__wash {
    background: linear-gradient(90deg, rgba(16, 15, 14, 0.92), rgba(16, 15, 14, 0.55) 72%, rgba(16, 15, 14, 0.25)), linear-gradient(0deg, rgba(12, 11, 10, 0.72), transparent 68%);
  }

  .hero__image {
    height: 100%;
    object-position: 64% center;
    transform: none;
  }

  .category-grid,
  .values-grid,
  .reviews-grid,
  .selection-grid,
  .experience-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 420px;
  }

  .story-band__inner,
  .about-story,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .story-band__stats {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }

  .about-story__badge {
    right: 1rem;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 430px;
  }

  .selection-card,
  .experience-step,
  .fit-card {
    min-height: auto;
  }

  .selection-card__mark,
  .experience-step__number,
  .fit-card__label {
    margin-bottom: 2rem;
  }

  .faq-layout,
  .product-detail,
  .style-hero__grid,
  .style-look__grid {
    grid-template-columns: 1fr;
  }

  .product-detail__media,
  .product-detail__content {
    width: min(100%, 680px);
  }

  .product-detail__content {
    max-width: none;
  }

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

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

  .style-hero__grid {
    min-height: auto;
    padding-block: 6rem;
  }

  .style-hero__content {
    max-width: 680px;
  }

  .style-hero__collage {
    min-height: 560px;
  }

  .style-look--reverse .look-collage,
  .style-look--reverse .style-look__copy {
    order: initial;
  }

  .look-collage {
    min-height: 620px;
  }

  .style-look__copy {
    max-width: 680px;
  }

  .style-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-intro__top,
  .shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .sort-field {
    justify-content: space-between;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 70px;
  }

  .announcement {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .site-header__inner {
    min-height: var(--header-height);
    gap: 0.7rem;
  }

  .site-header--scrolled .site-header__inner {
    min-height: 62px;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .cart-link,
  .menu-button {
    width: 43px;
    height: 43px;
  }

  .hero,
  .hero__inner {
    min-height: 680px;
  }

  .hero__content {
    max-width: 92%;
    padding-block: 6rem 9rem;
  }

  .hero__note {
    right: 0;
    bottom: 4.8rem;
    max-width: calc(100% - 2rem);
  }

  .hero__scroll-cue {
    bottom: 1.2rem;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .product-card__heading {
    min-height: auto;
  }

  .product-detail-section {
    padding-top: 1.75rem;
  }

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

  .product-detail__message {
    grid-column: auto;
  }

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

  .story-stat:nth-child(odd) {
    border-right: 0;
  }

  .story-stat:last-child {
    border-bottom: 0;
  }

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

  .faq-intro__actions,
  .style-cta__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-list summary {
    min-height: 68px;
  }

  .faq-answer {
    padding-right: 0;
  }

  .style-hero__grid {
    padding-block: 5rem;
  }

  .style-hero__collage {
    min-height: 430px;
  }

  .style-hero__collage img {
    border-width: 4px;
  }

  .look-nav__inner {
    justify-content: flex-start;
  }

  .look-collage {
    min-height: 490px;
    grid-template-columns: 1fr 0.9fr;
    gap: 0.5rem;
  }

  .look-product span {
    right: 0.7rem;
    bottom: 0.65rem;
    left: 0.7rem;
    font-size: 0.62rem;
  }

  .style-cta__actions,
  .style-cta__actions .button,
  .faq-intro__actions .button {
    width: 100%;
  }

  .filter-button {
    width: 100%;
  }

  .cart-item {
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
  }

  .cart-item__image-link {
    width: 92px;
  }

  .cart-item__total {
    grid-column: 2;
    margin: -0.5rem 0 0;
  }

  .cart-item__controls {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@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;
  }

  .motion-ready [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .hero__image,
  .product-card,
  .product-card:hover {
    transform: none;
  }
}
