:root {
  --purple-950: #1b062f;
  --purple-900: #281047;
  --purple-800: #351063;
  --purple-700: #4b1c82;
  --gold: #f5be32;
  --gold-light: #ffe49a;
  --cream: #fff8e8;
  --paper: #fffdf8;
  --ink: #211629;
  --muted: #6f6474;
  --line: rgba(53, 16, 99, .13);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "DM Sans", sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: #fff; padding: .75rem 1rem; border-radius: 8px; }
.skip-link:focus { top: 1rem; }

.site-header { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 0 clamp(1.25rem, 5vw, 5rem); position: absolute; top: 0; left: 0; right: 0; z-index: 10; color: #fff; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; line-height: 1; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand span { display: grid; }
.brand strong { font-family: "Fraunces", serif; font-size: 1.15rem; }
.brand small { color: var(--gold-light); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; margin-top: .2rem; }
nav { display: flex; gap: 2rem; }
nav a { text-decoration: none; color: rgba(255,255,255,.8); font-size: .92rem; font-weight: 600; }
nav a:hover { color: var(--gold); }

.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 1.4rem; border-radius: 999px; background: var(--gold); color: var(--purple-950); font-weight: 800; text-decoration: none; box-shadow: 0 8px 24px rgba(245,190,50,.18); transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245,190,50,.28); }
.button-small { min-height: 42px; padding: 0 1.15rem; font-size: .9rem; }
.text-link { color: #fff; text-underline-offset: 5px; font-weight: 700; }

.hero { min-height: 760px; display: grid; grid-template-columns: 1.02fr .98fr; background: var(--purple-950); color: #fff; overflow: hidden; }
.hero-copy { padding: 160px 4vw 64px max(5vw, calc((100vw - 1440px)/2)); display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 1rem; color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 800; }
h1, h2, h3 { font-family: "Fraunces", serif; }
h1 { margin: 0; max-width: 720px; font-size: clamp(3.5rem, 6.2vw, 6.7rem); line-height: .95; letter-spacing: -.055em; }
h1 em { color: var(--gold); font-style: italic; font-weight: 600; }
.hero-lead { max-width: 570px; margin: 1.8rem 0 2rem; color: rgba(255,255,255,.73); font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; }
.service-strip { display: flex; gap: 2.5rem; margin-top: auto; padding-top: 4rem; color: rgba(255,255,255,.68); font-size: .85rem; }
.service-strip span { display: grid; gap: .25rem; }
.service-strip b { color: #fff; }
.hero-visual { position: relative; overflow: hidden; min-height: 650px; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--purple-950) 0%, transparent 22%), linear-gradient(0deg, rgba(27,6,47,.32), transparent 50%); }
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; }
.sunburst { position: absolute; width: 480px; height: 480px; right: -150px; top: -120px; border: 1px solid rgba(245,190,50,.25); border-radius: 50%; z-index: 1; box-shadow: 0 0 0 80px rgba(245,190,50,.025), 0 0 0 160px rgba(245,190,50,.02); }
.hero-badge { position: absolute; z-index: 2; right: 2.5rem; bottom: 2.5rem; width: 160px; height: 160px; border-radius: 50%; background: var(--gold); color: var(--purple-950); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transform: rotate(-7deg); box-shadow: 0 18px 40px rgba(0,0,0,.25); }
.hero-badge span { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.hero-badge strong { font-family: "Fraunces", serif; margin-top: .35rem; font-size: 1.12rem; line-height: 1.05; }

.section { padding: clamp(5rem, 9vw, 9rem) max(5vw, calc((100vw - 1440px)/2)); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 3rem; margin-bottom: 3rem; }
.section-heading h2 { margin: 0; font-size: clamp(2.5rem, 4.5vw, 4.5rem); line-height: 1; letter-spacing: -.04em; color: var(--purple-900); }
.section-heading > p { max-width: 390px; margin: 0; color: var(--muted); line-height: 1.7; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.product-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: 0 14px 45px rgba(35,13,52,.07); }
.product-image { position: relative; aspect-ratio: 1.3; overflow: hidden; background: var(--cream); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.tag { position: absolute; top: 1rem; left: 1rem; background: var(--purple-800); color: #fff; padding: .55rem .8rem; border-radius: 999px; font-size: .72rem; font-weight: 800; }
.product-info { padding: 1.45rem; }
.product-info h3 { margin: 0; color: var(--purple-800); font-size: 1.65rem; }
.product-info > p { min-height: 4.6em; color: var(--muted); line-height: 1.55; font-size: .9rem; }
.product-info > div { display: grid; grid-template-columns: auto 1fr auto 1fr; align-items: baseline; gap: .35rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.product-info strong { color: var(--purple-800); font-size: 1.1rem; }
.product-info span { color: var(--muted); font-size: .75rem; }

@media (max-width: 920px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 660px; padding: 150px 1.5rem 3rem; }
  .hero-visual { min-height: 520px; }
  .service-strip { margin-top: 3rem; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .featured-card { grid-column: span 2; }
  .featured-card .product-image { aspect-ratio: 1.8; }
}

@media (max-width: 620px) {
  .site-header { padding: 0 1rem; }
  .brand img { width: 46px; height: 46px; }
  .brand span { display: none; }
  .hero-copy { min-height: 620px; }
  h1 { font-size: clamp(3.2rem, 16vw, 4.8rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .service-strip { gap: 1rem; justify-content: space-between; }
  .hero-visual { min-height: 420px; }
  .hero-badge { width: 130px; height: 130px; right: 1rem; bottom: 1rem; }
  .section { padding-left: 1rem; padding-right: 1rem; }
  .section-heading { align-items: start; flex-direction: column; gap: 1rem; }
  .product-grid { grid-template-columns: 1fr; }
  .featured-card { grid-column: auto; }
  .featured-card .product-image, .product-image { aspect-ratio: 1.2; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

.tag-green { background: #26754c; }
.addons { padding-top: 0; }
.addons-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 7vw, 7rem); padding: clamp(2.5rem, 5vw, 5rem); border-radius: 38px; background: var(--purple-900); color: #fff; position: relative; overflow: hidden; }
.addons-panel::after { content: ""; position: absolute; width: 300px; height: 300px; border: 1px solid rgba(245,190,50,.18); border-radius: 50%; left: -160px; bottom: -180px; box-shadow: 0 0 0 60px rgba(245,190,50,.025), 0 0 0 120px rgba(245,190,50,.02); }
.addons-intro { position: relative; z-index: 1; }
.addons-intro h2, .story h2, .order h2, .visit h2 { margin: 0; font-size: clamp(2.5rem, 4.5vw, 4.6rem); line-height: 1; letter-spacing: -.045em; }
.addons-intro > p:last-child { color: rgba(255,255,255,.67); line-height: 1.7; max-width: 450px; }
.addons-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; margin: 0; padding: 0; position: relative; z-index: 1; }
.addons-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.13); font-size: .92rem; }
.addons-list strong { color: var(--gold); }
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; background: var(--cream); }
.story-images { min-height: 620px; position: relative; }
.story-main { width: 82%; height: 540px; object-fit: cover; border-radius: 180px 180px 30px 30px; }
.story-float { width: 42%; aspect-ratio: 1; object-fit: cover; border: 9px solid var(--cream); border-radius: 50%; position: absolute; right: 0; bottom: 0; }
.story-stamp { width: 125px; height: 125px; display: grid; place-items: center; text-align: center; border-radius: 50%; background: var(--gold); color: var(--purple-900); font-family: "Fraunces", serif; font-weight: 700; line-height: 1.1; position: absolute; top: 9%; right: 2%; transform: rotate(8deg); box-shadow: 0 12px 30px rgba(53,16,99,.12); }
.story-copy h2 { color: var(--purple-900); }
.story-lead { font-family: "Fraunces", serif; color: var(--purple-700); font-size: clamp(1.3rem, 2vw, 1.8rem); line-height: 1.4; }
.story-copy > p:not(.eyebrow, .story-lead) { color: var(--muted); line-height: 1.75; }
.story-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-top: 2rem; }
.story-points span { display: grid; gap: .25rem; padding-top: 1rem; border-top: 2px solid var(--gold); color: var(--muted); font-size: .78rem; }
.story-points b { color: var(--purple-900); font-size: .95rem; }
.order { background: var(--purple-950); color: #fff; }
.order-heading { display: grid; grid-template-columns: 1fr .7fr; gap: 1rem 5rem; align-items: end; }
.order-heading .eyebrow { grid-column: 1 / -1; }
.order-heading p:last-child { color: rgba(255,255,255,.65); line-height: 1.7; margin: 0; }
.order-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3.5rem; }
.order-card { min-height: 210px; display: flex; flex-direction: column; justify-content: space-between; padding: 1.5rem; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); color: #fff; text-decoration: none; background: rgba(255,255,255,.045); transition: transform .2s ease, background .2s ease; }
.order-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); }
.order-card > b { align-self: flex-end; color: var(--gold); font-size: 1.4rem; }
.order-number { color: var(--gold); font-size: .75rem; font-weight: 800; }
.order-card h3 { margin: 0; font-size: 1.65rem; }
.order-card p { margin: .45rem 0 0; color: rgba(255,255,255,.62); line-height: 1.5; }
.payment-note { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.payment-note > div { display: flex; gap: 1rem; padding: 1.4rem; border-radius: 18px; background: var(--gold); color: var(--purple-950); }
.payment-note > div:last-child { background: #fff; }
.note-icon { flex: 0 0 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--purple-900); color: #fff; font-weight: 800; }
.payment-note h3 { margin: .1rem 0 .4rem; font-family: "DM Sans", sans-serif; font-size: 1rem; }
.payment-note p { margin: 0; font-size: .83rem; line-height: 1.55; }
.price-disclaimer { margin: 1.25rem 0 0; color: rgba(255,255,255,.46); font-size: .76rem; }
.visit-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; border-radius: 38px; overflow: hidden; background: var(--cream); }
.visit-copy { padding: clamp(2.5rem, 6vw, 6rem); display: flex; flex-direction: column; justify-content: center; }
.visit-copy h2 { color: var(--purple-900); }
.visit-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.6; }
.hours { margin: 1.2rem 0 2rem; border-top: 1px solid var(--line); }
.hours > div { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: .88rem; }
.hours strong { color: var(--purple-800); }
.hours .closed { color: #9d3e4b; }
.visit-actions { display: flex; align-items: center; gap: 1.2rem; }
.text-link.dark { color: var(--purple-800); }
.map-art { position: relative; overflow: hidden; background: #e7dbf1; color: var(--purple-900); text-decoration: none; display: grid; place-items: center; }
.map-art::before, .map-art::after { content: ""; position: absolute; background: var(--cream); border-radius: 999px; transform: rotate(-22deg); }
.map-art::before { width: 150%; height: 42px; }
.map-art::after { width: 42px; height: 150%; transform: rotate(28deg); }
.map-lines { position: absolute; inset: 12%; border: 3px dashed rgba(53,16,99,.15); border-radius: 48% 52% 46% 54%; transform: rotate(12deg); }
.map-pin { position: relative; z-index: 2; width: 115px; height: 115px; border-radius: 50% 50% 50% 5%; transform: rotate(-45deg); background: var(--purple-800); box-shadow: 0 18px 40px rgba(53,16,99,.23); padding: 17px; }
.map-pin img { transform: rotate(45deg); width: 100%; height: 100%; object-fit: contain; }
.map-art > strong { position: absolute; z-index: 2; bottom: 10%; font-family: "Fraunces", serif; font-size: 1.45rem; text-align: center; line-height: 1; }
.allergen { display: grid; grid-template-columns: 180px 1fr; gap: 2rem; align-items: start; margin-top: 1.5rem; padding: 1.5rem 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .8rem; line-height: 1.6; }
.allergen strong { color: var(--purple-900); }
.allergen p { margin: 0; }
footer { padding: 5rem max(5vw, calc((100vw - 1440px)/2)) 2rem; background: var(--purple-950); color: #fff; }
.footer-brand { display: flex; align-items: center; gap: 1rem; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 2.5rem; }
.footer-brand img { width: 82px; height: 82px; object-fit: contain; }
.footer-brand p { font-family: "Fraunces", serif; color: var(--gold); font-size: clamp(1.6rem, 3vw, 2.6rem); }
.footer-links { display: grid; grid-template-columns: .7fr .7fr 1.2fr; gap: 3rem; padding: 3rem 0; }
.footer-links > div { display: grid; align-content: start; gap: .7rem; }
.footer-links strong { color: var(--gold); font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: .45rem; }
.footer-links a { color: rgba(255,255,255,.68); text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: .75rem; }

@media (max-width: 920px) {
  .addons-panel, .story { grid-template-columns: 1fr; }
  .story-images { min-height: 560px; }
  .story-main { height: 500px; }
  .order-heading { grid-template-columns: 1fr; }
  .order-options { grid-template-columns: 1fr; }
  .order-card { min-height: 160px; }
  .visit-card { grid-template-columns: 1fr; }
  .map-art { min-height: 420px; }
}

@media (max-width: 620px) {
  .addons-panel { border-radius: 26px; padding: 2rem 1.25rem; }
  .addons-list { grid-template-columns: 1fr; }
  .story-images { min-height: 430px; }
  .story-main { width: 88%; height: 390px; }
  .story-float { width: 46%; }
  .story-stamp { width: 95px; height: 95px; font-size: .8rem; }
  .story-points, .payment-note { grid-template-columns: 1fr; }
  .visit-card { border-radius: 26px; }
  .visit-copy { padding: 2.5rem 1.25rem; }
  .visit-actions { align-items: flex-start; flex-direction: column; }
  .map-art { min-height: 340px; }
  .allergen { grid-template-columns: 1fr; gap: .5rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}
