:root {
  --bg: #d5cfbf;
  --surface: rgba(247, 241, 235, 0.82);
  --surface-alt: rgba(92, 77, 90, 0.14);
  --surface-strong: rgba(27, 29, 36, 0.84);
  --border: rgba(48, 44, 41, 0.18);
  --border-strong: rgba(30, 32, 38, 0.46);
  --text: #171718;
  --muted: #655b5f;
  --accent: #485c47;
  --accent-soft: #936983;
  --glow: rgba(153, 105, 131, 0.12);
  --wash: rgba(141, 161, 102, 0.12);

  --max-width: 1120px;
  --narrow-width: 760px;
  --gutter: 1rem;

  --radius-sm: 0.85rem;
  --radius: 1.2rem;
  --radius-lg: 2rem;

  --shadow-sm: 0 12px 28px rgba(17, 16, 20, 0.08);
  --shadow: 0 24px 64px rgba(17, 16, 20, 0.12);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;

  --section-pad: clamp(3.25rem, 6vw, 4.75rem);
  --page-hero-pad: clamp(2.75rem, 5vw, 4rem);

  --font-sans: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top left, rgba(176, 125, 115, 0.22), transparent 24%),
    radial-gradient(circle at 82% 14%, var(--glow), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(117, 139, 97, 0.14), transparent 30%),
    linear-gradient(180deg, #e3ddd1 0%, #d4ccb9 42%, #c8c1b1 100%);
  color: var(--text);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: var(--weight-semibold);
}
h2 { font-size: clamp(1.55rem, 2.4vw, 2.2rem); }
h3 { font-size: 1.15rem; line-height: 1.15; }
p { max-width: 70ch; }

:focus-visible { outline: 3px solid rgba(32, 49, 42, 0.35); outline-offset: 3px; }

.container { width: min(calc(100% - (var(--gutter) * 2)), var(--max-width)); margin: 0 auto; }
.narrow { width: min(calc(100% - (var(--gutter) * 2)), var(--narrow-width)); margin: 0 auto; }
.section { padding: var(--section-pad) 0; }
.section-muted,
.section-accent,
.page-hero,
.site-footer { position: relative; overflow: clip; }
.section-muted {
  background:
    linear-gradient(180deg, rgba(248, 243, 236, 0.56), rgba(230, 223, 213, 0.82)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 50%);
}
.section-accent {
  background:
    radial-gradient(circle at 18% 50%, rgba(177, 121, 125, 0.18), transparent 22%),
    radial-gradient(circle at 82% 35%, rgba(111, 137, 95, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(205, 197, 188, 0.9), rgba(182, 173, 165, 0.96));
}
.section-muted::before,
.section-accent::before,
.page-hero::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 34%),
    repeating-linear-gradient(135deg, rgba(23, 23, 24, 0.018) 0 1px, transparent 1px 16px);
  pointer-events: none;
}

.eyebrow, .slide-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}
.slide-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(244, 239, 231, 0.72);
  width: fit-content;
}
.slide-label::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: rgba(244, 239, 231, 0.32);
}
.meta { font-size: 0.88rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.lede { font-size: 1.08rem; color: rgba(34, 31, 31, 0.8); max-width: 62ch; }

.text-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: var(--weight-medium);
}
.text-link::after {
  content: "\2192";
  transition: transform 160ms ease;
}
.text-link:hover::after { transform: translateX(2px); }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--surface);
  padding: 0.75rem 1rem;
  z-index: 100;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(231, 223, 213, 0.74);
  backdrop-filter: blur(18px) saturate(1.15);
  border-bottom: 1px solid rgba(31, 29, 29, 0.08);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 5rem; }

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand img {
  display: block;
  width: auto;
  height: clamp(2rem, 3.6vw, 2.6rem);
  filter: drop-shadow(0 8px 18px rgba(24, 21, 20, 0.1));
}
.brand:hover { opacity: 0.9; }

