:root {
  color-scheme: dark;
  --ink: #080706;
  --night: #11100f;
  --cream: #faf5ec;
  --muted: rgba(250, 245, 236, 0.68);
  --dim: rgba(250, 245, 236, 0.14);
  --rose: #9f2e47;
  --rose-soft: #ddb8b5;
  --leaf: #81936a;
  --gold: #c9a56f;
  --panel: rgba(250, 245, 236, 0.08);
  --line: rgba(250, 245, 236, 0.18);
  --shadow: 0 34px 120px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  --cursor-x: 50vw;
  --cursor-y: 50vh;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.cursor-spotlight {
  position: fixed;
  left: var(--cursor-x);
  top: var(--cursor-y);
  z-index: 2;
  width: 38vw;
  max-width: 560px;
  aspect-ratio: 1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 184, 181, 0.16), rgba(201, 165, 111, 0.07) 36%, transparent 68%);
  filter: blur(18px);
  opacity: 0.85;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.scroll-meter {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 50;
  background: rgba(250, 245, 236, 0.08);
}

.scroll-meter span {
  display: block;
  width: calc(var(--scroll, 0) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--leaf));
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 40;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 7, 6, 0.54);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
  backdrop-filter: blur(24px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--cream);
  font-weight: 750;
  text-decoration: none;
}

.wordmark img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

nav {
  display: flex;
  gap: clamp(10px, 2vw, 24px);
  color: var(--muted);
  font-size: 0.95rem;
}

nav a {
  position: relative;
  text-decoration: none;
}

nav a::after,
.legal-links a::after,
.map-link::after,
.back-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

nav a:hover {
  color: var(--cream);
}

nav a:hover::after,
.legal-links a:hover::after,
.map-link:hover::after,
.back-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.nav-cta:hover,
.pill-button:hover,
.submit-btn:hover {
  box-shadow: 0 18px 56px rgba(250, 245, 236, 0.24);
  transform: translateY(-2px) scale(1.05);
}

.door-stage {
  position: relative;
  min-height: 210vh;
  overflow: clip;
  background:
    radial-gradient(circle at 78% 22%, rgba(159, 46, 71, 0.3), transparent 28%),
    radial-gradient(circle at 18% 74%, rgba(129, 147, 106, 0.22), transparent 30%),
    var(--ink);
}

.hero-flower,
.logo-door,
.hero-content,
.scroll-cue {
  position: sticky;
  top: 0;
  height: 100vh;
}

.hero-flower {
  display: grid;
  place-items: center;
  opacity: calc(0.36 + var(--open, 0) * 0.64);
  transform: scale(calc(0.92 + var(--open, 0) * 0.12));
}

.hero-flower::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.9), rgba(8, 7, 6, 0.18) 48%, rgba(8, 7, 6, 0.72)),
    linear-gradient(0deg, rgba(8, 7, 6, 0.72), rgba(8, 7, 6, 0.05) 44%, rgba(8, 7, 6, 0.56));
}

.hero-flower > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(calc((1 - var(--open, 0)) * 0.82)) saturate(calc(0.72 + var(--open, 0) * 0.5)) contrast(1.05);
  transition: filter 260ms ease;
}

.bouquet-badge {
  position: absolute;
  right: clamp(24px, 11vw, 152px);
  bottom: clamp(86px, 14vh, 150px);
  z-index: 2;
  width: clamp(82px, 12vw, 158px);
  height: clamp(82px, 12vw, 158px);
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  opacity: calc(1 - var(--content, 0));
  transform: rotate(calc(-10deg + var(--open, 0) * 18deg)) translateY(calc((1 - var(--open, 0)) * 28px));
}

.logo-door {
  pointer-events: none;
  perspective: 1200px;
  margin-top: -100vh;
  z-index: 4;
  opacity: var(--door-opacity, 1);
}

