:root {
  --plum-deep: #4A2F5C;
  --plum: #6E4677;
  --plum-rich: #2E1F2A;
  --plum-soft: #8A6AA0;
  --lavender: #A88BC4;
  --lavender-pale: #C9B5DC;
  --blue-grey: #6E92AB;
  --cream: #F3E6D8;
  --cream-soft: #F8EFE2;
  --blush-soft: #E5B5A6;
  --ink: #1B1419;
  --serif: "Newsreader", "Times New Roman", serif;
  --sans: "Albert Sans", system-ui, sans-serif;
  --max: 1440px;
  --content: 1180px;
  --gutter: clamp(1rem, 4vw, 3.5rem);
}

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

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: var(--sans);
  font-weight: 300;
  background: var(--ink);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 48% 42% at 24% 11%, rgba(168, 139, 196, 0.32), transparent 66%),
    radial-gradient(ellipse 42% 38% at 82% 20%, rgba(110, 146, 171, 0.24), transparent 68%),
    radial-gradient(ellipse 66% 48% at 54% 84%, rgba(229, 181, 166, 0.15), transparent 66%),
    linear-gradient(180deg, #3b2448 0%, #27172a 46%, #1b1419 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(243, 230, 216, 0.052), transparent 28%, rgba(201, 181, 220, 0.05) 58%, transparent 78%),
    radial-gradient(circle at 13% 74%, rgba(229, 181, 166, 0.12), transparent 28%);
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(229, 181, 166, 0.95);
  outline-offset: 4px;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 1.4rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(27, 20, 25, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(243, 230, 216, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-mark-nav { width: 42px; height: auto; }
.brand-logo-nav { width: clamp(130px, 12vw, 170px); height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.nav-links a {
  padding: 0.5rem 0.8rem;
  color: inherit;
  opacity: 0.85;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blush-soft);
  opacity: 1;
}

.nav-sep { opacity: 0.3; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(243, 230, 216, 0.26);
  border-radius: 999px;
  background: rgba(243, 230, 216, 0.06);
  color: var(--cream);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(243, 230, 216, 0.12);
  border-color: rgba(229, 181, 166, 0.45);
}

.nav-toggle span {
  width: 17px;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

main {
  flex: 1;
  padding-top: 76px;
}

.page-hero {
  min-height: clamp(250px, 30vw, 380px);
  display: flex;
  align-items: center;
  padding: clamp(5rem, 9vw, 8rem) var(--gutter) clamp(3.5rem, 7vw, 6rem);
  background:
    linear-gradient(90deg, rgba(243, 230, 216, 0.22), rgba(168, 139, 196, 0.16) 34%, rgba(229, 181, 166, 0.12) 72%, rgba(110, 146, 171, 0.15)),
    linear-gradient(180deg, rgba(46, 31, 42, 0.36), rgba(74, 47, 92, 0.42));
}

.hero-inner,
.content-wrap {
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.eyebrow,
.meta-label,
.tiny-note {
  color: rgba(243, 230, 216, 0.72);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.card-eyebrow {
  color: rgba(243, 230, 216, 0.72);
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.card-body .card-eyebrow {
  font-size: 0.54rem;
  line-height: 1.3;
}

.page-hero h1,
.detail-hero h1,
.section-title,
.cta-band h2 {
  font-family: var(--serif);
  color: var(--cream-soft);
  font-weight: 260;
  letter-spacing: 0;
}

.page-hero h1 {
  max-width: 980px;
  margin-top: 0.8rem;
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.94;
}

.overview-section {
  padding: clamp(4rem, 7vw, 7rem) var(--gutter) clamp(5rem, 8vw, 8rem);
}

.overview-grid {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(1rem, 3vw, 1.8rem);
  align-items: stretch;
  justify-content: center;
}

.feature-card,
.placeholder-card,
.soft-card,
.host-card,
.cta-band {
  border: 1px solid rgba(243, 230, 216, 0.14);
  background:
    linear-gradient(145deg, rgba(243, 230, 216, 0.08), rgba(168, 139, 196, 0.08)),
    rgba(46, 31, 42, 0.68);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.feature-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100%;
  color: inherit;
  overflow: hidden;
  border-radius: 24px;
  text-decoration: none;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 230, 216, 0.28);
  box-shadow: 0 38px 96px rgba(0, 0, 0, 0.32);
}

.feature-card:hover .card-image img {
  transform: scale(1.035);
  filter: saturate(1.06) brightness(1.04);
}

.card-image {
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
  background: rgba(27, 20, 25, 0.32);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.75s ease;
}

.card-body {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 0.65rem;
  padding: clamp(1.25rem, 3vw, 1.7rem);
}

.card-body h2,
.card-body h3 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-style: italic;
  font-weight: 260;
  line-height: 1.05;
}

.card-body p {
  color: rgba(243, 230, 216, 0.73);
  font-size: 1rem;
  line-height: 1.45;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(243, 230, 216, 0.12);
  color: var(--cream);
}

.card-meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-cta {
  white-space: nowrap;
  color: var(--cream-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.placeholder-card {
  min-height: 100%;
  height: 100%;
  border-radius: 24px;
  padding: clamp(1.35rem, 3vw, 1.9rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.8rem;
  color: rgba(243, 230, 216, 0.7);
}

.placeholder-card h3 {
  max-width: 260px;
  font-family: var(--serif);
  color: var(--cream-soft);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 260;
  line-height: 1.08;
}

.detail-hero {
  padding: clamp(5rem, 8vw, 7.4rem) var(--gutter) clamp(3.6rem, 6vw, 5.4rem);
  background: linear-gradient(180deg, rgba(74, 47, 92, 0.92), rgba(74, 47, 92, 0.84));
  border-bottom: 1px solid rgba(243, 230, 216, 0.08);
}

.detail-hero-row {
  width: min(var(--content), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}

.detail-hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
}

.lead {
  max-width: 620px;
  margin-top: 1rem;
  color: rgba(243, 230, 216, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.hero-subtitle {
  margin-top: 0.85rem;
  color: var(--lavender-pale);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-style: italic;
  font-weight: 260;
}

.button,
.external-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: fit-content;
  min-height: 54px;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 230, 216, 0.5);
  background: linear-gradient(135deg, var(--cream-soft), var(--cream));
  color: var(--plum-deep);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 18px 38px rgba(229, 181, 166, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.button:hover,
.external-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 22px 46px rgba(229, 181, 166, 0.26);
}

.external-button::after,
.external-text::after {
  content: "↗";
  font-size: 0.9em;
  line-height: 1;
}

.external-text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.detail-section {
  padding: clamp(3.5rem, 6vw, 6rem) var(--gutter);
}

.main-visual {
  width: min(var(--content), 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(243, 230, 216, 0.14);
  border-radius: 8px;
  background: rgba(46, 31, 42, 0.6);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.main-visual img {
  width: 100%;
  height: auto;
}

.event-meta {
  width: min(var(--content), 100%);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding: 1.5rem 0;
  border-block: 1px solid rgba(243, 230, 216, 0.12);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.meta-item strong {
  display: block;
  margin-top: 0.4rem;
  color: var(--cream);
  font-size: 0.96rem;
  font-weight: 400;
}

.two-column,
.split-hero,
.set-grid {
  width: min(var(--content), 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
}

.two-column {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.copy-block {
  max-width: 760px;
}

.section-title {
  margin-bottom: 0.85rem;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.copy-block p,
.note-copy p {
  color: rgba(243, 230, 216, 0.78);
  font-size: 1rem;
  line-height: 1.72;
}

.copy-block p + p,
.note-copy p + p {
  margin-top: 1rem;
}

.host-card {
  border-radius: 18px;
  padding: clamp(1.35rem, 3vw, 1.8rem);
}

.host-card h3 {
  margin-top: 0.45rem;
  font-family: var(--serif);
  color: var(--cream-soft);
  font-size: 1.45rem;
  font-weight: 300;
}

.host-card blockquote {
  margin-top: 1rem;
  color: rgba(243, 230, 216, 0.78);
  font-style: italic;
  line-height: 1.65;
}

.timeline-card,
.bring-card {
  border: 1px solid rgba(243, 230, 216, 0.14);
  background:
    linear-gradient(145deg, rgba(243, 230, 216, 0.08), rgba(168, 139, 196, 0.08)),
    rgba(46, 31, 42, 0.68);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.timeline-card {
  margin-top: 1.2rem;
  border-radius: 18px;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.timeline-list {
  list-style: none;
  display: grid;
  gap: 0;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 1rem;
  padding-bottom: 1.65rem;
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 28px;
  bottom: -2px;
  width: 1px;
  background: linear-gradient(180deg, rgba(243, 230, 216, 0.34), rgba(168, 139, 196, 0.12));
}

.timeline-marker {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(243, 230, 216, 0.22);
  border-radius: 999px;
  background: rgba(27, 20, 25, 0.44);
}

.timeline-marker::before {
  content: "✦";
  color: var(--cream);
  font-size: 0.78rem;
  line-height: 1;
}

.timeline-content {
  min-width: 0;
  padding-bottom: 0.1rem;
}

.timeline-time {
  color: var(--blush-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.timeline-content h3 {
  margin-top: 0.25rem;
  color: var(--cream-soft);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  font-weight: 270;
  line-height: 1.05;
}

.timeline-content p,
.mini-list li,
.bring-list li {
  color: rgba(243, 230, 216, 0.78);
}

.timeline-content p {
  margin-top: 0.55rem;
  line-height: 1.66;
}

.mini-list,
.bring-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.mini-list {
  margin-top: 0.65rem;
}

.mini-list li,
.bring-list li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.58;
}

.mini-list li::before,
.bring-list li::before {
  content: "✿";
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: var(--cream);
  font-size: 0.72rem;
}

.bring-card {
  border-radius: 18px;
  padding: clamp(1.35rem, 3vw, 1.8rem);
}

.bring-list {
  margin-top: 1rem;
}

.cta-band {
  width: min(var(--content), 100%);
  margin: 0 auto;
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.cta-band h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 0.98;
}

.cta-band p {
  max-width: 600px;
  margin-top: 0.9rem;
  color: rgba(243, 230, 216, 0.78);
}

.split-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
}

.product-visual,
.collage-image {
  overflow: hidden;
  border: 1px solid rgba(243, 230, 216, 0.16);
  border-radius: 8px;
  background: rgba(243, 230, 216, 0.06);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

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

.product-copy h1 {
  margin-top: 0.85rem;
  font-family: var(--serif);
  color: var(--cream-soft);
  font-size: clamp(2.55rem, 4.5vw, 4.2rem);
  font-weight: 260;
  line-height: 0.98;
  letter-spacing: 0;
}

.subtitle {
  margin-top: 0.8rem;
  color: var(--lavender-pale);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  font-weight: 260;
}

.price {
  margin-top: 1.1rem;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
  font-weight: 260;
}

.description {
  max-width: 560px;
  margin-top: 1.2rem;
  color: rgba(243, 230, 216, 0.8);
  font-size: 1.02rem;
  line-height: 1.68;
}

.product-actions {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.shipping-note {
  padding-top: 1rem;
  border-top: 1px solid rgba(243, 230, 216, 0.12);
  color: rgba(201, 181, 220, 0.86);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.set-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: center;
}

.soft-card {
  border-radius: 18px;
  padding: clamp(1.5rem, 4vw, 2.6rem);
}

.soft-card ul {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.soft-card li {
  position: relative;
  padding-left: 1.8rem;
  color: rgba(243, 230, 216, 0.8);
}

.soft-card li::before {
  content: "✿";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cream);
}

.note-copy h2 {
  margin-bottom: 1.4rem;
  font-family: var(--serif);
  color: var(--cream-soft);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-style: italic;
  font-weight: 260;
  line-height: 1.05;
}

.signature {
  margin-top: 1.8rem;
  font-family: var(--serif);
  color: var(--cream);
  font-size: 1.55rem;
}

.collage-grid {
  width: min(var(--content), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: clamp(1rem, 3vw, 1.5rem);
  align-items: stretch;
}

.collage-panel {
  border-radius: 18px;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(46, 31, 42, 0.58);
  border: 1px solid rgba(243, 230, 216, 0.12);
}

.collage-panel h2 {
  margin-top: 0.65rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 260;
  line-height: 1.05;
}

.collage-panel p {
  margin-top: 0.8rem;
  color: rgba(243, 230, 216, 0.74);
}

footer {
  background: var(--ink);
  color: var(--lavender-pale);
  padding: 4.5rem var(--gutter) 2.5rem;
  border-top: 1px solid rgba(243, 230, 216, 0.08);
}

.foot-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.foot-brand-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.foot-brand-mark { width: 38px; height: auto; flex-shrink: 0; }
.foot-brand-logo { width: 150px; height: auto; }

.foot-brand p {
  max-width: 360px;
  color: var(--lavender-pale);
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.75;
}

.foot-col h5 {
  margin-bottom: 1rem;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.foot-col a {
  color: var(--lavender-pale);
  font-family: var(--sans);
  font-size: 0.85rem;
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.foot-col a:hover { color: var(--blush-soft); opacity: 1; }

.foot-email {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.15rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(243, 230, 216, 0.12);
  border-radius: 999px;
  background: rgba(243, 230, 216, 0.04);
  color: var(--cream) !important;
  opacity: 0.88 !important;
}

.foot-email:hover {
  border-color: rgba(229, 181, 166, 0.42);
  background: rgba(229, 181, 166, 0.08);
}

.foot-bottom {
  max-width: var(--max);
  margin: 3.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(243, 230, 216, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--plum-soft);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.foot-bottom em {
  color: var(--lavender-pale);
  font-family: var(--serif);
  font-style: italic;
}

@media (max-width: 900px) {
  nav { align-items: flex-start; gap: 1rem; }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 22;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 21;
    width: min(78vw, 320px);
    height: 100vh;
    min-height: 100vh;
    padding: 5.8rem 1.15rem 1.15rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    background: linear-gradient(145deg, rgba(74, 47, 92, 0.96), rgba(27, 20, 25, 0.97));
    border: 1px solid rgba(243, 230, 216, 0.16);
    border-radius: 18px 0 0 18px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(20px) saturate(135%);
    -webkit-backdrop-filter: blur(20px) saturate(135%);
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  }

  nav.menu-open .nav-links {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 0.8rem 0.7rem;
    border-radius: 8px;
  }

  .nav-links a:hover { background: rgba(243, 230, 216, 0.06); }
  nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav-sep { display: none; }

  .overview-grid,
  .detail-hero-row,
  .two-column,
  .split-hero,
  .set-grid,
  .collage-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .detail-hero-row { align-items: start; }
  .event-meta { grid-template-columns: 1fr 1fr; }
  .foot-wrap { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  main { padding-top: 72px; }
  .page-hero { min-height: 250px; padding-inline: 1rem; }
  .overview-section,
  .detail-section,
  .detail-hero {
    padding-inline: 1rem;
  }

  .page-hero h1,
  .detail-hero h1,
  .product-copy h1 {
    font-size: clamp(2.65rem, 16vw, 4rem);
  }

  .feature-card,
  .placeholder-card,
  .cta-band {
    border-radius: 18px;
  }

  .card-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-meta { grid-template-columns: 1fr; }

  .button,
  .external-button {
    width: 100%;
    min-height: 56px;
  }

  .foot-wrap { grid-template-columns: 1fr; }
}
