/* Fonts */
@font-face {
  font-family: "Outfit";
  src: url("./assets/fonts/outfit-variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Caveat";
  src: url("./assets/fonts/caveat-variable.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* Design Tokens */
:root {
  --bg: #fdf4f2;
  --bg-strong: #f8e5e4;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #fffaf8;
  --text: #26212a;
  --muted: #6c6370;
  --brand: #eb1745;
  --brand-deep: #c90f39;
  --brand-soft: #f4c9cc;
  --accent-peach: #ffcbbd;
  --accent-lilac: #f0c8cf;
  --accent-coral: #ff9e7a;
  --accent-gold: #f5c166;
  --line: rgba(194, 80, 101, 0.16);
  --shadow: 0 28px 80px rgba(163, 76, 93, 0.12);
  --shadow-soft: 0 16px 36px rgba(163, 76, 93, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --font-body: "Outfit", "Avenir Next", "Nunito", "Helvetica Neue", "Segoe UI", sans-serif;
  --font-script: "Caveat", cursive;
  --font-display: "Outfit", "Avenir Next", "Nunito", "Trebuchet MS", sans-serif;
}

/* Base Reset */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background-color: #fff8f8;
  background-image: radial-gradient(rgba(231, 188, 185, 0.35) 1px, transparent 1px);
  background-size: 32px 32px;
  min-height: 100vh;
}

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

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

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

/* Shared Layout Primitives */
.page-shell {
  overflow: clip;
}

.page-shell.page-home {
  overflow-x: visible;
  overflow-y: visible;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(235, 23, 69, 0.05);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  position: relative;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 900;
  color: var(--brand);
}

.brand-mark-logo,
.page-home .brand-mark-logo,
.page-collection .brand-mark-logo,
.page-about .brand-mark-logo,
.page-product .brand-mark-logo,
.page-404 .brand-mark-logo {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(255, 246, 245, 0.7);
}

.nav-links a {
  padding: 12px 20px;
  color: var(--muted);
  font-weight: 700;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
  background: rgba(235, 23, 69, 0.08);
  transform: translateY(-1px);
}

.nav-actions,
.care-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(235, 23, 69, 0.1);
  color: var(--brand);
}

.button,
.button-ghost,
.chip,
.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button {
  gap: 10px;
  padding: 14px 24px;
  border: 0;
  background: linear-gradient(135deg, var(--brand), #ff4c6d);
  color: white;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(235, 23, 69, 0.24);
}

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

.button-ghost {
  padding: 13px 22px;
  border: 2px solid rgba(235, 23, 69, 0.28);
  color: var(--brand);
  background: rgba(255, 255, 255, 0.55);
  font-weight: 800;
}

.button.full {
  width: 100%;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--brand);
  margin-bottom: 12px;
  font-style: normal;
  font-variant-ligatures: none;
  text-transform: none;
  font-synthesis: none;
  transform: none;
  -webkit-font-smoothing: auto;
  text-rendering: auto;
}

.section {
  padding: 32px 0 92px;
}

.hero {
  padding: 32px 0 36px;
}

.hero-panel,
.story-banner,
.atelier-panel,
.glass-card,
.footer-wrap {
  background: linear-gradient(135deg, rgba(255, 240, 236, 0.92), rgba(255, 245, 248, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  padding: 40px;
  overflow: hidden;
}

.hero-panel::before,
.story-banner::before,
.atelier-panel::before {
  content: "";
  position: absolute;
  inset: auto auto -64px -44px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 192, 183, 0.5) 0%, rgba(255, 192, 183, 0) 70%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
}

h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.08;
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-copy p {
  max-width: 540px;
  margin: 18px 0 28px;
}

.hero-actions,
.stack-row,
.footer-meta,
.chip-row,
.story-socials,
.product-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.fabric-showcase {
  position: relative;
  min-height: 520px;
}

.floating-card {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.floating-card.main {
  inset: 18px 120px 110px 14px;
}

.floating-card.side {
  width: 220px;
  right: 12px;
  bottom: 28px;
}

.floating-note {
  position: absolute;
  right: 42px;
  top: 26px;
  max-width: 220px;
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.floating-note strong {
  display: block;
  font-size: 0.82rem;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.floating-note span {
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.45;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.metric {
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.62);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.metric strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 2px;
}

.metric span {
  font-size: 0.95rem;
  color: var(--muted);
}

.section-heading {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 34px;
}

.section-heading p {
  margin-top: 12px;
}

.grid-products {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 22px;
}

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

.product-card {
  display: block;
  position: relative;
  padding: 14px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(235, 23, 69, 0.18);
}

.card-media {
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 203, 189, 0.72), rgba(215, 198, 255, 0.72));
}

.card-media.wide {
  aspect-ratio: 1.24 / 1;
}

.card-copy {
  padding: 16px 6px 8px;
}

.card-copy h3 {
  font-size: 1.55rem;
  margin-bottom: 6px;
}

.card-copy p {
  margin-bottom: 12px;
}

.price {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--brand);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.status-tag,
.pill-tag,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.status-tag {
  position: absolute;
  left: 28px;
  top: 28px;
  padding: 9px 12px;
  font-size: 0.77rem;
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand);
}

.pill-tag {
  padding: 7px 10px;
  background: rgba(235, 23, 69, 0.1);
  color: var(--brand);
  font-size: 0.74rem;
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.atelier-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  padding: 26px;
  min-height: 380px;
  overflow: hidden;
}

.atelier-panel img,
.story-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.atelier-copy,
.story-banner-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 18px;
}

.atelier-copy p,
.story-banner-copy p {
  margin: 16px 0 22px;
}

.story-banner {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  padding: 24px;
  overflow: hidden;
}

.story-banner-copy {
  padding: 20px;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
}

.sidebar-title {
  position: sticky;
  top: 120px;
}

.sidebar-title h2 {
  color: var(--brand);
}

.prose-block {
  display: grid;
  gap: 22px;
}

.prose-block strong {
  color: var(--text);
}

.social-button {
  width: 104px;
  height: 104px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--brand), #ff4663);
  color: white;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 20px 30px rgba(235, 23, 69, 0.18);
}

.footer {
  padding: 12px 0 28px;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 28px 32px;
}

.footer-copy h3,
.footer-side h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.footer-copy p,
.footer-side p {
  font-size: 0.95rem;
}

.footer-side {
  justify-self: end;
  max-width: 280px;
  text-align: left;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--brand);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.shop-hero {
  padding: 44px 0 24px;
  text-align: center;
}

.shop-hero h1 {
  color: var(--brand);
}

.shop-hero p {
  max-width: 720px;
  margin: 18px auto 0;
}

.chip-row.center {
  justify-content: center;
}

.filter-chip {
  padding: 13px 24px;
  background: rgba(244, 201, 204, 0.72);
  color: #a25f69;
  border: 0;
  cursor: pointer;
}

.filter-chip.active {
  background: linear-gradient(135deg, var(--brand), #ff496d);
  color: white;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.product-tile {
  position: relative;
  transition: transform 220ms ease, opacity 220ms ease;
}

.product-tile.hidden {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  position: absolute;
}

.tile-media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.sold-overlay {
  position: absolute;
  inset: 0;
  background: rgba(76, 56, 62, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 900;
}

.tile-copy {
  text-align: center;
  padding: 18px 8px 0;
}

.tile-copy h3 {
  font-size: 1.7rem;
}

.tile-copy p {
  margin: 6px 0 12px;
}

.story-intro {
  padding: 38px 0 24px;
}

.story-intro-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 42px;
  align-items: start;
}

.story-intro h1,
.story-side-title {
  color: var(--brand);
}

.story-manifesto {
  display: grid;
  gap: 24px;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1.22;
  color: var(--text);
  font-family: var(--font-display);
}

.story-content-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 42px;
  padding-top: 18px;
}

.story-main-column {
  display: grid;
  gap: 26px;
}

.image-frame {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.quote-card {
  padding: 26px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.quote-card p {
  font-size: 1.1rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 34px;
  align-items: start;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.product-gallery {
  position: sticky;
  top: 108px;
}

.gallery-frame {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.gallery-thumbs button {
  width: 68px;
  height: 68px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.gallery-thumbs button.active {
  border-color: var(--brand);
}

.product-panel {
  padding: 12px 0;
}

.product-panel p {
  margin-top: 8px;
}

.option-row {
  display: flex;
  gap: 14px;
  margin: 18px 0 22px;
}

.option-card {
  width: 104px;
  border: 2px solid transparent;
  border-radius: 18px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.54);
  text-align: center;
  cursor: pointer;
}

.option-card.active {
  border-color: var(--brand);
}

.option-swatch {
  height: 58px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.note-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
}

.list-card {
  padding: 26px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
}

.list-card ul {
  padding-left: 20px;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
  line-height: 1.7;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.care-item {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
}

.care-item strong {
  display: block;
  margin-bottom: 6px;
}

.icon-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-badge {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex: 0 0 auto;
}

.icon-badge img {
  width: 20px;
  height: 20px;
  color: currentColor;
}

.icon-badge-blue {
  background: #b1ebff;
  color: #040085;
}

.icon-badge-rose {
  background: #ffd8d6;
  color: #480002;
}

.care-title img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: #000000;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.faq-item {
  border-bottom: 1px solid rgba(38, 33, 42, 0.12);
}

.faq-item button {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease, padding-bottom 220ms ease;
  padding-bottom: 0;
}

.faq-item.open p {
  max-height: 220px;
  padding-bottom: 18px;
}

.symbol {
  font-size: 1.4rem;
  color: var(--muted);
}

.spacer-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(235, 23, 69, 0.18), transparent);
  margin: 18px 0 52px;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 720ms ease forwards;
}

.fade-up.delay-1 { animation-delay: 100ms; }
.fade-up.delay-2 { animation-delay: 200ms; }
.fade-up.delay-3 { animation-delay: 300ms; }
.fade-up.delay-4 { animation-delay: 400ms; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero-panel,
  .atelier-panel,
  .story-banner,
  .product-layout,
  .note-row,
  .split-layout,
  .story-intro-grid,
  .story-content-grid,
  .grid-products,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .recent-grid,
  .collection-grid,
  .grid-products.compact,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-gallery {
    position: static;
  }

  .footer-side {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .nav-bar {
    min-height: 78px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 250, 248, 0.98);
    box-shadow: var(--shadow);
  }

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

  .nav-actions .button-ghost {
    display: none;
  }

  .hero-panel,
  .atelier-panel,
  .story-banner,
  .list-card,
  .quote-card {
    padding: 20px;
    border-radius: 28px;
  }

  .fabric-showcase {
    min-height: 420px;
  }

  .floating-card.main {
    inset: 22px 58px 122px 0;
  }

  .floating-card.side {
    width: 156px;
    right: 0;
    bottom: 16px;
  }

  .floating-note {
    right: 14px;
    top: 12px;
    max-width: 180px;
  }

  .hero-metrics,
  .recent-grid,
  .collection-grid,
  .grid-products.compact,
  .faq-grid,
  .care-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-wrap {
    padding: 24px;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .shop-hero {
    text-align: left;
  }

  .chip-row.center {
    justify-content: flex-start;
  }

  .option-row {
    flex-wrap: wrap;
  }

  .social-button {
    width: 92px;
    height: 92px;
  }
}

/* Compatibility Alias Layer
   Keep legacy structural classes working while semantic names take precedence. */
.draft-mode {
  background: #fdf1f1;
}

.site-nav-frame,
.nav-bar-simple {
  min-height: 86px;
}

.site-nav-links,
.nav-links-simple {
  gap: 24px;
  padding: 0;
  border: 0;
  background: transparent;
}

.site-nav-links a,
.nav-links-simple a {
  padding: 8px 10px;
  background: transparent;
}

.contact-pill {
  padding: 12px 22px;
  box-shadow: none;
}

.hero-simple {
  padding: 0 0 32px;
}

.hero-banner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
  background: #f7d8d6;
  padding: 40px 34px;
}

.hero-banner-media img,
.home-card-image img,
.tile-media img,
.story-owner-photo img,
.atelier-banner img,
.gallery-frame img,
.page-home .home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-top: 6px;
}

.hero-banner-copy p {
  max-width: 430px;
  margin: 16px 0 20px;
  color: var(--text);
}

.small-button {
  padding: 10px 18px;
  font-size: 0.9rem;
  box-shadow: none;
}

.section-tight {
  padding: 20px 0 72px;
}

.section-heading-core,
.section-heading-simple {
  text-align: center;
  max-width: 760px;
}

.section-heading-core h2,
.section-heading-simple h2 {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
}

.section-heading-core p,
.section-heading-simple p {
  margin-top: 8px;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 20px;
  align-items: start;
}

.home-feature-right,
.home-feature-small-grid {
  display: grid;
  gap: 20px;
}

.home-feature-small-grid {
  grid-template-columns: 1fr 1fr;
}

.home-feature-large,
.home-feature-wide,
.home-feature-small,
.home-recent-card {
  display: block;
}

.home-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #f4d5d1;
}

.square-image {
  aspect-ratio: 1 / 1;
}

.wide-image {
  aspect-ratio: 1.72 / 1;
}

.home-feature-grid h3,
.home-recent-grid h3,
.collection-grid-simple .tile-copy h3 {
  font-size: 1.18rem;
  margin: 12px 0 4px;
}

.home-feature-grid p,
.home-recent-grid p,
.collection-grid-simple .tile-copy p {
  font-size: 0.95rem;
  color: #58505c;
}

.corner-badge {
  position: absolute;
  z-index: 1;
  margin: 12px;
  padding: 8px 10px;
  background: var(--brand);
  color: #fff;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
}

.home-feature-large .home-card-image {
  position: relative;
}

.home-recent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.atelier-banner {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.atelier-banner img {
  aspect-ratio: 2.1 / 1;
}

.atelier-banner-copy {
  position: absolute;
  left: 54px;
  top: 48px;
  max-width: 330px;
  color: #fff;
}

.atelier-banner-copy h2,
.atelier-banner-copy p {
  color: #fff;
}

.atelier-banner-copy p {
  margin: 16px 0 18px;
}

.section-story-home {
  padding: 54px 0 88px;
}

.narrative-center,
.story-center-block {
  max-width: 780px;
}

.narrative-center p,
.story-center-block p {
  color: var(--text);
}

.site-footer-layout,
.footer-wrap-simple {
  background: #fff;
  box-shadow: none;
  border-radius: 28px 28px 0 0;
}

.collection-hero-simple {
  padding: 44px 0 10px;
}

.collection-hero-simple h1 {
  color: var(--brand);
  font-size: clamp(3rem, 4vw, 4rem);
}

.collection-hero-simple p {
  max-width: 640px;
  margin: 18px auto 34px;
}

.collection-grid-simple {
  gap: 40px 34px;
}

.collection-grid-simple .tile-copy {
  padding-top: 12px;
}

.outline-tag {
  background: #fff;
  border: 1px solid var(--brand);
  color: var(--brand);
}

.collection-grid-simple .price {
  margin-top: 16px;
  font-size: 1.15rem;
}

.center-cta {
  text-align: center;
  margin-top: 36px;
}

.ghost-button,
.simple-ghost {
  min-width: 220px;
  background: transparent;
}

.collection-bottom-note {
  padding-top: 0;
}

.story-page-simple {
  padding: 38px 0 20px;
}

.story-page-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 72px;
}

.story-left-labels {
  display: grid;
  align-content: start;
  gap: 120px;
}

.story-left-labels h1 {
  color: var(--brand);
  font-size: clamp(2.8rem, 4vw, 4rem);
}

.story-top-lines p,
.story-article p {
  color: var(--text);
}

.story-top-lines {
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.6;
}

.story-owner-photo {
  margin: 38px 0 30px;
  max-width: 520px;
}

.story-article {
  max-width: 760px;
}

.story-article p {
  margin-top: 18px;
}

.story-page-grid-contact {
  align-items: center;
}

.social-links-inline,
.simple-socials {
  justify-content: flex-start;
}

.product-page-simple {
  padding-top: 12px;
}

.product-breadcrumbs,
.simple-breadcrumbs {
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.product-layout-simple {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
}

.product-gallery-frame,
.simple-frame {
  box-shadow: none;
  border-radius: 20px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  opacity: 0.65;
  cursor: pointer;
}

.dot.active {
  width: 22px;
  border-radius: 999px;
  opacity: 1;
}

.product-panel-simple h2 {
  margin-top: 16px;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
}

.maker-note-block {
  margin: 26px 0 0;
}

.product-price {
  font-size: 1.55rem;
  margin: 28px 0;
}

.product-option-list .option-card,
.simple-options .option-card {
  width: 64px;
  padding: 0;
  border-radius: 10px;
  background: transparent;
}

.product-option-list .option-swatch,
.simple-options .option-swatch {
  background: #d8d8d8;
  height: 64px;
  border-radius: 10px;
  margin-bottom: 8px;
}

.product-option-list .option-card.active .option-swatch,
.simple-options .option-card.active .option-swatch {
  border: 2px solid var(--brand);
}

.tiny-red-note {
  color: var(--brand);
  font-size: 0.92rem;
  margin-top: 10px;
}

.product-info-simple {
  margin-top: 34px;
}

.note-row-simple {
  grid-template-columns: 1fr 1fr;
}

.flat-card {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.section-tight h2,
.text-block-simple h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.simple-bullets {
  padding-left: 28px;
  line-height: 1.7;
  color: var(--muted);
}

.simple-bullets li + li {
  margin-top: 14px;
}

.simple-faq-grid,
.faq-columns {
  margin-top: 18px;
}

@media (max-width: 1080px) {
  .hero-banner,
  .home-feature-grid,
  .story-page-grid,
  .product-layout-simple,
  .note-row-simple {
    grid-template-columns: 1fr;
  }

  .home-recent-grid,
  .home-feature-small-grid,
  .collection-grid-simple {
    grid-template-columns: repeat(2, 1fr);
  }

  .atelier-banner-copy {
    position: static;
    padding: 24px;
    background: #1c1717;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .hero-banner {
    padding: 18px;
    gap: 20px;
  }

  .home-recent-grid,
  .home-feature-small-grid,
  .collection-grid-simple {
    grid-template-columns: 1fr;
  }

  .story-left-labels {
    gap: 28px;
  }
}

/* Home Page Semantic Layer
   Home-specific semantic selectors and shared page-shell refinements. */
.page-home {
  font-family: "Outfit", var(--font-body);
  background: #fff4f4;
}

.page-home .eyebrow {
  font-family: "Caveat", cursive;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  color: #db012c;
  margin-bottom: 0;
}

.page-home .brand-mark,
.page-home .nav-links a,
.page-home .button,
.page-home h1,
.page-home h2,
.page-home h3,
.page-home h4,
.page-home p {
  font-family: "Outfit", var(--font-body);
}

.page-home .nav-bar-simple,
.page-collection .nav-bar-simple,
.page-about .nav-bar-simple,
.page-product .nav-bar-simple,
.page-404 .nav-bar-simple {
  width: min(100%, 1440px);
  min-height: 100px;
  padding: 10px 80px;
  background: rgba(255, 255, 255, 0.9);
}

.page-home .brand-mark,
.page-collection .brand-mark,
.page-about .brand-mark,
.page-product .brand-mark,
.page-404 .brand-mark {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  color: #db012c;
}

.page-home .nav-links-simple {
  gap: 60px;
}

.page-home .nav-links-simple a,
.page-collection .nav-links-simple a,
.page-about .nav-links-simple a,
.page-product .nav-links-simple a,
.page-404 .nav-links-simple a {
  padding: 0;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: #757575;
}

.page-home .nav-links-simple a.active,
.page-home .nav-links-simple a:hover,
.page-collection .nav-links-simple a.active,
.page-about .nav-links-simple a.active,
.page-product .nav-links-simple a.active,
.page-404 .nav-links-simple a.active,
.page-collection .nav-links-simple a:hover,
.page-about .nav-links-simple a:hover,
.page-product .nav-links-simple a:hover,
.page-404 .nav-links-simple a:hover {
  color: #db012c;
  background: transparent;
  transform: none;
}

.page-home .contact-pill,
.page-collection .contact-pill,
.page-about .contact-pill,
.page-product .contact-pill,
.page-404 .contact-pill {
  min-width: 113px;
  min-height: 40px;
  padding: 8px 20px;
  background: #db012c;
  box-shadow: none;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}

.page-home .hero-simple {
  padding: 0 0 71px;
}

.page-home .home-hero-layout {
  width: min(100%, 1440px);
  min-height: 600px;
  grid-template-columns: minmax(520px, 629px) 1fr;
  gap: 0;
  padding: 0;
  background: #f3d1ce;
  border-radius: 0;
}

.page-home .home-hero-media {
  height: 600px;
}

.page-home .home-hero-copy {
  padding: 154px 80px 0 78px;
}

.page-home .home-hero-copy h1 {
  font-size: 40px;
  line-height: 40px;
  font-weight: 600;
  color: #000;
  margin-top: 7px;
}

.page-home .home-hero-copy p {
  width: 449px;
  max-width: 100%;
  margin: 26px 0 94px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #000;
}

.page-home .small-button {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #db012c;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  box-shadow: none;
}

.page-home .home-content-section {
  padding-top: 0;
}

.page-home .section-heading-simple h2 {
  font-size: 48px;
  line-height: 40px;
  font-weight: 600;
  color: #212121;
}

.page-home .section-heading-simple p {
  margin-top: 16px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: #757575;
}

.page-home .featured-products-grid {
  grid-template-columns: minmax(420px, 629px) minmax(420px, 628px);
  gap: 24px;
}

.page-home .featured-products-stack {
  gap: 24px;
}

.page-home .featured-products-row {
  gap: 28px;
}

.page-home .featured-products-grid .square-image {
  aspect-ratio: auto;
  height: 629px;
  border-radius: 20px;
}

.page-home .featured-products-grid .wide-image {
  aspect-ratio: auto;
  height: 248px;
  border-radius: 20px;
}

.page-home .featured-products-grid .home-feature-small .square-image {
  height: 300px;
}

.page-home .featured-product-card h3,
.page-home .recent-products-grid h3 {
  margin: 10px 0 0;
  font-size: 22px;
  line-height: 40px;
  font-weight: 600;
  color: #212121;
}

.page-home .featured-product-card p,
.page-home .recent-products-grid p {
  margin-top: -4px;
  font-size: 18px;
  line-height: 23px;
  font-weight: 500;
  color: #757575;
}

.page-home .recent-products-grid h3,
.page-home .recent-products-grid p {
  text-align: center;
}

.page-home .corner-badge {
  width: auto;
  height: auto;
  margin: 24px 0 0 28px;
  padding: 7px 10px;
  border-radius: 10px;
  background: #db012c;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 300;
  text-align: center;
  white-space: nowrap;
}

.page-home .recent-products-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0 0 8px;
}

.page-home .recent-products-grid .home-recent-card {
  flex: 0 0 330px;
}

.page-home .recent-products-grid .square-image {
  aspect-ratio: 3 / 4;
  height: auto;
  border-radius: 20px;
}

.page-home .custom-order-banner {
  border-radius: 40px;
}

.page-home .custom-order-banner img {
  aspect-ratio: 1280 / 513;
}

.page-home .atelier-banner-copy {
  left: 99px;
  top: 89px;
  max-width: 457px;
}

.page-home .atelier-banner-copy h2 {
  max-width: 371px;
  margin-top: 0;
  font-size: 40px;
  line-height: 40px;
  font-weight: 600;
  color: #fff;
}

.page-home .atelier-banner-copy p {
  margin: 37px 0 33px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #fff;
}

.page-home .home-story-section {
  padding-top: 104px;
  padding-bottom: 120px;
}

.page-home .story-center-block,
.page-home .narrative-center {
  max-width: 957px;
}

.page-home .story-center-block h2,
.page-home .narrative-center h2 {
  font-size: 48px;
  line-height: 40px;
  font-weight: 600;
  color: #000;
}

.page-home .story-center-block p,
.page-home .narrative-center p {
  margin-top: 18px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #000;
}

.page-home .footer-wrap-simple {
  grid-template-columns: 233px 144px 289px;
  justify-content: space-between;
  padding: 28px 53px 27px 80px;
  border-radius: 40px 40px 0 0;
}

.page-home .footer-copy h3,
.page-collection .footer-copy h3,
.page-about .footer-copy h3,
.page-product .footer-copy h3 {
  font-size: 24px;
  line-height: 24px;
  font-weight: 600;
}

.page-home .footer-copy p,
.page-home .footer-side p,
.page-collection .footer-copy p,
.page-collection .footer-side p,
.page-about .footer-copy p,
.page-about .footer-side p,
.page-product .footer-copy p,
.page-product .footer-side p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.page-home .footer-copy p:last-child,
.page-home .footer-side p {
  color: #757575;
}

.page-home .footer-socials {
  gap: 12px;
}

.page-home .footer-socials a,
.page-collection .footer-socials a,
.page-about .footer-socials a,
.page-product .footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #db012c;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.page-home .footer-side h4,
.page-collection .footer-side h4,
.page-about .footer-side h4,
.page-product .footer-side h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

@media (max-width: 1080px) {
  .page-home .home-hero-layout,
  .page-home .featured-products-grid,
  .page-home .footer-wrap-simple {
    grid-template-columns: 1fr;
  }

  .page-home .featured-products-grid .square-image,
  .page-home .featured-products-grid .wide-image,
  .page-home .featured-products-grid .home-feature-small .square-image {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .page-home .featured-products-grid .wide-image {
    aspect-ratio: 16 / 9;
  }

  .page-home .home-hero-copy {
    padding: 40px 28px 48px;
  }

  .page-home .atelier-banner-copy {
    position: static;
    max-width: none;
    padding: 24px;
    background: #1b1717;
  }
}

@media (max-width: 760px) {
  .page-home .nav-bar-simple,
  .page-collection .nav-bar-simple,
  .page-about .nav-bar-simple,
  .page-product .nav-bar-simple {
    padding: 10px 16px;
    min-height: 78px;
  }

  .page-home .nav-links-simple {
    gap: 8px;
  }

  .page-home .home-hero-copy h1,
  .page-home .section-heading-simple h2,
  .page-home .story-center-block h2 {
    font-size: 32px;
    line-height: 36px;
  }

  .page-home .home-hero-copy p,
  .page-home .section-heading-simple p,
  .page-home .story-center-block p,
  .page-home .atelier-banner-copy p {
    font-size: 18px;
    line-height: 26px;
  }
}

/* Shared Inner Page Semantic Layer
   Collection, About, and Product page-level semantics. */
.page-collection,
.page-about,
.page-product,
.page-404 {
  font-family: "Outfit", var(--font-body);
  background: #fff4f4;
}

.page-collection .eyebrow,
.page-about .eyebrow,
.page-product .eyebrow,
.page-404 .eyebrow {
  font-family: "Caveat", cursive;
  font-weight: 700;
  color: #db012c;
}

.page-collection .brand-mark,
.page-about .brand-mark,
.page-product .brand-mark,
.page-404 .brand-mark,
.page-collection .nav-links a,
.page-about .nav-links a,
.page-product .nav-links a,
.page-404 .nav-links a,
.page-collection .button,
.page-about .button,
.page-product .button,
.page-404 .button,
.page-collection h1,
.page-about h1,
.page-product h1,
.page-404 h1,
.page-collection h2,
.page-about h2,
.page-product h2,
.page-404 h2,
.page-collection h3,
.page-about h3,
.page-product h3,
.page-404 h3,
.page-collection p,
.page-about p,
.page-product p,
.page-404 p {
  font-family: "Outfit", var(--font-body);
}

.page-collection .nav-links-simple,
.page-about .nav-links-simple,
.page-product .nav-links-simple,
.page-404 .nav-links-simple {
  gap: 60px;
}

.page-collection .footer-wrap-simple,
.page-about .footer-wrap-simple,
.page-product .footer-wrap-simple,
.page-404 .footer-wrap-simple {
  grid-template-columns: 233px 144px 289px;
  justify-content: space-between;
  padding: 28px 53px 27px 80px;
  background: #fff;
  box-shadow: none;
  border-radius: 40px 40px 0 0;
}

.page-collection .footer-copy p:last-child,
.page-collection .footer-side p,
.page-about .footer-copy p:last-child,
.page-about .footer-side p,
.page-product .footer-copy p:last-child,
.page-product .footer-side p,
.page-404 .footer-copy p:last-child,
.page-404 .footer-side p {
  color: #757575;
}

.page-collection .footer-socials,
.page-about .footer-socials,
.page-product .footer-socials,
.page-404 .footer-socials {
  gap: 12px;
}

.page-404 .not-found-main {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
}

.page-404 .not-found-section {
  padding: 48px 0 92px;
}

.page-404 .not-found-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
  padding: 38px;
  position: relative;
  overflow: hidden;
}

.page-404 .not-found-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 23, 69, 0.18), rgba(235, 23, 69, 0));
  pointer-events: none;
}

