:root {
  --purple-950: #261034;
  --purple-900: #341442;
  --purple-800: #4a1e5e;
  --purple-700: #64257d;
  --purple-600: #7d3797;
  --purple-300: #d9b7e6;
  --yellow-500: #f3c839;
  --yellow-400: #f8d85f;
  --yellow-200: #ffefae;
  --cream: #fffaf0;
  --paper: #fffdf7;
  --ink: #2a1d2c;
  --muted: #746877;
  --green: #466f55;
  --line: rgba(65, 31, 73, .14);
  --shadow: 0 24px 70px rgba(48, 20, 58, .16);
  --radius-lg: 34px;
  --radius-md: 22px;
  --shell: min(1180px, calc(100% - 42px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 110px 0; position: relative; }

.skip-link {
  position: fixed; left: 14px; top: -60px; z-index: 9999;
  background: white; color: var(--purple-900); padding: 10px 16px; border-radius: 10px;
  box-shadow: var(--shadow); transition: top .2s ease;
}
.skip-link:focus { top: 14px; }

.page-loader {
  position: fixed; inset: 0; z-index: 10000; background: var(--purple-950);
  display: grid; place-content: center; justify-items: center; gap: 14px;
  color: var(--yellow-400); letter-spacing: .14em; text-transform: uppercase; font-size: 12px;
  transition: opacity .65s ease, visibility .65s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-flower { font-size: 44px; animation: loaderSpin 2s linear infinite; }
@keyframes loaderSpin { to { transform: rotate(360deg); } }

.grain {
  pointer-events: none; position: fixed; inset: 0; z-index: 999;
  opacity: .045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}
.ambient { position: fixed; border-radius: 50%; filter: blur(85px); opacity: .16; pointer-events: none; z-index: -1; }
.ambient-one { width: 380px; height: 380px; background: var(--yellow-400); right: -90px; top: 24vh; }
.ambient-two { width: 460px; height: 460px; background: #b46cd0; left: -140px; top: 66vh; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.site-header.scrolled { background: rgba(255, 253, 247, .9); backdrop-filter: blur(16px); box-shadow: 0 8px 34px rgba(45, 20, 54, .08); }
.nav { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: white; }
.site-header.scrolled .brand { color: var(--purple-900); }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; color: var(--yellow-400); }
.brand-mark svg { width: 42px; fill: currentColor; }
.brand span:last-child { display: grid; line-height: 1.12; }
.brand strong { font-family: var(--serif); font-size: 21px; font-weight: 700; }
.brand small { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .75; margin-top: 5px; }
.nav-links { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,.9); font-size: 13px; font-weight: 650; }
.site-header.scrolled .nav-links { color: var(--ink); }
.nav-links a { position: relative; }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--yellow-500); transition: right .25s ease; }
.nav-links a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { border: 1px solid rgba(255,255,255,.45); border-radius: 999px; padding: 10px 16px; transition: .25s ease; }
.site-header.scrolled .nav-cta { border-color: rgba(77,35,90,.2); }
.nav-cta:hover { background: var(--yellow-400); color: var(--purple-950); border-color: var(--yellow-400); transform: translateY(-1px); }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: white; margin: 5px 0; transition: .25s ease; }
.site-header.scrolled .menu-toggle span { background: var(--purple-900); }

