/* =========================================================
   Abbotsbury Beachcombers Association
   Logo-led "sticker book" design system
   ========================================================= */
:root {
  --blue: #3AA0E8; --blue-deep: #1B6FB5; --blue-pale: #DDF1FC;
  --sand: #FFD84D; --sand-deep: #E9B915; --sand-pale: #FFF4C2;
  --coral: #F0913A; --coral-deep: #C86E1F;
  --shell: #FBF3E4;
  --ink: #111111; --ink-soft: #3b3b3b; --muted: #6a6f75;
  --ground: #F5FAFD; --white: #ffffff;
  --navy: #0B1230;
  --grass: #4CAF63; --grass-deep: #2E7D43;
  --pink: #F25C8A; --pink-deep: #C43A68;
  --purple: #4B2E83;
  --radius: 22px;
  --line: 3px solid var(--ink);
  --pop: 6px 6px 0 var(--ink);
  --pop-sm: 4px 4px 0 var(--ink);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ground); color: var(--ink); font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4 { font-family: 'Fredoka', 'Nunito', sans-serif; font-weight: 700; line-height: 1.05; margin: 0 0 .4em; text-wrap: balance; letter-spacing: -.01em; }
h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
a { color: var(--blue-deep); }
img { max-width: 100%; display: block; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.hl { background: linear-gradient(transparent 58%, var(--sand) 58%, var(--sand) 92%, transparent 92%); padding: 0 .08em; }
.lead { font-size: 1.18rem; max-width: 56ch; color: var(--ink-soft); }
.kicker { color: var(--ink); display: inline-flex; align-items: center; gap: .5em; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; background: var(--white); border: var(--line); border-radius: 999px; padding: .35em 1em; box-shadow: var(--pop-sm); margin-bottom: 1.2em; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: .5em; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.05rem; padding: .75em 1.5em; border-radius: 999px; border: var(--line); box-shadow: var(--pop-sm); background: var(--white); color: var(--ink); text-decoration: none; cursor: pointer; transition: transform .12s ease, box-shadow .12s ease; }
.btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-sand { background: var(--sand); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* header */
header.site { position: sticky; top: 0; z-index: 60; background: var(--white); border-bottom: var(--line); }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 10px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand img { width: 56px; height: 56px; border-radius: 50%; border: var(--line); background: var(--white); }
.brand b { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 1.12rem; display: block; line-height: 1.05; color: var(--ink); }
.brand > span > span { display: block; font-size: .72rem; font-weight: 800; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
nav.main { display: flex; gap: 4px; flex-wrap: wrap; align-items: center; }
nav.main a { font-weight: 800; font-size: .86rem; color: var(--ink); padding: .5em .7em; border-radius: 999px; text-decoration: none; white-space: nowrap; border: 2px solid transparent; }
nav.main a:hover { background: var(--blue-pale); }
nav.main a.active { background: var(--ink); color: var(--white); }
nav.main a.donate { background: var(--sand); border: var(--line); box-shadow: var(--pop-sm); font-family: 'Fredoka', sans-serif; font-weight: 600; margin-left: 6px; }
.nav-toggle { display: none; }
@media (max-width: 960px) {
  header.site .wrap { gap: 8px; }
  header.site .wrap nav.main { flex-basis: 100%; }
  .nav-toggle { margin-left: auto; }
  .brand > span > span { display: none; }
  .brand img { width: 44px; height: 44px; }
  .brand b { font-size: .95rem; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; border: var(--line); background: var(--white); font-size: 1.4rem; cursor: pointer; box-shadow: var(--pop-sm); }
  nav.main { display: none; width: 100%; flex-direction: column; align-items: stretch; padding-bottom: 10px; }
  nav.main.open { display: flex; }
  nav.main a { font-size: 1.05rem; padding: .7em .9em; }
  nav.main a.donate { margin-left: 0; margin-top: 6px; text-align: center; }
}

/* motion */
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.rise > * { animation: rise .7s cubic-bezier(.2,.7,.2,1) both; }
.rise > *:nth-child(2) { animation-delay: .08s; } .rise > *:nth-child(3) { animation-delay: .16s; } .rise > *:nth-child(4) { animation-delay: .24s; } .rise > *:nth-child(5) { animation-delay: .32s; }
.cards .card { animation: rise .55s cubic-bezier(.2,.7,.2,1) both; }
.cards .card:nth-child(2) { animation-delay: .06s; } .cards .card:nth-child(3) { animation-delay: .12s; } .cards .card:nth-child(4) { animation-delay: .18s; } .cards .card:nth-child(5) { animation-delay: .24s; } .cards .card:nth-child(6) { animation-delay: .3s; } .cards .card:nth-child(7) { animation-delay: .36s; } .cards .card:nth-child(8) { animation-delay: .42s; } .cards .card:nth-child(9) { animation-delay: .48s; }
@media (prefers-reduced-motion: reduce) { .rise > *, .cards .card { animation: none; } }

/* home hero */
.hero-home { position: relative; min-height: 640px; display: flex; align-items: flex-end; overflow: hidden; border-bottom: var(--line); background: var(--navy); }
.hero-home .bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; }
.hero-home .shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,18,48,.15) 0%, rgba(11,18,48,.35) 45%, rgba(11,18,48,.85) 100%); }
.hero-home .wrap { position: relative; z-index: 2; padding-block: 72px 56px; width: 100%; display: grid; grid-template-columns: 1.3fr .7fr; gap: 32px; align-items: end; }
@media (max-width: 900px) { .hero-home .wrap { grid-template-columns: 1fr; } .hero-home { min-height: 560px; } }
.hero-home h1 { color: var(--white); text-shadow: 0 4px 24px rgba(0,0,0,.35); max-width: 12ch; }
.hero-home h1 .hl { background: linear-gradient(transparent 60%, var(--sand) 60%, var(--sand) 92%, transparent 92%); color: var(--ink); padding: 0 .12em; }
.hero-home .lead { color: rgba(255,255,255,.92); }
.next-up { display: block; background: var(--white); border: var(--line); border-radius: var(--radius); box-shadow: var(--pop); padding: 14px; transform: rotate(-2deg); max-width: 340px; justify-self: end; cursor: pointer; transition: transform .15s ease; text-decoration: none; color: var(--ink); animation: rise .8s .35s cubic-bezier(.2,.7,.2,1) both; }
.next-up:hover { transform: rotate(-1deg) translateY(-4px); }
.next-up .thumb { aspect-ratio: 16/10; border-radius: 14px; border: var(--line); background-size: cover; background-position: center; margin-bottom: 12px; position: relative; overflow: hidden; }
.next-up .thumb span { position: absolute; top: 10px; left: 10px; background: var(--sand); border: 2px solid var(--ink); border-radius: 999px; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: .78rem; padding: .25em .7em; letter-spacing: .06em; text-transform: uppercase; }
.next-up b { font-family: 'Fredoka', sans-serif; font-size: 1.25rem; display: block; }
.next-up small { color: var(--muted); font-weight: 700; }
@media (max-width: 900px) { .next-up { justify-self: start; transform: rotate(-1deg); } }
@media (prefers-reduced-motion: reduce) { .next-up { animation: none; } }