.door-panel {
  position: absolute;
  top: 50%;
  width: clamp(150px, 22vw, 260px);
  height: clamp(300px, 44vw, 520px);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.door-panel img {
  position: absolute;
  top: 50%;
  width: 200%;
  height: 100%;
  object-fit: contain;
  transform: translateY(-50%);
}

.door-left img {
  left: 0;
}

.door-right img {
  right: 0;
}

.door-left {
  left: 50%;
  border-radius: 999px 0 0 999px;
  background-position: left center;
  transform-origin: right center;
  transform: translate(-100%, -50%) rotateY(calc(var(--open, 0) * -78deg)) translateX(calc(var(--open, 0) * -42vw));
}

.door-right {
  right: 50%;
  border-radius: 0 999px 999px 0;
  background-position: right center;
  transform-origin: left center;
  transform: translate(100%, -50%) rotateY(calc(var(--open, 0) * 78deg)) translateX(calc(var(--open, 0) * 42vw));
}

.hero-content {
  display: flex;
  z-index: 12;
  width: min(1120px, calc(100% - 36px));
  margin: -100vh auto 0;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(84px, 15vh, 150px);
  opacity: var(--content, 0);
  transform: translateY(calc((1 - var(--content, 0)) * 40px));
}

.kicker {
  margin: 0 0 14px;
  color: var(--rose-soft);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 10.8rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.86;
}

.hero-content p:not(.kicker) {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.pill-button,
.submit-btn {
  display: inline-flex;
  width: fit-content;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.scroll-cue {
  z-index: 9;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: -100vh;
  padding-bottom: 26px;
  color: rgba(250, 245, 236, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: calc(1 - var(--open, 0));
  pointer-events: none;
}

.statement {
  padding: clamp(70px, 12vw, 150px) clamp(18px, 8vw, 120px);
  background: var(--cream);
  color: var(--ink);
}

.statement p {
  max-width: 1120px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6.5vw, 7.4rem);
  line-height: 0.96;
}

.cinematic {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.72fr);
  gap: clamp(30px, 8vw, 120px);
  align-items: center;
  min-height: 100vh;
  padding: clamp(74px, 10vw, 130px) clamp(18px, 7vw, 100px);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 40%, rgba(201, 165, 111, 0.18), transparent 30%),
    linear-gradient(180deg, #080706, #151211);
}

.cinematic-copy {
  position: relative;
  z-index: 2;
}

.cinematic h2 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 500;
  line-height: 0.9;
}

.cinematic-copy p:not(.kicker) {
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.1rem;
}

.motion-stack {
  position: relative;
  min-height: min(620px, 75vh);
  perspective: 1200px;
}

.photo-card {
  position: absolute;
  inset: 12% 0 auto auto;
  width: min(420px, 70vw);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(250, 245, 236, 0.18), rgba(250, 245, 236, 0.02)),
    url("assets/atelier-floristik-hero.png") center / cover;
  box-shadow: var(--shadow);
  filter: grayscale(0.96) saturate(0.8);
  transform: translateY(calc(var(--scroll, 0) * -90px)) rotate(calc(var(--scroll, 0) * 10deg));
  transition: filter 420ms ease, transform 420ms ease, box-shadow 420ms ease;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(250, 245, 236, 0.2), transparent 42%);
  opacity: 0;
  transition: opacity 320ms ease;
}

.motion-stack:hover .photo-card {
  filter: grayscale(0) saturate(1.12);
  box-shadow: 0 40px 130px rgba(159, 46, 71, 0.28);
}

.motion-stack:hover .photo-card::after {
  opacity: 1;
}

.photo-card-two {
  inset: 28% auto auto 6%;
  width: min(330px, 56vw);
  filter: saturate(0.9);
  transform: translateY(calc(var(--scroll, 0) * 120px)) rotate(calc(var(--scroll, 0) * -12deg));
}

.signature-seal {
  position: absolute;
  inset: auto 8% 4% auto;
  display: grid;
  width: min(260px, 46vw);
  aspect-ratio: 1;
  place-items: center;
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid rgba(250, 245, 236, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.52), 0 0 80px rgba(250, 245, 236, 0.16);
  transform: translateY(calc(var(--scroll, 0) * -120px)) rotate(calc(var(--scroll, 0) * 18deg));
  transition: transform 420ms ease, box-shadow 420ms ease;
  z-index: 3;
}

.signature-seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.motion-stack:hover .signature-seal {
  box-shadow: 0 44px 150px rgba(159, 46, 71, 0.3), 0 0 100px rgba(250, 245, 236, 0.2);
  transform: translateY(calc(var(--scroll, 0) * -120px - 10px)) rotate(calc(var(--scroll, 0) * 18deg)) scale(1.04);
}

.chapters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.chapters article {
  min-height: 56vh;
  min-width: 0;
  padding: clamp(28px, 3.6vw, 62px);
  border-right: 1px solid var(--line);
  background:
    linear-gradient(150deg, rgba(250, 245, 236, 0.1), transparent 42%),
    var(--night);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 260ms ease, background 260ms ease;
}

