:root {
  --pink: #ff4fa3;
  --pink-light: #ff93c8;
  --orange: #ff7900;
  --lime: #d9ff45;
  --cream: #fff9ea;
  --ink: #171313;
  --white: #fffdf8;
  --line: rgba(23, 19, 19, .18);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; width: 100%; }
a { color: inherit; }
.skip { position: fixed; top: -100px; left: 1rem; z-index: 100; background: var(--ink); color: white; padding: .75rem 1rem; }
.skip:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 78px;
  padding: 0 4vw;
  border-bottom: 2px solid var(--ink);
  background: rgba(255, 249, 234, .94);
  backdrop-filter: blur(10px);
}
.brand { display: inline-flex; align-items: center; gap: .6rem; width: fit-content; font-weight: 800; letter-spacing: .06em; text-decoration: none; }
.brand-flower { display: inline-grid; place-items: center; width: 35px; height: 35px; border-radius: 50%; color: var(--pink); background: var(--lime); font-size: 1.4rem; }
nav { display: flex; gap: 2rem; }
nav a { font-size: .9rem; font-weight: 600; text-decoration: none; }
nav a:hover { text-decoration: underline; text-decoration-color: var(--pink); text-decoration-thickness: 3px; text-underline-offset: 5px; }
.site-header > .button { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 54px;
  padding: .9rem 1.35rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .035em;
  transition: transform .16s ease, box-shadow .16s ease;
}
.button:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.button:focus-visible, .text-link:focus-visible, nav a:focus-visible, footer a:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.button-small { min-height: 43px; padding: .65rem 1.1rem; font-size: .76rem; box-shadow: 4px 4px 0 var(--ink); }
.button-dark { color: white; background: var(--ink); box-shadow: 5px 5px 0 rgba(255,255,255,.35); border-color: var(--ink); }
.button-large { padding-inline: 2rem; }
.text-link { display: inline-flex; gap: .4rem; font-weight: 800; text-underline-offset: 5px; text-decoration-thickness: 2px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  min-height: calc(100vh - 78px);
  border-bottom: 2px solid var(--ink);
  background: var(--pink);
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(4rem, 8vw, 8rem) 6vw; }
.eyebrow { margin: 0 0 1rem; font-weight: 800; font-size: .83rem; letter-spacing: .13em; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: .95; letter-spacing: -.035em; }
h1 { max-width: 720px; font-size: clamp(3.5rem, 6.8vw, 7.2rem); }
h1 em, h2 em { color: var(--cream); font-weight: 400; }
.hero-lead { max-width: 620px; margin: 2rem 0; font-size: clamp(1.05rem, 1.4vw, 1.3rem); }
.hero-actions { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }
.location { margin: 2.2rem 0 0; font-weight: 600; font-size: .92rem; }
.location span { color: var(--lime); -webkit-text-stroke: 1px var(--ink); }
.hero-art { position: relative; min-height: 650px; overflow: hidden; border-left: 2px solid var(--ink); background: var(--orange); }
.hero-art img { position: absolute; z-index: 2; inset: 6% 8%; width: 84%; height: 88%; border: 2px solid var(--ink); border-radius: 48% 48% 10px 10px; object-fit: cover; box-shadow: 14px 14px 0 var(--lime); }
.sunburst { position: absolute; inset: -30%; background: repeating-conic-gradient(var(--orange) 0deg 13deg, #ff9c23 13deg 26deg); }
.sticker { position: absolute; z-index: 4; display: grid; place-items: center; aspect-ratio: 1; text-align: center; font-weight: 900; line-height: 1.05; transform: rotate(-9deg); }
.sticker-one { right: 1%; top: 4%; width: 140px; padding: 1rem; border: 2px solid var(--ink); border-radius: 50%; background: var(--lime); box-shadow: 6px 6px 0 var(--ink); }
.sticker-two { left: 2%; bottom: 3%; width: 145px; padding: 1rem; border-radius: 42% 58% 43% 57% / 55% 40% 60% 45%; color: white; background: var(--ink); font-family: var(--serif); font-size: 1.05rem; transform: rotate(7deg); }

.marquee { overflow: hidden; padding: .7rem 0; border-bottom: 2px solid var(--ink); background: var(--lime); white-space: nowrap; }
.marquee div { width: max-content; font-weight: 900; font-size: 1rem; letter-spacing: .09em; animation: drift 24s linear infinite; }
.marquee span { padding: 0 1rem; color: var(--pink); }
@keyframes drift { to { transform: translateX(-35%); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .marquee div { animation: none; } }

.section { padding: clamp(5rem, 9vw, 9rem) 6vw; }
.experience { background: var(--cream); }
.section-heading { display: grid; grid-template-columns: .55fr 1.35fr .8fr; align-items: end; gap: 3rem; padding-bottom: 4rem; border-bottom: 2px solid var(--ink); }
.section-heading .eyebrow { align-self: start; }
.section-heading h2, .packages-intro h2, .gallery-title h2, .story-copy h2, .cta h2 { font-size: clamp(3rem, 5.8vw, 6rem); }
.section-heading h2 em, .packages-intro h2 em, .gallery-title h2 em, .story-copy h2 em { color: var(--pink); }
.section-heading > p:last-child { margin: 0; font-size: 1.05rem; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); }
.steps article { position: relative; padding: 2.5rem 3rem 0 0; }
.steps article + article { padding-left: 3rem; border-left: 1px solid var(--line); }
.step-number { color: var(--orange); font-family: var(--serif); font-size: 2.5rem; }
.steps h3 { margin: 1.3rem 0 .6rem; font-size: 1.35rem; }
.steps p { max-width: 330px; margin: 0; }

.packages { display: grid; grid-template-columns: .75fr 1.25fr; gap: 6vw; background: var(--orange); border-block: 2px solid var(--ink); }
.packages-intro { align-self: center; }
.packages-intro p:not(.eyebrow) { max-width: 480px; margin: 1.5rem 0; font-size: 1.05rem; }
.package-cards { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: 1.4rem; }
.package-card { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: 590px; padding: 2rem; border: 2px solid var(--ink); box-shadow: 9px 9px 0 var(--ink); }
.package-card.petite { background: var(--pink-light); transform: rotate(-1deg); }
.package-card.large { background: var(--lime); transform: rotate(1.2deg); }
.package-label { display: inline-block; padding: .35rem .7rem; border: 2px solid var(--ink); border-radius: 999px; background: var(--cream); font-weight: 900; font-size: .75rem; letter-spacing: .08em; }
.price { margin: 1rem 0 0; font-family: var(--serif); font-size: 4.6rem; line-height: 1; }
.quantity { margin: .25rem 0; font-weight: 700; }
.package-card ul { margin: 2rem 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.package-card li { padding: .65rem 0 .65rem 1.5rem; border-bottom: 1px solid var(--line); }
.package-card li::before { content: "✿"; float: left; margin-left: -1.5rem; color: var(--orange); }
.popular { position: absolute; top: -1.3rem; right: -1rem; padding: .55rem .8rem; border: 2px solid var(--ink); background: var(--pink); font-size: .72rem; font-weight: 900; transform: rotate(3deg); }
.package-note { grid-column: 2; margin: 1.4rem 0 0; font-size: .86rem; }

.gallery { background: var(--ink); color: white; }
.gallery-title { display: grid; grid-template-columns: .5fr 1.5fr; align-items: start; margin-bottom: 3rem; }
.gallery-title h2 em { color: var(--pink); }
.gallery-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1.2rem; align-items: stretch; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; border: 2px solid white; min-height: 510px; background: var(--orange); }
.gallery-grid img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-grid figcaption { position: absolute; bottom: 1rem; left: 1rem; padding: .55rem .8rem; color: var(--ink); background: var(--lime); border: 2px solid var(--ink); font-weight: 800; transform: rotate(-1deg); }
.image-note { margin: 1rem 0 0; color: rgba(255,255,255,.65); font-size: .82rem; }

.story { display: grid; grid-template-columns: .95fr 1.05fr; gap: 7vw; align-items: center; background: var(--cream); }
.story-mark { position: relative; }
.story-mark::before { content: ""; position: absolute; inset: -1.4rem 1.4rem 1.4rem -1.4rem; background: var(--lime); border: 2px solid var(--ink); transform: rotate(-3deg); }
.story-mark img { position: relative; border: 2px solid var(--ink); transform: rotate(1deg); }
.story-copy > p:not(.eyebrow):not(.story-signoff) { max-width: 660px; font-size: 1.08rem; }
.story-signoff { display: inline-block; margin: 1rem 0 0; padding: .7rem 1rem; background: var(--pink); border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); font-family: var(--serif); font-size: 1.25rem; transform: rotate(-1deg); }

.cta { position: relative; overflow: hidden; text-align: center; background: var(--pink); border-block: 2px solid var(--ink); }
.cta h2 { max-width: 950px; margin: 0 auto; }
.cta h2 em { color: var(--lime); }
.cta > p:not(.eyebrow) { max-width: 610px; margin: 1.5rem auto 2rem; font-size: 1.1rem; }
.cta-flower { position: absolute; color: var(--lime); font-size: 8rem; line-height: 1; }
.flower-a { top: 12%; left: 5%; transform: rotate(-15deg); }
.flower-b { right: 5%; bottom: 5%; transform: rotate(18deg); }

footer { display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; align-items: start; gap: 3rem; padding: 3rem 6vw; color: white; background: var(--ink); font-size: .9rem; }
.footer-brand { display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: .7rem; }
.footer-brand .brand-flower { grid-row: 1 / 3; }
.footer-brand span:last-child { color: rgba(255,255,255,.65); }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { text-underline-offset: 3px; }
.copyright { color: rgba(255,255,255,.55); }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-art img { inset: 7% 5%; width: 90%; height: 86%; }
  .section-heading { grid-template-columns: 1fr 2fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .packages { grid-template-columns: 1fr; }
  .package-note { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid figure:first-child { grid-row: span 2; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .site-header { min-height: 68px; padding-inline: 1rem; }
  .brand { font-size: .82rem; }
  .brand-flower { width: 30px; height: 30px; }
  .site-header .button { min-height: 39px; padding: .55rem .8rem; font-size: .65rem; }
  .hero { display: flex; min-height: auto; flex-direction: column; }
  .hero-copy { padding: 4rem 1.25rem 3rem; }
  h1 { font-size: clamp(3.5rem, 16vw, 5.1rem); }
  .hero-lead { margin: 1.5rem 0; }
  .hero-art { min-height: 560px; border-top: 2px solid var(--ink); border-left: 0; }
  .hero-art img { inset: 7% 6%; width: 88%; height: 85%; }
  .sticker-one { width: 110px; font-size: .78rem; }
  .sticker-two { width: 115px; font-size: .84rem; }
  .section { padding: 5rem 1.25rem; }
  .section-heading { display: block; }
  .section-heading .eyebrow { margin-bottom: 1rem; }
  .section-heading > p:last-child { margin-top: 1.5rem; }
  .steps { grid-template-columns: 1fr; }
  .steps article, .steps article + article { padding: 2rem 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .packages { gap: 3rem; }
  .package-cards { grid-template-columns: 1fr; }
  .package-card { min-height: 540px; transform: none !important; }
  .gallery-title { display: block; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid figure, .gallery-grid figure:first-child { min-height: 450px; grid-row: auto; }
  .story { grid-template-columns: 1fr; }
  .story-mark { margin: 0 1rem 1rem; }
  .cta-flower { font-size: 4rem; opacity: .45; }
  footer { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 420px) {
  .site-header .button { box-shadow: 3px 3px 0 var(--ink); }
  .site-header .button span { display: none; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-art { min-height: 490px; }
  .gallery-grid figure { min-height: 390px; }
}