.page-404 .not-found-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.page-404 .not-found-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.page-404 .not-found-copy p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 52ch;
}

.page-404 .not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.page-404 .not-found-side {
  display: grid;
  gap: 18px;
  align-content: start;
  position: relative;
  z-index: 1;
}

.page-404 .not-found-image-wrap {
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 240, 236, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.page-404 .not-found-image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
}

.page-404 .not-found-links {
  display: grid;
  gap: 12px;
}

.page-404 .not-found-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.page-404 .not-found-links a::after {
  content: "↗";
  font-size: 0.95rem;
  color: var(--brand);
}

.page-404 .not-found-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(235, 23, 69, 0.18);
  color: var(--brand);
}

/* Collection Page */
.page-collection .collection-hero-simple {
  padding: 161px 0 0;
  text-align: center;
}

.page-collection .collection-hero-simple h1 {
  justify-content: center;
  color: #db012c;
  font-size: 48px;
  line-height: 24px;
  font-weight: 600;
}

.page-collection .collection-hero-simple p {
  max-width: 603px;
  margin: 38px auto 51px;
  font-size: 24px;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
  color: #757575;
}

.page-collection .chip-row.center {
  justify-content: center;
  gap: 17px;
}

.page-collection .filter-chip {
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #f4c0bf;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.page-collection .filter-chip.active {
  background: #db012c;
}

