:root {
  --cream: #fff8ea;
  --paper: #fffdf8;
  --pink: #f43f73;
  --pink-dark: #d92f62;
  --bubblegum: #ff9ab7;
  --blush: #ffe0e8;
  --gold: #f4b942;
  --gold-dark: #d99a1d;
  --chocolate: #4a2518;
  --cocoa: #2c1610;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Nunito", Arial, Helvetica, sans-serif;
  --font-script: "Caveat", cursive;
}

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

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body,
h1, h2, h3, h4, h5, h6,
p, blockquote, figure, dl, dd {
  margin: 0;
}

img, svg {
  display: block;
  vertical-align: middle;
}

body {
  background: var(--cream);
  color: var(--cocoa);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 106px;
  padding: 0 clamp(28px, 5.8vw, 92px);
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
  background: rgba(255, 248, 234, 0.96);
  border-bottom: 2px solid rgba(244, 63, 115, 0.5);
}

.brand {
  align-self: start;
  width: 184px;
  height: 184px;
  display: grid;
  place-items: center;
  transition: transform 220ms ease;
}

.brand:hover {
  transform: rotate(-2deg) scale(1.02);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(89, 35, 33, 0.12));
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  font-size: 15px;
  font-weight: 750;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 3px;
  border-radius: 999px;
  background: var(--pink);
  transition: right 200ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--chocolate);
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  min-height: 54px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  background: linear-gradient(135deg, #fb4b7c, var(--pink));
  color: white;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55), 0 10px 24px rgba(217, 47, 98, 0.18);
  font-size: 15px;
  font-weight: 800;
  text-transform: capitalize;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55), 0 15px 30px rgba(217, 47, 98, 0.27);
  background: var(--chocolate);
}

.button-small {
  justify-self: end;
  min-width: 168px;
  min-height: 52px;
  font-size: 16px;
}

.button span {
  color: #ffd34d;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 130px clamp(32px, 5.5vw, 88px) 82px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--pink);
  font-size: clamp(13px, 1.35vw, 19px);
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--gold-dark);
}

h1 {
  max-width: 620px;
  margin: 0;
  color: var(--chocolate);
  font-family: var(--font-display);
  font-size: clamp(60px, 6.3vw, 106px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 > span {
  display: block;
  color: var(--pink);
  text-shadow: 0 4px 0 white, 0 7px 0 rgba(74, 37, 24, 0.07);
}

h1 .pink-line {
  color: var(--pink);
}

h1 .gold-line {
  color: var(--gold-dark);
}

.heart-divider {
  max-width: 410px;
  margin: 24px 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--pink);
  font-size: 25px;
}

.heart-divider span {
  height: 2px;
  flex: 1;
  border-radius: 999px;
  background: var(--pink);
}

.hero-description {
  max-width: 500px;
  margin: 0;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-outline {
  background: rgba(255, 255, 255, 0.7);
  color: var(--pink-dark);
  border-color: var(--bubblegum);
  box-shadow: none;
}

.button-outline span {
  color: inherit;
  font-size: 20px;
}

.button-outline:hover,
.button-outline:focus-visible {
  color: white;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: var(--blush);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255, 248, 234, 0.95) 0%, rgba(255, 248, 234, 0.8) 30%, rgba(255, 248, 234, 0.22) 56%, transparent 74%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 62% center;
  animation: imageReveal 900ms ease both;
}

.sprinkle-cluster {
  position: absolute;
  top: 15%;
  left: 66%;
  z-index: 3;
  width: 90px;
  height: 90px;
}

.sprinkle-cluster i {
  position: absolute;
  width: 5px;
  height: 20px;
  border-radius: 99px;
  background: var(--gold);
  transform: rotate(35deg);
}

.sprinkle-cluster i:nth-child(2) { left: 42px; top: 5px; background: var(--pink); transform: rotate(-24deg); }
.sprinkle-cluster i:nth-child(3) { left: 72px; top: 34px; background: var(--chocolate); transform: rotate(65deg); }
.sprinkle-cluster i:nth-child(4) { left: 18px; top: 55px; background: var(--bubblegum); transform: rotate(82deg); }
.sprinkle-cluster i:nth-child(5) { left: 58px; top: 72px; background: var(--gold); transform: rotate(-40deg); }
.sprinkle-cluster i:nth-child(6) { left: 4px; top: 20px; background: white; transform: rotate(-18deg); }

.process-bar {
  position: relative;
  z-index: 10;
  width: min(1390px, calc(100% - 64px));
  min-height: 112px;
  margin: -28px auto 0;
  padding: 17px 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 3px solid var(--gold);
  border-radius: 38px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: inset 0 0 0 3px white, 0 16px 35px rgba(74, 37, 24, 0.14);
}

.process-bar article {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.process-bar article + article::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 -13px 0 var(--pink), 0 13px 0 var(--chocolate);
}

.process-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blush);
  color: var(--pink-dark);
  font-size: 27px;
}

