/* Avecbébé Renewal — Pure White, mobile-first */
:root {
  --ink: #1a1a1a;
  --mute: #6b6b6b;
  --line: rgba(26, 26, 26, 0.1);
  --paper: #ffffff;
  --mist: #f6f5f3;
  --rose: #c47a6a;
  --rose-soft: #f3e6e1;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", "Pretendard Variable", Pretendard, sans-serif;
  --pad: max(16px, env(safe-area-inset-left));
  --pad-r: max(16px, env(safe-area-inset-right));
  --gutter: clamp(18px, 5vw, 28px);
  --dock: 64px;
  --top: 56px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--dock) + env(safe-area-inset-bottom, 0px) + 8px);
}

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

a {
  color: inherit;
}

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

.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  background: #fff;
  padding: 8px 12px;
}

.wrap {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.wrap.narrow {
  width: min(520px, 100%);
}

/* ——— top ——— */
.top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: calc(var(--top) + env(safe-area-inset-top, 0px));
  padding: env(safe-area-inset-top, 0px) var(--gutter) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.top.is-solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}

.brand {
  text-decoration: none;
  min-height: 44px;
  display: grid;
  align-content: center;
}

.brand-en {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.28em;
  font-weight: 600;
}

.desk-nav {
  display: none;
  gap: 22px;
  font-size: 13px;
  font-weight: 500;
}

.desk-nav a {
  text-decoration: none;
  opacity: 0.85;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-link {
  display: none;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px;
}

.top-cta {
  display: none;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  background: var(--ink);
  color: #fff !important;
  padding: 9px 14px;
  border-radius: 999px;
}

.burger {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: grid;
  gap: 6px;
  place-content: center;
  cursor: pointer;
  color: inherit;
}

.burger i {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
}

@media (min-width: 880px) {
  .desk-nav {
    display: flex;
  }
  .top-link,
  .top-cta {
    display: inline-flex;
  }
  .burger {
    display: none;
  }
}

/* sheet menu */
.sheet[hidden] {
  display: none !important;
}

.sheet:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(10, 10, 10, 0.35);
}

.sheet-panel {
  position: absolute;
  inset: auto 0 0;
  background: var(--paper);
  border-radius: 22px 22px 0 0;
  padding: 20px var(--gutter) calc(28px + env(safe-area-inset-bottom, 0px));
  animation: sheetUp 0.32s ease;
}

