/* ============================================================
   Arts & Accents — main.css
   Aesthetic: bold maximalist gallery
   Palette: pink/purple anchored in deep plum, cream rest, gold accent
   ============================================================ */

/* ===== TOKENS ===== */
:root {
  /* Color */
  --ink:         #14091A;
  --plum-deep:   #1E0822;
  --plum:        #3D1438;
  --plum-mid:    #6B2856;
  --magenta:     #E0357A;
  --pink-hot:    #FF4E91;
  --pink-soft:   #F4BFD3;
  --cream:       #F5E9D5;
  --cream-light: #FAF1DD;
  --gold:        #D6A557;
  --off-black:   #1A1418;

  /* Type */
  --display: "Fraunces", "Times New Roman", serif;
  --body:    "Bricolage Grotesque", system-ui, sans-serif;

  /* Spacing */
  --pad-x: clamp(24px, 5vw, 96px);
  --gap:   clamp(56px, 8vw, 128px);

  /* Motion */
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--cream);
  background-color: var(--plum-deep);
  background-image:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(224, 53, 122, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 80%, rgba(255, 78, 145, 0.12), transparent 60%),
    linear-gradient(180deg, #1E0822 0%, #14091A 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; letter-spacing: -0.025em; line-height: 1.02; }
em { font-style: italic; }
ul, ol { list-style: none; }

/* ===== GRAIN OVERLAY ===== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  padding: 18px var(--pad-x);
  background: rgba(20, 9, 26, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(245, 233, 213, 0.06);
}
.nav__wordmark {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.nav__wordmark em {
  font-family: var(--display);
  color: var(--magenta);
  font-style: italic;
  font-weight: 300;
  padding: 0 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 40px);
  font-family: var(--body);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  color: var(--cream);
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--magenta);
  transition: right .35s var(--ease);
}
.nav__links a:hover { color: var(--pink-hot); }
.nav__links a:hover::after { right: 0; }
.nav__quiet {
  opacity: 0.5;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  /* balance the trailing tracking so the text sits centered in its slot */
  padding-left: 0.16em;
  /* optical nudge: small caps sit high against the larger mixed-case links */
  transform: translateY(0.5px);
  /* push Trade to the far right of the links row, away from the retail links */
  margin-left: auto;
}
.nav__phone {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.01em;
  transition: color .25s var(--ease);
}
.nav__phone:hover { color: var(--pink-hot); }
.nav__toggle { display: none; }

.nav__mobile {
  position: fixed;
  inset: 72px 0 auto 0;
  background: var(--ink);
  display: none;
  flex-direction: column;
  padding: 24px var(--pad-x) 36px;
  border-bottom: 1px solid rgba(245, 233, 213, 0.08);
  z-index: 49;
}
.nav__mobile a {
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  padding: 12px 0;
  border-bottom: 1px solid rgba(245, 233, 213, 0.08);
  color: var(--cream);
}
.nav__mobile a:last-child { border-bottom: 0; color: var(--pink-soft); font-size: 16px; letter-spacing: 0.08em; text-transform: uppercase; font-style: normal; font-family: var(--body); }
body.nav-open .nav__mobile { display: flex; }

@media (max-width: 880px) {
  .nav { grid-template-columns: auto 1fr auto auto; gap: 16px; padding: 16px var(--pad-x); }
  .nav__links { display: none; }
  .nav__phone { font-size: 13px; }
  .nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
  }
  .nav__toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--cream);
    display: block;
    transition: transform .3s var(--ease);
  }
  body.nav-open .nav__toggle span:first-child { transform: translateY(3px) rotate(45deg); }
  body.nav-open .nav__toggle span:last-child  { transform: translateY(-4px) rotate(-45deg); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn--primary {
  background: var(--magenta);
  color: var(--cream);
  box-shadow: 5px 5px 0 0 var(--cream);
}
.btn--primary:hover {
  background: var(--pink-hot);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 0 var(--cream);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 233, 213, 0.4);
}
.btn--ghost:hover {
  background: var(--cream);
  color: var(--plum);
  border-color: var(--cream);
}
.btn--ghost span { transition: transform .25s var(--ease); }
.btn--ghost:hover span { transform: translateX(4px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: clamp(56px, 11vh, 140px) var(--pad-x) clamp(112px, 14vh, 180px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  isolation: isolate;
  min-height: calc(100vh - 72px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 25%, rgba(224, 53, 122, 0.32), transparent 50%),
    radial-gradient(circle at 15% 75%, rgba(107, 40, 86, 0.55), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink-soft);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.hero__eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--magenta);
}
.hero__title {
  font-size: clamp(60px, 13vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--cream);
  font-weight: 400;
  max-width: 14ch;
  font-variation-settings: "SOFT" 35, "opsz" 144;
}
.hero__word { display: inline-block; }
.hero__word--ital {
  font-style: italic;
  font-weight: 300;
  color: var(--pink-hot);
  font-variation-settings: "SOFT" 90, "opsz" 144;
  letter-spacing: -0.03em;
  margin-left: 0.04em;
}
.hero__lede {
  font-size: clamp(16px, 1.6vw, 21px);
  max-width: 52ch;
  color: rgba(245, 233, 213, 0.78);
  line-height: 1.55;
  margin-top: 16px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero__card {
  position: absolute;
  right: var(--pad-x);
  top: clamp(72px, 14vh, 160px);
  background: var(--cream);
  color: var(--off-black);
  padding: 22px 28px 24px;
  font-family: var(--display);
  transform: rotate(2.4deg);
  border: 1px solid rgba(20, 9, 26, 0.1);
  box-shadow: -10px 12px 0 0 var(--magenta);
  min-width: 240px;
  transition: transform .4s var(--ease);
}
.hero__card:hover { transform: rotate(0deg) translateY(-4px); }
.hero__card-label {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--plum-mid);
  margin-bottom: 6px;
  font-weight: 600;
}
.hero__card-hours {
  font-size: 44px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--plum);
  line-height: 1;
  font-variation-settings: "SOFT" 80;
}
.hero__card-hours em { font-style: italic; }
.hero__card-hours span {
  font-size: 14px;
  letter-spacing: 0.16em;
  font-style: normal;
  color: var(--plum-mid);
  margin-left: 4px;
  font-family: var(--body);
}
.hero__card-foot {
  display: flex;
  flex-direction: column;
  font-family: var(--body);
  font-size: 12px;
  color: rgba(26, 20, 24, 0.7);
  letter-spacing: 0.04em;
  line-height: 1.55;
}
.hero__corner {
  position: absolute;
  right: var(--pad-x);
  bottom: 36px;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--pink-soft);
  opacity: 0.5;
}