.page-collection .section-tight {
  padding: 69px 0 0;
}

.page-collection .collection-grid-simple {
  width: min(100%, 1280px);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.page-collection .product-tile {
  padding: 20px;
}

.page-collection .tile-media {
  aspect-ratio: auto;
  height: 360px;
  border-radius: 20px;
  box-shadow: none;
}

.page-collection .tile-copy {
  padding-top: 10px;
}

.page-collection .tile-copy h3 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  color: #000;
}

.page-collection .tile-copy p {
  margin: 6px 0 12px;
  font-size: 18px;
  line-height: 23px;
  font-weight: 500;
  color: #757575;
}

.page-collection .outline-tag {
  min-height: 24px;
  padding: 0 6px;
  border: 1px solid #db012c;
  border-radius: 6px;
  background: transparent;
  color: #db012c;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
}

.page-collection .collection-grid-simple .price {
  margin-top: 20px;
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  color: #db012c;
}

.page-collection .sold-overlay {
  background: rgba(0, 0, 0, 0.43);
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  inset: 0;
  border-radius: 20px;
  transition: none;
  z-index: 3;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: opacity, transform;
}

.page-collection .product-tile.is-sold-out .tile-media {
  --card-edge: rgb(76, 56, 62);
  background: rgb(76, 56, 62);
  isolation: isolate;
}

.page-collection .product-tile.is-sold-out .tile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: transparent;
  z-index: 2;
  pointer-events: none;
}