.hero { min-height: 100svh; position: relative; display: flex; align-items: center; overflow: hidden; background: var(--purple-950); }
.hero-photo { position: absolute; inset: 0; background: url('assets/img/paisaje-arroyo-seco.jpg') center 46% / cover no-repeat; transform: scale(1.08); will-change: transform; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(35,12,45,.94) 0%, rgba(43,15,55,.78) 44%, rgba(30,20,34,.22) 78%, rgba(35,12,45,.44) 100%), linear-gradient(0deg, rgba(38,16,52,.66), transparent 48%); }
.hero-ribbons { position: absolute; width: 760px; height: 760px; border: 1px solid rgba(248,216,95,.22); border-radius: 50%; right: -230px; bottom: -280px; box-shadow: 0 0 0 70px rgba(255,255,255,.015), 0 0 0 140px rgba(255,255,255,.012); }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .65fr); gap: 80px; align-items: end; padding-top: 140px; padding-bottom: 110px; }
.hero-copy { max-width: 780px; }
.eyebrow, .kicker { margin: 0 0 22px; font-size: 11px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; color: var(--purple-700); }
.eyebrow { color: var(--yellow-400); display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
.hero h1 { color: white; font-family: var(--serif); font-size: clamp(55px, 6.2vw, 94px); line-height: .98; letter-spacing: -.045em; margin: 0; font-weight: 500; }
.hero h1 em { color: var(--yellow-400); font-weight: 500; }
.hero-intro { max-width: 660px; margin: 32px 0 0; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; border-radius: 999px; padding: 13px 23px; font-size: 13px; font-weight: 800; letter-spacing: .015em; border: 1px solid transparent; cursor: pointer; transition: transform .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--yellow-400); color: var(--purple-950); box-shadow: 0 12px 34px rgba(243,200,57,.18); }
.button-primary:hover { background: #ffe172; box-shadow: 0 15px 40px rgba(243,200,57,.28); }
.button-ghost { color: white; border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.06); backdrop-filter: blur(8px); }
.button-ghost:hover { background: rgba(255,255,255,.14); }
.button-dark { background: var(--purple-900); color: white; }
.button-dark:hover { background: var(--purple-700); box-shadow: 0 14px 35px rgba(61,21,74,.2); }
.button-full { width: 100%; border: 0; }
.hero-note { align-self: end; color: white; border-left: 1px solid rgba(255,255,255,.25); padding: 12px 0 12px 30px; margin-bottom: 14px; }
.quote-mark { color: var(--yellow-400); font-family: var(--serif); font-size: 60px; line-height: .7; }
.hero-note p { font-family: var(--serif); font-size: 19px; line-height: 1.55; margin: 12px 0 18px; color: rgba(255,255,255,.85); }
.note-line { display: block; width: 50px; height: 1px; background: var(--yellow-400); margin: 0 0 10px; }
.hero-note small { text-transform: uppercase; letter-spacing: .18em; font-size: 10px; color: rgba(255,255,255,.58); }
.scroll-cue { position: absolute; z-index: 2; left: 50%; bottom: 24px; transform: translateX(-50%); color: rgba(255,255,255,.58); text-transform: uppercase; letter-spacing: .18em; font-size: 8px; display: grid; justify-items: center; gap: 7px; }
.scroll-cue span { width: 1px; height: 30px; background: linear-gradient(var(--yellow-400), transparent); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 50% { transform: scaleY(.55); transform-origin: top; } }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: start; }
.section-heading h2, .places-header h2, .book-copy h2, .participate-copy h2 { font-family: var(--serif); font-size: clamp(42px, 4.6vw, 66px); line-height: 1.06; letter-spacing: -.035em; margin: 0; font-weight: 500; color: var(--purple-950); }
.section-heading h2 span, .places-header h2 span, .book-copy h2 span { color: var(--purple-700); font-style: italic; }
.intro-text { padding-top: 42px; }
.intro-text p { color: var(--muted); font-size: 17px; margin: 0 0 18px; }
.intro-text strong { color: var(--purple-900); }
.text-link { display: inline-flex; gap: 9px; margin-top: 16px; font-weight: 800; color: var(--purple-700); border-bottom: 1px solid rgba(100,37,125,.25); padding-bottom: 4px; }
.picture-story { margin-top: 84px; display: grid; grid-template-columns: 1.45fr .55fr; gap: 20px; align-items: stretch; }
.picture-story figure { margin: 0; overflow: hidden; border-radius: var(--radius-lg); position: relative; min-height: 520px; box-shadow: var(--shadow); }
.picture-story img { height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.75,.3,1); }
.picture-story figure:hover img { transform: scale(1.04); }
.picture-main figcaption { position: absolute; left: 26px; bottom: 24px; color: white; background: rgba(39,16,52,.58); backdrop-filter: blur(12px); padding: 9px 15px; border-radius: 999px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.picture-accent { display: grid; grid-template-rows: 1fr auto; gap: 18px; }
.picture-accent figure { min-height: 0; }
.picture-accent img { object-position: 48% 50%; }
.story-chip { border-radius: var(--radius-md); background: var(--yellow-400); color: var(--purple-950); padding: 22px 24px; display: grid; }
.story-chip b { font-family: var(--serif); font-size: 29px; line-height: 1; }
.story-chip span { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; margin-top: 7px; }

.memory-band { background: var(--purple-950); color: white; overflow: hidden; }
.memory-band::before { content: ""; position: absolute; width: 560px; height: 560px; border: 1px solid rgba(248,216,95,.13); border-radius: 50%; left: -260px; top: -250px; box-shadow: 0 0 0 80px rgba(255,255,255,.012), 0 0 0 160px rgba(255,255,255,.009); }
.centered { max-width: 800px; text-align: center; margin: 0 auto; }
.kicker.light { color: var(--yellow-400); }
.memory-band .section-heading h2 { color: white; }
.memory-band .section-heading h2 span { color: var(--yellow-400); }
.subheading { color: rgba(255,255,255,.62); max-width: 680px; margin: 25px auto 0; }
.memory-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 70px; }
.memory-card { position: relative; min-height: 355px; padding: 28px 25px; border-radius: 22px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.09); overflow: hidden; transition: transform .28s ease, background .28s ease, border-color .28s ease; outline: none; }
.memory-card::after { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: var(--yellow-400); filter: blur(70px); opacity: 0; right: -70px; bottom: -70px; transition: opacity .3s ease; }
.memory-card:hover, .memory-card:focus-visible { transform: translateY(-8px); background: rgba(255,255,255,.08); border-color: rgba(248,216,95,.34); }
.memory-card:hover::after, .memory-card:focus-visible::after { opacity: .13; }
.memory-number { color: rgba(255,255,255,.25); font-size: 11px; letter-spacing: .18em; }
.memory-icon { color: var(--yellow-400); font-size: 27px; margin: 55px 0 13px; }
.memory-card h3 { font-family: var(--serif); font-size: 30px; margin: 0 0 11px; font-weight: 500; }
.memory-card p { color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.7; margin: 0; }
.memory-tag { position: absolute; bottom: 22px; left: 25px; color: var(--yellow-200); font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }

.book-section { background: linear-gradient(180deg, #fffaf0, #fffdf7); overflow: hidden; }
.book-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: center; }
.book-visual { min-height: 620px; position: relative; display: grid; place-items: center; perspective: 1200px; }
.book-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(248,216,95,.55), rgba(171,92,193,.16) 45%, transparent 70%); filter: blur(10px); }
.book-object { width: 310px; height: 440px; position: relative; transform: rotateY(-12deg) rotateX(2deg) rotateZ(-3deg); transform-style: preserve-3d; filter: drop-shadow(0 30px 28px rgba(55,21,63,.24)); transition: transform .45s ease; }
.book-visual:hover .book-object { transform: rotateY(-4deg) rotateX(0) rotateZ(-1deg) translateY(-6px); }
.book-cover { position: absolute; inset: 0; z-index: 2; padding: 38px 32px; border-radius: 7px 14px 14px 7px; color: white; background: radial-gradient(circle at 78% 15%, rgba(248,216,95,.22), transparent 27%), linear-gradient(145deg, #7b2c91, #431451 60%, #27102f); border: 1px solid rgba(255,255,255,.15); display: flex; flex-direction: column; align-items: center; text-align: center; overflow: hidden; }
.book-cover::before { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(248,216,95,.5); border-radius: 3px 10px 10px 3px; }
.book-cover::after { content: ""; position: absolute; inset: 32px; border: 1px solid rgba(248,216,95,.15); border-radius: 50% 50% 42% 42%; transform: scale(.9,1.25); }
.book-spine { position: absolute; top: 5px; bottom: 5px; left: -18px; width: 32px; background: #32113d; transform: rotateY(78deg); transform-origin: right; border-radius: 5px; }
.book-top, .book-subtitle, .book-place { position: relative; z-index: 2; text-transform: uppercase; letter-spacing: .15em; font-size: 9px; }
.book-top { margin-top: 18px; color: var(--yellow-200); }
.cover-flower { position: relative; z-index: 2; color: var(--yellow-400); font-size: 40px; margin: 45px 0 12px; }
.book-cover h3 { position: relative; z-index: 2; font-family: var(--serif); font-size: 52px; line-height: .86; margin: 0; font-weight: 500; }
.book-subtitle { margin-top: 24px; color: rgba(255,255,255,.77); }
.book-place { margin-top: auto; color: var(--yellow-200); }
.floating-label { position: absolute; background: white; color: var(--purple-800); border: 1px solid var(--line); padding: 8px 13px; border-radius: 999px; font-size: 10px; font-weight: 800; box-shadow: 0 12px 32px rgba(42,17,49,.12); animation: floatLabel 4s ease-in-out infinite; }
.label-one { left: 1%; top: 24%; }
.label-two { right: 0; top: 44%; animation-delay: .7s; }
.label-three { left: 8%; bottom: 18%; animation-delay: 1.4s; }
@keyframes floatLabel { 50% { transform: translateY(-8px) rotate(1deg); } }
.book-copy .lead { font-family: var(--serif); color: var(--purple-800); font-size: 21px; line-height: 1.55; margin: 28px 0 20px; }
.book-copy > p:not(.kicker):not(.lead) { color: var(--muted); }
.book-points { display: grid; gap: 17px; margin: 30px 0 34px; }
.book-points > div { display: flex; gap: 14px; align-items: start; }
.book-points > div > span { width: 30px; height: 30px; flex: 0 0 auto; display: grid; place-items: center; background: var(--yellow-400); color: var(--purple-950); border-radius: 50%; font-size: 11px; }
.book-points p { margin: 0; display: grid; line-height: 1.25; }
.book-points b { font-size: 14px; color: var(--purple-900); }
.book-points small { color: var(--muted); margin-top: 5px; line-height: 1.45; }

.places { background: #f6f0fb; }
.places-header { display: flex; justify-content: space-between; gap: 60px; align-items: end; }
.places-header > p { max-width: 430px; color: var(--muted); margin: 0 0 6px; }
.gallery { margin-top: 60px; display: grid; grid-template-columns: 1.25fr .75fr; grid-auto-rows: 290px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 24px; margin: 0; box-shadow: 0 16px 42px rgba(62,31,70,.1); }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.75,.3,1), filter .6s ease; }
.gallery-item:hover img { transform: scale(1.055); filter: saturate(1.08); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(35,14,42,.75), transparent 55%); }
.gallery-item figcaption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 20px; color: white; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.gallery-item strong { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.gallery-item span { font-size: 9px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.7); }
.gallery-large { grid-row: span 2; }
.gallery-wide { grid-column: 2; }
.credits-row { display: flex; justify-content: flex-end; margin-top: 22px; }
.text-button { border: 0; background: transparent; color: var(--purple-700); font-weight: 800; cursor: pointer; padding: 8px 0; font-size: 12px; }
.text-button:hover { text-decoration: underline; }

.quote-section { min-height: 680px; display: grid; place-items: center; overflow: hidden; }
.quote-photo { position: absolute; inset: 0; background: url('assets/img/las-adjuntas.jpg') center 46% / cover no-repeat; }
.quote-filter { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(39,13,48,.91), rgba(86,31,105,.68), rgba(35,43,29,.35)); }
.quote-content { position: relative; z-index: 2; max-width: 980px; text-align: center; color: white; }
.quote-symbol { display: block; color: var(--yellow-400); font-family: var(--serif); font-size: 90px; line-height: .6; }
.quote-content blockquote { font-family: var(--serif); font-size: clamp(35px, 4.7vw, 62px); line-height: 1.08; letter-spacing: -.035em; margin: 28px 0; }
.quote-content p { color: rgba(255,255,255,.58); text-transform: uppercase; font-size: 10px; letter-spacing: .17em; }

