/* ============================================================
   The Bella Events Co. — The Glam Mirror
   Near-black dressing room · marquee bulbs · rose-gold frames
   ============================================================ */

:root {
  --ink: #15100e;
  --wall: #1b1412;
  --wall-deep: #120d0c;
  --ivory: #f6efe9;
  --ivory-dim: #e9ddd3;
  --blush: #e8c9bb;
  --rose: #b76e79;
  --rose-bright: #d18e97;
  --gold: #ffd9a0;
  --gold-hot: #fff3dc;
  --rope-red: #9e2438;
  --metal-hi: #e6b8a6;
  --metal-lo: #8a5560;
  --serif: "Bodoni Moda", "Didot", serif;
  --sans: "Jost", "Futura", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ivory);
  background: var(--wall-deep);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--rose); color: var(--gold-hot); }

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

a { color: var(--blush); text-decoration-color: color-mix(in srgb, var(--rose) 60%, transparent); text-underline-offset: 3px; }
a:hover { color: var(--gold); }

:focus-visible { outline: 2px solid var(--rose-bright); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 99;
  background: var(--ivory); color: var(--ink); padding: 0.6rem 1.2rem;
  font-family: var(--sans); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem;
}
.skip-link:focus { left: 0; }

/* ---------- Nav ---------- */

.site-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; gap: 2rem;
  padding: 0.9rem clamp(1.2rem, 4vw, 3rem);
  background: color-mix(in srgb, var(--wall-deep) 78%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid color-mix(in srgb, var(--rose) 28%, transparent);
}

.nav-wordmark {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 500;
  color: var(--ivory); text-decoration: none; white-space: nowrap;
}
.nav-wordmark span { color: var(--rose-bright); font-style: italic; }

.nav-links { display: flex; gap: 1.8rem; margin-left: auto; }
.nav-links a {
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blush); text-decoration: none; padding: 0.3rem 0;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-book { color: var(--gold); border-bottom: 1px solid var(--rose); }

.nav-phone {
  font-size: 0.9rem; letter-spacing: 0.12em; font-weight: 400;
  color: var(--ivory); text-decoration: none; white-space: nowrap;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none;
  padding: 1rem 2.1rem; border-radius: 2px; cursor: pointer;
  transition: transform 200ms cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 200ms, background-color 200ms, color 200ms;
}
.btn:active { transform: translateY(1px); }

.btn-solid {
  background: linear-gradient(160deg, var(--rose-bright), var(--rose));
  color: #23090d;
  border: none;
  box-shadow: 0 6px 22px -6px rgba(183, 110, 121, 0.55);
}
.btn-solid:hover { color: #23090d; box-shadow: 0 10px 30px -6px rgba(209, 142, 151, 0.65); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: var(--ivory);
  border: 1px solid color-mix(in srgb, var(--blush) 55%, transparent);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline {
  background: transparent; color: var(--ink);
  border: 1px solid color-mix(in srgb, var(--ink) 45%, transparent);
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); background: color-mix(in srgb, var(--rose) 14%, transparent); }

/* ---------- Shared: mirrors & bulbs ---------- */

.mirror {
  position: relative;
  background:
    linear-gradient(155deg, var(--metal-hi) 0%, var(--rose) 32%, var(--metal-lo) 58%, var(--metal-hi) 100%);
  padding: 14px;
  box-shadow:
    0 30px 70px -24px rgba(0, 0, 0, 0.8),
    0 8px 24px -10px rgba(0, 0, 0, 0.6);
}

.mirror-glass {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, #262019 0%, #1c1512 55%, #171110 100%);
  height: 100%;
}

.mirror-arch { border-radius: 50% 50% 20px 20px / 40% 40% 20px 20px; }
.mirror-arch .mirror-glass { border-radius: 50% 50% 12px 12px / 40% 40% 12px 12px; }

.mirror-rect { border-radius: 14px; }
.mirror-rect .mirror-glass { border-radius: 8px; }

.mirror-sleek { padding: 10px; }