.page-collection .product-tile.is-sold-out .tile-media img,
.page-collection .product-tile.is-sold-out .sold-overlay {
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-collection .simple-ghost,
.page-collection .ghost-button {
  min-width: 254px;
  min-height: 56px;
  border: 2px solid #db012c;
  color: #db012c;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

.page-collection .collection-bottom-note {
  padding-top: 72px;
  padding-bottom: 104px;
}

.page-collection .spacer-line {
  width: min(100%, 1280px);
  margin: 0 auto 100px;
  background: rgba(219, 1, 44, 0.2);
}

/* About Page */
.page-about .story-page-simple {
  padding: 155px 0 0;
}

.page-about .story-page-grid {
  grid-template-columns: 236px 628px;
  gap: 90px;
  row-gap: 0;
  align-items: start;
}

.page-about .story-left-labels {
  gap: 0;
}

.page-about .story-section-label,
.page-about .story-section-block {
  align-self: start;
}

.page-about .story-section-label h1 {
  margin: 0;
}

.page-about .story-section-block {
  min-width: 0;
}

.page-about .story-left-labels h1 {
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  color: #db012c;
}

.page-about .story-top-lines {
  width: 628px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  color: #212121;
}

.page-about .story-top-lines p {
  color: #212121;
  margin-bottom: 28px;
}

.page-about .story-owner-photo {
  width: 472px;
  max-width: 100%;
  margin: 0 0 33px;
}

.page-about .story-owner-photo img {
  aspect-ratio: 472 / 278;
}

.page-about .story-article {
  max-width: 628px;
}

.page-about .story-article .eyebrow {
  font-size: 32px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 11px;
}

.page-about .story-article p {
  margin-top: 0;
  margin-bottom: 11px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  color: #212121;
}

.page-about .section-tight {
  padding-top: 44px;
  padding-bottom: 145px;
}

.page-about .story-page-grid-contact {
  grid-template-columns: 236px 340px;
  gap: 90px;
  row-gap: 0;
  align-items: start;
}

.page-about .simple-socials,
.page-about .social-links-inline {
  gap: 20px;
}

.page-about .social-button {
  width: 100px;
  height: 100px;
  border-radius: 4px;
  background: #db012c;
  box-shadow: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

/* Product Page */
.page-product .product-page-simple {
  padding-top: 131px;
}

.page-product .simple-breadcrumbs,
.page-product .product-breadcrumbs {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #757575;
  margin-bottom: 18px;
}

.page-product .product-layout-simple {
  grid-template-columns: 737px 495px;
  gap: 48px;
}

.page-product .simple-frame,
.page-product .product-gallery-frame {
  border-radius: 20px;
}

.page-product .simple-frame img,
.page-product .product-gallery-frame img {
  aspect-ratio: 1 / 1;
}

.page-product .gallery-dots {
  gap: 4px;
  margin-top: -32px;
  position: relative;
  z-index: 1;
}

.page-product .dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.page-product .dot.active {
  width: 24px;
  background: rgba(255, 255, 255, 0.8);
}

.page-product .product-panel-simple {
  padding-top: 42px;
}

.page-product .product-panel-simple .outline-tag {
  width: 100px;
  min-height: 36px;
  padding: 6px;
  border: 1px solid #db012c;
  border-radius: 6px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  background: transparent;
}

.page-product .product-panel-simple h2 {
  margin-top: 19px;
  font-size: 40px;
  line-height: 44px;
  font-weight: 600;
  color: #212121;
}

.page-product .product-panel-simple > p:first-of-type {
  margin-top: 12px;
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  color: #757575;
}

.page-product .maker-note-block {
  margin-top: 34px;
}

.page-product .maker-note-block h3,
.page-product .size-block h3 {
  font-size: 20px;
  line-height: 40px;
  font-weight: 600;
  color: #212121;
}

.page-product .maker-note-block p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #757575;
  margin-top: 0;
}

.page-product .product-price {
  margin: 40px 0 30px;
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  color: #212121;
}

.page-product .simple-options,
.page-product .product-option-list {
  gap: 0;
}

.page-product .simple-options .option-card,
.page-product .product-option-list .option-card {
  width: 100px;
  gap: 7px;
}

.page-product .simple-options .option-swatch,
.page-product .product-option-list .option-swatch {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: #d9d9d9;
}

.page-product .simple-options .option-card.active .option-swatch,
.page-product .product-option-list .option-card.active .option-swatch {
  border: 3px solid #db012c;
}

.page-product .simple-options strong,
.page-product .product-option-list strong {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.page-product .simple-options .option-card.active strong,
.page-product .product-option-list .option-card.active strong {
  color: #db012c;
}

.page-product .full {
  min-height: 64px;
  margin-top: 14px;
  font-size: 24px;
  line-height: 24px;
  font-weight: 600;
  background: #db012c;
  box-shadow: none;
}

.page-product .tiny-red-note {
  margin-top: 10px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #ce4a48;
  text-align: center;
}

.page-product .product-info-simple {
  margin-top: 40px;
}

.page-product .note-row-simple {
  grid-template-columns: 629px 629px;
  gap: 22px;
}

.page-product .flat-card h3 {
  font-size: 24px;
  line-height: 40px;
  font-weight: 600;
  color: #212121;
}

.page-product .icon-heading {
  gap: 18px;
}

.page-product .icon-heading .icon-badge {
  width: 40px;
  height: 40px;
}

.page-product .icon-heading .icon-badge img {
  width: 20px;
  height: 20px;
}

.page-product .flat-card ul {
  margin-top: 20px;
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
  color: #212121;
}

.page-product .care-grid {
  gap: 24px 16px;
}

.page-product .care-item {
  background: transparent;
  padding: 0;
}

.page-product .care-item strong {
  font-size: 18px;
  line-height: 23px;
  font-weight: 500;
  color: #212121;
}

.page-product .care-title img {
  width: 25px;
  height: 25px;
}

.page-product .care-item p {
  font-size: 18px;
  line-height: 23px;
  font-weight: 500;
  color: #757575;
}

.page-product .text-block-simple,
.page-product .simple-faq-grid,
.page-product .collection-bottom-note .section-heading-simple {
  width: min(100%, 1280px);
  margin-left: auto;
  margin-right: auto;
}

.page-product .text-block-simple h2,
.page-product .section-tight h2 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
  color: #212121;
}

.page-product .simple-bullets {
  padding-left: 28px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: #757575;
}

.page-product .simple-faq-grid {
  gap: 79px;
}

.page-product .faq-item button {
  padding: 0 0 16px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}

.page-product .faq-item p {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: #757575;
}

.page-product .faq-item {
  padding-top: 23px;
  border-bottom: 1px solid #cacaca;
}

.page-product .collection-bottom-note {
  padding-top: 40px;
  padding-bottom: 88px;
}

.page-product .collection-bottom-note .spacer-line {
  width: min(100%, 1280px);
  margin: 0 auto 101px;
  background: rgba(219, 1, 44, 0.2);
}

.page-collection .collection-bottom-note .eyebrow,
.page-product .collection-bottom-note .eyebrow {
  font-size: 36px;
  line-height: 40px;
}

.page-collection .collection-bottom-note p,
.page-product .collection-bottom-note p {
  max-width: 449px;
  margin: 17px auto 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #000;
  text-align: center;
}

@media (max-width: 1080px) {
  .page-collection .collection-grid-simple,
  .page-about .story-page-grid,
  .page-about .story-page-grid-contact,
  .page-product .product-layout-simple,
  .page-product .note-row-simple,
  .page-collection .footer-wrap-simple,
  .page-about .footer-wrap-simple,
  .page-product .footer-wrap-simple {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-collection .nav-links-simple,
  .page-about .nav-links-simple,
  .page-product .nav-links-simple {
    gap: 8px;
  }

  .page-collection .collection-grid-simple {
    grid-template-columns: 1fr;
  }

  .page-product .simple-faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* 2026 Brand System Refresh
   Final visual system layer and late-stage component refinements. */
:root {
  --bg: #fff8f7;
  --bg-strong: #f9eeec;
  --surface: rgba(255, 252, 251, 0.82);
  --surface-strong: #fffdfc;
  --text: #23171a;
  --muted: #75666a;
  --brand: #db012c;
  --brand-deep: #a40021;
  --brand-soft: #fbe1e5;
  --accent-peach: #f2d4cf;
  --accent-coral: #e88878;
  --accent-gold: #d99b7f;
  --line: rgba(123, 39, 50, 0.14);
  --shadow: 0 24px 60px rgba(91, 32, 42, 0.12);
  --shadow-soft: 0 14px 34px rgba(91, 32, 42, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1280px;
  --font-body: "Outfit", sans-serif;
  --font-script: "Caveat", cursive;
  --font-display: "Outfit", sans-serif;
}

body,
.draft-mode,
.page-home,
.page-collection,
.page-about,
.page-product {
  background-color: #fff8f8;
  background-image: radial-gradient(rgba(231, 188, 185, 0.6) 1px, transparent 1px);
  background-size: 32px 32px;
}

body {
  color: var(--text);
}

.container,
.page-home .nav-bar-simple,
.page-collection .nav-bar-simple,
.page-about .nav-bar-simple,
.page-product .nav-bar-simple,
.page-home .home-hero-layout,
.page-collection .collection-grid-simple,
.page-product .text-block-simple,
.page-product .simple-faq-grid,
.page-product .collection-bottom-note .section-heading-simple {
  width: min(calc(100% - 160px), var(--container));
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  background: rgba(255, 248, 247, 0.78);
  border-bottom: 1px solid rgba(123, 39, 50, 0.08);
  backdrop-filter: blur(18px);
}

.nav-bar,
.nav-bar-simple,
.page-home .nav-bar-simple,
.page-collection .nav-bar-simple,
.page-about .nav-bar-simple,
.page-product .nav-bar-simple {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 80px;
  padding: 0;
  gap: 24px;
  background: transparent;
}

.brand-mark,
.page-home .brand-mark,
.page-collection .brand-mark,
.page-about .brand-mark,
.page-product .brand-mark {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  color: var(--brand);
}

.nav-links,
.nav-links-simple,
.page-home .nav-links-simple,
.page-collection .nav-links-simple,
.page-about .nav-links-simple,
.page-product .nav-links-simple {
  justify-self: center;
  gap: 24px;
}

.brand-mark,
.page-home .brand-mark,
.page-collection .brand-mark,
.page-about .brand-mark,
.page-product .brand-mark {
  justify-self: start;
}

.nav-actions {
  justify-self: end;
}

.nav-links a,
.nav-links-simple a,
.page-home .nav-links-simple a,
.page-collection .nav-links-simple a,
.page-about .nav-links-simple a,
.page-product .nav-links-simple a {
  padding: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  color: #a6a2a0;
}

.nav-links a:hover,
.nav-links-simple a:hover,
.page-home .nav-links-simple a:hover,
.page-collection .nav-links-simple a:hover,
.page-about .nav-links-simple a:hover,
.page-product .nav-links-simple a:hover {
  color: var(--brand);
}

.nav-links a.active,
.nav-links-simple a.active,
.page-home .nav-links-simple a.active,
.page-collection .nav-links-simple a.active,
.page-about .nav-links-simple a.active,
.page-product .nav-links-simple a.active {
  color: var(--brand);
}

.button,
.page-home .button,
.page-collection .button,
.page-about .button,
.page-product .button {
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #db012c 0%, #bf0126 100%);
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(219, 1, 44, 0.18);
}

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

.button-ghost {
  border: 1px solid rgba(219, 1, 44, 0.22);
  background: rgba(255, 255, 255, 0.7);
}

.contact-pill,
.page-home .contact-pill,
.page-collection .contact-pill,
.page-about .contact-pill,
.page-product .contact-pill {
  min-width: 0;
  min-height: 0;
  padding: 10px 16px;
  font-size: 0.96rem;
  line-height: 1.2;
  box-shadow: none;
}

.contact-pill,
.page-home .contact-pill,
.page-collection .contact-pill,
.page-about .contact-pill,
.page-product .contact-pill {
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.contact-pill:hover,
.page-home .contact-pill:hover,
.page-collection .contact-pill:hover,
.page-about .contact-pill:hover,
.page-product .contact-pill:hover {
  transform: none;
}

.eyebrow,
.page-home .eyebrow,
.page-collection .eyebrow,
.page-about .eyebrow,
.page-product .eyebrow {
  font-family: var(--font-script);
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 14px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--text);
}

h1 {
  font-size: clamp(3.5rem, 6vw, 4.5rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 3rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.12;
}

p,
.page-home p,
.page-collection p,
.page-about p,
.page-product p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section {
  padding: 0 0 120px;
}

.section-tight,
.page-home .section-tight,
.page-collection .section-tight,
.page-about .section-tight,
.page-product .section-tight {
  padding: 0 0 72px;
}

.section-heading,
.section-heading-simple {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading-simple h2,
.page-home .section-heading-simple h2 {
  font-size: clamp(2.3rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 700;
}

.section-heading-simple p,
.page-home .section-heading-simple p {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
}

.page-home .hero-simple {
  padding: 0;
}

.page-home .home-hero-layout {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
}

.hero-banner,
.page-home .home-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  align-items: center;
  gap: 32px;
  min-height: calc(100vh - 80px);
  padding: 32px 72px 40px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.hero-banner-media,
.page-home .home-hero-media {
  min-height: min(68vh, 760px);
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(219, 1, 44, 0.08), rgba(255, 255, 255, 0.08));
  box-shadow: 0 28px 70px rgba(163, 76, 93, 0.14);
}

.hero-banner-copy,
.page-home .home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px 0 0;
}

.hero-banner-copy[data-wave-surface],
.page-home .home-hero-copy[data-wave-surface] {
  animation: hero-surface 9.2s cubic-bezier(0.4, 0.08, 0.58, 0.94) infinite;
  transform-origin: left center;
  will-change: transform;
}

.page-home .home-hero-copy > * {
  max-width: 520px;
}

.hero-banner-copy h1,
.page-home .home-hero-copy h1 {
  margin-top: 4px;
  font-size: 48px;
  line-height: 0.94;
  font-weight: 750;
  color: var(--text);
}

.wave-text-ready {
  overflow: visible;
}

.wave-text-soft {
  animation: hero-wave-soft 7.2s cubic-bezier(0.42, 0.08, 0.58, 0.92) infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.wave-word {
  display: inline-block;
  white-space: nowrap;
}

.wave-text-body .wave-char {
  animation-name: hero-wave-body;
}

.wave-char {
  display: inline-block;
  transform: translate3d(0, 0, 0) rotate(0deg);
  animation: hero-wave var(--wave-duration, 5.6s) cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  animation-delay: var(--wave-delay, 0ms);
  will-change: transform;
}

@keyframes hero-wave {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  18% {
    transform: translate3d(-0.18px, calc(-0.75px + var(--wave-drift, 0px)), 0) rotate(-0.24deg);
  }

  37% {
    transform: translate3d(0.28px, calc(-1.45px - var(--wave-drift, 0px)), 0) rotate(-0.44deg);
  }

  58% {
    transform: translate3d(0.16px, calc(0.6px + var(--wave-drift, 0px)), 0) rotate(0.2deg);
  }

  76% {
    transform: translate3d(-0.24px, calc(-0.95px + var(--wave-drift, 0px)), 0) rotate(0.34deg);
  }

  89% {
    transform: translate3d(0.08px, calc(-0.2px - var(--wave-drift, 0px)), 0) rotate(0.08deg);
  }
}

@keyframes hero-wave-body {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  18% {
    transform: translate3d(-0.1px, calc(-0.42px + (var(--wave-drift, 0px) * 0.45)), 0) rotate(-0.08deg);
  }

  37% {
    transform: translate3d(0.14px, calc(-0.72px - (var(--wave-drift, 0px) * 0.45)), 0) rotate(-0.14deg);
  }

  58% {
    transform: translate3d(0.08px, calc(0.28px + (var(--wave-drift, 0px) * 0.35)), 0) rotate(0.06deg);
  }

  76% {
    transform: translate3d(-0.12px, calc(-0.48px + (var(--wave-drift, 0px) * 0.35)), 0) rotate(0.1deg);
  }

  89% {
    transform: translate3d(0.04px, calc(-0.1px - (var(--wave-drift, 0px) * 0.25)), 0) rotate(0.04deg);
  }
}

@keyframes hero-wave-soft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  26% {
    transform: translate3d(-0.18px, -0.5px, 0);
  }

  61% {
    transform: translate3d(0.3px, -1.3px, 0);
  }

  84% {
    transform: translate3d(-0.12px, -0.75px, 0);
  }
}

@keyframes hero-surface {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) skewX(0deg);
  }

  22% {
    transform: translate3d(-1.4px, -1.1px, 0) rotate(-0.12deg) skewX(-0.24deg);
  }

  46% {
    transform: translate3d(1.1px, 0.65px, 0) rotate(0.09deg) skewX(0.18deg);
  }

  71% {
    transform: translate3d(-1.1px, -1.5px, 0) rotate(-0.16deg) skewX(-0.22deg);
  }

  88% {
    transform: translate3d(0.65px, -0.55px, 0) rotate(0.06deg) skewX(0.12deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner-copy[data-wave-surface],
  .page-home .home-hero-copy[data-wave-surface],
  .wave-text-soft,
  .wave-char {
    animation: none;
    transform: none;
  }
}

.hero-banner-copy p,
.page-home .home-hero-copy p {
  width: auto;
  max-width: 480px;
  margin: 16px 0 28px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.small-button,
.page-home .small-button {
  align-self: flex-start;
  min-height: 0;
  padding: 14px 22px;
  font-size: 16px;
}

.home-feature-grid,
.page-home .featured-products-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 24px;
  align-items: stretch;
}

.home-feature-right,
.home-feature-small-grid,
.page-home .featured-products-stack,
.page-home .featured-products-row {
  display: grid;
  gap: 24px;
}

.home-feature-right,
.page-home .featured-products-stack {
  grid-template-rows: 368px 368px;
  height: 760px;
}

.home-feature-small-grid,
.page-home .featured-products-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 100%;
}

.home-feature-large,
.home-feature-wide,
.home-feature-small,
.home-recent-card,
.product-tile {
  position: relative;
  display: block;
  padding: 18px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-feature-large {
  height: 760px;
}

.home-feature-wide,
.home-feature-small {
  height: 100%;
  min-height: 0;
}

.home-feature-large,
.home-feature-wide,
.home-feature-small {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  height: 100%;
  align-content: stretch;
}

.home-feature-large:hover,
.home-feature-wide:hover,
.home-feature-small:hover {
  transform: translateY(-3px);
  box-shadow: none;
  border-color: transparent;
}

.home-recent-card:hover,
.product-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(219, 1, 44, 0.16);
}

.home-card-image,
.tile-media {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(180deg, #f2d4cf 0%, #f9eeec 100%);
  box-shadow: none;
  min-height: 0;
}

.home-feature-large .square-image {
  aspect-ratio: 1 / 1;
}

.home-feature-wide .wide-image {
  aspect-ratio: auto;
}

.home-feature-small .square-image {
  aspect-ratio: 1 / 1;
}

.home-recent-grid .square-image,
.collection-grid .tile-media {
  aspect-ratio: 1 / 1;
}

/* Final homepage defining-pieces layout */
.page-home .featured-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.page-home .featured-products-stack {
  display: grid;
  grid-template-rows: auto auto;
  gap: 24px;
  height: auto;
  aspect-ratio: auto;
}

.page-home .featured-products-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  height: auto;
  align-items: start;
}

.page-home .home-feature-large,
.page-home .home-feature-wide,
.page-home .home-feature-small {
  display: block;
  height: auto;
}

.page-home .home-card-image,
.page-home .home-feature-large .home-card-image,
.page-home .home-feature-wide .home-card-image,
.page-home .home-feature-small .home-card-image,
.page-home .featured-products-grid .home-feature-large .square-image,
.page-home .featured-products-grid .home-feature-wide .wide-image,
.page-home .featured-products-grid .home-feature-small .square-image {
  width: 100%;
  height: auto;
  min-height: 0;
}

.page-home .featured-products-grid .home-feature-large .square-image {
  aspect-ratio: 1 / 1;
}

.page-home .featured-products-grid .home-feature-wide .wide-image {
  aspect-ratio: 16 / 9;
}

.page-home .featured-products-grid .home-feature-small .square-image {
  aspect-ratio: 1 / 1;
}

/* Final bento geometry: tile = image + title + subtitle */
.page-home .featured-products-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.page-home .home-feature-large {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  align-content: start;
  aspect-ratio: 1 / 1;
  height: auto;
}

.page-home .featured-products-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 24px;
  aspect-ratio: 1 / 1;
  height: auto;
}

.page-home .home-feature-wide,
.page-home .home-feature-small {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  align-content: start;
  height: 100%;
  min-height: 0;
}

.page-home .featured-products-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  height: 100%;
  min-height: 0;
  align-items: stretch;
}

.page-home .home-feature-large .home-card-image,
.page-home .home-feature-wide .home-card-image,
.page-home .home-feature-small .home-card-image {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.page-home .featured-products-grid .home-feature-large .square-image,
.page-home .featured-products-grid .home-feature-wide .wide-image,
.page-home .featured-products-grid .home-feature-small .square-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}

.page-home .home-feature-large h3,
.page-home .home-feature-wide h3,
.page-home .home-feature-small h3 {
  margin: 14px 0 2px;
}

.page-home .home-feature-large p,
.page-home .home-feature-wide p,
.page-home .home-feature-small p {
  margin: 0;
  line-height: 1.45;
}

.home-feature-grid h3,
.home-recent-grid h3,
.collection-grid-simple .tile-copy h3,
.page-home .featured-product-card h3,
.page-home .recent-products-grid h3 {
  margin: 14px 0 6px;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
}

.home-feature-grid p,
.home-recent-grid p,
.collection-grid-simple .tile-copy p,
.page-home .featured-product-card p,
.page-home .recent-products-grid p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}

.corner-badge {
  margin: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(219, 1, 44, 0.92);
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 300;
  text-transform: uppercase;
}

.home-recent-grid,
.page-home .recent-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  overflow: visible;
  padding: 0;
}

.page-home .recent-products-grid .home-recent-card {
  flex: initial;
}

.atelier-banner,
.page-home .custom-order-banner {
  position: relative;
  display: grid;
  align-items: end;
  height: 500px;
  min-height: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.atelier-banner::after {
  content: none;
}

.atelier-banner img,
.page-home .custom-order-banner img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.atelier-banner-copy,
.page-home .atelier-banner-copy {
  position: absolute;
  left: 64px;
  top: auto;
  bottom: 56px;
  z-index: 1;
  max-width: 500px;
  padding: 0;
}

.atelier-banner-copy h2,
.page-home .atelier-banner-copy h2 {
  max-width: none;
  margin-top: 0;
  font-size: 48px;
  line-height: 0.98;
  font-weight: 700;
  color: #fff;
}

.atelier-banner-copy p,
.page-home .atelier-banner-copy p {
  margin: 18px 0 24px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.section-story-home,
.page-home .home-story-section {
  padding: 24px 0 96px;
}

.story-center-block,
.page-home .story-center-block,
.page-home .narrative-center {
  max-width: 860px;
}

.story-center-block p,
.page-home .story-center-block p,
.page-home .narrative-center p {
  color: var(--muted);
}

.footer {
  padding: 0;
}

.footer-wrap,
.footer-wrap-simple,
.page-home .footer-wrap-simple,
.page-collection .footer-wrap-simple,
.page-about .footer-wrap-simple,
.page-product .footer-wrap-simple {
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  padding: 24px 48px;
  background: rgba(255, 252, 251, 0.86);
  border-top: 0;
  border-radius: 36px 36px 0 0;
}

.footer-copy h3,
.footer-side h4 {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--text);
}

.footer-copy p,
.footer-side p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

.footer-socials {
  justify-self: center;
  align-self: center;
  justify-content: center;
  gap: 12px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.footer-socials a:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 18px rgba(219, 1, 44, 0.18);
  background: #e91d49;
}

.collection-hero-simple,
.page-collection .collection-hero-simple {
  padding: 56px 0 20px;
  text-align: center;
}

.collection-hero-simple h1,
.page-collection .collection-hero-simple h1 {
  font-size: 48px;
  line-height: 0.98;
  font-weight: 500;
  color: var(--text);
}

.collection-hero-simple p,
.page-collection .collection-hero-simple p {
  max-width: 720px;
  margin: 18px auto 28px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}

.chip-row.center,
.page-collection .chip-row.center {
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.filter-chip,
.page-collection .filter-chip {
  min-height: 0;
  padding: 10px 16px;
  border: 1px solid rgba(219, 1, 44, 0.12);
  border-radius: 999px;
  background: rgba(251, 225, 229, 0.8);
  color: var(--brand);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 650;
}

.filter-chip.active,
.page-collection .filter-chip.active {
  background: linear-gradient(135deg, #db012c 0%, #bf0126 100%);
  color: #fff;
}

.collection-grid,
.page-collection .collection-grid-simple {
  grid-template-columns: repeat(3, 260px);
  justify-content: center;
  gap: 40px 52px;
  margin-top: 36px;
}

.collection-grid-simple .product-tile.is-hidden {
  display: none;
}

.collection-grid-viewport {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.collection-grid-panel {
  width: min(calc(100vw - 32px), 1280px);
  margin: 0 auto;
}

.collection-grid-viewport > .collection-grid-simple {
  position: relative;
  z-index: 1;
}

.collection-grid-viewport > .collection-grid-simple.is-stage-hidden {
  opacity: 0;
  pointer-events: none;
}

.collection-grid-panel.is-transitioning {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  will-change: transform, opacity, filter;
  transition-property: transform, opacity, filter;
  transition-duration: 400ms;
  transition-timing-function:
    cubic-bezier(0.34, 1.1, 0.64, 1),
    cubic-bezier(0.45, 0, 0.55, 1),
    cubic-bezier(0.45, 0, 0.55, 1);
}

.collection-grid-panel.is-pre-enter,
.collection-grid-panel.is-entering {
  z-index: 3;
}

.collection-grid-panel.is-exiting {
  z-index: 2;
}

.collection-grid-panel.is-transitioning .product-tile {
  transition: opacity 400ms cubic-bezier(0.45, 0, 0.55, 1);
}

.collection-grid-panel.is-pre-enter {
  opacity: 0.08;
  filter: blur(3px);
  transform: translate3d(calc(var(--collection-direction, 1) * 110vw), 0, 0);
}

.collection-grid-panel.is-pre-enter .product-tile {
  opacity: 0.35;
}

.collection-grid-panel.is-entering {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.collection-grid-panel.is-entering .product-tile {
  opacity: 1;
}

.collection-grid-panel.is-exiting {
  opacity: 0.08;
  filter: blur(3px);
  transform: translate3d(calc(var(--collection-direction, 1) * -110vw), 0, 0);
}

.collection-grid-panel.is-exiting .product-tile {
  opacity: 0.35;
}

.collection-grid-simple .product-tile.is-visible {
  animation: collection-card-reveal 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

.page-collection .center-cta {
  margin-top: 56px;
}

@keyframes collection-card-reveal {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(var(--card-rotate, 0deg)) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(var(--card-rotate, 0deg)) scale(1);
  }
}

.page-collection .product-tile {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  --card-rotate: 0deg;
  transform: translateY(0) rotate(0deg);
  transition: transform 280ms ease, filter 280ms ease;
}

.page-collection .product-tile::before,
.page-home .recent-products-grid .home-recent-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(20, 18, 24, 0.08);
  pointer-events: none;
  transition: box-shadow 280ms ease;
  z-index: 0;
}

.page-collection .product-tile::before {
  content: none;
  box-shadow: none;
}

.page-collection .product-tile:hover {
  box-shadow: none;
}

.page-collection .product-tile {
  transform: rotate(var(--card-rotate, 0deg));
}

.page-collection .product-tile:hover {
  transform: translateY(-4px) rotate(var(--card-hover-rotate, var(--card-rotate, 0deg)));
}

.page-collection .product-tile .tile-media {
  overflow: hidden;
  border-radius: 20px;
  background: var(--card-edge, transparent);
  box-shadow: none;
  transition: transform 280ms ease;
  aspect-ratio: 3 / 4;
  height: auto;
  position: relative;
  transform: translateZ(0);
  backface-visibility: hidden;
  z-index: 1;
}

.page-collection .product-tile .tile-media img,
.page-home .recent-products-grid .home-recent-card img {
  position: absolute;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 500ms ease;
  backface-visibility: hidden;
  transform-origin: center center;
  will-change: transform;
}

.page-collection .product-tile:hover::before {
  box-shadow: 0 8px 16px var(--card-shadow, rgba(123, 39, 50, 0.42));
}

.page-collection .product-tile:hover .tile-media img {
  transform: scale(1.07);
}

.page-collection .product-tile.is-sold-out:hover .sold-overlay {
  transform: none;
}

.page-collection .product-tile.is-sold-out:hover .tile-media img {
  transform: scale(1.07);
}

.page-collection .product-tile.is-sold-out {
  cursor: not-allowed;
}

.page-collection .product-tile.is-sold-out:hover {
  transform: rotate(var(--card-rotate));
}

.page-collection .product-tile.is-sold-out:hover::before {
  box-shadow: 0 8px 16px var(--card-shadow, rgba(123, 39, 50, 0.42));
}

.page-collection .product-tile.is-sold-out.shake {
  animation: sold-out-shake 300ms ease;
}

@keyframes sold-out-shake {
  0% {
    transform: rotate(var(--card-rotate));
  }
  18% {
    transform: translateX(-2px) rotate(calc(var(--card-rotate) - 0.28deg));
  }
  36% {
    transform: translateX(2px) rotate(calc(var(--card-rotate) + 0.28deg));
  }
  54% {
    transform: translateX(-1.5px) rotate(calc(var(--card-rotate) - 0.2deg));
  }
  72% {
    transform: translateX(1.5px) rotate(calc(var(--card-rotate) + 0.2deg));
  }
  100% {
    transform: rotate(var(--card-rotate));
  }
}

.tile-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding: 18px 4px 2px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.page-collection .tile-copy h3 {
  margin: 0;
}

.page-collection .tile-copy p {
  margin: 4px 0 0;
}

.page-collection .tile-copy .outline-tag {
  align-self: flex-start;
  margin: 2px 0 8px;
}

.outline-tag,
.page-collection .outline-tag,
.page-product .product-panel-simple .outline-tag {
  display: inline-flex;
  min-height: 0;
  padding: 2px 4px;
  border: 1px solid rgba(219, 1, 44, 0.2);
  border-radius: 4px;
  background: rgba(251, 225, 229, 0.5);
  color: var(--brand);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.collection-grid-simple .price,
.page-collection .collection-grid-simple .price,
.product-price {
  margin-top: 12px;
  padding-top: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--brand);
}

.center-cta {
  margin-top: 56px;
}

.simple-ghost,
.ghost-button,
.page-collection .simple-ghost,
.page-collection .ghost-button {
  min-width: 220px;
  min-height: 0;
  border: 1px solid rgba(219, 1, 44, 0.22);
  color: var(--brand);
  background: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

.collection-bottom-note,
.page-collection .collection-bottom-note,
.page-product .collection-bottom-note {
  padding: 24px 0 88px;
}

.collection-bottom-note .story-center-block,
.page-collection .collection-bottom-note .story-center-block,
.page-product .collection-bottom-note .story-center-block {
  max-width: 860px;
}

.spacer-line,
.page-collection .spacer-line,
.page-product .collection-bottom-note .spacer-line {
  height: 1px;
  margin: 0 0 56px;
  background: linear-gradient(90deg, transparent, rgba(219, 1, 44, 0.22), transparent);
}

.collection-bottom-note p,
.page-collection .collection-bottom-note p,
.page-product .collection-bottom-note p {
  max-width: 860px;
  margin: 12px auto 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.story-page-simple,
.page-about .story-page-simple {
  padding: 64px 0 32px;
}

.story-page-grid,
.page-about .story-page-grid {
  grid-template-columns: minmax(180px, 3fr) minmax(0, 9fr);
  gap: 24px;
}

.story-left-labels,
.page-about .story-left-labels {
  gap: 36px;
}

.story-left-labels h1,
.page-about .story-left-labels h1 {
  font-size: 48px;
  line-height: 0.98;
  font-weight: 500;
  color: var(--brand);
}

.story-right-column {
  max-width: 760px;
}

.story-top-lines,
.page-about .story-top-lines {
  width: auto;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text);
}

.story-top-lines p,
.page-about .story-top-lines p {
  margin-bottom: 18px;
  color: var(--text);
}

.story-owner-photo,
.page-about .story-owner-photo {
  width: min(100%, 560px);
  margin: 36px 0 36px;
}

.story-owner-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.story-article,
.page-about .story-article {
  max-width: 680px;
}

.story-article p,
.page-about .story-article p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.story-page-grid-contact,
.page-about .story-page-grid-contact {
  grid-template-columns: minmax(180px, 3fr) minmax(0, 9fr);
  gap: 24px;
  align-items: center;
}

.simple-socials,
.social-links-inline,
.page-about .simple-socials,
.page-about .social-links-inline {
  gap: 16px;
}

.social-button,
.page-about .social-button {
  width: 104px;
  height: 104px;
  border-radius: 24px;
  background: linear-gradient(135deg, #db012c 0%, #bf0126 100%);
  box-shadow: 0 16px 32px rgba(219, 1, 44, 0.16);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.product-page-simple,
.page-product .product-page-simple {
  padding-top: 56px;
}

.breadcrumbs,
.page-product .simple-breadcrumbs,
.page-product .product-breadcrumbs {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}

.product-layout,
.product-layout-simple,
.page-product .product-layout-simple {
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  gap: 40px;
}

.gallery-frame,
.simple-frame,
.product-gallery-frame {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.gallery-dots,
.page-product .gallery-dots {
  gap: 8px;
  margin-top: 18px;
  position: static;
}

.dot,
.page-product .dot {
  width: 10px;
  height: 10px;
  background: rgba(123, 39, 50, 0.18);
  opacity: 1;
}

.dot.active,
.page-product .dot.active {
  width: 28px;
  background: var(--brand);
}

.product-panel,
.page-product .product-panel-simple {
  padding-top: 16px;
}

.product-panel-simple h2,
.page-product .product-panel-simple h2 {
  margin-top: 18px;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 0.96;
  font-weight: 750;
  color: var(--text);
}

.product-panel-simple > p:first-of-type,
.page-product .product-panel-simple > p:first-of-type {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}

.maker-note-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(123, 39, 50, 0.12);
}

.maker-note-block h3,
.size-block h3,
.page-product .maker-note-block h3,
.page-product .size-block h3 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--text);
}

.maker-note-block p,
.page-product .maker-note-block p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.product-price,
.page-product .product-price {
  margin: 34px 0 28px;
}

.simple-options,
.product-option-list,
.page-product .simple-options {
  gap: 12px;
}

.simple-options .option-card,
.product-option-list .option-card,
.page-product .simple-options .option-card {
  width: 90px;
  padding: 0;
  background: transparent;
}

.simple-options .option-swatch,
.product-option-list .option-swatch,
.page-product .simple-options .option-swatch {
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
  border-radius: 16px;
  background: linear-gradient(180deg, #edd4d0 0%, #f6e2df 100%);
}

.simple-options .option-card.active .option-swatch,
.product-option-list .option-card.active .option-swatch,
.page-product .simple-options .option-card.active .option-swatch {
  border: 2px solid var(--brand);
}

.simple-options strong,
.product-option-list strong,
.page-product .simple-options strong {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--muted);
}

.simple-options .option-card.active strong,
.product-option-list .option-card.active strong,
.page-product .simple-options .option-card.active strong {
  color: var(--brand);
}

.full,
.page-product .full {
  min-height: 0;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.2;
}

.tiny-red-note,
.page-product .tiny-red-note {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #b24a4f;
  text-align: left;
}

.product-info-simple,
.page-product .product-info-simple {
  margin-top: 40px;
}

.note-row,
.note-row-simple,
.page-product .note-row-simple {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.flat-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.flat-card h3,
.page-product .flat-card h3 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--text);
}

.icon-heading,
.page-product .icon-heading {
  gap: 14px;
}

.icon-badge,
.page-product .icon-heading .icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.icon-badge-blue,
.icon-badge-warm {
  background: rgba(219, 1, 44, 0.1);
  color: var(--brand);
}

.icon-badge-rose {
  background: rgba(232, 136, 120, 0.16);
  color: #7b2732;
}

.flat-card ul,
.page-product .flat-card ul {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.care-grid,
.page-product .care-grid {
  gap: 16px;
}

.care-item,
.page-product .care-item {
  padding: 16px;
  background: rgba(251, 225, 229, 0.32);
  border-radius: 18px;
}

.care-item strong,
.page-product .care-item strong {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--text);
}

.care-item p,
.page-product .care-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.text-block-simple h2,
.section-tight h2,
.page-product .text-block-simple h2,
.page-product .section-tight h2 {
  margin-bottom: 16px;
  font-size: 48px;
  line-height: 0.98;
  font-weight: 500;
  color: var(--text);
}

.simple-bullets,
.page-product .simple-bullets {
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.simple-faq-grid,
.faq-columns,
.page-product .simple-faq-grid {
  gap: 32px;
  margin-top: 20px;
}

.faq-item,
.page-product .faq-item {
  padding-top: 0;
  border-bottom: 1px solid rgba(123, 39, 50, 0.12);
}

.faq-item button,
.page-product .faq-item button {
  padding: 18px 0;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--text);
}

.faq-item p,
.page-product .faq-item p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.symbol {
  color: var(--brand);
}

@media (max-width: 1080px) {
  .container,
  .page-home .nav-bar-simple,
  .page-collection .nav-bar-simple,
  .page-about .nav-bar-simple,
  .page-product .nav-bar-simple,
  .page-home .home-hero-layout,
  .page-collection .collection-grid-simple,
  .page-product .text-block-simple,
  .page-product .simple-faq-grid,
  .page-product .collection-bottom-note .section-heading-simple {
    width: min(calc(100% - 96px), var(--container));
  }

  .hero-banner,
  .page-home .home-hero-layout,
  .home-feature-grid,
  .page-home .featured-products-grid,
  .product-layout,
  .product-layout-simple,
  .page-product .product-layout-simple,
  .story-page-grid,
  .page-about .story-page-grid,
  .story-page-grid-contact,
  .page-about .story-page-grid-contact,
  .note-row,
  .note-row-simple,
  .page-product .note-row-simple,
  .footer-wrap,
  .footer-wrap-simple {
    grid-template-columns: 1fr;
  }

  .hero-banner-media,
  .page-home .home-hero-media {
    min-height: 420px;
  }

  .hero-banner-copy,
  .page-home .home-hero-copy {
    padding: 44px 40px 48px;
  }

  .home-recent-grid,
  .page-home .recent-products-grid,
  .collection-grid,
  .page-collection .collection-grid-simple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .featured-products-stack,
  .page-home .featured-products-row {
    height: auto;
    aspect-ratio: auto;
  }

  .page-home .featured-products-stack {
    grid-template-rows: auto auto;
  }

  .home-feature-large .square-image,
  .home-feature-wide .wide-image,
  .home-feature-small .square-image {
    height: auto;
  }

  .home-feature-large .square-image,
  .home-feature-small .square-image {
    aspect-ratio: 1 / 1;
  }

  .home-feature-wide .wide-image {
    aspect-ratio: 16 / 9;
  }

  .atelier-banner-copy,
  .page-home .atelier-banner-copy {
    left: 40px;
    right: 40px;
    bottom: 40px;
    max-width: 480px;
  }

  .collection-grid-panel {
    width: min(calc(100vw - 96px), var(--container));
  }

  .footer-side {
    justify-self: start;
    max-width: none;
  }

  .footer-copy,
  .page-home .footer-copy,
  .page-collection .footer-copy,
  .page-about .footer-copy,
  .page-product .footer-copy,
  .footer-side,
  .page-home .footer-side,
  .page-collection .footer-side,
  .page-about .footer-side,
  .page-product .footer-side {
    height: auto;
    grid-template-rows: auto;
    align-content: start;
  }
}

@media (max-width: 760px) {
  .container,
  .page-home .nav-bar-simple,
  .page-collection .nav-bar-simple,
  .page-about .nav-bar-simple,
  .page-product .nav-bar-simple,
  .page-home .home-hero-layout,
  .page-collection .collection-grid-simple,
  .page-product .text-block-simple,
  .page-product .simple-faq-grid,
  .page-product .collection-bottom-note .section-heading-simple {
    width: min(calc(100% - 40px), var(--container));
  }

  .nav-bar,
  .nav-bar-simple,
  .page-home .nav-bar-simple,
  .page-collection .nav-bar-simple,
  .page-about .nav-bar-simple,
  .page-product .nav-bar-simple {
    min-height: 70px;
  }

  .nav-links {
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    gap: 12px;
    padding: 16px;
    max-height: calc(100vh - 110px);
    border: 1px solid rgba(123, 39, 50, 0.1);
    border-radius: 24px;
    background: rgba(255, 252, 251, 0.96);
    overflow-y: auto;
  }

  .nav-links a,
  .nav-links-simple a,
  .page-home .nav-links-simple a,
  .page-collection .nav-links-simple a,
  .page-about .nav-links-simple a,
  .page-product .nav-links-simple a {
    padding: 10px 12px;
  }

  .nav-bar,
  .nav-bar-simple,
  .page-home .nav-bar-simple,
  .page-collection .nav-bar-simple,
  .page-about .nav-bar-simple,
  .page-product .nav-bar-simple {
    gap: 12px;
  }

  .nav-links {
    z-index: 30;
  }

  .nav-actions {
    margin-left: auto;
    flex: 0 0 auto;
    justify-self: end;
    gap: 8px;
  }

  .nav-actions .button,
  .nav-actions .contact-pill {
    display: inline-flex;
    min-width: 0;
    padding: 10px 14px;
    font-size: 0.9rem;
    line-height: 1.1;
  }

  .menu-toggle {
    flex: 0 0 auto;
  }

  .page-home .hero-simple,
  .collection-hero-simple,
  .story-page-simple,
  .product-page-simple {
    padding-top: 28px;
  }

  .hero-banner,
  .page-home .home-hero-layout {
    min-height: 0;
    border-radius: 28px;
  }

  .hero-banner-media,
  .page-home .home-hero-media {
    min-height: 320px;
  }

  .hero-banner-copy,
  .page-home .home-hero-copy {
    padding: 28px 24px 32px;
  }

  .home-recent-grid,
  .page-home .recent-products-grid,
  .collection-grid,
  .page-collection .collection-grid-simple,
  .note-row,
  .note-row-simple,
  .page-product .note-row-simple,
  .simple-faq-grid,
  .page-product .simple-faq-grid,
  .care-grid,
  .page-product .care-grid {
    grid-template-columns: 1fr;
  }

  .home-feature-small-grid {
    grid-template-columns: 1fr;
  }

  .page-home .featured-products-row {
    grid-template-columns: 1fr;
    height: auto;
  }

  .home-feature-large .square-image,
  .home-feature-wide .wide-image,
  .home-feature-small .square-image {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .home-feature-large,
  .home-feature-wide,
  .home-feature-small,
  .home-recent-card,
  .product-tile,
  .flat-card {
    padding: 16px;
  }

  .atelier-banner,
  .page-home .custom-order-banner {
    min-height: 520px;
  }

  .atelier-banner-copy,
  .page-home .atelier-banner-copy {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .collection-grid-panel {
    width: min(calc(100vw - 40px), var(--container));
  }

  .page-product .breadcrumb-list {
    row-gap: 6px;
  }

  .page-product .breadcrumb-list li {
    min-width: 0;
  }

  .page-product .breadcrumb-list [aria-current="page"] {
    overflow-wrap: anywhere;
  }

  .social-button {
    width: 92px;
    height: 92px;
  }

  .footer-wrap,
  .footer-wrap-simple,
  .page-home .footer-wrap-simple,
  .page-collection .footer-wrap-simple,
  .page-about .footer-wrap-simple,
  .page-product .footer-wrap-simple {
    padding: 28px 24px;
  }
}

/* Final Typography Weights */
.brand-mark,
.page-home .brand-mark,
.page-collection .brand-mark,
.page-about .brand-mark,
.page-product .brand-mark,
h1,
h2,
.hero-banner-copy h1,
.page-home .home-hero-copy h1,
.product-panel-simple h2,
.page-product .product-panel-simple h2,
.section-heading-simple h2,
.page-home .section-heading-simple h2,
.atelier-banner-copy h2,
.page-home .atelier-banner-copy h2,
.story-left-labels h1,
.page-about .story-left-labels h1,
.collection-hero-simple h1,
.page-collection .collection-hero-simple h1,
.footer-copy h3,
.footer-side h4,
.page-home .footer-copy h3,
.page-collection .footer-copy h3,
.page-about .footer-copy h3,
.page-product .footer-copy h3,
.page-home .footer-side h4,
.page-collection .footer-side h4,
.page-about .footer-side h4,
.page-product .footer-side h4 {
  font-weight: 500;
}

.nav-links a,
.nav-links-simple a,
.page-home .nav-links-simple a,
.page-collection .nav-links-simple a,
.page-about .nav-links-simple a,
.page-product .nav-links-simple a,
.button,
.button-ghost,
.page-home .button,
.page-collection .button,
.page-about .button,
.page-product .button,
.filter-chip,
.page-collection .filter-chip,
.simple-ghost,
.page-collection .simple-ghost,
h3,
.home-feature-grid h3,
.home-recent-grid h3,
.collection-grid-simple .tile-copy h3,
.page-home .featured-product-card h3,
.page-home .recent-products-grid h3,
.flat-card h3,
.page-product .flat-card h3,
.maker-note-block h3,
.size-block h3,
.page-product .maker-note-block h3,
.page-product .size-block h3,
.care-item strong,
.page-product .care-item strong,
.tile-copy h3,
.faq-item button,
.page-product .faq-item button,
.page-product .text-block-simple h2,
.page-product .section-tight > .container > h2,
.page-product .section-tight h2:not(.product-panel-simple h2),
.page-product .product-panel-simple > p:first-of-type {
  font-weight: 400;
}

.nav-links a.active,
.nav-links-simple a.active,
.page-home .nav-links-simple a.active,
.page-collection .nav-links-simple a.active,
.page-about .nav-links-simple a.active,
.page-product .nav-links-simple a.active {
  font-weight: 500;
}

p,
.page-home p,
.page-collection p,
.page-about p,
.page-product p,
.simple-bullets,
.page-product .simple-bullets,
.flat-card ul,
.page-product .flat-card ul,
.care-item p,
.page-product .care-item p,
.breadcrumbs,
.page-product .simple-breadcrumbs,
.page-product .product-breadcrumbs,
.page-product .breadcrumbs strong,
.page-product .simple-breadcrumbs strong,
.page-product .product-breadcrumbs strong,
.footer-copy p,
.footer-side p,
.footer-socials a,
.product-price,
.collection-grid-simple .price,
.page-collection .collection-grid-simple .price,
.pill-tag,
.outline-tag,
.page-collection .outline-tag,
.page-product .product-panel-simple .outline-tag {
  font-weight: 300;
}

.section-heading-simple p,
.page-home .section-heading-simple p {
  font-weight: 300;
}

.product-price,
.collection-grid-simple .price,
.page-collection .collection-grid-simple .price {
  font-weight: 400;
}

.hero-banner-copy p,
.page-home .home-hero-copy p,
.home-feature-grid p,
.home-recent-grid p,
.collection-grid-simple .tile-copy p,
.page-collection .tile-copy p,
.page-home .featured-product-card p,
.page-home .recent-products-grid p,
.atelier-banner-copy p,
.page-home .atelier-banner-copy p,
.footer-copy p,
.footer-side p,
.page-home .story-center-block p,
.page-home .narrative-center p,
.page-collection .collection-hero-simple p,
.page-collection .collection-bottom-note p,
.page-product .maker-note-block p,
.page-product .simple-options strong,
.page-product .product-option-list strong,
.page-product .tiny-red-note,
.page-product .faq-item p {
  font-weight: 300;
}

.collection-bottom-note p,
.page-collection .collection-bottom-note p,
.page-product .collection-bottom-note p {
  font-weight: 400;
}

.footer-copy p,
.footer-side p,
.page-home .footer-copy p,
.page-home .footer-side p,
.page-collection .footer-copy p,
.page-collection .footer-side p,
.page-about .footer-copy p,
.page-about .footer-side p,
.page-product .footer-copy p,
.page-product .footer-side p {
  font-size: 0.9rem;
  font-weight: 300;
  font-variation-settings: "wght" 300;
}

.story-center-block .button,
.page-home .story-center-block .button,
.page-home .narrative-center .button {
  margin-top: 28px;
}

.story-center-block .eyebrow,
.page-home .story-center-block .eyebrow,
.page-home .narrative-center .eyebrow {
  margin-bottom: 10px;
}

.story-center-block h2,
.page-home .story-center-block h2,
.page-home .narrative-center h2 {
  margin: 0;
}

.story-center-block p,
.page-home .story-center-block p,
.page-home .narrative-center p {
  margin: 0;
}

.story-center-block h2 + p,
.page-home .story-center-block h2 + p,
.page-home .narrative-center h2 + p {
  margin-top: 24px;
}

.story-center-block p + p,
.page-home .story-center-block p + p,
.page-home .narrative-center p + p {
  margin-top: 12px;
}

.footer-wrap,
.footer-wrap-simple,
.page-home .footer-wrap-simple,
.page-collection .footer-wrap-simple,
.page-about .footer-wrap-simple,
.page-product .footer-wrap-simple {
  align-items: stretch;
}

.footer-copy,
.page-home .footer-copy,
.page-collection .footer-copy,
.page-about .footer-copy,
.page-product .footer-copy {
  display: grid;
  grid-template-rows: auto auto minmax(44px, 1fr) auto;
  height: 100%;
}

.footer-side,
.page-home .footer-side,
.page-collection .footer-side,
.page-about .footer-side,
.page-product .footer-side {
  display: grid;
  grid-template-rows: auto auto;
  align-self: stretch;
  height: 100%;
  align-content: center;
}

.footer-copy p:last-child,
.page-home .footer-copy p:last-child,
.page-collection .footer-copy p:last-child,
.page-about .footer-copy p:last-child,
.page-product .footer-copy p:last-child {
  align-self: end;
  margin-bottom: -2px;
}

.footer-copy p:first-of-type,
.page-home .footer-copy p:first-of-type,
.page-collection .footer-copy p:first-of-type,
.page-about .footer-copy p:first-of-type,
.page-product .footer-copy p:first-of-type {
  color: var(--text);
  font-weight: 400;
  font-variation-settings: "wght" 400;
}

.footer-copy h3,
.page-home .footer-copy h3,
.page-collection .footer-copy h3,
.page-about .footer-copy h3,
.page-product .footer-copy h3 {
  font-size: 17px;
}

.footer-copy h3,
.footer-copy p,
.footer-side h4,
.footer-side p,
.page-home .footer-copy h3,
.page-home .footer-copy p,
.page-home .footer-side h4,
.page-home .footer-side p,
.page-collection .footer-copy h3,
.page-collection .footer-copy p,
.page-collection .footer-side h4,
.page-collection .footer-side p,
.page-about .footer-copy h3,
.page-about .footer-copy p,
.page-about .footer-side h4,
.page-about .footer-side p,
.page-product .footer-copy h3,
.page-product .footer-copy p,
.page-product .footer-side h4,
.page-product .footer-side p {
  margin-top: 0;
  margin-bottom: 0;
}

.page-about .story-left-labels h1 {
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  font-variation-settings: "wght" 500;
}

.page-about .story-article .eyebrow,
.page-about .story-article .eyebrow {
  font-size: 32px;
  line-height: 1;
  font-weight: 600;
  font-variation-settings: "wght" 600;
}

.page-about .story-owner-photo {
  margin-top: 0;
  margin-bottom: 33px;
}

.page-about .story-top-lines,
.page-about .story-top-lines p,
.page-about .story-article p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  font-variation-settings: "wght" 300;
}

.page-home .home-feature-large h3,
.page-home .home-feature-wide h3,
.page-home .home-feature-small h3 {
  margin: 12px 0 0;
}

.page-home .home-feature-large p,
.page-home .home-feature-wide p,
.page-home .home-feature-small p {
  margin-top: 2px;
  line-height: 1.42;
}

.page-home .recent-products-grid {
  display: block;
  overflow-x: auto;
  overflow-y: visible;
  --recent-inline-start: max(80px, calc((100vw - var(--container)) / 2));
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: var(--recent-inline-start);
  padding-right: 40px;
  padding-top: 18px;
  padding-bottom: 12px;
  scroll-snap-type: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-anchor: none;
}

.page-home .recent-products-grid::-webkit-scrollbar {
  display: none;
}

.page-home .recent-products-track {
  display: flex;
  gap: 36px;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.page-home .recent-products-grid .home-recent-card {
  flex: 0 0 288px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: translateY(0) rotate(0deg);
  transition: transform 280ms ease, filter 280ms ease;
}

.page-home .recent-products-grid .home-recent-card:nth-child(1) {
  transform: rotate(-1deg);
}

.page-home .recent-products-grid .home-recent-card:nth-child(2) {
  transform: rotate(0.8deg);
}

.page-home .recent-products-grid .home-recent-card:nth-child(3) {
  transform: rotate(-0.7deg);
}

.page-home .recent-products-grid .home-recent-card:nth-child(4) {
  transform: rotate(1deg);
}

.page-home .recent-products-grid .home-recent-card .home-card-image {
  overflow: hidden;
  border-radius: 20px;
  background: var(--card-edge, transparent);
  box-shadow: none;
  transition: transform 280ms ease;
  position: relative;
  transform: translateZ(0);
  backface-visibility: hidden;
  z-index: 1;
}

.page-home .featured-products-grid .featured-product-card .home-card-image {
  overflow: hidden;
}

.page-home .featured-products-grid .featured-product-card .home-card-image img {
  transform: scale(1.02);
  transition: transform 500ms ease;
  backface-visibility: hidden;
  transform-origin: center center;
  will-change: transform;
}

.page-home .recent-products-grid .home-recent-card:hover {
  transform: translateY(-4px) rotate(-1.2deg);
}

.page-home .recent-products-grid .home-recent-card:nth-child(2):hover,
.page-home .recent-products-grid .home-recent-card:nth-child(4):hover {
  transform: translateY(-4px) rotate(1.4deg);
}

.page-home .recent-products-grid .home-recent-card:nth-child(1):hover,
.page-home .recent-products-grid .home-recent-card:nth-child(3):hover {
  transform: translateY(-4px) rotate(-1.4deg);
}

.page-home .recent-products-grid .home-recent-card:hover img {
  transform: scale(1.07);
}

.page-home .featured-products-grid .featured-product-card:hover .home-card-image img {
  transform: scale(1.07);
}

.page-home .recent-products-grid .home-recent-card:hover::before {
  box-shadow: 0 8px 16px var(--card-shadow, rgba(123, 39, 50, 0.42));
}

/* Product details refinement */
.page-product .product-overview {
  padding-bottom: 8px;
}

.page-product .product-page-simple {
  padding-top: 16px;
}

.page-product .product-hero-card {
  padding: 10px 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  align-items: stretch;
}

.page-product .product-gallery-column,
.page-product .product-panel-top,
.page-product .product-copy-stack {
  display: grid;
}

.page-product .product-gallery-column {
  gap: 0;
}

.page-product .product-panel-top {
  grid-template-columns: auto;
  gap: 0;
  margin-top: 36px;
}

.page-product .product-panel-simple {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.page-product .product-panel-simple h1 {
  margin-top: 18px;
  font-size: 48px;
  line-height: 0.98;
  font-weight: 500;
  color: var(--text);
}

.page-product .product-panel-simple > p:first-of-type {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--muted);
  font-weight: 300;
}

.page-product .product-price {
  margin: 0;
  font-size: 3rem;
  line-height: 1.05;
  color: var(--text);
}

.page-product .option-swatch-large {
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(135deg, #d8808f 0%, #f1c3c8 54%, #efe2db 100%);
}

.page-product .option-swatch-medium {
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(135deg, #e2a8a7 0%, #f6d7d5 52%, #f5ebe7 100%);
}

.page-product .option-swatch-small {
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(135deg, #d9b6c4 0%, #f0dbe5 54%, #f8efef 100%);
}

.page-product .product-copy-stack {
  gap: 0;
  margin-top: 34px;
}

.page-product .product-copy-block + .product-copy-block {
  margin-top: 22px;
}

.page-product .product-copy-block h3,
.page-product .product-subtitle,
.page-product .size-block h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--text);
}

.page-product .product-copy-block p {
  margin-top: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.page-product .maker-note-block {
  padding-top: 0;
  border-top: 0;
}

.page-product .simple-frame {
  border-radius: 18px;
  box-shadow: none;
  overflow: hidden;
}

.page-product .simple-breadcrumbs {
  color: rgba(38, 30, 34, 0.5);
  margin-bottom: 8px;
  padding-block: 16px;
}

.page-product .breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-product .breadcrumb-list li {
  display: inline-flex;
  align-items: center;
  color: rgba(38, 30, 34, 0.5);
}

.page-product .breadcrumb-list li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: rgba(38, 30, 34, 0.38);
}

.page-product .simple-breadcrumbs a,
.page-product .product-breadcrumbs a {
  color: rgba(38, 30, 34, 0.5);
  text-decoration: none;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.page-product .simple-breadcrumbs a:hover,
.page-product .product-breadcrumbs a:hover {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.page-product .breadcrumb-list [aria-current="page"] {
  color: var(--brand);
}

.page-product .product-gallery-simple {
  --product-thumb-size: 92px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  width: min(100%, 728px);
  align-items: stretch;
}

.page-product .product-thumb-rail {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 14px;
  order: 0;
  width: var(--product-thumb-size);
  min-width: var(--product-thumb-size);
  align-self: stretch;
  box-sizing: border-box;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: y proximity;
  scroll-padding-block: calc(50% - (var(--product-thumb-size) / 2));
}

.page-product .product-thumb-rail::-webkit-scrollbar {
  display: none;
}

.page-product .product-thumb-rail > * {
  flex: 0 0 auto;
}

.page-product .product-thumb {
  width: var(--product-thumb-size);
  height: var(--product-thumb-size);
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 180ms ease, opacity 180ms ease;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  flex: 0 0 var(--product-thumb-size);
}

.page-product .product-thumb:hover {
  transform: translateY(-1px);
}

.page-product .product-thumb img,
.page-product .product-main-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-product .product-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.68);
  transition: background 180ms ease;
  pointer-events: none;
}

.page-product .product-thumb.active::after {
  background: rgba(255, 255, 255, 0);
}

.page-product .product-main-frame {
  position: relative;
  width: 100%;
  max-width: none;
  min-width: 0;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.76);
}

.page-product .gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.42;
  transition: opacity 180ms ease;
}

.page-product .gallery-arrow:hover {
  opacity: 0.84;
}

.page-product .gallery-arrow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-product .gallery-arrow-prev {
  left: 14px;
}

.page-product .gallery-arrow-next {
  right: 14px;
}

@media (max-width: 900px) {
  .page-product .product-gallery-simple {
    --product-thumb-size: 72px;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .page-product .product-thumb-rail {
    order: 1;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    min-width: 0;
    align-self: auto;
    max-height: none;
    padding: 6px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scroll-padding-block: 0;
    scroll-padding-inline: calc(50% - (var(--product-thumb-size) / 2));
    -webkit-overflow-scrolling: touch;
  }

  .page-product .product-main-frame {
    width: 100%;
  }

  .page-product .gallery-arrow {
    width: 38px;
    height: 38px;
  }
}

.page-product .product-info-simple {
  width: min(calc(100% - 32px), 960px);
  margin-top: 14px;
}

.page-product .flat-card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.page-product .note-row-simple {
  align-items: start;
  gap: 52px;
}

.page-product .flat-card ul {
  margin-top: 18px;
  padding-left: 28px;
  line-height: 1.8;
  color: var(--text);
}

.page-product .flat-card li + li {
  margin-top: 10px;
}

.page-product .care-grid {
  gap: 22px 26px;
}

.page-product .care-item {
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.page-product .care-item strong {
  font-size: 16px;
  line-height: 1.4;
}

.page-product .care-item p {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.5;
}

.page-product .product-shipping-block {
  padding-top: 0;
}

.page-product .product-shipping-block h2 {
  margin-bottom: 18px;
}

.page-product .product-faq-heading {
  margin-bottom: 22px;
}

.page-product .product-faq-heading h2 {
  font-weight: 500;
}

.page-product .simple-faq-grid,
.page-product .faq-columns {
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.page-product .faq-item button {
  padding: 18px 0;
}

.page-product .faq-item p {
  max-width: 460px;
}

@media (max-width: 1080px) {
  .page-product .product-hero-card {
    grid-template-columns: 1fr;
  }

  .page-product .product-gallery-stack {
    width: min(100%, 528px);
  }
}

@media (max-width: 760px) {
  .page-product .product-hero-card,
  .page-product .simple-faq-grid,
  .page-product .faq-columns,
  .page-product .flat-card {
    padding: 0;
    border-radius: 0;
  }

  .page-product .product-panel-top {
    margin-top: 28px;
  }

  .page-product .product-gallery-column,
  .page-product .product-gallery-simple,
  .page-product .product-main-frame,
  .page-product .product-panel-simple,
  .page-product .product-primary-actions,
  .page-product .product-copy-stack,
  .page-product .maker-note-block {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .page-product .product-gallery-simple {
    --product-thumb-size: 64px;
    gap: 12px;
  }

  .page-product .product-thumb-rail {
    gap: 8px;
    padding: 4px 0 2px;
  }

  .page-product .product-thumb,
  .page-product .product-thumb img {
    border-radius: 14px;
  }

  .page-product .simple-options .option-card,
  .page-product .product-option-list .option-card {
    width: 48px;
    min-width: 48px;
    max-width: 48px;
  }

  .page-product .simple-options .option-swatch,
  .page-product .product-option-list .option-swatch {
    width: 48px;
    min-width: 48px;
    max-width: 48px;
  }

  .page-product .note-row-simple {
    gap: 32px;
  }

  .page-product .product-gallery-stack {
    width: 100%;
  }

  .page-product .gallery-arrow {
    width: 40px;
    height: 40px;
  }

  .page-product .gallery-arrow-prev {
    left: 12px;
  }

  .page-product .gallery-arrow-next {
    right: 12px;
  }

  .page-product .product-panel-simple h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .page-product .product-panel-simple > p.product-subtitle:first-of-type,
  .page-product .product-price,
  .page-product .size-block h3 {
    font-size: 15px;
  }

  .page-product .product-price {
    line-height: 1.2;
  }

  .page-product .size-block {
    margin-top: 32px;
  }

  .page-product .product-primary-actions {
    margin-top: 20px;
  }

  .page-product .product-primary-actions .full,
  .page-product .product-cta-button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: 16px;
    white-space: normal;
    text-align: center;
  }

  .page-product .product-copy-stack {
    margin-top: 24px;
  }

  .page-product .maker-note-block {
    padding: 24px 18px 20px 24px;
  }

  .page-product .maker-note-block::before {
    left: 8px;
    font-size: 48px;
  }

  .page-product .maker-note-block p {
    overflow-wrap: anywhere;
  }
}

.page-product .product-panel-simple .outline-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  min-height: 0;
  padding: 2px 4px;
  border: 1px solid rgba(219, 1, 44, 0.2);
  border-radius: 4px;
  background: rgba(251, 225, 229, 0.5);
  white-space: nowrap;
}

.page-product .product-panel-simple {
  padding-top: 0;
}

.page-product .product-panel-simple h1 {
  margin-top: 8px;
  font-size: 36px;
  line-height: 1.06;
  font-weight: 500;
}

.page-product .product-panel-simple > p.product-subtitle:first-of-type {
  margin-top: 6px;
}

.page-product .product-panel-top {
  margin-top: 12px;
}

.page-product .product-price {
  margin: 0;
  font-size: 36px;
  line-height: 1.06;
  font-weight: 500;
}

.page-product .size-block {
  margin-top: 54px;
}

.page-product .size-block h3 {
  margin-bottom: 2px;
  font-size: 16px;
  line-height: 1.2;
}

.page-product .size-current-value {
  margin-left: 0;
  font-weight: 300;
  color: var(--muted);
}

.page-product .simple-options,
.page-product .product-option-list {
  margin: 6px 0 0;
  gap: 6px;
}

.page-product .simple-options .option-card,
.page-product .product-option-list .option-card {
  width: 48px;
  min-width: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  gap: 0;
  align-items: center;
}

.page-product .simple-options .option-card.active,
.page-product .product-option-list .option-card.active {
  border-color: transparent;
}

.page-product .simple-options .option-swatch,
.page-product .product-option-list .option-swatch {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  border-radius: 10px;
  box-sizing: border-box;
  border: 2px solid transparent;
}

.page-product .simple-options .option-card.active .option-swatch,
.page-product .product-option-list .option-card.active .option-swatch {
  border: 2px solid var(--brand);
}

.page-product .product-primary-actions {
  margin-top: 24px;
}

.page-product .product-primary-actions .full,
.page-product .product-cta-button {
  margin-top: 0;
}

.page-product .product-primary-actions .tiny-red-note {
  margin-top: 12px;
}

.page-product .product-copy-stack {
  margin-top: 32px;
}

.page-product .maker-note-block {
  position: relative;
  margin-top: 0;
  padding: 28px 28px 24px 34px;
  border-top: 0;
  border-left: 2px solid rgba(219, 1, 44, 0.42);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(219, 1, 44, 0.04) 0%, rgba(219, 1, 44, 0.01) 100%);
  overflow: hidden;
}

.page-product .maker-note-block::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 60px;
  line-height: 1;
  font-weight: 500;
  color: rgba(219, 1, 44, 0.2);
}

.page-product .maker-note-block h3 {
  position: relative;
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.page-product .maker-note-block p {
  position: relative;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
  color: rgba(38, 30, 34, 0.86);
}

.page-product .maker-note-block p + p {
  margin-top: 12px;
}

.page-product .product-faq-container {
  width: min(calc(100% - 32px), 960px);
}

.page-product .product-faq-card {
  width: 100%;
  margin: 0 auto;
  padding: 24px 8px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: none;
}

.page-product .product-faq-heading {
  width: 100%;
  max-width: none;
  margin: 0 0 18px;
  text-align: center;
}

.page-product .product-faq-heading h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.page-product .product-faq-heading p {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 300;
  color: rgba(90, 74, 78, 0.78);
}

.page-product .simple-faq-grid,
.page-product .faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
  padding: 0;
  gap: 52px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-product .simple-faq-grid > div,
.page-product .faq-columns > div {
  min-width: 0;
}

.page-product .faq-item {
  width: 100%;
  padding-top: 0;
  border-bottom: 1px solid rgba(123, 39, 50, 0.12);
}

.page-product .faq-item button {
  width: 100%;
  padding: 16px 0 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 16px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 400;
  align-items: start;
}

.page-product .faq-item .symbol {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}

.page-product .faq-item p {
  display: none;
  max-width: none;
  margin-top: 0;
  padding: 0 0 12px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
}

.page-product .faq-item.open p {
  display: block;
}

.page-product .breadcrumb-list [aria-current="page"] {
  font-weight: 400;
}

.page-product .product-info-simple {
  width: min(calc(100% - 32px), 1040px);
  margin-top: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(123, 39, 50, 0.12);
}

.page-product .note-row-simple {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
}

.page-product .product-note-card,
.page-product .care-guide-card {
  padding: 22px 22px 20px;
  border: 1px solid rgba(196, 116, 129, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 248, 248, 0.92) 100%);
  box-shadow: 0 12px 30px rgba(163, 76, 93, 0.06);
}

.page-product .product-note-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 249, 0.92) 0%, rgba(255, 244, 244, 0.96) 100%);
}

.page-product .care-guide-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(250, 244, 244, 0.94) 100%);
}

.page-product .product-note-card .icon-heading,
.page-product .care-guide-card .icon-heading {
  align-items: center;
  gap: 12px;
  margin: 0;
}

.page-product .product-note-card .icon-badge,
.page-product .care-guide-card .icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.page-product .care-guide-card .icon-badge img,
.page-product .care-guide-card .care-title img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(27%) saturate(1478%) hue-rotate(314deg) brightness(92%) contrast(95%);
}