/* marquee */
.marquee { background: var(--sand); border-bottom: var(--line); overflow: hidden; white-space: nowrap; padding: 12px 0; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.05rem; letter-spacing: .08em; text-transform: uppercase; }
.marquee .track { display: inline-block; animation: slide 38s linear infinite; }
.marquee span { margin: 0 1.2em; }
.marquee span::after { content: "★"; margin-left: 2.4em; color: var(--blue-deep); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee .track { animation: none; } }

.section { padding-block: 84px; }
.section-tight { padding-block: 48px; }
.section-white { background: var(--white); border-top: var(--line); border-bottom: var(--line); }
.section-blue { background: var(--blue-pale); }
.section-sand { background: var(--sand); border-bottom: var(--line); }
.section-head { max-width: 640px; margin-bottom: 2.4em; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

/* split + polaroid stack */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.stack { position: relative; min-height: 420px; }
.stack .polaroid { position: absolute; background: var(--white); border: var(--line); box-shadow: var(--pop); padding: 10px 10px 34px; width: 62%; }
.stack .polaroid img { aspect-ratio: 4/3; object-fit: cover; width: 100%; border: 2px solid var(--ink); }
.stack .polaroid small { position: absolute; left: 12px; bottom: 8px; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: .95rem; }
.stack .p1 { left: 0; top: 0; transform: rotate(-4deg); z-index: 1; }
.stack .p2 { right: 0; top: 24%; transform: rotate(3deg); z-index: 2; }
.stack .p3 { left: 14%; bottom: 0; transform: rotate(-1deg); z-index: 3; width: 56%; }
@media (max-width: 900px) { .stack { min-height: 380px; } }
@media (max-width: 520px) { .stack { min-height: 300px; } .stack .polaroid { width: 66%; } .stack .p3 { width: 60%; } }

/* stats */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr; } }
.stat { background: var(--white); border: var(--line); border-radius: var(--radius); box-shadow: var(--pop); padding: 26px 28px; transition: transform .2s; }
.stat:hover { transform: translate(-2px,-4px) rotate(-.5deg); }
.stat b { font-family: 'Fredoka', sans-serif; font-size: 3rem; line-height: 1; display: block; color: var(--blue-deep); }
.stat span { font-weight: 800; color: var(--ink-soft); }