@media (max-width: 880px) {
  .hero { gap: 20px; padding-top: clamp(40px, 8vh, 80px); padding-bottom: clamp(72px, 10vh, 120px); }
  .hero__card {
    position: static;
    transform: rotate(0);
    justify-self: start;
    margin-top: 28px;
    box-shadow: -6px 8px 0 0 var(--magenta);
  }
  .hero__corner { display: none; }
}

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(245, 233, 213, 0.1);
  padding: 22px 0;
  background: rgba(20, 9, 26, 0.5);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 52s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--cream);
  font-weight: 300;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 60;
}
.marquee__track i {
  color: var(--magenta);
  font-style: normal;
  font-size: 0.6em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  padding: var(--gap) var(--pad-x);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  border-top: 1px solid rgba(245, 233, 213, 0.05);
  overflow: hidden;
}
.about__sticker {
  position: absolute;
  left: -2vw;
  bottom: -6vw;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(180px, 22vw, 360px);
  color: var(--plum);
  line-height: 0.85;
  letter-spacing: -0.05em;
  pointer-events: none;
  opacity: 0.35;
  z-index: 0;
  font-variation-settings: "SOFT" 100;
}
.about__sticker em {
  color: var(--magenta);
  opacity: 0.6;
  font-style: italic;
}
.about__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink-hot);
}
.about__title {
  font-size: clamp(40px, 5vw, 72px);
  color: var(--cream);
  max-width: 18ch;
  font-variation-settings: "SOFT" 50;
}
.about__title em {
  color: var(--pink-hot);
  font-style: italic;
  font-variation-settings: "SOFT" 100;
}
.about__body {
  max-width: 56ch;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 16px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(245, 233, 213, 0.8);
  line-height: 1.65;
}
.about__photo {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: 100%;
  max-width: 440px;
  background: var(--cream);
  padding: 16px 16px 64px;
  border: 1px solid rgba(20, 9, 26, 0.1);
  box-shadow: 18px 18px 0 0 var(--magenta);
  transform: rotate(-2deg);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.about__photo:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 22px 22px 0 0 var(--plum);
}
.about__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.about__photo figcaption {
  position: absolute;
  bottom: 20px;
  left: 18px;
  right: 18px;
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--plum);
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 70;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.about__photo figcaption span {
  font-family: var(--body);
  font-style: normal;
  color: var(--magenta);
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 880px) {
  .about { grid-template-columns: 1fr; }
  .about__sticker { font-size: 56vw; left: -8vw; bottom: -14vw; opacity: 0.28; }
  .about__photo { justify-self: start; max-width: 360px; box-shadow: 12px 12px 0 0 var(--magenta); }
}

/* ===== GALLERIES ===== */
.galleries {
  position: relative;
  padding: var(--gap) var(--pad-x);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(245, 233, 213, 0.05);
}
.galleries__heading {
  grid-column: 1 / -1;
  font-size: clamp(44px, 6vw, 88px);
  color: var(--cream);
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 16ch;
  font-variation-settings: "SOFT" 40;
}
.galleries__heading em {
  color: var(--gold);
  font-style: italic;
  font-variation-settings: "SOFT" 100;
}

.gallery-card {
  position: relative;
  padding: clamp(32px, 4vw, 52px) clamp(28px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: clamp(380px, 50vw, 500px);
  isolation: isolate;
  transition: transform .4s var(--ease);
  overflow: hidden;
}
.gallery-card--art {
  grid-column: 1 / span 7;
  background:
    linear-gradient(135deg, var(--plum) 0%, var(--plum-mid) 100%);
  border: 1px solid rgba(224, 53, 122, 0.3);
}
.gallery-card--accent {
  grid-column: 8 / span 5;
  background:
    linear-gradient(165deg, var(--magenta) 0%, var(--plum-mid) 60%, var(--plum) 100%);
  margin-top: clamp(48px, 8vw, 112px);
  border: 1px solid rgba(245, 233, 213, 0.15);
}
.gallery-card:hover { transform: translateY(-8px); }
.gallery-card__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.gallery-card--art .gallery-card__deco {
  background:
    radial-gradient(circle at 100% 100%, rgba(255, 78, 145, 0.3), transparent 50%);
}
.gallery-card--accent .gallery-card__deco {
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 233, 213, 0.18), transparent 55%);
}
.gallery-card__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--pink-soft);
  letter-spacing: 0.06em;
  font-weight: 300;
}
.gallery-card__title {
  font-size: clamp(34px, 3.8vw, 56px);
  color: var(--cream);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "SOFT" 70, "opsz" 144;
  line-height: 1.02;
}
.gallery-card__copy {
  font-size: 15px;
  color: rgba(245, 233, 213, 0.85);
  line-height: 1.6;
  max-width: 36ch;
  flex: 1;
}
.gallery-card__cta {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 233, 213, 0.18);
  transition: gap .25s var(--ease), color .25s var(--ease);
  align-self: flex-start;
}
.gallery-card__cta span {
  display: inline-block;
  transition: transform .25s var(--ease);
}
.gallery-card__cta:hover { color: var(--gold); }
.gallery-card__cta:hover span { transform: translateX(6px); }

@media (max-width: 880px) {
  .galleries__heading { font-size: clamp(36px, 9vw, 64px); }
  .gallery-card--art, .gallery-card--accent {
    grid-column: 1 / -1;
    margin-top: 0;
    min-height: 320px;
  }
  .gallery-card--accent { margin-top: 16px; }
}