.site-nav ul, .footer-nav { list-style: none; padding: 0; margin: 0; display: flex; gap: 1.25rem; }
.site-nav a, .footer-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.2rem;
  border-radius: 0;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}
.site-nav a:hover, .footer-nav a:hover { color: var(--accent); }
.site-nav a:active, .footer-nav a:active { color: #10110f; }
.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: rgba(188, 123, 89, 0.9);
  text-underline-offset: 0.45rem;
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(31, 29, 29, 0.1);
  border-radius: 999px;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
  font: inherit;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.85); }
.nav-toggle span { display: block; width: 1.5rem; height: 2px; background: var(--text); margin: 0.25rem 0; }

.hero-grid, .section-grid, .contact-layout, .shop-layout { display: grid; gap: var(--space-7); }
.hero-grid { align-items: center; grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1.16fr); min-height: min(78vh, 760px); gap: clamp(1.6rem, 4vw, 4.25rem); }
.hero.section {
  position: relative;
  padding-top: calc(var(--section-pad) + var(--space-2));
  padding-bottom: calc(var(--section-pad) - var(--space-2));
}
.hero.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.24), transparent 18%),
    radial-gradient(circle at 82% 74%, rgba(93, 123, 128, 0.14), transparent 20%);
  pointer-events: none;
}
.hero-copy h1 { font-size: clamp(2.6rem, 5vw, 4.75rem); line-height: 0.97; max-width: 9.4ch; }
.hero-copy > * { margin: 0; }
.hero-copy > * + * { margin-top: var(--space-4); }
.hero-copy .lede { max-width: 46ch; }
.hero-highlights {
  display: grid;
  gap: 0.45rem;
  margin-top: var(--space-4);
}
.hero-highlights p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(34, 31, 30, 0.72);
}
.hero-highlights strong {
  color: var(--text);
}

.button-row { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 18, 17, 0.2);
  background: rgba(24, 34, 29, 0.94);
  color: #fff;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 16px 32px rgba(22, 28, 25, 0.16); }
.button:active { transform: translateY(0); box-shadow: none; }
.button:focus-visible { box-shadow: var(--shadow-sm); }

.button-secondary { background: rgba(247, 242, 236, 0.55); color: var(--text); border-color: rgba(34, 31, 30, 0.16); }
.button-secondary:hover { border-color: rgba(43, 39, 35, 0.4); background: rgba(255, 255, 255, 0.72); transform: none; box-shadow: none; }
.button-secondary:active { background: rgba(255, 255, 255, 0.6); }

.slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: rgba(244, 239, 231, 0.72);
  padding: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}
.slider-button:hover { color: rgba(244, 239, 231, 0.96); transform: translateX(1px); }
.slider-button:active { opacity: 0.7; }