.chapters article:hover {
  box-shadow: inset 0 0 0 1px rgba(250, 245, 236, 0.16), 0 30px 90px rgba(0, 0, 0, 0.34);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-8px) scale(1.015);
}

.chapters article:nth-child(2) {
  background:
    radial-gradient(circle at 70% 18%, rgba(159, 46, 71, 0.24), transparent 34%),
    var(--night);
}

.chapters article:last-child {
  border-right: 0;
}

.chapters span {
  color: var(--gold);
  font-weight: 900;
}

.chapters h2,
.booking-copy h2,
.finale h2 {
  margin: 28px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 5.6rem);
  line-height: 0.94;
  font-weight: 500;
}

.chapters h2 {
  max-width: 100%;
  font-size: clamp(2.7rem, 4.35vw, 5rem);
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.chapters p {
  max-width: 420px;
  color: var(--muted);
  font-size: 1.04rem;
}

.booking-section {
  padding: clamp(72px, 10vw, 130px) clamp(18px, 6vw, 82px);
  background:
    radial-gradient(circle at 8% 12%, rgba(129, 147, 106, 0.22), transparent 28%),
    radial-gradient(circle at 88% 28%, rgba(159, 46, 71, 0.2), transparent 30%),
    var(--ink);
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
  padding: clamp(72px, 10vw, 130px) clamp(18px, 7vw, 96px);
  background: var(--cream);
  color: var(--ink);
}

.location-section h2 {
  margin: 24px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 7rem);
  line-height: 0.92;
  font-weight: 500;
}

.location-section .kicker {
  color: var(--rose);
}

.location-section p {
  max-width: 520px;
  color: rgba(8, 7, 6, 0.66);
  font-size: 1.08rem;
}

.location-section iframe {
  width: 100%;
  min-height: 460px;
  border: 0;
  border-radius: 34px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.18);
  filter: saturate(0.78) contrast(1.04);
}

.map-link {
  position: relative;
  display: inline-flex;
  margin-top: 18px;
  color: var(--rose);
  font-weight: 850;
  text-decoration: none;
}

.booking-copy {
  max-width: 980px;
  margin: 0 auto 42px;
}

.booking-copy p:not(.kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.1rem;
}

.booking-app {
  display: grid;
  grid-template-columns: 0.75fr 1fr 0.9fr;
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
}

.event-types,
.calendar-shell,
.booking-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(22px);
  position: relative;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.event-types::before,
.calendar-shell::before,
.booking-panel::before,
.type-card::before,
.instagram-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(250, 245, 236, 0.3), transparent 34%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.event-types:hover,
.calendar-shell:hover,
.booking-panel:hover {
  border-color: rgba(250, 245, 236, 0.34);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.38);
  transform: translateY(-4px);
}

.event-types:hover::before,
.calendar-shell:hover::before,
.booking-panel:hover::before,
.type-card:hover::before,
.instagram-card:hover::before {
  opacity: 1;
}

.event-types {
  display: grid;
  gap: 12px;
  padding: 14px;
  align-content: start;
}

.type-card {
  position: relative;
  overflow: hidden;
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(250, 245, 236, 0.05);
  color: var(--cream);
  text-align: left;
  cursor: pointer;
  transform: perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 190ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.type-card:hover {
  border-color: rgba(250, 245, 236, 0.5);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  transform: perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-5px) scale(1.035);
}

.type-card span,
.calendar-head span,
.panel-label,
.form-note {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.type-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.28rem;
}

.type-card.active {
  border-color: rgba(250, 245, 236, 0.58);
  background: linear-gradient(135deg, rgba(159, 46, 71, 0.45), rgba(129, 147, 106, 0.22));
}