/* ===== TRADE BAND ===== */
.trade {
  padding: clamp(24px, 4vw, 36px) var(--pad-x);
  border-top: 1px solid rgba(245, 233, 213, 0.05);
  border-bottom: 1px solid rgba(245, 233, 213, 0.05);
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 2.5vw, 32px);
  flex-wrap: wrap;
  background: rgba(20, 9, 26, 0.45);
}
.trade__eyebrow {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink-soft);
  opacity: 0.55;
  flex-shrink: 0;
}
.trade__copy {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 19px);
  color: rgba(245, 233, 213, 0.7);
  font-variation-settings: "SOFT" 60;
}
.trade__copy a {
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  margin-left: 4px;
  transition: color .25s var(--ease);
}
.trade__copy a:hover { color: var(--cream); }

/* ===== VISIT ===== */
.visit {
  padding: var(--gap) var(--pad-x);
  background: var(--cream);
  color: var(--off-black);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(32px, 5vw, 80px);
  row-gap: clamp(32px, 4vw, 48px);
  align-items: start;
}
.visit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 100% 0%, rgba(224, 53, 122, 0.12), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.visit__eyebrow {
  grid-column: 1 / -1;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 600;
}
.visit__title {
  grid-column: 1;
  grid-row: 2;
  font-size: clamp(52px, 7vw, 112px);
  color: var(--plum);
  max-width: 14ch;
  font-variation-settings: "SOFT" 40;
}
.visit__title em {
  color: var(--magenta);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "SOFT" 100;
}
.visit__details {
  grid-column: 1;
  grid-row: 3;
}
.visit__map {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: start;
}
.visit__details {
  display: grid;
  gap: clamp(28px, 3.5vw, 44px);
}
.visit__details > div { display: grid; gap: 6px; }
.visit__details dt {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--plum-mid);
  font-weight: 600;
}
.visit__details dd {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--plum-deep);
  line-height: 1.3;
  font-weight: 400;
  font-variation-settings: "SOFT" 70;
}
.visit__details dd a {
  color: inherit;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .25s var(--ease);
}
.visit__details dd a:hover { color: var(--magenta); }

.visit__hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--body);
  font-style: normal;
}
.visit__hours p {
  display: grid;
  grid-template-columns: 8em 1fr;
  font-size: 14px;
  gap: 12px;
  align-items: baseline;
}
.visit__hours p span:first-child {
  font-weight: 600;
  color: var(--plum-deep);
  letter-spacing: 0.04em;
}
.visit__hours p span:last-child {
  color: rgba(26, 20, 24, 0.7);
}

.visit__cta {
  grid-column: 1;
  justify-self: start;
  margin-top: clamp(20px, 2.5vw, 32px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--magenta);
  transition: color .25s var(--ease), gap .25s var(--ease);
}
.visit__cta:hover { color: var(--magenta); gap: 16px; }

.visit__map {
  aspect-ratio: 5 / 4;
  border: 1px solid rgba(61, 20, 56, 0.18);
  position: relative;
  overflow: hidden;
}
.visit__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.visit__map::before, .visit__map::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid var(--magenta);
  z-index: 2;
  pointer-events: none;
}
.visit__map::before { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.visit__map::after  { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

@media (max-width: 880px) {
  .visit { grid-template-columns: 1fr; }
  .visit__title,
  .visit__details,
  .visit__map {
    grid-column: 1;
    grid-row: auto;
  }
  .visit__map { aspect-ratio: 3 / 2; }
}

/* ===== FOOTER ===== */
.foot {
  padding: 48px var(--pad-x);
  background: var(--ink);
  color: rgba(245, 233, 213, 0.55);
  font-family: var(--body);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(245, 233, 213, 0.06);
}
.foot__line {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  letter-spacing: 0.02em;
}
.foot__name {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--cream);
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 70;
}
.foot__name em { color: var(--magenta); font-style: italic; font-weight: 300; padding: 0 2px; }
.foot__dot { color: var(--magenta); }
.foot__small {
  font-size: 12px;
  letter-spacing: 0.04em;
}
.foot__small a {
  color: var(--pink-soft);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
}
.reveal.is-in {
  animation: reveal-up .8s var(--ease) forwards;
}
@keyframes reveal-up {
  to { opacity: 1; transform: translateY(0); }
}
.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   Photo + logo wiring (added 05/19/26)
   ============================================================ */

/* Nav logo (replaces the typographic wordmark). */
.nav__wordmark {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  padding: 0;
}
.nav__logo {
  display: block;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(245, 233, 213, 0.12);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.nav__wordmark:hover .nav__logo {
  transform: rotate(-3deg);
  border-color: var(--magenta);
}
@media (max-width: 880px) {
  .nav__logo { width: 44px; height: 44px; }
}

/* Accent gallery card — photo background with darkening gradient overlay. */
.gallery-card--accent {
  background: var(--plum);
}
.gallery-card--accent > *:not(.gallery-card__bg):not(.gallery-card__deco) {
  position: relative;
  z-index: 2;
}
.gallery-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.88) brightness(0.95);
  transition: transform .8s var(--ease);
}
.gallery-card--accent:hover .gallery-card__bg {
  transform: scale(1.04);
}
.gallery-card--accent .gallery-card__deco {
  z-index: 1;
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 233, 213, 0.18), transparent 55%),
    linear-gradient(165deg, rgba(224, 53, 122, 0.50) 0%, rgba(107, 40, 86, 0.78) 55%, rgba(30, 8, 34, 0.92) 100%);
}

/* ============================================================
   Contact page (added 05/19/26)
   ============================================================ */

/* Active-page nav indicator. */
.nav__links a[aria-current="page"] {
  color: var(--magenta);
}
.nav__links a[aria-current="page"]::after {
  right: 0;
  background: var(--magenta);
}

/* Contact hero. */
.chero {
  position: relative;
  padding: clamp(56px, 11vh, 132px) var(--pad-x) clamp(72px, 10vh, 128px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  isolation: isolate;
}
.chero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(224, 53, 122, 0.30), transparent 50%),
    radial-gradient(circle at 10% 75%, rgba(107, 40, 86, 0.50), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.chero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink-soft);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
}
.chero__eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--magenta);
}
.chero__title {
  font-family: var(--display);
  font-size: clamp(64px, 13vw, 180px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--cream);
  font-weight: 400;
  font-variation-settings: "SOFT" 40, "opsz" 144;
  display: flex;
  flex-direction: column;
}
.chero__title span { display: inline-block; }
.chero__lede {
  font-size: clamp(16px, 1.6vw, 21px);
  max-width: 52ch;
  color: rgba(245, 233, 213, 0.78);
  line-height: 1.5;
  font-family: var(--body);
  margin-top: 8px;
}
.chero__corner {
  position: absolute;
  right: var(--pad-x);
  bottom: 36px;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--pink-soft);
  opacity: 0.5;
}
@media (max-width: 880px) {
  .chero__corner { display: none; }
}