.page-product .product-note-card h3,
.page-product .care-guide-card h3 {
  font-size: 22px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.page-product .product-detail-strip {
  display: block;
  margin-bottom: 20px;
}

.page-product .product-detail-strip img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

.page-product .product-detail-strip img + img {
  margin-top: 12px;
}

.page-product .product-note-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.page-product .product-note-card li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(38, 30, 34, 0.8);
}

.page-product .product-note-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(235, 23, 69, 0.72);
  transform: translateY(-50%);
}

.page-product .product-note-card li + li {
  margin-top: 12px;
}

.page-product .care-guide-card .care-grid {
  margin-top: 18px;
  gap: 12px;
}

.page-product .care-guide-card .care-item {
  padding: 16px 16px 14px;
  border: 1px solid rgba(196, 116, 129, 0.12);
  border-radius: 18px;
  background: rgba(255, 245, 245, 0.88);
}

.page-product .care-guide-card .care-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.page-product .care-guide-card .care-item strong {
  font-size: 13px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.page-product .care-guide-card .care-item p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(38, 30, 34, 0.72);
}

.page-about .story-left-labels h1 {
  font-size: 36px;
  color: var(--brand);
}

.page-about .story-top-lines,
.page-about .story-top-lines p,
.page-about .story-article p {
  color: #000;
}