.calendar-shell,
.booking-panel {
  padding: 20px;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.calendar-head strong {
  display: block;
  font-size: 1.35rem;
}

.icon-btn {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(250, 245, 236, 0.08);
  color: var(--cream);
  cursor: pointer;
  font-size: 1.6rem;
}

.weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.weekdays {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.day {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(250, 245, 236, 0.06);
  color: var(--cream);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.day:hover:not(:disabled),
.day.selected {
  border-color: var(--gold);
  background: rgba(201, 165, 111, 0.22);
}

.day:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.05);
}

.day:disabled {
  color: rgba(250, 245, 236, 0.26);
  cursor: not-allowed;
}

.day.booked {
  background: rgba(159, 46, 71, 0.22);
  color: rgba(250, 245, 236, 0.42);
}

.day.has-bookings:not(.booked)::after {
  content: "Slots";
  display: block;
  color: var(--gold);
  font-size: 0.62rem;
}

.day.booked::after {
  content: "gebucht";
  display: block;
  font-size: 0.62rem;
}

.booking-panel {
  display: grid;
  gap: 18px;
}

.booking-panel h3 {
  margin-bottom: 6px;
  font-size: 1.42rem;
}

.booking-panel p {
  color: var(--muted);
}

.slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.slot {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(250, 245, 236, 0.06);
  color: var(--cream);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.slot:hover:not(:disabled) {
  box-shadow: 0 16px 40px rgba(201, 165, 111, 0.18);
  transform: translateY(-2px) scale(1.04);
}

.slot.selected {
  background: var(--cream);
  color: var(--ink);
}

.slot:disabled {
  color: rgba(250, 245, 236, 0.28);
  cursor: not-allowed;
  text-decoration: line-through;
}

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

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(250, 245, 236, 0.09);
  color: var(--cream);
  outline: none;
  padding: 13px 14px;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}

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

.finale {
  display: grid;
  grid-template-columns: minmax(180px, 320px) minmax(0, 760px);
  gap: clamp(28px, 8vw, 110px);
  align-items: center;
  padding: clamp(72px, 11vw, 150px) clamp(18px, 8vw, 120px);
  background: var(--cream);
  color: var(--ink);
}

.finale img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 24px 100px rgba(0, 0, 0, 0.16);
}

.finale .kicker {
  color: var(--rose);
}

.finale p:not(.kicker) {
  color: rgba(8, 7, 6, 0.68);
  font-size: 1.08rem;
}

.finale a {
  color: var(--rose);
  font-weight: 850;
  text-decoration: none;
}

.instagram-card {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: min(100%, 520px);
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(8, 7, 6, 0.14);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.12);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.instagram-card:hover {
  box-shadow: 0 30px 90px rgba(159, 46, 71, 0.22);
  transform: translateY(-6px) scale(1.025);
}

.instagram-card svg {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  padding: 12px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 110%, #ffdc80 0 22%, #fcaf45 34%, #f77737 48%, #e1306c 64%, #833ab4 100%);
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
}

.instagram-card strong,
.instagram-card small {
  display: block;
}

.instagram-card strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.instagram-card small {
  margin-top: 4px;
  color: rgba(8, 7, 6, 0.62);
  font-size: 0.9rem;
  font-weight: 600;
}

.legal-links {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  color: rgba(8, 7, 6, 0.56);
}

.legal-links a,
.back-link {
  position: relative;
}

.legal-page {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) 0;
  color: var(--cream);
}

.legal-page h1 {
  max-width: none;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
}

.legal-page h2 {
  margin: 34px 0 12px;
  font-size: 1.2rem;
}

.legal-page p {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-page a {
  color: var(--rose-soft);
}

.back-link {
  display: inline-flex;
  margin-bottom: 42px;
  text-decoration: none;
  font-weight: 850;
}

@media (max-width: 1040px) {
  .booking-app,
  .chapters,
  .finale,
  .cinematic,
  .location-section {
    grid-template-columns: 1fr;
  }

  .chapters article {
    min-height: 36vh;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (min-width: 1041px) and (max-width: 1380px) {
  .chapters h2 {
    font-size: clamp(3rem, 4vw, 4.35rem);
  }

  .chapters article {
    padding-inline: clamp(28px, 3.2vw, 48px);
  }
}

@media (max-width: 680px) {
  .topbar {
    top: 10px;
    align-items: flex-start;
    border-radius: 26px;
    flex-direction: column;
  }

  .wordmark span {
    font-size: 0.95rem;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .nav-cta {
    width: 100%;
  }

  .door-stage {
    min-height: 185vh;
  }

  .door-panel {
    width: 142px;
    height: 284px;
  }

  .hero-content {
    padding-bottom: 64px;
  }

  h1 {
    font-size: clamp(3.6rem, 18vw, 5.3rem);
  }

  .weekdays,
  .calendar-grid {
    gap: 5px;
  }

  .day {
    min-height: 48px;
    border-radius: 12px;
    font-size: 0.88rem;
  }

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

  .cursor-spotlight {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-flower,
  .hero-content,
  .scroll-cue {
    position: relative;
    height: auto;
    margin-top: 0;
    opacity: 1;
    transform: none;
  }

  .door-stage {
    min-height: auto;
    padding-top: 96px;
  }

  .logo-door {
    display: none;
  }

  .cursor-spotlight {
    display: none;
  }

  .hero-flower {
    height: 62vh;
  }
}