/* Quick-action row (3 cards: Call / Email / Visit). */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  list-style: none;
  padding: 0;
}
.quick-action--soon {
  cursor: not-allowed;
  opacity: 0.55;
}
.quick-action--soon:hover {
  background: rgba(245, 233, 213, 0.04);
  border-color: rgba(245, 233, 213, 0.12);
  transform: none;
}
.quick-action--soon:hover::before { width: 0; }
.quick-action--soon:hover .quick-action__arrow { transform: none; }
.quick-action {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 28px;
  background: rgba(245, 233, 213, 0.04);
  border: 1px solid rgba(245, 233, 213, 0.12);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  position: relative;
  overflow: hidden;
  color: var(--cream);
}
.quick-action::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 0;
  height: 2px;
  background: var(--magenta);
  transition: width .4s var(--ease);
}
.quick-action:hover {
  background: rgba(224, 53, 122, 0.10);
  border-color: rgba(224, 53, 122, 0.4);
  transform: translateY(-2px);
}
.quick-action:hover::before { width: 100%; }
.quick-action__label {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  color: var(--pink-soft);
  font-variation-settings: "SOFT" 80;
  letter-spacing: -0.01em;
}
.quick-action__value {
  font-family: var(--body);
  font-size: 15px;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.quick-action__arrow {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--magenta);
  font-size: 20px;
  font-family: var(--display);
  transition: transform .3s var(--ease);
}
.quick-action:hover .quick-action__arrow { transform: translateX(4px); }
@media (max-width: 880px) {
  .quick-actions { grid-template-columns: 1fr; }
  .quick-action { padding: 20px 24px; }
}

/* Contact form section. */
.contact-form-section {
  padding: var(--gap) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  border-top: 1px solid rgba(245, 233, 213, 0.05);
  position: relative;
  isolation: isolate;
}
.contact-form-section__intro {
  position: relative;
  z-index: 1;
  position: sticky;
  top: 96px;
}
.contact-form-section__eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 20px;
  font-weight: 600;
}
.contact-form-section__title {
  font-size: clamp(40px, 5vw, 72px);
  color: var(--cream);
  max-width: 14ch;
  font-variation-settings: "SOFT" 40;
}
.contact-form-section__title em {
  color: var(--magenta);
  font-style: italic;
  font-variation-settings: "SOFT" 100;
}
.contact-form-section__lede {
  font-family: var(--body);
  font-size: 15px;
  color: rgba(245, 233, 213, 0.7);
  margin-top: 20px;
  max-width: 32ch;
  line-height: 1.55;
}

/* The form itself — cream sheet floating on dark, with magenta offset shadow. */
.cform {
  background: var(--cream);
  color: var(--off-black);
  padding: clamp(32px, 4.5vw, 56px);
  box-shadow: 20px 20px 0 0 var(--magenta);
  border: 1px solid rgba(20, 9, 26, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cform[hidden] { display: none; }
.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
}
.cform__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cform__field--wide { grid-column: 1 / -1; }
.cform__label {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--plum);
  font-variation-settings: "SOFT" 70;
  font-weight: 400;
  line-height: 1;
}
.cform__label em {
  font-family: var(--body);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--plum-mid);
  margin-left: 6px;
  font-weight: 400;
  text-transform: none;
}

.cform input,
.cform select,
.cform textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(20, 9, 26, 0.22);
  padding: 12px 0 13px;
  font-family: var(--body);
  font-size: 17px;
  color: var(--off-black);
  outline: none;
  transition: border-color .25s var(--ease), padding-bottom .25s var(--ease);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.cform input::placeholder,
.cform textarea::placeholder {
  color: rgba(26, 20, 24, 0.38);
  font-style: italic;
}
.cform input:focus,
.cform select:focus,
.cform textarea:focus {
  border-bottom-color: var(--magenta);
  border-bottom-width: 2px;
  padding-bottom: 12px;
}
.cform input[aria-invalid="true"],
.cform select[aria-invalid="true"],
.cform textarea[aria-invalid="true"] {
  border-bottom-color: var(--magenta);
  border-bottom-width: 2px;
}

.cform select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%233D1438' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px 8px;
  padding-right: 28px;
  cursor: pointer;
}
.cform textarea {
  resize: vertical;
  min-height: 144px;
  line-height: 1.5;
  padding: 12px 0;
}

.cform__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.cform__submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  background: var(--plum);
  color: var(--cream);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 5px 5px 0 0 var(--magenta);
  border: 0;
}
.cform__submit:hover {
  background: var(--magenta);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 0 var(--plum);
}
.cform__submit-arrow {
  transition: transform .25s var(--ease);
  font-family: var(--display);
  font-size: 18px;
}
.cform__submit:hover .cform__submit-arrow { transform: translateX(4px); }

.cform__fallback {
  font-family: var(--body);
  font-size: 13px;
  color: var(--plum-mid);
  letter-spacing: 0.01em;
}
.cform__fallback a {
  color: var(--plum);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.cform__fallback a:hover { color: var(--magenta); }

/* Submit error — shown only if the Supabase POST fails (JS-injected). */
.cform__error {
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--cream-light);
  border-left: 3px solid var(--magenta);
  font-family: var(--body);
  font-size: 14px;
  color: var(--plum);
  letter-spacing: 0.01em;
}
.cform__error a {
  color: var(--magenta);
  border-bottom: 1px solid currentColor;
}