.bulb {
  position: absolute; z-index: 3;
  width: var(--bulb-size, 13px); height: var(--bulb-size, 13px);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, var(--gold-hot) 0%, var(--gold) 45%, #d99a6c 78%, #a06048 100%);
  box-shadow:
    0 0 6px 1px rgba(255, 226, 170, 0.9),
    0 0 22px 6px rgba(255, 205, 140, 0.38),
    0 2px 6px rgba(0, 0, 0, 0.4);
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: bulb-on 700ms cubic-bezier(0.2, 0.9, 0.3, 1) forwards, bulb-breathe 5.5s ease-in-out infinite;
  animation-delay: var(--d, 0ms), calc(var(--d, 0ms) + 700ms);
}

@keyframes bulb-on {
  0% { opacity: 0; filter: brightness(0.2); }
  55% { opacity: 1; filter: brightness(1.35); }
  100% { opacity: 1; filter: brightness(1); }
}
@keyframes bulb-breathe {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(0.86); }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: clamp(5.5rem, 12vh, 8rem) 1.2rem 0;
  overflow: hidden;
}

.hero-wall {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(90% 60% at 50% 30%, rgba(255, 217, 160, 0.10) 0%, transparent 60%),
    radial-gradient(140% 100% at 50% 110%, rgba(183, 110, 121, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, var(--wall-deep) 0%, var(--wall) 50%, var(--wall-deep) 100%);
}
.hero-wall::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0 2px, transparent 2px 90px);
}

.hero .mirror-arch {
  width: min(720px, 94vw);
}

.hero .mirror-glass {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(4.5rem, 9vw, 6.5rem) clamp(1.6rem, 6vw, 4.5rem) clamp(3rem, 5vw, 4rem);
}

.mirror-sheen {
  position: absolute; inset: -20%; pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(246, 239, 233, 0.055) 48%, rgba(246, 239, 233, 0.10) 50%, rgba(246, 239, 233, 0.055) 52%, transparent 58%);
  transform: translateX(-60%);
  animation: sheen 1800ms cubic-bezier(0.3, 0.6, 0.2, 1) 900ms forwards;
}
@keyframes sheen { to { transform: translateX(55%); } }

.hero-logo {
  width: 96px; height: 96px; border-radius: 16%;
  margin-bottom: 1.6rem;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--rose) 55%, transparent), 0 10px 30px -10px rgba(0, 0, 0, 0.7);
}

.heart-rule {
  display: flex; align-items: center; gap: 0.7rem;
  margin: 1.1rem 0 1.6rem;
}
.heart-rule span { display: block; width: 54px; height: 1px; background: color-mix(in srgb, var(--rose) 70%, transparent); }
.heart-rule svg { width: 13px; height: 13px; fill: var(--rose-bright); }

.hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.1rem, 5.4vw, 3.9rem);
  line-height: 1.12; letter-spacing: 0.005em;
  text-wrap: balance;
  color: var(--ivory);
}
.hero h1 em { font-style: italic; color: var(--rose-bright); }

.hero-sub {
  max-width: 44ch;
  margin-top: 1.3rem;
  color: var(--ivory-dim);
  font-size: 1.05rem;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 2.1rem; }

.hero-pricing {
  margin-top: 1.7rem;
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blush);
}
.hero-pricing span { white-space: nowrap; }

/* Red rope threshold */

.rope-line {
  width: min(540px, 78vw);
  margin: clamp(2rem, 5vh, 3.4rem) auto 0;
}
.rope-svg {
  display: block; width: 100%; height: auto;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.45));
}

/* ---------- Marquee ---------- */

.marquee {
  overflow: hidden;
  border-top: 1px solid color-mix(in srgb, var(--rose) 30%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--rose) 30%, transparent);
  background: linear-gradient(180deg, #201713, #191210);
  padding: 1.05rem 0;
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee-track span {
  font-family: var(--sans); font-weight: 400; font-size: 0.85rem;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold);
  white-space: nowrap;
  display: flex; align-items: center;
}
.marquee-track span::after {
  content: "";
  display: inline-block; width: 9px; height: 9px; margin: 0 2.2rem;
  background: var(--rose-bright);
  clip-path: path("M4.5 8.6 C2.2 6.6 0.5 5.1 0.5 3.5 C0.5 2.2 1.5 1.4 2.6 1.4 C3.3 1.4 4 1.8 4.5 2.5 C5 1.8 5.7 1.4 6.4 1.4 C7.5 1.4 8.5 2.2 8.5 3.5 C8.5 5.1 6.8 6.6 4.5 8.6 Z");
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections shared ---------- */

.section-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.15; text-align: center; text-wrap: balance;
  color: var(--ivory);
}
.section-title em { font-style: italic; color: var(--rose-bright); }