.slider,
.preview-card,
.post-card,
.filter-panel,
.feature-panel,
.cta-block {
  background: var(--surface);
  border: 1px solid rgba(30, 31, 36, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.card:not(.product-card) {
  background: var(--surface);
  border: 1px solid rgba(30, 31, 36, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.slider { padding: clamp(1.25rem, 2vw, 1.8rem); }
.hero-slider {
  position: relative;
  isolation: isolate;
  min-height: clamp(27rem, 52vw, 38rem);
  display: grid;
  align-items: end;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: 2.5rem 2.5rem 2.5rem 5rem;
  border: 0;
  background:
    linear-gradient(180deg, rgba(16, 18, 23, 0.1) 0%, rgba(16, 18, 23, 0.44) 48%, rgba(16, 18, 23, 0.9) 100%),
    linear-gradient(150deg, rgba(22, 25, 31, 0.72), rgba(45, 52, 62, 0.4) 40%, rgba(235, 223, 213, 0.08) 100%);
  color: #f7f1eb;
  box-shadow: 0 32px 72px rgba(20, 18, 19, 0.16);
}
.hero-slider--campaign {
  min-height: clamp(34rem, 58vw, 44rem);
  padding: clamp(1rem, 1.8vw, 1.4rem);
}
.hero-slider--campaign .slider-track {
  min-height: 100%;
}
.hero-look {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(16rem, 0.92fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: end;
  min-height: 100%;
}
.hero-look__visual {
  display: grid;
  place-items: center;
  min-height: clamp(26rem, 46vw, 36rem);
  padding: 0.7rem;
  border-radius: 1.9rem;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}
.hero-look__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero-look__copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 0.4rem 0 0.2rem;
}
.hero-look__copy > * {
  margin: 0;
}
.hero-look__copy > * + * {
  margin-top: 0.72rem;
}
.hero-look__copy h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  max-width: 9ch;
}
.hero-look__copy p:not(.hero-note):not(.slide-label) {
  max-width: 27ch;
}
.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(188, 123, 89, 0.14), transparent 16%),
    radial-gradient(circle at 84% 24%, rgba(138, 110, 199, 0.16), transparent 18%),
    linear-gradient(120deg, rgba(245, 236, 225, 0.08), transparent 36%),
    url("../assets/demo-images/3.png") no-repeat center 24% / min(88%, 28rem);
  opacity: 0.82;
  pointer-events: none;
  z-index: -2;
}
.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 14, 18, 0) 32%, rgba(13, 14, 18, 0.22) 58%, rgba(13, 14, 18, 0.72) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 20px);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}

.slider .slider-track { display: grid; }
.hero-slider .slider-track { min-height: 100%; align-content: end; }
.hero-slider .slide { max-width: 24rem; padding-top: clamp(9rem, 22vw, 14rem); }
.featured-slider .slide { max-width: none; }
.slide > * { margin: 0; }
.slide > * + * { margin-top: var(--space-3); }
.slide h2 { font-size: clamp(2rem, 3vw, 3rem); max-width: 10ch; }
.slide p { color: inherit; opacity: 0.78; }
.hero-note {
  max-width: 30ch;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.56;
}

.slide { display: none; }
.slide.is-active { display: block; }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(244, 239, 231, 0.12);
}
.slider-dots { display: flex; gap: 0.45rem; margin-inline: 0.25rem; }
.slider-dots button {
  width: 1.9rem;
  height: 1px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
  padding: 0;
  cursor: pointer;
  transition: background-color 160ms ease, opacity 160ms ease, transform 160ms ease;
}
.slider-dots button:hover { background: rgba(255, 255, 255, 0.52); transform: scaleX(1.08); }
.slider-dots button.is-active { background: rgba(255, 255, 255, 0.96); }

.featured-slider {
  padding: clamp(1rem, 2vw, 1.35rem);
  background:
    linear-gradient(180deg, rgba(248, 242, 235, 0.88), rgba(233, 225, 215, 0.82));
}

.featured-slider .slider-track {
  min-height: 0;
}

.featured-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(14rem, 0.78fr);
  gap: clamp(0.85rem, 1.8vw, 1.25rem);
  align-items: stretch;
}

.featured-slide__visual,
.featured-slide__copy {
  min-width: 0;
}

.featured-slide__visual {
  display: grid;
  place-items: center;
  min-height: clamp(15rem, 30vw, 20rem);
  padding: clamp(0.35rem, 0.9vw, 0.7rem);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.62), transparent 34%),
    linear-gradient(160deg, rgba(243, 236, 226, 0.96), rgba(219, 209, 198, 0.82));
  border: 1px solid rgba(24, 24, 26, 0.08);
  box-shadow: 0 18px 42px rgba(28, 24, 21, 0.08);
  overflow: hidden;
}

.featured-slide__visual img {
  width: 100%;
  height: 100%;
  max-height: clamp(14rem, 26vw, 18rem);
  object-fit: contain;
  object-position: center bottom;
}

.featured-slide__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(0.35rem, 1vw, 0.6rem) 0;
}

.featured-slide__copy > * {
  margin: 0;
}