/* Thanks state. */
.cform-thanks {
  background: var(--cream);
  color: var(--off-black);
  padding: clamp(48px, 6vw, 80px);
  box-shadow: 20px 20px 0 0 var(--magenta);
  border: 1px solid rgba(20, 9, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  animation: cform-thanks-in .5s var(--ease) both;
}
.cform-thanks[hidden] { display: none; }
.cform-thanks__eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 600;
}
.cform-thanks__title {
  font-family: var(--display);
  font-size: clamp(44px, 5.5vw, 80px);
  color: var(--plum);
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  line-height: 1;
  letter-spacing: -0.03em;
}
.cform-thanks__title em { font-style: italic; }
.cform-thanks__body {
  font-family: var(--body);
  font-size: 16px;
  color: rgba(26, 20, 24, 0.75);
  line-height: 1.55;
  max-width: 50ch;
}
.cform-thanks__body a {
  color: var(--magenta);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.cform-thanks__reset {
  margin-top: 12px;
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 600;
  padding: 14px 28px;
  border: 1px solid var(--plum);
  background: transparent;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.cform-thanks__reset:hover {
  background: var(--plum);
  color: var(--cream);
}
@keyframes cform-thanks-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .contact-form-section { grid-template-columns: 1fr; }
  .contact-form-section__intro { position: relative; top: auto; }
}
@media (max-width: 880px) {
  .cform__row { grid-template-columns: 1fr; }
  .cform__foot { flex-direction: column; align-items: flex-start; }
  .cform-thanks { box-shadow: 12px 12px 0 0 var(--magenta); }
  .cform { box-shadow: 12px 12px 0 0 var(--magenta); }
}

/* ============================================================
   Wholesale page (added 05/19/26)
   B2B / truckload. Same locked aesthetic, leaner + more
   structured than the retail pages. New classes only.
   ============================================================ */

/* Active Trade link — override .nav__quiet's dimming so the
   current page reads clearly. */
.nav__links a.nav__quiet[aria-current="page"] {
  opacity: 1;
  color: var(--magenta);
}
.nav__links a.nav__quiet[aria-current="page"]::after {
  right: 0;
  background: var(--magenta);
}

/* ----- Reusable image placeholder ----- */
/* Intentional, not broken: plum ground + diagonal-line texture +
   magenta corner brackets. Swap for an <img> when real photos land. */
.ph {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(224, 53, 122, 0.22);
  background-color: var(--plum);
  background-image:
    repeating-linear-gradient(
      -45deg,
      rgba(245, 233, 213, 0.05) 0,
      rgba(245, 233, 213, 0.05) 1px,
      transparent 1px,
      transparent 11px
    ),
    radial-gradient(circle at 30% 20%, rgba(224, 53, 122, 0.25), transparent 55%),
    linear-gradient(160deg, var(--plum-mid) 0%, var(--plum) 55%, var(--plum-deep) 100%);
}
.ph::before, .ph::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--magenta);
  z-index: 2;
  pointer-events: none;
}
.ph::before { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.ph::after  { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }
.ph__label {
  position: absolute;
  inset: auto auto 14px 16px;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--pink-soft);
  opacity: 0.7;
  font-variation-settings: "SOFT" 70;
}

/* ----- Wholesale hero ----- */
.whero {
  position: relative;
  padding: clamp(56px, 11vh, 132px) var(--pad-x) clamp(72px, 10vh, 128px);
  display: flex;
  flex-direction: column;
  gap: 26px;
  isolation: isolate;
}
.whero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 25%, rgba(224, 53, 122, 0.30), transparent 50%),
    radial-gradient(circle at 8% 80%, rgba(107, 40, 86, 0.52), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.whero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink-soft);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
}
.whero__eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--magenta);
}
.whero__title {
  font-family: var(--display);
  font-size: clamp(58px, 12vw, 168px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--cream);
  font-weight: 400;
  font-variation-settings: "SOFT" 40, "opsz" 144;
  display: flex;
  flex-direction: column;
  max-width: 15ch;
}
.whero__title span { display: inline-block; }
.whero__title em {
  color: var(--pink-hot);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "SOFT" 100;
}
.whero__lede {
  font-size: clamp(16px, 1.6vw, 21px);
  max-width: 56ch;
  color: rgba(245, 233, 213, 0.78);
  line-height: 1.55;
  font-family: var(--body);
  margin-top: 8px;
}
.whero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.whero__corner {
  position: absolute;
  right: var(--pad-x);
  bottom: 36px;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--pink-soft);
  opacity: 0.5;
}
@media (max-width: 880px) {
  .whero__corner { display: none; }
}

/* ----- What's available ("On the dock") ----- */
.loads {
  padding: var(--gap) var(--pad-x);
  border-top: 1px solid rgba(245, 233, 213, 0.05);
}
.loads__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 72px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.loads__eyebrow {
  grid-column: 1 / -1;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink-hot);
  margin-bottom: 4px;
}
.loads__title {
  font-size: clamp(40px, 5.5vw, 80px);
  color: var(--cream);
  font-variation-settings: "SOFT" 40;
  max-width: 12ch;
}
.loads__title em {
  color: var(--magenta);
  font-style: italic;
  font-variation-settings: "SOFT" 100;
}
.loads__intro {
  font-family: var(--body);
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(245, 233, 213, 0.72);
  line-height: 1.6;
  max-width: 44ch;
  justify-self: end;
}
.loads__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}
.load-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.load-card__ph {
  aspect-ratio: 4 / 5;
  width: 100%;
  transition: transform .5s var(--ease);
}
.load-card:hover .load-card__ph {
  transform: translateY(-6px);
}
.load-card__title {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--cream);
  font-variation-settings: "SOFT" 70, "opsz" 144;
  line-height: 1.05;
  margin-top: 4px;
}
.load-card__copy {
  font-family: var(--body);
  font-size: 14px;
  color: rgba(245, 233, 213, 0.72);
  line-height: 1.55;
}