@media (max-width: 760px) {
  .nav-bar,
  .nav-bar-simple,
  .page-home .nav-bar-simple,
  .page-collection .nav-bar-simple,
  .page-about .nav-bar-simple,
  .page-product .nav-bar-simple {
    grid-template-columns: auto 1fr auto;
    justify-content: initial;
  }

  .brand-mark,
  .page-home .brand-mark,
  .page-collection .brand-mark,
  .page-about .brand-mark,
  .page-product .brand-mark {
    justify-self: start;
  }

  .nav-actions {
    margin-left: 0;
    justify-self: end;
  }

  .nav-links,
  .nav-links-simple,
  .page-home .nav-links-simple,
  .page-collection .nav-links-simple,
  .page-about .nav-links-simple,
  .page-product .nav-links-simple {
    left: auto;
    right: 20px;
    width: max-content;
    min-width: 0;
    max-width: calc(100vw - 40px);
  }

  .page-product .product-gallery-column,
  .page-product .product-gallery-simple,
  .page-product .product-main-frame,
  .page-product .product-panel-simple,
  .page-product .product-primary-actions,
  .page-product .product-copy-stack,
  .page-product .maker-note-block {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .page-product .product-gallery-simple {
    --product-thumb-size: 64px;
    gap: 12px;
  }

  .page-product .product-thumb-rail {
    gap: 8px;
    padding: 4px 0 2px;
  }

  .page-product .simple-options .option-card,
  .page-product .product-option-list .option-card,
  .page-product .simple-options .option-swatch,
  .page-product .product-option-list .option-swatch {
    width: 48px;
    min-width: 48px;
    max-width: 48px;
  }

  .page-product .product-panel-simple h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .page-product .product-panel-simple > p.product-subtitle:first-of-type,
  .page-product .product-price,
  .page-product .size-block h3 {
    font-size: 15px;
  }

  .page-product .product-price {
    line-height: 1.2;
  }

  .page-product .size-block {
    margin-top: 32px;
  }

  .page-product .product-primary-actions {
    margin-top: 20px;
  }

  .page-product .product-primary-actions .full,
  .page-product .product-cta-button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: 16px;
    white-space: normal;
    text-align: center;
  }

  .page-product .product-copy-stack {
    margin-top: 24px;
  }

  .page-product .maker-note-block {
    padding: 24px 18px 20px 24px;
  }

  .page-product .maker-note-block::before {
    left: 8px;
    font-size: 48px;
  }

  .page-product .maker-note-block p {
    overflow-wrap: anywhere;
  }
}