.featured-slide__copy > * + * {
  margin-top: 0.6rem;
}

.featured-slide__copy h3 {
  font-size: clamp(1.55rem, 2.1vw, 2.1rem);
  line-height: 0.98;
  max-width: 10ch;
}

.featured-slide__copy p:not(.meta):not(.featured-slide__kicker) {
  color: rgba(34, 31, 30, 0.78);
  max-width: 34ch;
}

.featured-slide__kicker {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.featured-slider .slider-controls {
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(28, 24, 21, 0.1);
}

.featured-slider .slider-button {
  color: var(--text);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}

.featured-slider .slider-button:hover {
  color: var(--accent);
}

.featured-slider .slider-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.34rem;
  margin-inline: auto;
}

.featured-slider .slider-dots button {
  width: auto;
  height: auto;
  min-height: 1.9rem;
  padding: 0.24rem 0.68rem;
  border: 1px solid rgba(31, 29, 29, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  color: rgba(34, 31, 30, 0.72);
  font: inherit;
  font-size: 0.74rem;
  font-weight: var(--weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: none;
}

.featured-slider .slider-dots button:hover,
.featured-slider .slider-dots button:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  transform: translateY(-1px);
}

.featured-slider .slider-dots button.is-active {
  background: rgba(29, 51, 43, 0.1);
  border-color: rgba(29, 51, 43, 0.18);
  color: var(--accent);
}
.section-collections,
.section-stock,
.section-showcase,
.shop-showcase {
  position: relative;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}
.collection-card {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}
.collection-card--double {
  grid-column: span 2;
}
.collection-card__media {
  display: grid;
  min-height: clamp(18rem, 34vw, 26rem);
  place-items: center;
  padding: 0.85rem;
  border-radius: 1.8rem;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.36), transparent 34%),
    linear-gradient(160deg, rgba(244, 238, 230, 0.94), rgba(219, 207, 197, 0.82));
  border: 1px solid rgba(24, 24, 26, 0.08);
  overflow: hidden;
}
.collection-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.collection-card__media--stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}
.collection-card__copy > * {
  margin: 0;
}
.collection-card__copy > * + * {
  margin-top: 0.55rem;
}
.collection-card__copy h3 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}
.showcase-band {
  background:
    linear-gradient(180deg, rgba(247, 241, 235, 0.36), rgba(233, 223, 214, 0.26));
  border: 1px solid rgba(32, 28, 31, 0.08);
  border-radius: 2rem;
  padding: clamp(0.9rem, 1.8vw, 1.3rem);
}
.showcase-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(16rem, 0.88fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
}
.showcase-slide__image {
  min-height: clamp(22rem, 42vw, 30rem);
  display: grid;
  place-items: center;
  padding: 0.85rem;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.44), transparent 34%),
    linear-gradient(160deg, rgba(243, 234, 229, 0.94), rgba(214, 203, 197, 0.8));
}
.showcase-slide__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.showcase-slide__copy > * {
  margin: 0;
}
.showcase-slide__copy > * + * {
  margin-top: 0.75rem;
}
.showcase-slide__copy h3 {
  font-size: clamp(1.85rem, 2.9vw, 2.8rem);
  max-width: 11ch;
}
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-5);
}
.inventory-grid--shop {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-card--inventory {
  display: grid;
  gap: 0.7rem;
}
.product-card--inventory .card-media {
  aspect-ratio: 0.92 / 1.08;
  min-height: 0;
}
.product-card--inventory .card-body {
  padding: 0.25rem 0 0;
}
.product-card--inventory .card-body > * + * {
  margin-top: 0.35rem;
}
.product-card--inventory h3 {
  font-size: 1.18rem;
}
.shop-showcase .showcase-band {
  background:
    linear-gradient(180deg, rgba(234, 223, 217, 0.38), rgba(209, 199, 190, 0.34));
}
.shop-floor .filter-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.shop-floor .filter-list li {
  padding: 0.32rem 0.7rem;
  border: 1px solid rgba(31, 29, 29, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}
.shop-floor .filter-panel {
  position: sticky;
  top: 6rem;
  align-self: start;
}
.site-credit {
  font-size: 0.84rem;
  color: var(--muted);
}
.site-credit a {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

@media (min-width: 901px) {
  .hero-slider .slider-controls {
    margin-top: 0.95rem;
  }
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(28, 24, 21, 0.1);
}
.section-heading > div > * { margin: 0; }
.section-heading > div > * + * { margin-top: var(--space-2); }

.page-hero .narrow > * { margin: 0; }
.page-hero .narrow > * + * { margin-top: var(--space-3); }
.section-grid > div > * { margin: 0; }
.section-grid > div > * + * { margin-top: var(--space-3); }

.card-grid { display: grid; gap: var(--space-6); }
.card-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card-body, .preview-card, .post-card, .filter-panel { padding: var(--space-6); }
.card-body { display: grid; gap: var(--space-2); }
.card-body > * { margin: 0; }
.preview-card > *, .post-card > *, .feature-panel > *, .filter-panel > * { margin: 0; }
.preview-card > * + *, .post-card > * + *, .feature-panel > * + *, .filter-panel > * + * { margin-top: var(--space-3); }

.product-card {
  position: relative;
  display: grid;
  gap: var(--space-4);
}
.product-card h3 { font-weight: var(--weight-semibold); letter-spacing: -0.01em; font-size: 1.35rem; }
.product-card p:not(.meta) { color: rgba(34, 31, 30, 0.78); max-width: 40ch; }
.product-card .meta { margin-top: var(--space-2); font-weight: var(--weight-medium); color: var(--text); }

.post-card { box-shadow: var(--shadow-sm); }
.post-card:hover { box-shadow: var(--shadow); }
.post-card .meta { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }
.post-card h2 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); line-height: 1.18; }
.post-card p:not(.meta) { color: var(--muted); line-height: 1.75; max-width: 72ch; }

.card { transition: transform 160ms ease, box-shadow 160ms ease; }
.card-media,
.post-card,
.preview-card,
.feature-panel,
.filter-panel { transition: transform 180ms ease, box-shadow 180ms ease; }
@media (hover: hover) {
  .product-card:hover .card-media,
  .post-card:hover,
  .preview-card:hover,
  .feature-panel:hover,
  .filter-panel:hover { transform: translateY(-2px); }
}

.card-media, .media-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 0.9 / 1.08;
  border: 1px solid rgba(24, 24, 26, 0.08);
  background:
    linear-gradient(160deg, rgba(243, 236, 226, 0.94), rgba(215, 205, 194, 0.76)),
    #f2eee7;
  color: var(--muted);
  border-radius: 1.25rem;
  box-shadow: 0 18px 42px rgba(28, 24, 21, 0.08);
  overflow: hidden;
}
.media-placeholder {
  background-image:
    linear-gradient(180deg, rgba(97, 91, 87, 0.02), rgba(16, 17, 19, 0.12)),
    url("../assets/demo-images/1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover, min(72%, 240px);
  color: transparent;
  user-select: none;
}
.product-card:nth-child(odd) .card-media { transform: rotate(-1.2deg); }
.product-card:nth-child(even) .card-media { transform: rotate(1.15deg); }
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-split, .two-column-preview { display: grid; gap: var(--space-5); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-panel, .cta-block { padding: var(--space-6); }
.feature-panel {
  position: relative;
  min-height: 16rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(247, 241, 233, 0.28), rgba(247, 241, 233, 0.78)),
    linear-gradient(135deg, rgba(77, 91, 93, 0.12), transparent 48%);
}
.feature-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(32, 30, 29, 0.08);
  border-radius: 1.35rem;
  pointer-events: none;
}
.cta-block { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cta-block > div > * { margin: 0; }
.cta-block > div > * + * { margin-top: var(--space-2); }

.page-hero {
  padding: calc(var(--page-hero-pad) + var(--space-2)) 0 var(--space-6);
  background:
    radial-gradient(circle at 14% 40%, rgba(206, 152, 121, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(246, 239, 229, 0.38), transparent);
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 0.98; }

.shop-layout { grid-template-columns: 280px 1fr; }
.filter-panel h2 { font-size: 1.1rem; }
.filter-list { padding-left: 1rem; margin: 0; }
.filter-list li { padding: 0.35rem 0; }
.journal-layout { display: grid; gap: var(--space-5); max-width: 880px; margin-inline: auto; }
.contact-layout { grid-template-columns: 0.9fr 1.1fr; }

.section-intro .section-grid,
.section-manifesto .section-grid { align-items: start; }

.section-featured .container,
.section-editorial .container,
.shop-floor .container { position: relative; }

.section-story .section-heading,
.shop-floor .section-heading { margin-bottom: var(--space-7); }

.preview-card,
.post-card {
  background:
    linear-gradient(180deg, rgba(249, 243, 237, 0.82), rgba(234, 227, 218, 0.78));
}

.cta-block {
  background:
    linear-gradient(135deg, rgba(22, 27, 31, 0.92), rgba(53, 58, 63, 0.82) 65%, rgba(118, 81, 69, 0.72));
  color: #f7f1eb;
}
.cta-block .eyebrow,
.cta-block .lede,
.cta-block p { color: rgba(247, 241, 235, 0.74); }

.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(25, 23, 21, 0.1);
  background: rgba(255, 255, 255, 0.52);
  color: var(--text);
  font: inherit;
}

.contact-form { display: grid; gap: 1rem; }
.contact-form label { display: grid; gap: 0.4rem; }
.contact-form input:focus-visible, .contact-form textarea:focus-visible, .contact-form select:focus-visible { outline-color: rgba(43, 39, 35, 0.35); }

.site-footer {
  padding: var(--space-7) 0 var(--space-8);
  border-top: 1px solid rgba(30, 24, 21, 0.08);
  background: linear-gradient(180deg, rgba(224, 215, 204, 0.56), rgba(213, 203, 192, 0.84));
}
.footer-grid { display: flex; align-items: start; justify-content: space-between; gap: 2rem; }
.footer-nav { flex-wrap: wrap; gap: 0.75rem; }
.site-footer p { color: var(--muted); max-width: 52ch; }
.brand-footer { display: inline-flex; font-family: var(--font-display); font-size: 1.4rem; }
.site-footer nav { margin-top: var(--space-2); }
.site-footer .footer-nav a { padding: 0.4rem 0.45rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .hero-grid, .section-grid, .shop-layout, .contact-layout, .feature-split, .two-column-preview, .card-grid-3 { grid-template-columns: 1fr; }
  .section-heading, .cta-block, .footer-grid { align-items: start; flex-direction: column; }
  .hero-grid {
    min-height: auto;
    gap: 1.35rem;
  }
  .hero-copy {
    order: 2;
  }
  .hero-slider {
    order: 1;
  }
  .hero-look,
  .showcase-slide,
  .collection-grid,
  .inventory-grid,
  .inventory-grid--shop {
    grid-template-columns: 1fr;
  }
  .collection-card--double {
    grid-column: auto;
  }
  .hero-slider--campaign {
    min-height: 28rem;
  }
  .hero-look__visual,
  .showcase-slide__image {
    min-height: 18rem;
  }
  .shop-floor .filter-panel {
    position: static;
  }
  .hero.section {
    padding-top: calc(var(--section-pad) - var(--space-2));
    padding-bottom: var(--space-5);
  }
  .hero-copy > * + * { margin-top: var(--space-3); }
  .hero-copy .lede {
    font-size: 0.98rem;
    max-width: 44ch;
  }
  .button-row {
    margin-top: var(--space-4);
    gap: 0.55rem;
  }
  .hero-copy h1 {
    max-width: 10.5ch;
    margin-inline: 0 auto;
  }
  .hero-highlights {
    display: none;
  }
  .section-intro {
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
  }
  .section-featured {
    padding-top: var(--space-6);
  }
  .section-featured .section-heading {
    margin-bottom: var(--space-4);
  }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(231, 223, 213, 0.96);
    border-bottom: 1px solid rgba(32, 30, 29, 0.08);
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; padding: var(--space-4) var(--gutter); gap: 0.5rem; }
  .site-nav a { padding: 0.75rem 0.6rem; font-size: 0.92rem; }
  .nav-toggle { display: inline-block; }
  .featured-slide {
    grid-template-columns: 1fr;
  }
  .featured-slide__copy {
    padding: 0.2rem 0 0;
  }
}