/* ----- How it works ----- */
.how {
  padding: var(--gap) var(--pad-x);
  border-top: 1px solid rgba(245, 233, 213, 0.05);
  background: rgba(20, 9, 26, 0.5);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.how__head {
  position: sticky;
  top: 96px;
}
.how__eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 18px;
  font-weight: 600;
}
.how__title {
  font-size: clamp(40px, 5vw, 76px);
  color: var(--cream);
  font-variation-settings: "SOFT" 40;
  line-height: 1;
}
.how__title em {
  color: var(--gold);
  font-style: italic;
  font-variation-settings: "SOFT" 100;
}
.how__steps {
  display: grid;
  gap: 0;
}
.how-step {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(20px, 3vw, 40px);
  row-gap: 8px;
  padding: clamp(24px, 3vw, 36px) 0;
  border-top: 1px solid rgba(245, 233, 213, 0.12);
  align-items: baseline;
}
.how-step:last-child { border-bottom: 1px solid rgba(245, 233, 213, 0.12); }
.how-step__num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 64px);
  color: var(--magenta);
  line-height: 0.9;
  font-variation-settings: "SOFT" 100;
  grid-row: 1 / span 2;
}
.how-step__title {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--cream);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 40;
}
.how-step__copy {
  grid-column: 2;
  font-family: var(--body);
  font-size: 15px;
  color: rgba(245, 233, 213, 0.72);
  line-height: 1.6;
  max-width: 52ch;
}

/* ----- Why us / credibility ----- */
.trust {
  padding: var(--gap) var(--pad-x);
  border-top: 1px solid rgba(245, 233, 213, 0.05);
}
.trust__head { margin-bottom: clamp(36px, 4.5vw, 56px); }
.trust__eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink-hot);
  margin-bottom: 16px;
}
.trust__title {
  font-size: clamp(38px, 5vw, 76px);
  color: var(--cream);
  font-variation-settings: "SOFT" 40;
  line-height: 1.02;
  max-width: 16ch;
}
.trust__title em {
  color: var(--pink-hot);
  font-style: italic;
  font-variation-settings: "SOFT" 100;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
.trust-card {
  padding: clamp(28px, 3vw, 40px);
  background: linear-gradient(155deg, var(--plum) 0%, var(--plum-deep) 100%);
  border: 1px solid rgba(224, 53, 122, 0.22);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 53, 122, 0.5);
}
.trust-card__title {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--cream);
  font-variation-settings: "SOFT" 70, "opsz" 144;
  line-height: 1.1;
}
.trust-card__copy {
  font-family: var(--body);
  font-size: 14px;
  color: rgba(245, 233, 213, 0.75);
  line-height: 1.6;
}

/* ----- Wholesale responsive ----- */
@media (max-width: 1024px) {
  .loads__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: 1fr; }
  .how { grid-template-columns: 1fr; }
  .how__head { position: relative; top: auto; }
}
@media (max-width: 880px) {
  .loads__head { grid-template-columns: 1fr; align-items: start; }
  .loads__intro { justify-self: start; }
  .loads__grid { grid-template-columns: 1fr; }
  .how-step { grid-template-columns: auto 1fr; column-gap: 18px; }
}

/* ============================================================
   Accent Gallery page (added 05/19/26)
   In-store furniture showroom. Informational only — no prices,
   no cart. Single "On the floor now" showcase grid, built to
   scale (each .piece is a drop-in card). New classes only.
   ============================================================ */

/* ----- Accent Gallery hero ----- */
.agallery-hero {
  position: relative;
  padding: clamp(56px, 11vh, 132px) var(--pad-x) clamp(72px, 10vh, 128px);
  display: flex;
  flex-direction: column;
  gap: 26px;
  isolation: isolate;
}
.agallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 24%, rgba(224, 53, 122, 0.30), transparent 50%),
    radial-gradient(circle at 8% 80%, rgba(107, 40, 86, 0.52), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.agallery-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink-soft);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
}
.agallery-hero__eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--magenta);
}
.agallery-hero__title {
  font-family: var(--display);
  font-size: clamp(56px, 12vw, 168px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--cream);
  font-weight: 400;
  font-variation-settings: "SOFT" 40, "opsz" 144;
  display: flex;
  flex-direction: column;
  max-width: 15ch;
}
.agallery-hero__title span { display: inline-block; }
.agallery-hero__lede {
  font-size: clamp(16px, 1.6vw, 21px);
  max-width: 56ch;
  color: rgba(245, 233, 213, 0.78);
  line-height: 1.55;
  font-family: var(--body);
  margin-top: 8px;
}
.agallery-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.agallery-hero__corner {
  position: absolute;
  right: var(--pad-x);
  bottom: 36px;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--pink-soft);
  opacity: 0.5;
}
@media (max-width: 880px) {
  .agallery-hero__corner { display: none; }
}

/* ----- Floor showcase ----- */
.floor {
  padding: var(--gap) var(--pad-x);
  border-top: 1px solid rgba(245, 233, 213, 0.05);
}
.floor__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 72px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.floor__eyebrow {
  grid-column: 1 / -1;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink-hot);
  margin-bottom: 4px;
}
.floor__title {
  font-size: clamp(40px, 5.5vw, 80px);
  color: var(--cream);
  font-variation-settings: "SOFT" 40;
  max-width: 12ch;
}
.floor__title em {
  color: var(--magenta);
  font-style: normal; /* color accent without the italic — Grant 05/19/26 */
}
.floor__intro {
  font-family: var(--body);
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(245, 233, 213, 0.72);
  line-height: 1.6;
  max-width: 46ch;
  justify-self: end;
}
.floor__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.6vw, 40px);
}

/* Category box — one per category, holds a carousel (or a .ph placeholder).
   Add photos = drop more .carousel__slide figures into that category's track. */
.cat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cat__label {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 600;
}
.cat--soon .cat__label { color: rgba(224, 53, 122, 0.7); }
/* Placeholder media (categories without photos yet) — 4:3 to match carousels. */
.cat__media {
  aspect-ratio: 4 / 3;
  width: 100%;
}

/* ----- Carousel (manual: arrows + dots + swipe) ----- */
.carousel {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(224, 53, 122, 0.18);
  background: var(--plum);
}
.carousel__track {
  display: flex;
  height: 100%;
  transition: transform .5s var(--ease);
}
.carousel__slide {
  min-width: 100%;
  height: 100%;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
}
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
  color: var(--off-black);
  background: rgba(245, 233, 213, 0.88);
  border: 1px solid rgba(20, 9, 26, 0.1);
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
  z-index: 2;
}
.carousel__nav:hover { background: var(--cream); }
.carousel__nav--prev { left: 12px; }
.carousel__nav--next { right: 12px; }
.carousel__nav--prev:hover { transform: translateY(-50%) translateX(-2px); }
.carousel__nav--next:hover { transform: translateY(-50%) translateX(2px); }
.carousel__dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 233, 213, 0.5);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.carousel__dot:hover { background: var(--cream); }
.carousel__dot[aria-current="true"] {
  background: var(--magenta);
  transform: scale(1.25);
}