.section-lede {
  text-align: center; color: var(--ivory-dim);
  max-width: 52ch; margin: 1rem auto 0;
}

/* ---------- Experiences ---------- */

.experiences {
  padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1.2rem, 4vw, 3rem) clamp(4rem, 8vw, 6.5rem);
  max-width: 1240px; margin: 0 auto;
}

.exp-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 3.5vw, 3rem);
  margin-top: clamp(2.6rem, 5vw, 4rem);
  align-items: start;
}

.exp .exp-glass {
  padding: clamp(2.2rem, 4vw, 3.2rem) clamp(1.6rem, 3vw, 2.6rem) clamp(2.4rem, 4vw, 3rem);
  display: flex; flex-direction: column; align-items: flex-start;
}

.exp h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem); line-height: 1.1;
  color: var(--ivory);
}

.exp-price { margin-top: 1.2rem; display: flex; align-items: baseline; gap: 0.7rem; }

.exp-flag {
  margin-top: 0.8rem; padding-top: 0.8rem;
  border-top: 1px solid color-mix(in srgb, var(--rose) 35%, transparent);
  align-self: stretch;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
}
.exp-price strong {
  font-family: var(--serif); font-weight: 500; font-size: 2.6rem; line-height: 1;
  color: var(--gold);
}
.exp-price span {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blush);
}

.exp-blurb { margin-top: 1.1rem; color: var(--ivory-dim); max-width: 46ch; }

.exp-list {
  list-style: none; margin-top: 1.6rem;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.exp-list li {
  position: relative; padding-left: 1.7rem;
  color: var(--ivory-dim); font-size: 0.98rem; line-height: 1.5;
}
.exp-list li::before {
  content: ""; position: absolute; left: 0; top: 0.42em;
  width: 12px; height: 12px;
  background: var(--rose-bright);
  clip-path: path("M6 1.5 L7.4 4.6 L10.8 5 L8.3 7.3 L9 10.6 L6 8.9 L3 10.6 L3.7 7.3 L1.2 5 L4.6 4.6 Z");
}

.exp-note {
  margin-top: 1.3rem; padding: 0.85rem 1.1rem;
  border: 1px solid color-mix(in srgb, var(--blush) 30%, transparent);
  border-radius: 4px;
  font-size: 0.92rem; color: var(--blush);
}

.exp-btn { margin-top: 2rem; }

/* drop-off mirror: unlit, cooler glass */
.mirror-sleek .mirror-glass, #drop-off .mirror-glass {
  background: radial-gradient(120% 90% at 50% 0%, #241e1b 0%, #1a1513 60%, #151110 100%);
}
#drop-off {
  background: linear-gradient(155deg, #d8c1b4 0%, #a98d84 40%, #79615c 62%, #cbb3a6 100%);
}
#drop-off .exp-flag { color: var(--blush); border-top-color: color-mix(in srgb, var(--blush) 30%, transparent); }
#drop-off .exp-price strong { color: var(--ivory); }
#drop-off .btn-outline { color: var(--ivory); border-color: color-mix(in srgb, var(--ivory) 45%, transparent); }
#drop-off .btn-outline:hover { color: var(--gold); border-color: var(--gold); background: transparent; }

/* VIP rope in front of full-service */
.is-vip { z-index: 1; }
.is-vip .exp-glass { padding-bottom: 4.2rem; }
.vip-rope {
  position: absolute; left: 7%; right: 7%; bottom: -74px;
  pointer-events: none;
}

/* ---------- Prints ---------- */

.prints {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 4vw, 3rem);
}

.prints-copy .section-title { text-align: left; }
.prints-copy > p { margin-top: 1.3rem; color: var(--ivory-dim); max-width: 54ch; }