@keyframes sheetUp {
  from {
    transform: translateY(24px);
    opacity: 0.6;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

.sheet-close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.sheet-brand {
  font-family: var(--display);
  font-size: 1.4rem;
  margin: 4px 0 18px;
}

.sheet-nav {
  display: grid;
  gap: 4px;
}

.sheet-nav a {
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.sheet-cta {
  border: 0 !important;
  margin-top: 14px;
  background: var(--ink);
  color: #fff;
  text-align: center;
  border-radius: 999px;
  padding: 16px !important;
}

.sheet-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 13px;
  color: var(--mute);
}

.sheet-meta a {
  text-decoration: none;
}

/* ——— hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: ken 22s ease-out forwards;
}

@keyframes ken {
  to {
    transform: scale(1.12);
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 35%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-body {
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter) calc(88px + env(safe-area-inset-bottom, 0px));
  max-width: 640px;
  animation: rise 0.9s 0.08s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 500;
}

.hero-name {
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(3.4rem, 14vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-lead {
  margin: 0 0 26px;
  font-size: clamp(1.05rem, 3.6vw, 1.25rem);
  font-weight: 400;
  opacity: 0.95;
  max-width: 18em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-ink {
  background: var(--ink);
  color: #fff;
}

.btn-soft {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-line {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-rose {
  background: var(--rose);
  color: #fff;
  border: 0;
}

.strip {
  padding: 18px var(--gutter);
  text-align: center;
  background: var(--mist);
  font-size: 13px;
  color: var(--mute);
  letter-spacing: 0.02em;
}

.strip p {
  margin: 0;
}

/* sections */
.sec {
  padding: clamp(56px, 12vw, 96px) 0;
}

.eye {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
}

.eye.light {
  color: rgba(255, 255, 255, 0.65);
}

.h {
  margin: 0 0 16px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.h.light {
  color: #fff;
}

.lead {
  margin: 0 0 28px;
  color: var(--mute);
  max-width: 34rem;
  font-size: 1.02rem;
}

.sig-row {
  display: grid;
  gap: 12px;
}

@media (min-width: 720px) {
  .sig-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sig {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3 / 4;
  background: var(--mist);
}

.sig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sig:hover img {
  transform: scale(1.05);
}

.sig figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  color: #fff;
}

.sig strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
}

.sig span {
  font-size: 12px;
  opacity: 0.9;
}

/* gallery */
.gallery-sec {
  background: var(--mist);
  padding-bottom: 48px;
}

.gal-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.gal-count {
  margin: 0;
  font-size: 13px;
  color: var(--mute);
  white-space: nowrap;
}

.chips-wrap {
  position: sticky;
  top: calc(var(--top) + env(safe-area-inset-top, 0px));
  z-index: 20;
  background: color-mix(in srgb, var(--mist) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 16px;
}

.chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px var(--gutter) 14px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.chips::-webkit-scrollbar {
  display: none;
}

.chip {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  min-height: 40px;
}

.chip.is-on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.masonry {
  columns: 2;
  column-gap: 8px;
}

@media (min-width: 720px) {
  .masonry {
    columns: 3;
    column-gap: 10px;
  }
}

@media (min-width: 1100px) {
  .masonry {
    columns: 4;
  }
}

.tile {
  break-inside: avoid;
  margin: 0 0 8px;
  border: 0;
  padding: 0;
  width: 100%;
  background: #e8e6e3;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.tile img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
  background: #e8e6e3;
  min-height: 80px;
}

.tile.is-err {
  background: #eceae7;
}

.tile.is-err::after {
  content: "이미지 없음";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 12px;
  color: #8a8a8a;
}

.tile:active img {
  transform: scale(0.99);
}

.more {
  display: flex;
  width: min(280px, 100%);
  margin: 22px auto 0;
  background: var(--paper);
}

/* packages — interaction cards OK */
.pkg-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 28px;
}

@media (min-width: 800px) {
  .pkg-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pkg {
  display: grid;
  grid-template-rows: auto 1fr;
  text-decoration: none;
  background: var(--mist);
  border-radius: 4px;
  overflow: hidden;
  min-height: 100%;
  transition: transform 0.2s ease;
}

.pkg:active {
  transform: scale(0.99);
}

.pkg-shot {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ddd;
}

.pkg-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkg-body {
  padding: 18px 16px 20px;
  display: grid;
  gap: 6px;
  align-content: start;
}

.pkg-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
}

.pkg-body p {
  margin: 0;
  color: var(--mute);
  font-size: 14px;
}

.pkg-body em {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--rose);
  margin-top: 6px;
}

.perk {
  padding: 22px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.perk-tag {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
}

.perk h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
}

.perk p {
  margin: 0 0 12px;
  color: var(--mute);
  font-size: 14px;
}

.text-link {
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 35%, transparent);
}

/* visit */
.visit {
  background: var(--paper);
}

.visit-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 860px) {
  .visit-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}

.addr {
  font-style: normal;
  font-size: 1.15rem;
  margin: 0 0 18px;
  line-height: 1.45;
}

.visit-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.visit-meta li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.visit-meta span {
  color: var(--mute);
}

.visit-meta a {
  text-decoration: none;
}

.visit-photo {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--mist);
}

.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* book */
.book {
  background: var(--ink);
  color: #fff;
  padding: clamp(56px, 12vw, 88px) 0;
}

.book-sub {
  margin: -4px 0 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.form {
  display: grid;
  gap: 12px;
}

@media (min-width: 560px) {
  .form {
    grid-template-columns: 1fr 1fr;
  }
  .span2 {
    grid-column: 1 / -1;
  }
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 14px 14px;
  color: var(--ink);
  background: #fff;
}

.form .btn {
  margin-top: 4px;
  width: 100%;
}

.form-msg {
  margin: 14px 0 0;
  color: #f0d2c8;
  font-size: 14px;
  text-align: center;
}

.kakao-big {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  min-height: 48px;
  border-radius: 999px;
  background: #fee500;
  color: #191600;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

/* footer */
.foot {
  padding: 40px var(--gutter) 28px;
  text-align: center;
  color: var(--mute);
  font-size: 13px;
  background: var(--mist);
}

.foot-brand {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--ink);
  font-weight: 600;
}

.foot p {
  margin: 0 0 4px;
}

.copy {
  margin-top: 14px !important;
  font-size: 11px;
  opacity: 0.75;
}

.src {
  margin-top: 8px !important;
  font-size: 11px;
}

.src a {
  color: var(--ink);
}

/* dock */
.dock {
  position: fixed;
  left: 50%;
  bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 45;
  width: min(420px, calc(100% - 20px));
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.dock a {
  text-decoration: none;
  text-align: center;
  padding: 14px 6px;
  font-size: 13px;
  font-weight: 700;
  border-right: 1px solid var(--line);
}

.dock a:last-child {
  border-right: 0;
}

.dock-main {
  background: var(--ink);
  color: #fff;
}

/* lightbox — display must not override [hidden] */
.lb[hidden] {
  display: none !important;
}

.lb:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(8, 8, 8, 0.94);
  display: grid;
  place-items: center;
  padding: 56px 12px 72px;
}

.lb img {
  max-width: min(100%, 920px);
  max-height: min(78vh, 860px);
  object-fit: contain;
  border-radius: 2px;
  user-select: none;
  -webkit-user-drag: none;
}

.lb-close {
  position: absolute;
  top: calc(8px + env(safe-area-inset-top, 0px));
  right: 8px;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 64px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

.lb-nav.prev {
  left: 4px;
}
.lb-nav.next {
  right: 4px;
}

.lb-cap {
  position: absolute;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  margin: 0;
}

/* ——— July event section ——— */
.event-sec {
  background: linear-gradient(180deg, #faf9f7 0%, #fff 100%);
}

.ev-grid {
  display: grid;
  gap: 20px;
  margin-top: 8px;
}

@media (min-width: 800px) {
  .ev-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}

.ev-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.ev-shot {
  margin: 0;
  position: relative;
  aspect-ratio: 890 / 580;
  overflow: hidden;
  background: #ebe8e3;
}

.ev-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ev-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
}

.ev-badge.soft {
  background: var(--rose);
}

.ev-body {
  padding: 20px 18px 22px;
  display: grid;
  gap: 8px;
  align-content: start;
}

.ev-kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
}

.ev-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.1;
}