.participate { background: var(--paper); }
.participate-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.participate-copy > p:not(.kicker) { color: var(--muted); font-size: 16px; margin: 25px 0; max-width: 520px; }
.contact-details { display: grid; margin-top: 36px; }
.contact-details span { color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-size: 9px; }
.contact-details a { font-family: var(--serif); color: var(--purple-700); font-size: 25px; margin-top: 5px; }
.memory-form { background: white; border: 1px solid var(--line); box-shadow: var(--shadow); padding: 32px; border-radius: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.memory-form label { display: grid; gap: 8px; color: var(--purple-900); font-size: 11px; font-weight: 800; margin-bottom: 14px; }
.memory-form input, .memory-form textarea, .memory-form select { width: 100%; border: 1px solid rgba(69,32,80,.15); background: #fdfaf5; color: var(--ink); border-radius: 12px; padding: 13px 14px; outline: none; transition: border .2s ease, box-shadow .2s ease, background .2s ease; }
.memory-form textarea { resize: vertical; min-height: 135px; }
.memory-form input:focus, .memory-form textarea:focus, .memory-form select:focus { border-color: var(--purple-600); box-shadow: 0 0 0 4px rgba(125,55,151,.09); background: white; }
.form-note { display: block; color: var(--muted); text-align: center; line-height: 1.5; margin-top: 12px; font-size: 10px; }

.closing-note { padding: 56px 0; background: var(--yellow-400); color: var(--purple-950); }
.closing-inner { display: flex; align-items: center; justify-content: center; gap: 20px; text-align: center; }
.mini-flower { font-size: 28px; }
.closing-inner p { font-family: var(--serif); font-size: clamp(21px, 2.3vw, 31px); max-width: 840px; margin: 0; line-height: 1.35; }

.site-footer { background: var(--purple-950); color: white; padding: 74px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .6fr .9fr; gap: 60px; }
.brand-footer { color: white !important; }
.brand-footer .brand-mark { font-size: 35px; }
.footer-brand > p { color: rgba(255,255,255,.46); max-width: 430px; font-size: 13px; margin-top: 20px; }
.footer-links { display: grid; align-content: start; gap: 9px; font-size: 12px; color: rgba(255,255,255,.55); }
.footer-links strong { color: var(--yellow-400); text-transform: uppercase; letter-spacing: .14em; font-size: 9px; margin-bottom: 8px; }
.footer-links a:hover, .footer-links button:hover { color: white; }
.footer-links button { padding: 0; border: 0; background: transparent; text-align: left; cursor: pointer; color: inherit; font-size: inherit; }
.footer-bottom { margin-top: 58px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; gap: 30px; color: rgba(255,255,255,.35); font-size: 10px; }

.credits-dialog { width: min(760px, calc(100% - 30px)); max-height: 84vh; border: 0; border-radius: 26px; padding: 0; color: var(--ink); box-shadow: 0 40px 100px rgba(27,9,33,.42); }
.credits-dialog::backdrop { background: rgba(25,10,31,.68); backdrop-filter: blur(8px); }
.dialog-head { display: flex; justify-content: space-between; align-items: start; padding: 28px 30px 20px; border-bottom: 1px solid var(--line); }
.dialog-head .kicker { margin: 0 0 5px; }
.dialog-head h2 { font-family: var(--serif); margin: 0; font-size: 34px; color: var(--purple-950); }
.dialog-head button { width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-radius: 50%; background: #f2ebf5; font-size: 26px; cursor: pointer; }
.credit-list { padding: 24px 30px 30px; overflow: auto; }
.credit-list > p { color: var(--muted); font-size: 13px; margin: 0 0 20px; }
.credit-list code { background: #f2ebf5; padding: 2px 5px; border-radius: 4px; }
.credit-list article { padding: 16px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; gap: 2px 20px; }
.credit-list article b { color: var(--purple-900); font-size: 13px; }
.credit-list article span { grid-column: 1; color: var(--muted); font-size: 11px; }
.credit-list article a { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: var(--purple-700); font-weight: 800; font-size: 11px; }

.toast { position: fixed; z-index: 2000; left: 50%; bottom: 26px; transform: translate(-50%, 20px); background: var(--purple-950); color: white; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; padding: 11px 18px; font-size: 12px; opacity: 0; visibility: hidden; transition: .25s ease; box-shadow: 0 15px 44px rgba(36,13,43,.25); }
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%,0); }

.petals { position: fixed; inset: 0; pointer-events: none; z-index: 998; overflow: hidden; }
.petal { position: absolute; top: -30px; width: 9px; height: 14px; border-radius: 70% 20% 70% 20%; background: var(--yellow-400); opacity: .26; animation: petalFall linear forwards; }
.petal.purple { background: #d395e8; }
@keyframes petalFall { to { transform: translate3d(var(--drift), 110vh, 0) rotate(540deg); opacity: 0; } }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 760px); }
  .section { padding: 84px 0; }
  .menu-toggle { display: block; z-index: 2; }
  .nav-links { position: fixed; inset: 0 0 auto auto; width: min(360px, 88vw); height: 100svh; padding: 110px 28px 30px; background: rgba(38,16,52,.97); backdrop-filter: blur(18px); display: grid; align-content: start; gap: 4px; transform: translateX(105%); transition: transform .32s ease; box-shadow: -22px 0 50px rgba(25,8,31,.2); color: white !important; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 14px; }
  .nav-cta { border: 0; border-radius: 0; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-header.scrolled .menu-toggle.open span { background: white; }
  .hero-content { grid-template-columns: 1fr; gap: 34px; padding-top: 150px; }
  .hero-note { max-width: 560px; }
  .intro-grid, .book-grid, .participate-grid { grid-template-columns: 1fr; gap: 50px; }
  .intro-text { padding-top: 0; }
  .picture-story { grid-template-columns: 1fr; }
  .picture-main { min-height: 470px !important; }
  .picture-accent { grid-template-columns: 1fr .7fr; grid-template-rows: 290px; }
  .memory-grid { grid-template-columns: 1fr 1fr; }
  .book-grid { max-width: 760px; }
  .book-visual { min-height: 520px; }
  .places-header { align-items: start; flex-direction: column; gap: 20px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; }
  .gallery-large { grid-row: span 1; }
  .gallery-wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 26px); --radius-lg: 25px; }
  .nav { min-height: 74px; }
  .brand strong { font-size: 18px; }
  .brand small { font-size: 8px; }
  .brand-mark, .brand-mark svg { width: 35px; height: 35px; }
  .hero { min-height: 930px; }
  .hero-content { padding-top: 130px; padding-bottom: 100px; }
  .hero h1 { font-size: clamp(49px, 14vw, 70px); }
  .hero-intro { font-size: 16px; }
  .hero-note { padding-left: 20px; }
  .hero-note p { font-size: 17px; }
  .scroll-cue { display: none; }
  .hero-actions .button { width: 100%; }
  .section { padding: 72px 0; }
  .section-heading h2, .places-header h2, .book-copy h2, .participate-copy h2 { font-size: 42px; }
  .intro-grid { gap: 30px; }
  .picture-story { margin-top: 52px; }
  .picture-main { min-height: 390px !important; }
  .picture-accent { grid-template-columns: 1fr; grid-template-rows: 270px auto; }
  .memory-grid { grid-template-columns: 1fr; margin-top: 45px; }
  .memory-card { min-height: 300px; }
  .memory-icon { margin-top: 34px; }
  .book-grid { gap: 25px; }
  .book-visual { min-height: 500px; transform: scale(.92); }
  .label-one { left: -1%; }
  .label-two { right: -2%; }
  .gallery { display: grid; grid-template-columns: 1fr; grid-auto-rows: 330px; }
  .gallery-wide { grid-column: auto; }
  .gallery-item figcaption { flex-direction: column; align-items: start; gap: 2px; }
  .quote-section { min-height: 600px; }
  .quote-content blockquote { font-size: 37px; }
  .participate-grid { gap: 38px; }
  .memory-form { padding: 22px 17px; border-radius: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .credit-list article { grid-template-columns: 1fr; }
  .credit-list article a { grid-column: 1; grid-row: auto; margin-top: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .petals { display: none; }
}