/* event cards */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
@media (max-width: 980px) { .cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .cards { grid-template-columns: 1fr; } }
.card { display: flex; flex-direction: column; width: 100%; background: var(--white); border: var(--line); border-radius: var(--radius); box-shadow: var(--pop); overflow: hidden; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; text-align: left; padding: 0; color: var(--ink); text-decoration: none; }
.card:hover { transform: translate(-3px,-3px) rotate(-.6deg); box-shadow: 9px 9px 0 var(--ink); }
.card .photo { aspect-ratio: 4/3; border-bottom: var(--line); position: relative; overflow: hidden; }
.card .photo::before { content: ""; position: absolute; inset: 0; background-image: var(--p); background-size: cover; background-position: center; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.card:hover .photo::before { transform: scale(1.06); }
.card .photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,18,48,.45)); z-index: 1; }
.card .tag { position: absolute; top: 12px; left: 12px; z-index: 2; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; padding: .3em .75em; border-radius: 999px; border: 2px solid var(--ink); color: var(--ink); background: var(--white); }
.card .body { padding: 18px 20px 22px; }
.card .when { font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--blue-deep); margin-bottom: .3em; }
.card .when.past { color: var(--muted); }
.card h3 { margin-bottom: .25em; }
.card p { color: var(--ink-soft); font-size: .96rem; margin: 0; }
.t-fireworks { background: #ffb3a7 !important; } .t-fete { background: var(--sand) !important; } .t-horticultural { background: #b9e6bf !important; } .t-bingo { background: #ffc2d3 !important; }
.t-band { background: #d9c6ff !important; } .t-nye { background: #ffe9a8 !important; } .t-boxing { background: #cfe9d6 !important; } .t-skittles { background: #ffd8a8 !important; } .t-quiz { background: #fff0a8 !important; } .t-classic { background: var(--blue-pale) !important; }
.cards.bento .card:first-child { grid-column: span 2; grid-row: span 2; }
.cards.bento .card:first-child .photo { aspect-ratio: auto; min-height: 320px; flex: 1; }
.cards.bento .card:first-child h3 { font-size: 1.9rem; }
.cards.bento .card:first-child .body { padding: 22px 26px 26px; }
@media (max-width: 980px) { .cards.bento .card:first-child { grid-column: span 2; grid-row: auto; } .cards.bento .card:first-child .photo { min-height: 260px; flex: none; aspect-ratio: 16/9; } }
@media (max-width: 620px) { .cards.bento .card:first-child { grid-column: auto; } }

/* scrapbook */
.scrap { columns: 3 260px; column-gap: 22px; }
.scrap figure { margin: 0 0 22px; break-inside: avoid; background: var(--white); border: var(--line); padding: 10px 10px 12px; box-shadow: var(--pop-sm); position: relative; transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.scrap figure:nth-child(3n+1) { transform: rotate(-1.2deg); }
.scrap figure:nth-child(3n+2) { transform: rotate(.8deg); }
.scrap figure:nth-child(3n) { transform: rotate(-.4deg); }
.scrap figure:hover { transform: rotate(0) translateY(-6px) scale(1.02); z-index: 2; }
.scrap img { width: 100%; border: 2px solid var(--ink); }
.scrap figcaption { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: .95rem; padding-top: 8px; }
.scrap figcaption a { color: var(--ink); text-decoration: none; }
.scrap .tape { position: absolute; top: -12px; left: 50%; transform: translateX(-50%) rotate(-3deg); width: 84px; height: 24px; background: rgba(255,216,77,.85); border: 2px solid rgba(17,17,17,.5); }

/* callout */
.callout { background: var(--navy); color: var(--white); border: var(--line); border-radius: 28px; box-shadow: var(--pop); padding: 44px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; position: relative; overflow: hidden; }
.callout::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 260px; height: 260px; border-radius: 50%; background: var(--blue); opacity: .35; }
.callout h2 { color: var(--white); }
.callout p { color: rgba(255,255,255,.8); margin: 0; max-width: 46ch; }
.callout .mascot { width: 150px; height: 150px; border-radius: 50%; border: var(--line); background: var(--white); position: relative; z-index: 1; }
@media (max-width: 760px) { .callout { grid-template-columns: 1fr; } .callout .mascot { width: 110px; height: 110px; } }

/* event page hero */
.hero-ev { position: relative; overflow: hidden; border-bottom: var(--line); color: var(--white); min-height: 520px; display: flex; align-items: flex-end; background: var(--navy); }
.hero-ev .bg { position: absolute; inset: 0; background-size: cover; background-position: center 35%; }
.hero-ev .bg.ill { background-size: contain; background-repeat: no-repeat; background-position: right center; opacity: .55; }
.hero-ev .shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,18,48,.2), rgba(11,18,48,.88)); }
.hero-ev .wrap { position: relative; z-index: 2; padding-block: 64px 48px; width: 100%; }
.hero-ev h1 { color: var(--white); text-shadow: 0 4px 24px rgba(0,0,0,.4); max-width: 14ch; }
.hero-ev .lead { color: rgba(255,255,255,.92); }
.hero-ev.h-fete, .hero-ev.h-horticultural { background: var(--grass-deep); } .hero-ev.h-fete .shade, .hero-ev.h-horticultural .shade { background: linear-gradient(180deg, rgba(20,60,30,.1), rgba(20,60,30,.85)); }
.hero-ev.h-bingo { background: var(--pink-deep); } .hero-ev.h-bingo .shade { background: linear-gradient(180deg, rgba(120,20,60,.25), rgba(120,20,60,.9)); }
.hero-ev.h-band { background: var(--purple); }
.hero-ev.h-quiz { background: var(--blue-deep); } .hero-ev.h-quiz .shade { background: linear-gradient(180deg, rgba(27,111,181,.3), rgba(20,60,110,.92)); }
.hero-ev.h-skittles { background: #3a2a1c; }
.hero-ev.h-boxing { background: var(--grass-deep); }
.hero-ev.h-classic { background: var(--blue-deep); min-height: 400px; } .hero-ev.h-classic .shade { background: linear-gradient(180deg, rgba(27,111,181,.55), rgba(27,111,181,.95)); }
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 1.2em 0 1.6em; }
.pills span { background: var(--white); color: var(--ink); border: var(--line); border-radius: 14px; padding: .5em 1em .55em; font-weight: 800; font-size: .95rem; box-shadow: var(--pop-sm); display: inline-flex; flex-direction: column; line-height: 1.2; }
.pills span i { font-style: normal; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-deep); margin-bottom: .15em; }
.sparks { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.sparks i { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--sand); box-shadow: 0 0 12px 3px rgba(255,216,77,.7); animation: twinkle 2.6s ease-in-out infinite; }
.sparks i:nth-child(1){left:8%;top:18%;} .sparks i:nth-child(2){left:22%;top:8%;animation-delay:.6s;background:#fff;}
.sparks i:nth-child(3){left:70%;top:14%;animation-delay:1.1s;} .sparks i:nth-child(4){left:86%;top:30%;animation-delay:.3s;background:var(--coral);}
.sparks i:nth-child(5){left:52%;top:6%;animation-delay:1.7s;background:#fff;} .sparks i:nth-child(6){left:38%;top:26%;animation-delay:2s;}
@keyframes twinkle { 0%,100%{opacity:.2;transform:scale(.6);} 50%{opacity:1;transform:scale(1.3);} }
@media (prefers-reduced-motion: reduce) { .sparks i { animation: none; opacity: .8; } }
.fwcanvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }

.prose { font-size: 1.08rem; color: var(--ink-soft); }
.prose h2 { color: var(--ink); margin-top: 1.4em; }
.prose p { max-width: 68ch; }
.prose img { border: var(--line); border-radius: 16px; margin: 1.4em 0; }

.gallery3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.gallery3.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 760px) { .gallery3, .gallery3.two { grid-template-columns: 1fr; } }
.gallery3 img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: var(--line); border-radius: 16px; box-shadow: var(--pop-sm); background: var(--ink); transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s; }
.gallery3 img:nth-child(3n+2) { transform: rotate(1deg); } .gallery3 img:nth-child(3n+1) { transform: rotate(-1deg); }
.gallery3 img:hover { transform: translate(-3px,-3px) scale(1.01); box-shadow: 8px 8px 0 var(--ink); }