.prints-facts { list-style: none; margin: 1.6rem 0 2.2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.prints-facts li { position: relative; padding-left: 1.7rem; color: var(--ivory-dim); }
.prints-facts li::before {
  content: ""; position: absolute; left: 0; top: 0.44em;
  width: 12px; height: 12px; background: var(--rose-bright);
  clip-path: path("M6 1.5 L7.4 4.6 L10.8 5 L8.3 7.3 L9 10.6 L6 8.9 L3 10.6 L3.7 7.3 L1.2 5 L4.6 4.6 Z");
}
.prints-facts strong { color: var(--ivory); font-weight: 500; }

.prints-stage {
  position: relative;
  min-height: 480px;
  background:
    radial-gradient(80% 70% at 50% 20%, rgba(255, 217, 160, 0.07) 0%, transparent 60%),
    linear-gradient(170deg, #221a16, #171110);
  border: 1px solid color-mix(in srgb, var(--rose) 25%, transparent);
  border-radius: 10px;
  overflow: hidden;
}
.prints-stage::after {
  content: "Sample templates";
  position: absolute; right: 14px; bottom: 10px;
  font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; color: color-mix(in srgb, var(--blush) 65%, transparent);
}

.print-strip {
  position: absolute; left: 12%; top: 8%;
  width: clamp(120px, 34%, 170px);
  background: #fdfaf6;
  padding: 10px 10px 6px;
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.75), 0 6px 16px -6px rgba(0, 0, 0, 0.5);
  transform: rotate(-5deg);
  display: flex; flex-direction: column; gap: 8px;
}
.strip-frame { aspect-ratio: 3 / 2.3; background: #2a211d center/cover no-repeat; }
.strip-caption {
  font-family: var(--serif); font-style: italic; font-size: 0.72rem; text-align: center;
  color: #3c2e28; padding: 4px 0 6px;
}

.print-postcard {
  position: absolute; right: 8%; bottom: 12%;
  width: clamp(200px, 52%, 300px);
  background: #fdfaf6;
  padding: 12px 12px 8px;
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.75), 0 6px 16px -6px rgba(0, 0, 0, 0.5);
  transform: rotate(3deg);
}
.postcard-frame { aspect-ratio: 3 / 2; background: #2a211d center/cover no-repeat; }
.postcard-caption {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-family: var(--serif); font-style: italic; font-size: 0.8rem;
  color: #3c2e28; padding: 7px 0 3px;
}
.heart-inline { width: 11px; height: 11px; fill: var(--rose); }

/* ---------- Gallery ---------- */

.gallery {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 4vw, 3rem);
  max-width: 1240px; margin: 0 auto;
}

.gallery-band { margin-top: clamp(2.4rem, 5vw, 3.6rem); }
.gallery-band .mirror-glass { padding: clamp(1rem, 2.5vw, 1.8rem); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.7rem, 1.6vw, 1.1rem);
}

.gallery-grid figure {
  position: relative; overflow: hidden; border-radius: 3px;
  background: #241c18;
  aspect-ratio: 4 / 5;
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 600ms;
  filter: saturate(0.96);
}
.gallery-grid figure:hover img { transform: scale(1.045); filter: saturate(1.05); }
.gallery-grid figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 1.6rem 0.9rem 0.7rem;
  background: linear-gradient(180deg, transparent, rgba(18, 13, 12, 0.85));
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blush);
  opacity: 0; transition: opacity 300ms;
}
.gallery-grid figure:hover figcaption { opacity: 1; }

.gallery-credit {
  text-align: center; margin-top: 1.6rem;
  font-size: 0.9rem; color: var(--ivory-dim);
}

/* ---------- Book ---------- */

.book {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 4vw, 3rem) clamp(5rem, 9vw, 8rem);
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(183, 110, 121, 0.12) 0%, transparent 60%),
    var(--wall-deep);
}

.book-card {
  max-width: 760px; margin: 0 auto;
  background: linear-gradient(178deg, #fbf6f0, #f4ebe2);
  color: var(--ink);
  border-radius: 8px;
  padding: clamp(2.4rem, 5vw, 4rem) clamp(1.6rem, 5vw, 4rem) clamp(2.2rem, 4vw, 3.2rem);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.85), 0 0 0 1px color-mix(in srgb, var(--rose) 35%, transparent);
  text-align: center;
}

.book-logo { width: 110px; height: auto; margin: 0 auto; border-radius: 16%; }

.book-card h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-top: 1.4rem; color: #221510;
}

