@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-roman.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("assets/fonts/inter-tight.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("assets/fonts/jetbrains-mono.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
}

:root {
  --red: #c8487a;
  --red-dark: #c8487a;
  --pink: #f7eef0;
  --cream: #f7eef0;
  --white: #f7eef0;
  --ink: #c8487a;
  --muted: #c8487a;
  --ink-mute: #c8487a;
  --ink-soft: #c8487a;
  --paper-2: #f7eef0;
  --paper-3: #f7eef0;
  --sage: #c8487a;
  --sage-deep: #c8487a;
  --hair: rgba(200, 72, 122, 0.18);
  --hair-soft: rgba(200, 72, 122, 0.09);
  --radius: 22px;
  --gap: clamp(14px, 1.65vw, 26px);
  --page: min(1500px, calc(100% - clamp(24px, 4vw, 64px)));
  --serif: "Cormorant Garamond", Garamond, Georgia, serif;
  --sans: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--white);
  background: var(--red);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--red);
  background: var(--white);
  border-radius: 999px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: var(--page);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: clamp(14px, 2vw, 28px) 0 12px;
  background: linear-gradient(to bottom, var(--cream) 82%, transparent);
}

.nav-wrap {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 12px clamp(18px, 2.5vw, 34px);
  color: var(--white);
  background: var(--red);
  border-radius: var(--radius);
}

.brand {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.brand small {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 0.55rem;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  font-size: 0.92rem;
  text-decoration: none;
}

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

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .cart-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 7px 10px 7px 11px;
  color: var(--red);
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav .cart-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.site-search-toggle { display:inline-grid; width:38px; height:38px; place-items:center; color:var(--red); background:var(--cream); border:0; border-radius:50%; cursor:pointer; }
.site-search-toggle svg { width:19px; height:19px; fill:none; stroke:currentColor; stroke-width:1.8; }
.site-search-panel { position:fixed; z-index:1000; inset:0; display:grid; place-items:start center; padding:clamp(20px,8vh,100px) 20px; background:rgba(80,18,45,.4); }
.site-search-dialog { position:relative; width:min(680px,100%); padding:clamp(28px,5vw,48px); color:var(--red); background:var(--cream); border-radius:24px; box-shadow:0 24px 90px rgba(60,10,30,.28); }
.site-search-dialog input { width:100%; margin:8px 0 16px; padding:14px 16px; color:var(--red); background:#fff; border:1px solid var(--hair); border-radius:12px; }
.site-search-close { position:absolute; top:14px; right:16px; color:var(--red); background:transparent; border:0; font-size:2rem; cursor:pointer; }
.site-search-results { display:grid; gap:6px; max-height:55vh; overflow:auto; }
.site-search-results a { display:grid; gap:2px; padding:12px; text-decoration:none; border:1px solid var(--hair); border-radius:10px; }
.site-search-results a:hover,.site-search-results a:focus-visible { background:#fff; }
.site-search-results span { font-size:.82rem; opacity:.75; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

.main-nav .cart-link::after {
  display: none;
}

.main-nav .cart-link:hover {
  color: var(--cream);
  background: transparent;
  border-color: var(--cream);
}

.main-nav .cart-link:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

.cart-count {
  display: grid;
  min-width: 1.45rem;
  height: 1.45rem;
  padding: 0 .25rem;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: .7rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.main-nav .cart-link:hover .cart-count {
  color: var(--red);
  background: var(--cream);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(247,238,240,.55);
  border-radius: 50%;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  content: "";
  background: currentColor;
}

main {
  padding-bottom: var(--gap);
}

.stack {
  display: grid;
  gap: var(--gap);
}

.panel {
  overflow: hidden;
  border-radius: var(--radius);
}

.eyebrow {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.display,
h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.2rem, 6.9vw, 7.1rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2.1rem);
}

p {
  margin-top: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--gap);
  min-height: min(770px, calc(100vh - 130px));
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 660px;
  padding: clamp(28px, 4vw, 58px);
  color: var(--white);
  background: var(--red);
}

.hero-copy h1 {
  max-width: 8.5ch;
  margin-bottom: 36px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 42ch;
  margin-bottom: 28px;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.hero-media {
  min-height: 660px;
  background: var(--pink);
}

.hero-media img,
.feature-image img,
.catalog-tile img,
.image-card img,
.contact-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.hero:hover .hero-media img,
.catalog-tile:hover img,
.image-card:hover img {
  transform: scale(1.025);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 12px 26px;
  color: var(--red);
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 999px;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--white);
  background: transparent;
  transform: translateY(-2px);
}

.button-outline {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--white);
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.intro-panel {
  min-height: 680px;
  padding: clamp(34px, 5vw, 74px);
  color: var(--red);
  background: var(--pink);
}

.intro-panel h2 {
  margin-bottom: clamp(36px, 6vw, 80px);
}

.intro-panel .statement {
  max-width: 18ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(36px, 5vw, 70px) clamp(8px, 1vw, 14px) 8px;
  color: var(--red);
}

.section-head h2 {
  margin-bottom: 0;
}

.section-head p {
  max-width: 45ch;
  margin-bottom: 8px;
}

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

.catalog-tile {
  position: relative;
  min-height: 650px;
  color: var(--white);
  background: var(--ink);
}

.catalog-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 38%, rgba(200,72,122,.82));
  pointer-events: none;
}

.catalog-tile > a {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.catalog-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: clamp(24px, 3vw, 38px);
}

.catalog-label span {
  display: block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.catalog-label h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-auto-rows: minmax(330px, 39vw);
  gap: var(--gap);
}

.gallery-grid .image-card:first-child {
  grid-row: span 1;
}

.gallery-grid .wide {
  grid-column: 1 / -1;
  min-height: 570px;
}

.process-panel {
  padding: clamp(36px, 5vw, 70px);
  color: var(--white);
  background: var(--red);
}

.process-panel h2 {
  margin-bottom: clamp(40px, 6vw, 78px);
}

.number-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(45px, 8vw, 120px);
}