.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 860px) { .info-grid { grid-template-columns: 1fr; } }
.info { background: var(--white); border: var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--pop-sm); display: flex; flex-direction: column; }
.info .ic { width: 50px; height: 50px; border-radius: 50%; border: var(--line); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; background: var(--sand); box-shadow: 3px 3px 0 var(--ink); }
.info .ic svg { width: 26px; height: 26px; }
.info p { margin: 0; color: var(--ink-soft); }
.info .btn { margin-top: 16px; align-self: flex-start; }

details.faq { border: var(--line); border-radius: 16px; background: var(--white); padding: 14px 20px; margin-bottom: 12px; box-shadow: var(--pop-sm); }
details.faq summary { cursor: pointer; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.1rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
details.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--blue-deep); }
details.faq[open] summary::after { content: "–"; }
details.faq p { margin: .6em 0 0; color: var(--ink-soft); }

/* bingo balls */
.balls { display: flex; flex-wrap: wrap; gap: 14px; margin: 1.4em 0; }
.ball { width: 68px; height: 68px; border-radius: 50%; border: var(--line); box-shadow: var(--pop-sm); display: flex; align-items: center; justify-content: center; font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 1.5rem; background: radial-gradient(circle at 35% 30%, #fff 0 22%, var(--c) 24%); color: var(--ink); animation: bob 3s ease-in-out infinite; }
.ball:nth-child(2n) { animation-delay: .7s; } .ball:nth-child(3n) { animation-delay: 1.3s; }
@keyframes bob { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
@media (prefers-reduced-motion: reduce) { .ball { animation: none; } }

/* posts */
.post-list { display: grid; gap: 26px; }
.post-row { display: grid; grid-template-columns: 240px 1fr; gap: 24px; background: var(--white); border: var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--ink); box-shadow: var(--pop-sm); transition: transform .15s; }
.post-row:hover { transform: translate(-2px,-2px); box-shadow: var(--pop); }
.post-row img { border-radius: 0; aspect-ratio: 4/3; object-fit: cover; height: 100%; border-right: var(--line); }
.post-row-body { padding: 20px 24px 20px 0; }
.post-row-body p { color: var(--ink-soft); }
@media (max-width: 680px) { .post-row { grid-template-columns: 1fr; } .post-row img { aspect-ratio: 16/9; border-right: none; border-bottom: var(--line); } .post-row-body { padding: 4px 18px 20px; } }
.post-date { font-weight: 800; color: var(--blue-deep); font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }

/* facebook strip */
.fb-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 860px) { .fb-grid { grid-template-columns: 1fr; } }
.fb-card { background: var(--white); border: var(--line); border-radius: var(--radius); box-shadow: var(--pop-sm); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: var(--ink); }
.fb-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; border-bottom: var(--line); }
.fb-card .body { padding: 16px 18px 18px; font-size: .95rem; color: var(--ink-soft); }
.fb-card .body small { display: block; font-weight: 800; color: var(--blue-deep); font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .4em; }