.book-lede { margin: 0.8rem auto 0; max-width: 44ch; color: #5c4a42; }

#bookForm { margin-top: 2.4rem; text-align: left; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field-row + .field-row, .field-row + .field-wide, .field-wide { margin-top: 1.4rem; }

.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field span {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase;
  color: #7d6157;
}
.field span i { font-style: normal; text-transform: none; letter-spacing: 0.05em; color: #7d6157; }

.field input, .field select, .field textarea {
  font-family: var(--sans); font-weight: 400; font-size: 1rem; color: #221510;
  background: transparent;
  border: none; border-bottom: 1px solid #c9ab9d;
  padding: 0.55rem 0.1rem;
  border-radius: 0;
  transition: border-color 200ms;
}
.field textarea { resize: vertical; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: #7d6157; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--rose);
  box-shadow: 0 1px 0 var(--rose);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #7d6157 50%), linear-gradient(135deg, #7d6157 50%, transparent 50%); background-position: calc(100% - 14px) 55%, calc(100% - 9px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }

.form-error {
  margin-top: 1.3rem; padding: 0.8rem 1rem;
  background: #f7e3e0; border: 1px solid #d89a92; border-radius: 4px;
  color: #7c2d22; font-size: 0.95rem;
}

.btn-submit { margin-top: 1.8rem; width: 100%; border: none; font-size: 0.9rem; }

.form-note { margin-top: 1.3rem; text-align: center; font-size: 0.88rem; color: #7d6157; }
.form-note a { color: #9c4e58; }
.form-note a:hover { color: #7c2d3a; }

/* ---------- Footer ---------- */

.site-footer {
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
  border-top: 1px solid color-mix(in srgb, var(--rose) 25%, transparent);
  display: flex; flex-direction: column; align-items: center;
}

.footer-wordmark { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.site-footer .heart-rule { margin: 0.9rem 0 1.2rem; }

.footer-contact, .footer-social { color: var(--ivory-dim); font-size: 0.95rem; margin-top: 0.3rem; }
.footer-fine {
  margin-top: 1.4rem;
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: color-mix(in srgb, var(--blush) 72%, transparent);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .exp-grid { grid-template-columns: 1fr; }
  .vip-rope { bottom: -60px; }
  .exp-grid .is-vip { margin-bottom: 3.6rem; }
  .prints { grid-template-columns: 1fr; }
  .prints-stage { min-height: 420px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* short desktop viewports: keep the rope threshold inside the first screen */
@media (min-width: 901px) and (max-height: 980px) {
  .hero { padding-top: 4.6rem; }
  .hero .mirror-arch { width: min(620px, 88vw); }
  .hero .mirror-glass { padding: 3.6rem 3rem 2.4rem; }
  .hero h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
  .hero-logo { width: 82px; height: 82px; margin-bottom: 1.1rem; }
  .hero-cta { margin-top: 1.6rem; }
  .hero-pricing { margin-top: 1.3rem; }
  .hero-pricing span { display: block; }
  .hero-pricing .dot-sep { display: none; }
  .rope-line { margin-top: 1.5rem; width: min(440px, 64vw); }
}

@media (max-width: 900px) {
  .site-nav { padding: 0.85rem 1.1rem; gap: 1rem; }
  .nav-wordmark { font-size: 1.05rem; }
  .nav-links { display: flex; gap: 0; }
  .nav-links a:not(.nav-book) { display: none; }
  .nav-links .nav-book { font-size: 0.75rem; }
  .nav-phone { margin-left: 0.6rem; font-size: 0.82rem; letter-spacing: 0.08em; }
}

@media (max-width: 680px) {
  body { font-size: 1rem; }
  .hero { padding-top: 5rem; }
  .hero .mirror-glass { padding: 4.2rem 1.4rem 2.4rem; }
  .hero-logo { width: 76px; height: 76px; margin-bottom: 1.2rem; }
  .hero-pricing { font-size: 0.72rem; letter-spacing: 0.14em; }
  .hero-pricing span { display: block; }
  .hero-pricing .dot-sep { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .print-strip { left: 6%; }
  .print-postcard { right: 5%; }
  .rope-line { width: 82vw; }
  .gallery-grid figcaption { opacity: 1; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bulb { animation: none; opacity: 1; }
  .mirror-sheen { animation: none; transform: none; opacity: 0.4; }
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; row-gap: 0.5rem; }
  .gallery-grid img, .btn { transition: none; }
}