.number-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid rgba(247,238,240,.55);
}

.number-item .num {
  font-family: var(--serif);
  font-size: 1.5rem;
}

.number-item h3 {
  margin-bottom: 8px;
}

.number-item p {
  max-width: 47ch;
  margin: 0;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 610px;
  padding: clamp(34px, 5vw, 72px);
  color: var(--red);
  background: var(--pink);
}

.feature-copy p {
  max-width: 48ch;
}

.feature-image {
  min-height: 610px;
}

.page-hero {
  padding: clamp(45px, 8vw, 120px) clamp(32px, 6vw, 90px);
  color: var(--white);
  background: var(--red);
}

.page-hero h1 {
  max-width: 10ch;
  margin-bottom: 28px;
}

.page-hero p:last-child {
  max-width: 58ch;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, .38fr) minmax(0, 1fr);
  gap: var(--gap);
}

.legal-aside {
  align-self: start;
  position: sticky;
  top: 122px;
  padding: clamp(28px, 4vw, 54px);
  color: var(--red);
  background: var(--pink);
}

.legal-aside h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.legal-aside nav {
  display: grid;
  gap: 8px;
}

.legal-aside a {
  text-underline-offset: 3px;
}

.legal-copy {
  padding: clamp(32px, 5vw, 72px);
  background: var(--white);
}

.legal-copy section {
  max-width: 860px;
  padding: 30px 0;
  border-top: 1px solid var(--hair);
}

.legal-copy section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-copy h2 {
  margin-bottom: 20px;
  color: var(--red);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.legal-copy h3 {
  margin: 28px 0 12px;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.legal-copy li {
  margin: 9px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.contact-image {
  min-height: 820px;
}

.contact-panel {
  padding: clamp(34px, 5vw, 72px);
  background: var(--white);
}

.contact-panel h1 {
  color: var(--red);
  font-size: clamp(3rem, 5.5vw, 5.8rem);
}

.contact-details {
  display: grid;
  gap: 18px;
  margin: 36px 0 52px;
  padding: 28px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}

.contact-details p {
  margin: 0;
}

.contact-details strong {
  display: inline-block;
  min-width: 110px;
  color: var(--red);
  font-weight: 500;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field {
  display: grid;
  gap: 8px;
}

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

.field label {
  color: var(--red);
  font-size: .86rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--red);
  border-radius: 0;
  outline: none;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-width: 2px;
}

.form-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--red);
}

.cart-page .page-hero,
.cart-empty,
.cart-lines,
.quote-form,
.quote-confirmation,
.quote-success {
  padding: clamp(30px, 4vw, 58px);
  background: var(--white);
}

.cart-page .page-hero {
  color: var(--white);
  background: var(--red);
}

.cart-page .page-hero h1 {
  margin-bottom: 22px;
}

.cart-page .page-hero p:last-child {
  max-width: 54ch;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.cart-request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: var(--gap);
}

.cart-lines h2,
.quote-form h2,
.quote-confirmation h2,
.quote-success h2,
.cart-empty h2 {
  margin-bottom: 30px;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.cart-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--hair);
}