.atelier-banner::before,
.atelier-banner::after,
.page-home .custom-order-banner::before,
.page-home .custom-order-banner::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

.atelier-banner-copy,
.page-home .atelier-banner-copy {
  background: transparent !important;
}

@media (max-width: 1080px) {
  .page-home .home-hero-media {
    aspect-ratio: 629 / 600;
    min-height: 0 !important;
    height: auto !important;
    align-self: start;
  }
}

@media (max-width: 760px) {
  .page-404 .not-found-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .page-404 .not-found-actions {
    flex-direction: column;
  }

  .page-404 .not-found-actions .button,
  .page-404 .not-found-actions .button-ghost {
    width: 100%;
  }

  .page-home .home-feature-large,
  .page-home .featured-products-stack,
  .page-home .home-feature-wide,
  .page-home .home-feature-small,
  .page-home .featured-products-row {
    aspect-ratio: auto !important;
    height: auto !important;
  }

  .page-home .home-feature-large,
  .page-home .home-feature-wide,
  .page-home .home-feature-small {
    grid-template-rows: auto auto auto !important;
  }

  .page-home .home-feature-large .home-card-image,
  .page-home .home-feature-wide .home-card-image,
  .page-home .home-feature-small .home-card-image,
  .page-home .featured-products-grid .home-feature-large .square-image,
  .page-home .featured-products-grid .home-feature-wide .wide-image,
  .page-home .featured-products-grid .home-feature-small .square-image {
    height: auto !important;
  }

  .page-home .featured-products-grid .home-feature-large .square-image,
  .page-home .featured-products-grid .home-feature-small .square-image {
    aspect-ratio: 1 / 1 !important;
  }

  .page-home .featured-products-grid .home-feature-wide .wide-image {
    aspect-ratio: 16 / 9 !important;
  }
}