@media (max-width: 520px) {
  :root { --gutter: 0.9rem; }
  .brand img { height: 1.9rem; }
  .slider { padding: var(--space-5); }
  .hero.section {
    padding-top: var(--space-6);
    padding-bottom: var(--space-4);
  }
  .hero-grid {
    gap: 0.8rem;
  }
  .hero-copy h1 {
    font-size: clamp(1.65rem, 7.8vw, 2.05rem);
    line-height: 0.98;
    max-width: 11ch;
  }
  .hero-copy .lede {
    font-size: 0.88rem;
    max-width: 30ch;
  }
  .hero-copy > * + * {
    margin-top: 0.7rem;
  }
  .button-row {
    margin-top: 0.75rem;
    flex-direction: column;
    align-items: stretch;
  }
  .button {
    padding: 0.78rem 1rem;
    font-size: 0.74rem;
    width: 100%;
  }
  .hero-slider {
    min-height: 15rem;
    padding: 0.7rem;
    border-radius: 1.4rem 1.4rem 1.4rem 2.2rem;
  }
  .hero-slider--campaign {
    min-height: 21rem;
  }
  .hero-look__visual {
    min-height: 13rem;
    padding: 0.35rem;
  }
  .hero-look__copy h2 {
    font-size: clamp(1.25rem, 5.8vw, 1.65rem);
  }
  .hero-slider .slide {
    padding-top: 5.5rem;
    max-width: 18rem;
  }
  .hero-slider::before { background-size: auto, auto, auto, min(92%, 18rem); background-position: center, center, center, center 18%; }
  .slide h2 {
    font-size: clamp(1.55rem, 7.2vw, 2.1rem);
  }
  .hero-note {
    font-size: 0.72rem;
  }
  .section-featured {
    padding-top: var(--space-4);
  }
  .featured-slider {
    padding: 0.65rem;
  }
  .featured-slide__copy h3 {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
  }
  .section-intro {
    padding-top: var(--space-5);
    padding-bottom: var(--space-5);
  }
  .section-intro h2 {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }
  .section-intro p {
    font-size: 0.95rem;
  }
  .product-card .card-media { transform: none; }
  .card-body, .preview-card, .post-card, .filter-panel, .feature-panel, .cta-block { padding: var(--space-5); }
  .slider-controls { flex-wrap: wrap; justify-content: flex-start; }
  .featured-slide__visual {
    min-height: 12rem;
    padding: 0.4rem;
  }
  .featured-slide__visual img {
    max-height: 11.5rem;
  }
  .collection-card__media,
  .showcase-slide__image {
    min-height: 12rem;
    padding: 0.45rem;
  }
  .showcase-band {
    padding: 0.75rem;
  }
  .showcase-slide__copy h3,
  .collection-card__copy h3 {
    font-size: clamp(1.35rem, 6.6vw, 1.8rem);
  }
  .inventory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4);
  }
  .shop-floor .filter-list li {
    font-size: 0.76rem;
    padding: 0.28rem 0.58rem;
  }
  .featured-slider .slider-controls {
    justify-content: flex-start;
  }
  .featured-slider .slider-dots {
    justify-content: flex-start;
    margin-inline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .card { transition: none; }
}