.floor__note {
  margin-top: clamp(40px, 5vw, 64px);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 24px);
  color: rgba(245, 233, 213, 0.8);
  font-variation-settings: "SOFT" 70;
  max-width: 60ch;
}
.floor__note a {
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  font-style: italic;
  transition: color .25s var(--ease);
}
.floor__note a:hover { color: var(--pink-hot); }

/* ----- Styled vignettes — context shots below the category grid ----- */
.vignettes {
  margin-top: clamp(48px, 6vw, 88px);
}
.vignettes__eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink-hot);
  margin-bottom: clamp(20px, 2.5vw, 32px);
}
.vignettes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.vignette {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid rgba(224, 53, 122, 0.18);
  background: var(--plum);
}
.vignette img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
  transition: transform .6s var(--ease);
}
.vignette:hover img { transform: scale(1.03); }

@media (max-width: 1024px) {
  .floor__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .floor__head { grid-template-columns: 1fr; align-items: start; }
  .floor__intro { justify-self: start; }
  .floor__grid { grid-template-columns: 1fr; }
  .vignettes__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Art Gallery page (added 05/20/26)
   The 5th page. Rotating-artist wall display + custom canvas
   print order flow + artist-wall application. Forms are
   client-side only (no Square/backend yet); prices are
   placeholders. New classes only — reuses .ph, .cform, .btn,
   nav/footer, the a[aria-current] indicator.
   ============================================================ */

/* ----- Art Gallery hero (mirrors .agallery-hero) ----- */
.art-hero {
  position: relative;
  padding: clamp(56px, 11vh, 132px) var(--pad-x) clamp(72px, 10vh, 128px);
  display: flex;
  flex-direction: column;
  gap: 26px;
  isolation: isolate;
}
.art-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 22%, rgba(224, 53, 122, 0.30), transparent 50%),
    radial-gradient(circle at 8% 80%, rgba(107, 40, 86, 0.52), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.art-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink-soft);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
}
.art-hero__eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--magenta);
}
.art-hero__title {
  font-family: var(--display);
  font-size: clamp(56px, 12vw, 168px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--cream);
  font-weight: 400;
  font-variation-settings: "SOFT" 40, "opsz" 144;
  display: flex;
  flex-direction: column;
  max-width: 15ch;
}
.art-hero__title span { display: inline-block; }
.art-hero__title em {
  color: var(--pink-hot);
  font-style: normal; /* color accent without the italic — Grant 05/20/26 */
  font-weight: 400;
}
.art-hero__lede {
  font-size: clamp(16px, 1.6vw, 21px);
  max-width: 56ch;
  color: rgba(245, 233, 213, 0.78);
  line-height: 1.55;
  font-family: var(--body);
  margin-top: 8px;
}
.art-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.art-hero__corner {
  position: absolute;
  right: var(--pad-x);
  bottom: 36px;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--pink-soft);
  opacity: 0.5;
}
@media (max-width: 880px) {
  .art-hero__corner { display: none; }
}

/* ----- On the walls (rotating-artist display) ----- */
.walls {
  padding: var(--gap) var(--pad-x);
  border-top: 1px solid rgba(245, 233, 213, 0.05);
}
.walls__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 72px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.walls__eyebrow {
  grid-column: 1 / -1;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink-hot);
  margin-bottom: 4px;
}
.walls__title {
  font-size: clamp(40px, 5.5vw, 80px);
  color: var(--cream);
  font-variation-settings: "SOFT" 40;
  max-width: 14ch;
}
.walls__title em {
  color: var(--magenta);
  font-style: italic;
  font-variation-settings: "SOFT" 100;
}
.walls__intro {
  font-family: var(--body);
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(245, 233, 213, 0.72);
  line-height: 1.6;
  max-width: 46ch;
  justify-self: end;
}
.walls__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.6vw, 40px);
}
.art-tile { display: block; }
.art-tile .ph {
  aspect-ratio: 4 / 5;
  width: 100%;
  transition: transform .5s var(--ease);
}
.art-tile:hover .ph { transform: translateY(-6px); }
.walls__note {
  margin-top: clamp(40px, 5vw, 64px);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 24px);
  color: rgba(245, 233, 213, 0.8);
  font-variation-settings: "SOFT" 70;
  max-width: 56ch;
}
.walls__note a {
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  font-style: italic;
  transition: color .25s var(--ease);
}
.walls__note a:hover { color: var(--pink-hot); }

/* ----- Canvas + artist-wall sections (split: sticky intro + cream form sheet) ----- */
.canvas,
.artist-wall {
  padding: var(--gap) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  border-top: 1px solid rgba(245, 233, 213, 0.05);
  position: relative;
  isolation: isolate;
}
.artist-wall { background: rgba(20, 9, 26, 0.5); }
.canvas__intro {
  position: sticky;
  top: 96px;
}
.canvas__eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 20px;
  font-weight: 600;
}
.canvas__title {
  font-size: clamp(40px, 5vw, 72px);
  color: var(--cream);
  max-width: 14ch;
  font-variation-settings: "SOFT" 40;
}
.canvas__title em {
  color: var(--magenta);
  font-style: normal; /* color accent without the italic — Grant 05/20/26 (covers "canvas" + "work") */
}
.canvas__lede {
  font-family: var(--body);
  font-size: 15px;
  color: rgba(245, 233, 213, 0.72);
  margin-top: 20px;
  max-width: 36ch;
  line-height: 1.6;
}
.canvas__steps {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
.canvas__steps li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--body);
  font-size: 15px;
  color: rgba(245, 233, 213, 0.85);
}
.canvas__steps span {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--magenta);
  font-variation-settings: "SOFT" 100;
  line-height: 1;
  flex-shrink: 0;
  width: 1.2em;
}