@media (max-width: 760px) {
  .page-collection .collection-grid,
  .page-collection .collection-grid-simple {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 40px 24px !important;
  }
}

@media (max-width: 640px) {
  .page-404 .not-found-section {
    padding: 24px 0 72px;
  }

  .page-404 .not-found-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .page-404 .not-found-image-wrap {
    padding: 14px;
    border-radius: 24px;
  }

  .page-404 .not-found-image-wrap img,
  .page-404 .not-found-links a {
    border-radius: 18px;
  }
}

@media (max-width: 760px) {
  .container,
  .page-product .product-info-simple,
  .page-product .product-faq-container {
    width: min(calc(100% - 24px), var(--container));
  }

  .nav-bar,
  .nav-bar-simple,
  .page-home .nav-bar-simple,
  .page-collection .nav-bar-simple,
  .page-about .nav-bar-simple,
  .page-product .nav-bar-simple {
    min-height: 72px;
    padding: 10px 0;
    gap: 10px;
  }

  .brand-mark-logo,
  .page-home .brand-mark-logo,
  .page-collection .brand-mark-logo,
  .page-about .brand-mark-logo,
  .page-product .brand-mark-logo,
  .page-404 .brand-mark-logo {
    height: 34px;
  }

  .nav-actions,
  .page-home .nav-actions,
  .page-collection .nav-actions,
  .page-about .nav-actions,
  .page-product .nav-actions {
    gap: 8px;
  }

  .contact-pill,
  .page-home .contact-pill,
  .page-collection .contact-pill,
  .page-about .contact-pill,
  .page-product .contact-pill,
  .page-404 .contact-pill {
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
    line-height: 1;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .nav-links,
  .nav-links-simple,
  .page-home .nav-links-simple,
  .page-collection .nav-links-simple,
  .page-about .nav-links-simple,
  .page-product .nav-links-simple {
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: min(220px, calc(100vw - 24px));
    padding: 8px;
  }

  .nav-links a,
  .nav-links-simple a,
  .page-home .nav-links-simple a,
  .page-collection .nav-links-simple a,
  .page-about .nav-links-simple a,
  .page-product .nav-links-simple a {
    padding: 10px 12px;
    font-size: 15px;
  }

  .page-home .hero-simple,
  .page-collection .collection-hero-simple,
  .page-about .story-page-simple,
  .page-product .product-page-simple {
    padding-top: 20px;
  }

  .page-home .home-hero-layout {
    width: min(calc(100% - 32px), var(--container));
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 32px;
    gap: 18px;
  }

  .hero-banner-media,
  .page-home .home-hero-media {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .hero-banner-copy,
  .page-home .home-hero-copy {
    padding: 8px 6px 0;
  }

  .page-home .home-hero-copy > * {
    max-width: none;
  }

  .eyebrow,
  .page-home .eyebrow,
  .page-about .eyebrow,
  .page-product .eyebrow,
  .page-collection .eyebrow {
    margin-bottom: 10px;
    font-size: 1.55rem;
  }

  .page-home .home-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.6rem, 11vw, 3.6rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
    text-wrap: balance;
  }

  .page-home .home-hero-copy p {
    max-width: none;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
  }

  .button,
  .page-home .small-button,
  .page-collection .simple-ghost,
  .page-collection .ghost-button {
    min-height: 46px;
    padding: 12px 18px;
    font-size: 14px;
  }

  .page-home .section-heading-simple h2,
  .page-home .story-center-block h2,
  .page-collection .collection-hero-simple h1,
  .page-product .product-faq-heading h2 {
    font-size: clamp(2rem, 9vw, 2.4rem);
    line-height: 1;
  }

  .page-home .section-heading-simple p,
  .page-home .story-center-block p,
  .page-home .atelier-banner-copy p,
  .page-collection .collection-hero-simple p,
  .page-product .product-faq-heading p {
    font-size: 15px;
    line-height: 1.6;
  }

  .page-home .story-center-block,
  .page-home .narrative-center {
    max-width: 100%;
  }

  .page-home .footer-wrap-simple,
  .page-collection .footer-wrap-simple,
  .page-about .footer-wrap-simple,
  .page-product .footer-wrap-simple,
  .footer-wrap-simple,
  .site-footer-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 20px 24px;
  }

  .footer-copy,
  .footer-side,
  .page-home .footer-copy,
  .page-home .footer-side,
  .page-collection .footer-copy,
  .page-collection .footer-side,
  .page-about .footer-copy,
  .page-about .footer-side,
  .page-product .footer-copy,
  .page-product .footer-side {
    display: block;
    height: auto;
  }

  .page-home .footer-copy h3,
  .page-collection .footer-copy h3,
  .page-about .footer-copy h3,
  .page-product .footer-copy h3 {
    font-size: 18px;
    line-height: 1.1;
  }

  .page-home .footer-copy p,
  .page-home .footer-side p,
  .page-collection .footer-copy p,
  .page-collection .footer-side p,
  .page-about .footer-copy p,
  .page-about .footer-side p,
  .page-product .footer-copy p,
  .page-product .footer-side p {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
  }

  .footer-socials,
  .page-home .footer-socials,
  .page-collection .footer-socials,
  .page-about .footer-socials,
  .page-product .footer-socials {
    display: flex;
    justify-self: start;
    align-self: start;
    justify-content: flex-start;
    margin-left: 0;
    gap: 10px;
  }

  .page-home .footer-socials a,
  .page-collection .footer-socials a,
  .page-about .footer-socials a,
  .page-product .footer-socials a {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .page-about .story-page-grid,
  .page-about .story-page-grid-contact,
  .story-page-grid,
  .story-page-grid-contact {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .story-left-labels,
  .page-about .story-left-labels {
    gap: 12px;
  }

  .story-left-labels h1,
  .page-about .story-left-labels h1 {
    font-size: 34px;
    line-height: 1;
  }

  .story-top-lines,
  .page-about .story-top-lines,
  .story-article p,
  .page-about .story-article p {
    font-size: 15px;
    line-height: 1.7;
  }

  .social-button,
  .page-about .social-button {
    width: 72px;
    height: 72px;
    font-size: 14px;
  }

  .page-product .simple-breadcrumbs {
    margin-bottom: 4px;
    padding-block: 8px 12px;
  }

  .page-product .breadcrumb-list,
  .page-product .breadcrumb-list li,
  .page-product .simple-breadcrumbs a,
  .page-product .breadcrumb-list [aria-current="page"] {
    font-size: 14px;
    line-height: 1.35;
  }

  .page-product .product-gallery-simple {
    --product-thumb-size: 56px;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .page-product .product-thumb-rail {
    order: 1;
    width: 100%;
    min-width: 0;
    padding: 4px 0 0;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 0;
  }

  .page-product .product-thumb,
  .page-product .product-thumb img {
    width: var(--product-thumb-size);
    height: var(--product-thumb-size);
  }

  .page-product .gallery-arrow {
    width: 38px;
    height: 38px;
  }

  .page-product .product-panel-simple {
    padding-top: 6px;
  }

  .page-product .product-panel-simple .outline-tag {
    font-size: 11px;
    line-height: 1.2;
    padding: 4px 6px;
    white-space: normal;
  }

  .page-product .product-panel-simple h1 {
    font-size: clamp(2.1rem, 9.5vw, 2.5rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .page-product .product-panel-simple > p.product-subtitle:first-of-type {
    font-size: 14px;
    line-height: 1.5;
  }

  .page-product .product-price {
    font-size: 26px;
    line-height: 1.05;
  }

  .page-product .size-block {
    margin-top: 24px;
  }

  .page-product .size-block h3,
  .page-product .size-current-value {
    font-size: 14px;
  }

  .page-product .product-detail-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 16px;
  }

  .page-product .product-detail-strip img + img {
    margin-top: 0;
  }

  .page-product .note-row-simple,
  .note-row-simple {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-product .product-note-card,
  .page-product .care-guide-card {
    padding: 18px 16px;
  }

  .page-product .product-note-card h3,
  .page-product .care-guide-card h3 {
    font-size: 18px;
    line-height: 1.1;
  }

  .page-product .product-note-card li,
  .page-product .care-guide-card .care-item p {
    font-size: 14px;
    line-height: 1.6;
  }

  .page-product .care-guide-card .care-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-product .care-guide-card .care-item {
    padding: 14px;
  }

  .page-product .care-guide-card .care-item strong {
    font-size: 12px;
    line-height: 1.2;
  }

  .page-product .product-faq-card {
    padding: 20px 0 18px;
    background: transparent;
    border: 0;
  }

  .page-product .simple-faq-grid,
  .page-product .faq-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .page-product .faq-item button {
    padding: 14px 0 12px;
    column-gap: 12px;
    font-size: 16px;
    line-height: 1.35;
  }

  .page-product .faq-item .symbol {
    font-size: 18px;
  }

  .page-product .faq-item p {
    padding-bottom: 14px;
    font-size: 14px;
    line-height: 1.65;
  }

  .page-collection .collection-hero-simple {
    padding-top: 104px;
  }

  .page-collection .collection-hero-simple p {
    margin: 18px auto 26px;
  }

  .page-collection .chip-row.center {
    gap: 10px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .page-collection .filter-chip {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
  }

  .page-collection .section-tight {
    padding-top: 36px;
  }

  .page-collection .collection-grid-simple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
  }

  .page-collection .collection-grid-panel,
  .page-collection .collection-grid-viewport > .collection-grid-simple {
    row-gap: 10px;
    column-gap: 14px;
  }

  .page-collection .product-tile {
    padding: 8px 10px;
  }

  .page-collection .tile-copy {
    padding: 10px 2px 0;
  }

  .page-collection .tile-media {
    height: auto;
    aspect-ratio: 1 / 1.12;
  }

  .page-collection .tile-copy h3 {
    font-size: 16px;
    line-height: 1.35;
  }

  .page-collection .tile-copy p {
    margin: 4px 0 8px;
    font-size: 13px;
    line-height: 1.45;
  }

  .page-collection .collection-grid-simple .price {
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.2;
  }
}

@media (max-width: 560px) {
  .page-product .simple-breadcrumbs {
    margin-bottom: 4px;
    padding-block: 8px 12px;
  }

  .page-product .breadcrumb-list {
    display: block;
    width: 100%;
  }

  .page-product .breadcrumb-list li {
    display: none;
  }

  .page-product .breadcrumb-list li:nth-last-child(2) {
    display: inline-flex;
    align-items: center;
  }

  .page-product .breadcrumb-list li:nth-last-child(2)::before {
    content: "\2039";
    margin-right: 8px;
    font-size: 18px;
    line-height: 1;
    color: currentColor;
  }

  .page-product .breadcrumb-list li:nth-last-child(2)::after {
    content: none;
  }

  .page-product .breadcrumb-list li:nth-last-child(2) a {
    white-space: nowrap;
    color: rgba(38, 30, 34, 0.82);
  }
}

/* Final Vertical Rhythm Overrides */
.page-collection .collection-hero-simple {
  padding-top: 88px;
  padding-bottom: 24px;
}

.page-collection .collection-hero-simple p {
  margin: 18px auto 24px;
}

.page-collection main > section.section.section-tight {
  padding-bottom: 30px;
}

.page-home .home-story-section {
  padding: 64px 0;
}

.page-collection .collection-bottom-note {
  padding: 32px 0 64px;
}

.page-product .collection-bottom-note {
  padding: 48px 0;
}

.page-product .product-info-simple {
  margin-top: 8px;
}

.page-collection .center-cta {
  margin-top: 30px;
  margin-bottom: 0;
}

.page-product .product-faq-card {
  padding: 28px 8px;
}

.page-product .product-page-simple > .section.section-tight:last-of-type {
  padding-bottom: 40px;
}

.page-collection .collection-bottom-note p {
  font-weight: 300;
}

.page-home .home-content-section {
  padding-bottom: 48px;
}

.page-home .featured-products-grid {
  gap: 16px;
}

.page-home .featured-products-stack,
.page-home .featured-products-row {
  gap: 16px;
}

.page-home .home-feature-large h3,
.page-home .home-feature-wide h3,
.page-home .home-feature-small h3 {
  margin: 8px 0 0;
  line-height: 1.2;
}

.page-home .home-feature-large p,
.page-home .home-feature-wide p,
.page-home .home-feature-small p {
  margin-top: 0;
  line-height: 1.32;
}

@media (max-width: 760px) {
  .page-collection .collection-hero-simple {
    padding-top: 56px;
    padding-bottom: 16px;
  }

  .page-collection .collection-hero-simple p {
    margin: 12px auto 18px;
  }

  .page-collection main > section.section.section-tight {
    padding-top: 0;
    padding-bottom: 32px;
  }

  .page-home .home-story-section {
    padding: 40px 0;
  }

  .page-collection .collection-bottom-note,
  .page-product .collection-bottom-note {
    padding: 32px 0;
  }

  .page-product .product-info-simple {
    margin-top: 8px;
  }

  .page-collection .center-cta {
    margin-top: 16px;
    margin-bottom: 0;
  }

  .page-product .product-faq-card {
    padding: 20px 0;
  }

  .page-product .product-page-simple > .section.section-tight:last-of-type {
    padding-bottom: 24px;
  }

  .page-home .home-content-section {
    padding-bottom: 32px;
  }

  .page-home .featured-products-grid,
  .page-home .featured-products-stack,
  .page-home .featured-products-row {
    gap: 6px;
  }

  .page-home .home-feature-large h3,
  .page-home .home-feature-wide h3,
  .page-home .home-feature-small h3 {
    margin-top: 6px;
  }

  .page-home .home-feature-large p,
  .page-home .home-feature-wide p,
  .page-home .home-feature-small p {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .page-collection .chip-row.center {
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 0;
  }

  .page-collection main > section.section.section-tight {
    padding-top: 0;
    padding-bottom: 32px;
  }

  .page-collection .collection-grid-simple,
  .page-collection .collection-grid-panel,
  .page-collection .collection-grid-viewport > .collection-grid-simple {
    margin-top: 10px;
  }

  .page-collection main > section.section.section-tight > div > div.collection-grid-viewport > div {
    row-gap: 20px !important;
    column-gap: 10px !important;
  }
}

@media (min-width: 601px) and (max-width: 800px) {
  .page-collection .chip-row.center {
    justify-content: center;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .page-home .home-hero-copy,
  .page-home .hero-banner-copy {
    padding-right: 0;
  }

  .page-home .home-hero-copy > * {
    max-width: none;
  }

  .page-home .home-hero-copy h1,
  .page-home .home-hero-copy p {
    max-width: none;
  }

  .page-home .featured-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .page-home .featured-products-stack {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 24px;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .page-home .featured-products-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    height: 100%;
    align-items: stretch;
  }
}