/* forms */
.form-grid { display: grid; gap: 16px; max-width: 560px; }
label { font-weight: 800; display: block; margin-bottom: .3em; }
input, textarea, select { width: 100%; padding: .8em 1em; border-radius: 12px; border: var(--line); font-family: inherit; font-size: 1rem; background: var(--white); }
input:focus, textarea:focus, select:focus { outline: 3px solid var(--blue); outline-offset: 2px; }
.form-note { font-size: .9rem; color: var(--muted); }
.flash { padding: 14px 18px; border-radius: 14px; margin-bottom: 20px; font-weight: 800; border: var(--line); }
.flash-success { background: #dff3e4; }
.flash-error { background: #fbe3e0; }

/* dunes + beach + footer */
.dune { display: block; width: 100%; height: 64px; margin-bottom: -3px; }
.dune path.fill { fill: var(--sand); } .dune path.line { fill: none; stroke: var(--ink); stroke-width: 3; }
.beach { background: var(--sand); border-top: var(--line); padding: 26px 0 0; position: relative; overflow: hidden; }
.beach .wrap { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.beach p { margin: 0 0 22px; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.25rem; }
.beach img { width: 120px; height: 120px; border-radius: 50%; border: var(--line); background: var(--white); margin-bottom: -6px; animation: stroll 2.2s ease-in-out infinite; }
@keyframes stroll { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-10px) rotate(3deg); } }
@media (prefers-reduced-motion: reduce) { .beach img { animation: none; } }
.beach .shells { position: absolute; left: 0; right: 0; bottom: 0; height: 26px; pointer-events: none; background-repeat: repeat-x; background-size: 220px 26px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 26'%3E%3Cellipse cx='20' cy='20' rx='9' ry='4' fill='%239aa3ad' stroke='%23111' stroke-width='2'/%3E%3Cpath d='M70 22 l3 -8 l3 8 z M62 22 l6 -12 l6 12 z' fill='%23fbf3e4' stroke='%23111' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M130 8 l3 7 8 1 -6 5 2 8 -7 -4 -7 4 2 -8 -6 -5 8 -1z' fill='%23F0913A' stroke='%23111' stroke-width='2' stroke-linejoin='round'/%3E%3Cellipse cx='190' cy='21' rx='6' ry='3' fill='%23c9c2b8' stroke='%23111' stroke-width='2'/%3E%3C/svg%3E"); }
@media (max-width: 620px) { .beach img { width: 88px; height: 88px; } .beach p { font-size: 1.05rem; } }

footer.site { background: var(--navy); color: rgba(255,255,255,.85); padding-block: 56px 26px; border-top: var(--line); }
.fgrid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; margin-bottom: 34px; }
@media (max-width: 760px) { .fgrid { grid-template-columns: 1fr; } }
footer.site h4 { color: var(--white); font-size: 1rem; margin-bottom: .7em; }
footer.site a { color: rgba(255,255,255,.85); text-decoration: none; }
footer.site a:hover { color: var(--sand); }
.flinks { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-weight: 700; }
.fbrand { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.fbrand img { width: 64px; height: 64px; border-radius: 50%; border: var(--line); background: var(--white); }
.fbrand b { font-family: 'Fredoka', sans-serif; font-size: 1.3rem; color: #fff; }
.fbottom { border-top: 1px solid rgba(255,255,255,.18); padding-top: 18px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.6); }
.fbottom a { color: var(--sand); font-weight: 800; }

.skip { position: absolute; left: -999px; } .skip:focus { left: 12px; top: 12px; z-index: 100; background: var(--ink); color: #fff; padding: 8px 12px; }
:focus-visible { outline: 3px solid var(--blue-deep); outline-offset: 3px; }