.ev-desc {
  margin: 0;
  color: var(--mute);
  font-size: 14px;
}

.ev-price {
  margin: 6px 0 2px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.ev-price del {
  color: var(--mute);
  font-size: 14px;
}

.ev-price strong {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: -0.02em;
}

.ev-spec {
  list-style: none;
  margin: 4px 0 10px;
  padding: 0;
  display: grid;
  gap: 6px;
}

.ev-spec li {
  font-size: 13px;
  color: var(--mute);
  padding-left: 14px;
  position: relative;
}

.ev-spec li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--ink) 35%, transparent);
}

.ev-cta {
  width: 100%;
  margin-top: 4px;
}

/* ——— promo popup (mobile-first, non-blocking dismiss) ——— */
.promo[hidden] {
  display: none !important;
}

.promo:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 12px 12px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(12, 12, 12, 0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.promo-panel {
  width: min(420px, 100%);
  max-height: min(90svh, 780px);
  background: var(--paper);
  border-radius: 20px 20px 16px 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  overflow: hidden;
  animation: promoIn 0.34s ease;
}

@keyframes promoIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.promo-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 8px 6px 18px;
}

.promo-eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}

.promo-head {
  margin: 2px 0 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
}

.promo-x {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}

.promo-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  outline: none;
}

.promo-track::-webkit-scrollbar {
  display: none;
}

.promo-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: grid;
  grid-template-rows: auto auto;
  min-width: 100%;
}

.promo-hit {
  display: block;
  margin: 0 14px;
  border-radius: 10px;
  overflow: hidden;
  background: #ebe8e3;
  aspect-ratio: 890 / 580;
}

.promo-hit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-copy {
  padding: 14px 18px 4px;
}

.promo-tag {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
}

.promo-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.05;
}

.promo-line {
  margin: 6px 0 0;
  color: var(--mute);
  font-size: 14px;
}

.promo-price {
  margin: 10px 0 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.promo-price del {
  color: var(--mute);
  font-size: 14px;
}

.promo-price em {
  font-style: normal;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--rose);
}

.promo-bits {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--mute);
}

.promo-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 8px 0 2px;
}

.promo-dots button {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(26, 26, 26, 0.2);
  cursor: pointer;
}

.promo-dots button.is-on {
  width: 18px;
  background: var(--ink);
}

.promo-actions {
  padding: 8px 14px 14px;
  display: grid;
  gap: 8px;
}

.promo-book {
  width: 100%;
  text-align: center;
}

.promo-foot {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.promo-text {
  border: 0;
  background: transparent;
  color: var(--mute);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 4px;
  cursor: pointer;
  min-height: 44px;
}

.promo-text:hover {
  color: var(--ink);
}

.promo-chip {
  position: fixed;
  left: max(12px, env(safe-area-inset-left, 0px));
  bottom: calc(var(--dock) + 18px + env(safe-area-inset-bottom, 0px));
  z-index: 44;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.promo-chip:active {
  transform: scale(0.97);
}

body.promo-open {
  overflow: hidden;
}

body.promo-open .dock {
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 720px) {
  .promo:not([hidden]) {
    align-items: center;
    padding: 24px;
  }

  .promo-panel {
    border-radius: 18px;
    max-height: min(90vh, 820px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .hero-body,
  .sheet-panel,
  .promo-panel {
    animation: none !important;
  }
}