.cart-line:first-child { border-top: 0; }
.cart-line-image { flex: 0 0 92px; height: 92px; overflow: hidden; border-radius: 10px; background: var(--pink); }
.cart-line-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-placeholder { display: grid; place-items: center; padding: 10px; color: var(--ink-mute); font-size: .72rem; line-height: 1.2; text-align: center; }
.cart-line-copy { min-width: 0; margin-right: auto; }
.cart-line-title { font-family: var(--serif); font-size: 1.8rem; line-height: 1; text-underline-offset: 4px; }
.cart-line-meta, .cart-line-summary { margin: 8px 0 0; color: var(--ink-mute); font-size: .88rem; }
.cart-line-controls { display: grid; grid-template-columns: minmax(84px, 105px) auto; align-items: end; gap: 10px; flex: 0 0 auto; }
.cart-quantity-label { display: grid; gap: 5px; color: var(--ink-mute); font-size: .75rem; }
.cart-quantity { width: 100%; min-height: 44px; padding: 7px 9px; color: var(--ink); border: 1px solid var(--hair); border-radius: 8px; background: var(--cream); }
.cart-remove { min-height: 44px; padding: 8px 0; color: var(--red); background: transparent; border: 0; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }
.cart-remove:focus-visible, .cart-quantity:focus-visible, .quote-form input:focus-visible, .quote-confirmation:focus-visible, .quote-success h2:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

[data-cart-totals] { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--hair); font-family: var(--mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }

.quote-form { display: grid; align-content: start; gap: 18px; }
.quote-form label { display: grid; gap: 7px; font-size: .88rem; }
.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 48px;
  padding: 10px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--red);
  border-radius: 0;
  background: transparent;
}
.quote-form select {
  cursor: pointer;
}
.phone-field {
  display: grid;
  grid-template-columns: minmax(150px, .72fr) minmax(180px, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
  border: 0;
}
.phone-field legend {
  grid-column: 1 / -1;
  padding: 0;
  margin-bottom: -7px;
  font-size: .88rem;
}
.quote-form .button { margin-top: 12px; cursor: pointer; }
.form-honeypot { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.empty-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.quote-confirmation, .quote-success { max-width: 880px; margin: 0 auto; }
.quote-confirmation .eyebrow { margin-bottom: 20px; }
.quote-confirmation h2 { margin-bottom: 22px; }
.quote-confirmation p { max-width: 42ch; }
.quote-confirmation-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.quote-primary { color: var(--white); background: var(--red); border-color: var(--red); }
.quote-primary:hover, .quote-primary:focus-visible { color: var(--white); background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }
.quote-secondary { min-height: 48px; padding: 12px 4px; color: var(--red); background: transparent; border: 0; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }
.quote-secondary:hover, .quote-secondary:focus-visible { color: var(--red-dark); }
.quote-success { color: var(--white); background: var(--red); }
.quote-success .eyebrow { margin-bottom: 20px; }
[data-quote-submit][disabled] { cursor: wait; opacity: .65; }

@media (max-width: 820px) {
  .cart-request-layout { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-brand-column {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .cart-line { flex-wrap: wrap; }
  .cart-line-image { flex-basis: 74px; height: 74px; }
  .cart-line-copy { flex: 1 1 calc(100% - 90px); }
  .cart-line-controls { width: 100%; grid-template-columns: minmax(110px, 1fr) auto; }
  .phone-field { grid-template-columns: 1fr; }
  .cart-page .page-hero, .cart-empty, .cart-lines, .quote-form, .quote-confirmation, .quote-success { padding: 30px 24px; }
}

.site-footer {
  width: var(--page);
  margin: 0 auto clamp(18px, 3vw, 42px);
  padding: clamp(38px, 5vw, 72px);
  color: var(--white);
  background: var(--red);
  border-radius: var(--radius);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.7fr) repeat(4, minmax(130px, 1fr));
  gap: clamp(28px, 4vw, 56px);
}

.footer-brand {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.footer-wordmark {
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-about {
  max-width: 42ch;
  margin: 0 0 18px;
  font-size: .88rem;
  color: rgba(247, 238, 240, .82);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 24px;
}

.footer-social a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(247, 238, 240, .52);
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--red);
  background: var(--white);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-address {
  display: inline-block;
  max-width: 32ch;
  color: rgba(247, 238, 240, .86);
  font-size: .85rem;
  text-underline-offset: 4px;
}

.footer-preferred-source {
  min-height: 24px;
  margin-top: 14px;
}

.footer-column h2 {
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

.footer-links a {
  width: fit-content;
  color: rgba(247, 238, 240, .86);
  text-underline-offset: 4px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.footer-hours {
  gap: 0;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(247, 238, 240, .18);
  font-size: .8rem;
}

.footer-hours span:first-child {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-open-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  font-size: .8rem;
  color: rgba(247, 238, 240, .82);
}

.footer-open-status::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--white);
  border-radius: 50%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(247,238,240,.55);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.collection-section {
  padding-bottom: clamp(26px, 4vw, 58px);
}

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

.product-card {
  position: relative;
  min-height: clamp(430px, 38vw, 560px);
  color: var(--white);
  background: #eadde1;
  isolation: isolate;
}

.product-card-link {
  position: absolute;
  inset: 0;
  color: inherit;
  text-decoration: none;
}

.product-image,
.product-image img {
  width: 100%;
  height: 100%;
}

.product-image img {
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.product-image-waiting {
  display: grid;
  place-items: center;
  color: var(--red);
  background: repeating-linear-gradient(135deg, #f6ecef 0 18px, #efdee4 18px 36px);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-image-waiting img {
  display: none;
}

.product-card-overlay {
  position: absolute;
  right: 0;
  bottom: 74px;
  left: 0;
  z-index: 1;
  padding: clamp(24px, 2.6vw, 38px);
  background: linear-gradient(180deg, transparent, rgba(151, 42, 84, .93) 42%);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.product-card:hover .product-card-overlay,
.product-card:focus-within .product-card-overlay {
  opacity: 1;
  transform: none;
}

.product-card:hover .product-image img,
.product-card:focus-within .product-image img {
  transform: scale(1.025);
}

.product-kicker {
  display: block;
  margin-bottom: 9px;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 2.3vw, 2.6rem);
}

.product-card p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.45;
}

.quote-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 22px 0;
  border-top: 1px solid var(--hair);
}

.quote-controls-compact {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  flex-wrap: nowrap;
  padding: 12px;
  border: 0;
  background: rgba(110, 20, 55, .82);
}

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

.quote-quantity,
.quantity-step,
.add-to-quote {
  min-height: 42px;
  border: 1px solid currentColor;
  border-radius: 0;
}

.quote-quantity {
  width: 4.4rem;
  padding: 7px;
  color: var(--red);
  background: var(--white);
}

.quantity-step,
.add-to-quote {
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.quantity-step {
  width: 42px;
  padding: 0;
  color: var(--red);
  background: var(--white);
  font-size: 1.25rem;
}

.add-to-quote {
  padding: 7px 15px;
  color: var(--white);
  background: var(--red);
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.quote-controls-compact .add-to-quote {
  flex: 1 1 auto;
  background: var(--red-dark);
}

.quantity-step:hover,
.quantity-step:focus-visible,
.add-to-quote:hover,
.add-to-quote:focus-visible {
  color: var(--white);
  background: var(--red-dark);
}

.cart-status {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  max-width: min(360px, calc(100vw - 36px));
  padding: 12px 16px;
  color: var(--white);
  background: var(--red-dark);
  box-shadow: 0 8px 26px rgba(71, 12, 37, .24);
  pointer-events: none;
}

.product-placeholder {
  display: grid;
  place-items: center;
  min-height: 320px;
  color: var(--red);
  background: repeating-linear-gradient(135deg, #f6ecef 0 18px, #efdee4 18px 36px);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(32px, 5vw, 64px) 0 0;
}

.pagination a {
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 9px 13px;
  border: 1px solid var(--red);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: .72rem;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.pagination a:hover,
.pagination a:focus-visible,
.pagination a[aria-current="page"] {
  color: var(--white);
  background: var(--red);
}

.pagination-arrow {
  padding-inline: 20px !important;
}

.product-page {
  padding-top: 2px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: var(--gap);
  align-items: start;
}

.product-gallery {
  padding: clamp(14px, 1.5vw, 22px);
  background: var(--pink);
}

.product-main-image {
  display: grid;
  place-items: center;
  min-height: min(720px, 72vh);
  overflow: hidden;
  border-radius: calc(var(--radius) - 8px);
  background: #fff;
}

.product-main-image img {
  width: 100%;
  height: min(720px, 72vh);
  object-fit: contain;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.thumbnail-button {
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
}

.thumbnail-button[aria-pressed="true"] {
  border-color: var(--red);
}

.thumbnail-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-extra {
  display: none;
}

.product-thumbnails.show-all .thumbnail-extra {
  display: block;
}

.gallery-more {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 12px 18px;
  color: var(--red);
  background: transparent;
  border: 1px solid var(--red);
  border-radius: 999px;
  cursor: pointer;
}

.product-information {
  padding: clamp(34px, 4vw, 60px);
  color: var(--red);
  background: var(--pink);
}

.back-link {
  display: inline-block;
  margin-bottom: clamp(42px, 7vw, 92px);
  text-underline-offset: 4px;
}

.product-information h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 5.4vw, 6rem);
}

.product-code {
  margin-bottom: 42px;
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.detail-intro,
.spec-section {
  padding: 28px 0;
  border-top: 1px solid var(--hair);
}

.detail-intro h2,
.spec-section h2 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
}

.detail-intro p {
  max-width: 55ch;
  margin: 0;
}

.spec-list {
  margin: 0;
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(100px, .65fr);
  gap: 22px;
  padding: 12px 0;
  border-top: 1px solid var(--hair-soft);
}

.spec-row:first-child {
  border-top: 0;
}

.spec-row dt,
.spec-row dd {
  margin: 0;
}

.spec-row dt {
  color: rgba(200, 72, 122, .78);
}

.spec-row dd {
  text-align: right;
  white-space: pre-line;
}

.related-products {
  padding-bottom: clamp(24px, 4vw, 52px);
}

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

@media (max-width: 1050px) {
  .main-nav {
    gap: 13px;
  }

  .hero,
  .split-feature,
  .contact-layout,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-media {
    min-height: 570px;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

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

  .catalog-tile:last-child {
    grid-column: 1 / -1;
  }

  .contact-image {
    min-height: 520px;
  }
}

@media (max-width: 820px) {
  :root {
    --page: calc(100% - 24px);
    --radius: 17px;
  }

  .site-header {
    padding-top: 12px;
  }

  .nav-wrap {
    min-height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 110px 36px 40px;
    color: var(--white);
    background: var(--red);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .main-nav a {
    font-family: var(--serif);
    font-size: clamp(2rem, 9vw, 4rem);
  }

  .main-nav .cart-link {
    order: -1;
    font-family: var(--sans);
    font-size: 1rem;
  }

  .menu-open .main-nav {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
  }

  .menu-open .nav-wrap {
    position: relative;
    z-index: 2;
  }

  .catalog-grid,
  .product-grid,
  .gallery-grid,
  .number-list,
  .legal-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .catalog-tile,
  .catalog-tile:last-child {
    grid-column: auto;
    min-height: 520px;
  }

  .product-card {
    min-height: 500px;
  }

  .product-card-overlay {
    opacity: 1;
    transform: none;
  }

  .gallery-grid {
    grid-auto-rows: minmax(410px, 78vw);
  }

  .gallery-grid .wide {
    grid-column: auto;
    min-height: 410px;
  }

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

  .intro-panel {
    min-height: 570px;
  }

  .legal-aside {
    position: static;
  }

  .footer-grid {
    gap: 34px;
  }
}

@media (max-width: 560px) {
  .hero-copy,
  .hero-media {
    min-height: 510px;
  }

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

  .intro-panel,
  .process-panel,
  .page-hero,
  .legal-copy,
  .contact-panel,
  .site-footer {
    padding: 30px 24px;
  }

  .intro-panel .statement {
    font-size: clamp(1.8rem, 9.7vw, 2.8rem);
  }

  .number-item {
    grid-template-columns: 42px 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
  }

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

  .product-card {
    min-height: 470px;
  }

  .product-main-image,
  .product-main-image img {
    min-height: 0;
    height: min(560px, 68vh);
  }

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

  .spec-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .spec-row dd {
    text-align: left;
  }
}