.process-bar small,
.process-bar strong {
  display: block;
}

.process-bar small {
  margin-bottom: 3px;
  color: var(--pink-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-bar strong {
  font-size: clamp(14px, 1.35vw, 18px);
  white-space: nowrap;
}

.section-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.section-heading h2,
.showcase-copy h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.section-heading h2 em,
.showcase-copy h2 em,
.contact-copy h2 em {
  color: var(--pink);
  font-style: normal;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience-section {
  padding: 138px 0 128px;
}

.centered-heading {
  max-width: 790px;
  margin: 0 auto 58px;
  text-align: center;
}

.centered-heading > p:last-child {
  max-width: 650px;
  margin: 24px auto 0;
  color: #6c4b42;
  font-size: 18px;
  line-height: 1.7;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 32px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pink), #ffd778, var(--chocolate));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: start;
  gap: 24px;
  padding: 20px 0;
}

.timeline-item:first-child {
  padding-top: 0;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 26px;
  box-shadow: 0 10px 24px rgba(74, 37, 24, 0.14), 0 0 0 6px var(--cream);
}

.timeline-pink .timeline-marker { background: var(--pink); color: white; }
.timeline-cream .timeline-marker { background: white; color: var(--pink-dark); box-shadow: 0 10px 24px rgba(74, 37, 24, 0.14), 0 0 0 6px var(--cream), inset 0 0 0 1px rgba(74, 37, 24, 0.08); }
.timeline-gold .timeline-marker { background: #ffd778; color: var(--chocolate); }
.timeline-cocoa .timeline-marker { background: var(--chocolate); color: white; }

.timeline-buttercream {
  font-size: 34px;
  font-weight: 900;
  transform: rotate(-10deg);
}

.timeline-step {
  display: block;
  margin-bottom: 4px;
  color: var(--pink-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline-content h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.timeline-content p {
  margin: 0;
  max-width: 480px;
  color: #6c4b42;
  font-size: 15px;
  line-height: 1.6;
}

.showcase-section {
  min-height: 780px;
  display: grid;
  grid-template-columns: 54% 46%;
  background: var(--chocolate);
  color: white;
}

.showcase-image {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.showcase-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, rgba(74, 37, 24, 0.68));
}

.photo-badge {
  position: absolute;
  left: clamp(24px, 4vw, 64px);
  bottom: 42px;
  z-index: 2;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  background: rgba(255, 248, 234, 0.92);
  color: var(--chocolate);
  backdrop-filter: blur(12px);
}

.photo-badge strong,
.photo-badge span {
  display: block;
}

.photo-badge strong {
  color: var(--pink-dark);
  font-size: 17px;
}

.photo-badge span {
  margin-top: 4px;
  font-size: 12px;
}

.showcase-copy {
  padding: 108px clamp(38px, 6vw, 100px);
  align-self: center;
}

.showcase-copy h2 em {
  color: var(--bubblegum);
}

.lead-copy {
  max-width: 570px;
  margin: 28px 0 34px;
  color: #f9dce3;
  font-size: 17px;
  line-height: 1.7;
}

.benefit-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit-list article {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit-list article > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.benefit-list h3 {
  margin: 0 0 5px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}

.benefit-list p {
  margin: 0;
  color: #d8bcb4;
  font-size: 13px;
  line-height: 1.55;
}

.text-link {
  margin-top: 30px;
  padding: 8px 0 5px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--bubblegum);
  font-weight: 800;
  border-bottom: 2px solid currentColor;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.events-section {
  padding: 130px 0;
}

.events-heading {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 60px;
}

.events-heading > p {
  margin: 0 0 5px;
  color: #6c4b42;
  font-size: 16px;
  line-height: 1.65;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.event-card {
  position: relative;
  min-height: 160px;
  padding: 26px;
  border-radius: 22px;
  overflow: hidden;
  transition: transform 220ms ease;
}

.event-card:hover {
  transform: translateY(-6px);
}

.event-card > span {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  opacity: 0.8;
}

.event-card h3 {
  margin: 46px 0 6px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.event-card p {
  max-width: 260px;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.78;
}

.event-wedding { background: var(--blush); color: var(--pink-dark); }
.event-birthday { background: var(--pink); color: white; }
.event-quince { background: #ffe7a6; color: var(--chocolate); }
.event-grad { background: var(--chocolate); color: white; }
.event-office { background: white; color: var(--chocolate); border: 1px solid #f0d7d1; }
.event-more { background: #f8b8ca; color: var(--chocolate); }

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, #ffd4df, #fff2df);
}

.about-art {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 22%, white 0 5px, transparent 6px),
    radial-gradient(circle at 85% 66%, var(--gold) 0 6px, transparent 7px),
    radial-gradient(circle at center, rgba(255,255,255,.88) 0 34%, transparent 34.5%);
}

.about-art::before,
.about-art::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border: 24px solid var(--pink);
  border-radius: 50%;
  opacity: 0.15;
}

.about-art::before { left: -70px; top: 100px; }
.about-art::after { right: -50px; bottom: 70px; border-color: var(--gold); }

.about-art img {
  position: relative;
  z-index: 2;
  width: min(510px, 72%);
  filter: drop-shadow(0 28px 35px rgba(74, 37, 24, 0.18));
}

.about-orbit {
  position: absolute;
  z-index: 3;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.orbit-one { top: 13%; right: 17%; transform: rotate(8deg); }
.orbit-two { bottom: 16%; left: 15%; background: var(--gold); color: var(--chocolate); transform: rotate(-9deg); }

.about-copy {
  padding: 120px clamp(42px, 7vw, 120px);
  align-self: center;
}

.about-copy h2 {
  color: var(--pink-dark);
}

.about-copy p:not(.section-kicker) {
  max-width: 560px;
  color: #6c4b42;
  font-size: 16px;
  line-height: 1.75;
}

.about-copy .about-intro {
  margin-top: 30px;
  color: var(--chocolate) !important;
  font-size: 20px !important;
  font-weight: 700;
}

.signature-line {
  margin-top: 34px;
  font-family: var(--font-script);
  color: var(--chocolate);
  font-size: 40px;
  font-weight: 700;
}

.signature-line span {
  color: var(--pink-dark);
}

.faq-section {
  padding: 130px 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.faq-list {
  border-top: 1px solid #e8c9c1;
}

.faq-list details {
  border-bottom: 1px solid #e8c9c1;
}

.faq-list summary {
  position: relative;
  padding: 26px 50px 26px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 4px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blush);
  color: var(--pink-dark);
  font-size: 23px;
}

.faq-list details[open] summary::after { content: "−"; background: var(--pink); color: white; }

.faq-list details p {
  margin: -5px 60px 26px 0;
  color: #6c4b42;
  font-size: 14px;
  line-height: 1.7;
}

.contact-section {
  position: relative;
  min-height: 600px;
  padding: 80px max(24px, 7vw);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  overflow: hidden;
  background: var(--pink);
  color: white;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: radial-gradient(circle at 18% 20%, white 0 5px, transparent 6px), radial-gradient(circle at 80% 70%, var(--gold) 0 7px, transparent 8px);
}

.contact-copy,
.booking-form {
  position: relative;
  z-index: 2;
}

.contact-logo {
  margin-bottom: 18px;
}

.contact-logo img {
  width: min(220px, 60%);
  filter: drop-shadow(0 22px 38px rgba(74, 37, 24, 0.24));
}

.contact-copy .section-kicker {
  color: #ffe8a7;
}

.contact-copy h2 em {
  color: #ffe394;
}

.contact-copy > p:last-of-type {
  max-width: 480px;
  margin: 26px 0;
  color: #ffe8ee;
  font-size: 17px;
  line-height: 1.65;
}

.contact-link {
  display: inline-block;
}

.contact-link small,
.contact-link strong {
  display: block;
}

.contact-link small {
  margin-bottom: 4px;
  color: #ffe8a7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-link strong {
  font-size: 19px;
}

.booking-form {
  width: 100%;
  padding: 32px clamp(24px, 3vw, 40px);
  display: grid;
  gap: 16px;
  background: var(--paper);
  border-radius: 28px;
  box-shadow: 0 24px 55px rgba(74, 37, 24, 0.28);
  text-align: left;
  color: var(--cocoa);
}

.booking-form-title {
  margin: 0;
  color: var(--chocolate);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-form label,
.form-field-full {
  display: grid;
  gap: 6px;
  color: var(--chocolate);
  font-size: 13px;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 12px 14px;
  border: 2px solid var(--blush);
  border-radius: 14px;
  background: white;
  color: var(--cocoa);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--pink);
}

.booking-form button.button {
  justify-self: start;
  margin-top: 4px;
  background: var(--chocolate);
  border-color: #ffe394;
}

.booking-form button.button:hover,
.booking-form button.button:focus-visible {
  background: white;
  color: var(--pink-dark);
}

.booking-form-note {
  margin: 0;
  color: #8a6a5e;
  font-size: 12px;
  line-height: 1.5;
}

.contact-confetti {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.contact-confetti i {
  position: absolute;
  z-index: 1;
  width: 8px;
  height: 34px;
  border-radius: 99px;
  background: var(--gold);
  transform: rotate(34deg);
}

.contact-confetti i:nth-child(1) { top: 13%; left: 9%; }
.contact-confetti i:nth-child(2) { top: 26%; right: 10%; background: white; transform: rotate(-22deg); }
.contact-confetti i:nth-child(3) { bottom: 18%; left: 43%; background: var(--chocolate); transform: rotate(70deg); }
.contact-confetti i:nth-child(4) { top: 11%; left: 54%; background: var(--bubblegum); transform: rotate(82deg); }
.contact-confetti i:nth-child(5) { bottom: 14%; right: 7%; background: #ffe394; transform: rotate(-45deg); }

footer {
  padding: 38px clamp(24px, 6vw, 90px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  background: var(--chocolate);
  color: white;
}

footer > div:first-child strong,
footer > div:first-child span {
  display: block;
}

footer > div:first-child strong { font-size: 17px; }
footer > div:first-child span { margin-top: 4px; color: var(--bubblegum); font-size: 12px; }

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
}

.footer-links a {
  display: inline-block;
  padding: 12px 0;
}

.footer-links a:hover { color: var(--bubblegum); }

footer > p {
  justify-self: end;
  margin: 0;
  color: #d8bcb4;
  font-size: 12px;
}

footer > p span { color: var(--gold); }

@keyframes imageReveal {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 145px 1fr 158px;
    padding-inline: 28px;
  }

  .brand {
    width: 148px;
    height: 148px;
  }

  .desktop-nav {
    gap: 24px;
  }

  .hero-copy {
    padding-left: 44px;
    padding-right: 28px;
  }

  .process-bar {
    width: calc(100% - 38px);
    padding-inline: 18px;
  }

  .showcase-section {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-copy {
    padding: 80px 42px;
  }

  .events-heading,
  .faq-section {
    gap: 50px;
  }

  .about-copy {
    padding: 90px 45px;
  }
}

@media (max-width: 780px) {
  .site-header {
    height: auto;
    min-height: 72px;
    grid-template-columns: 1fr auto;
    padding: 14px 14px 14px 124px;
  }

  .brand {
    position: absolute;
    left: 10px;
    top: 6px;
    width: 108px;
    height: 108px;
  }

  .desktop-nav {
    gap: 12px;
    font-size: 12px;
  }

  .desktop-nav a {
    padding: 13px 0;
  }

  .button-small {
    min-width: 96px;
    min-height: 44px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-copy {
    max-width: 100%;
    padding: 76px 24px 48px;
    text-align: center;
  }

  .hero-description,
  .heart-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-description {
    padding: 14px 20px;
    border-radius: 18px;
    background: rgba(255, 248, 234, 0.75);
    box-shadow: 0 10px 24px rgba(74, 37, 24, 0.14);
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, rgba(255, 248, 234, 0.82) 0%, rgba(255, 248, 234, 0.55) 48%, rgba(255, 248, 234, 0.28) 100%);
  }

  .hero-visual img {
    object-position: 57% center;
  }

  .process-bar {
    width: calc(100% - 28px);
    margin-top: -24px;
    padding: 18px;
    grid-template-columns: 1fr 1fr;
    gap: 16px 8px;
    border-radius: 26px;
  }

  .process-bar article {
    justify-content: flex-start;
  }

  .process-bar article + article::before {
    display: none;
  }

  .experience-section,
  .events-section {
    padding-block: 90px;
  }

  .showcase-section,
  .about-section,
  .faq-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .showcase-image {
    min-height: 530px;
  }

  .showcase-copy,
  .about-copy {
    padding: 80px 28px;
  }

  .events-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .about-art {
    min-height: 520px;
  }

  .faq-section {
    gap: 45px;
    padding-block: 90px;
  }

  .contact-section {
    text-align: center;
  }

  .contact-logo {
    margin-inline: auto;
  }

  .booking-form {
    text-align: left;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  footer > p {
    justify-self: center;
  }
}

@media (max-width: 520px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 10px 12px 10px 90px;
  }

  .brand {
    left: 8px;
    top: 5px;
    width: 78px;
    height: 78px;
  }

  .desktop-nav {
    gap: 7px;
    font-size: 10.5px;
  }

  .button-small {
    min-width: 80px;
    min-height: 40px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .site-header .button span {
    display: none;
  }

  h1 {
    font-size: clamp(58px, 17.5vw, 84px);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero {
    min-height: 560px;
  }

  .process-bar {
    grid-template-columns: 1fr;
  }

  .process-bar article {
    justify-content: flex-start;
  }

  .section-shell {
    width: min(100% - 30px, 1240px);
  }

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

  .showcase-image {
    min-height: 430px;
  }

  .showcase-copy {
    padding-block: 68px;
  }

  .event-card {
    min-height: 150px;
  }

  .about-art {
    min-height: 410px;
  }

  .about-orbit {
    width: 72px;
    height: 72px;
    font-size: 10px;
  }

  .faq-list summary {
    font-size: 16px;
  }

  .contact-section {
    padding: 70px 22px 85px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-form button.button {
    width: 100%;
  }
}

@media (max-width: 359px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .desktop-nav {
    display: none;
    position: absolute;
    z-index: 5;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 16px;
    background: var(--cream);
    border-bottom: 2px solid rgba(244, 63, 115, 0.5);
    box-shadow: 0 16px 24px rgba(74, 37, 24, 0.14);
  }

  .desktop-nav.is-open {
    display: flex;
  }

  .desktop-nav a {
    padding: 14px 4px;
    font-size: 16px;
    border-bottom: 1px solid rgba(74, 37, 24, 0.08);
  }

  .desktop-nav a:last-child {
    border-bottom: none;
  }

  .desktop-nav a::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