/* Artist-wall terms list (in the intro column). */
.wall-terms {
  margin-top: 28px;
  display: grid;
  gap: 0;
}
.wall-terms li {
  display: grid;
  grid-template-columns: 7em 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(245, 233, 213, 0.12);
  align-items: baseline;
}
.wall-terms li:last-child { border-bottom: 1px solid rgba(245, 233, 213, 0.12); }
.wall-terms__k {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum-mid);
  font-weight: 600;
}
.wall-terms__v {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--cream);
  font-variation-settings: "SOFT" 70;
}
.wall-terms__v em {
  font-family: var(--body);
  font-style: italic;
  font-size: 12px;
  color: var(--plum-mid);
}

/* ----- Canvas form extras (inside the reused .cform sheet) ----- */
.cform__file {
  font-family: var(--body);
  font-size: 14px;
  color: var(--off-black);
  padding: 14px 0;
  border-bottom: 1px solid rgba(20, 9, 26, 0.22);
  cursor: pointer;
}
.cform__file::-webkit-file-upload-button,
.cform__file::file-selector-button {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--plum);
  border: 0;
  padding: 10px 18px;
  margin-right: 16px;
  cursor: pointer;
  transition: background .25s var(--ease);
}
.cform__file::-webkit-file-upload-button:hover,
.cform__file::file-selector-button:hover { background: var(--magenta); }
.cform__hint,
.cform__note {
  font-family: var(--body);
  font-size: 13px;
  color: var(--plum-mid);
  line-height: 1.55;
  letter-spacing: 0.01em;
}
.cform__hint { margin-top: 2px; }
.cform__note {
  background: rgba(61, 20, 56, 0.06);
  border-left: 2px solid var(--magenta);
  padding: 14px 18px;
}

/* Size selector — radio grid. */
.size-grid {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.size-grid .cform__label {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}
.size-option { cursor: pointer; }
.size-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.size-option__face {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 14px;
  border: 1px solid rgba(20, 9, 26, 0.18);
  background: rgba(20, 9, 26, 0.02);
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.size-option:hover .size-option__face {
  border-color: var(--magenta);
  transform: translateY(-2px);
}
.size-option input:checked + .size-option__face {
  border-color: var(--magenta);
  background: rgba(224, 53, 122, 0.08);
  box-shadow: inset 0 0 0 1px var(--magenta);
}
.size-option input:focus-visible + .size-option__face {
  outline: 2px solid var(--magenta);
  outline-offset: 2px;
}
.size-option__dim {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--plum);
  font-variation-settings: "SOFT" 70;
  line-height: 1;
}
.size-option__price {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--magenta);
}

/* Live price readout. */
.price-readout {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 22px;
  background: var(--plum);
  color: var(--cream);
}
.price-readout__label {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pink-soft);
  font-weight: 600;
}
.price-readout__value {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(30px, 3.5vw, 44px);
  color: var(--cream);
  font-variation-settings: "SOFT" 100, "opsz" 144;
  line-height: 1;
}
.price-readout__note {
  font-family: var(--body);
  font-style: italic;
  font-size: 12px;
  color: rgba(245, 233, 213, 0.6);
  margin-left: auto;
}

/* No-AI acknowledgment — hard, required gate. */
.acheck {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  cursor: pointer;
  padding: 18px 20px;
  border: 1px solid rgba(20, 9, 26, 0.18);
  background: rgba(20, 9, 26, 0.02);
  transition: border-color .25s var(--ease);
}
.acheck:hover { border-color: var(--magenta); }
.acheck input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.acheck__box {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--plum-mid);
  background: var(--cream-light);
  position: relative;
  flex-shrink: 0;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.acheck__box::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid var(--cream);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform .2s var(--ease);
}
.acheck input:checked ~ .acheck__box {
  background: var(--magenta);
  border-color: var(--magenta);
}
.acheck input:checked ~ .acheck__box::after { transform: rotate(45deg) scale(1); }
.acheck input:focus-visible ~ .acheck__box {
  outline: 2px solid var(--magenta);
  outline-offset: 2px;
}
.acheck input[aria-invalid="true"] ~ .acheck__box {
  border-color: var(--magenta);
  border-width: 2px;
  box-shadow: 0 0 0 3px rgba(224, 53, 122, 0.2);
}
.acheck__text {
  font-family: var(--body);
  font-size: 14px;
  color: rgba(26, 20, 24, 0.8);
  line-height: 1.5;
}
.acheck__text em {
  font-style: italic;
  color: var(--magenta);
  font-weight: 600;
}

/* ----- Photo-op room (head + backdrop grid + centered booking form) ----- */
.photoop {
  padding: var(--gap) var(--pad-x);
  border-top: 1px solid rgba(245, 233, 213, 0.05);
}
.photoop__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 72px);
  align-items: end;
  margin-bottom: clamp(36px, 4.5vw, 56px);
}
.photoop__eyebrow {
  grid-column: 1 / -1;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink-hot);
  margin-bottom: 4px;
}
.photoop__title {
  font-size: clamp(40px, 5.5vw, 80px);
  color: var(--cream);
  font-variation-settings: "SOFT" 40;
  max-width: 14ch;
}
.photoop__title em {
  color: var(--magenta);
  font-style: normal; /* color accent, upright — per the 05/20 dial-back */
}
.photoop__intro {
  font-family: var(--body);
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(245, 233, 213, 0.72);
  line-height: 1.6;
  max-width: 46ch;
  justify-self: end;
}
.photoop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.photoop__grid .ph {
  aspect-ratio: 4 / 3;
  width: 100%;
  transition: transform .5s var(--ease);
}
.photoop__grid .art-tile:hover .ph { transform: translateY(-6px); }
.photoop__form-wrap {
  max-width: 760px;
  margin-inline: auto;
}

/* ----- Art Gallery responsive ----- */
@media (max-width: 1024px) {
  .canvas,
  .artist-wall { grid-template-columns: 1fr; }
  .canvas__intro { position: relative; top: auto; }
  .walls__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .walls__head,
  .photoop__head { grid-template-columns: 1fr; align-items: start; }
  .walls__intro,
  .photoop__intro { justify-self: start; }
  .walls__grid,
  .photoop__grid { grid-template-columns: 1fr; }
  .size-grid { grid-template-columns: repeat(2, 1fr); }
  .price-readout__note { margin-left: 0; flex-basis: 100%; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
