/* ============================================================
   Online Flower Shop — shared design system
   Palette + type per research/brand-system.md
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #FFFDFB;
  --surface: #ffffff;
  --surface-tint: #FBF3F5;   /* soft pink wash, low chroma */
  --surface-green: #14422F;  /* deep botanical panel */
  --text: #2B2B2E;
  --muted: #6B6B72;
  --primary: #D6486B;
  --primary-deep: #B23457;
  --secondary: #2E7D52;
  --secondary-deep: #1F5E3C;
  --accent: #F2B705;
  --accent-deep: #C99603;
  --border: #EFE6E8;
  --focus: #D6486B;
  --shadow-sm: 0 1px 3px rgba(43,43,46,.06), 0 1px 2px rgba(43,43,46,.04);
  --shadow-md: 0 10px 30px -12px rgba(122,52,72,.22);
  --shadow-lg: 0 24px 60px -24px rgba(122,52,72,.32);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 74px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(56px, 9vw, 116px); }
.section--tint { background: var(--surface-tint); }
.center { text-align: center; }
.stack-sm > * + * { margin-top: 10px; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center { display: inline-flex; }
.eyebrow.center::after {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

.h-display { font-size: clamp(2.6rem, 7vw, 5rem); }
.h-section { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--muted);
  max-width: 56ch;
}

/* botanical divider (gold floret) */
.floret {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; color: var(--accent); margin: 0 auto;
}
.floret::before, .floret::after {
  content: ""; height: 1px; width: 54px; background: var(--border);
}
.floret i {
  width: 9px; height: 9px; background: var(--accent);
  transform: rotate(45deg); border-radius: 2px;
  box-shadow: 0 0 0 4px rgba(242,183,5,.16);
}

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--primary);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: .98rem;
  padding: 14px 26px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid var(--btn-bg);
  border-radius: 999px;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--accent { --btn-bg: var(--accent); --btn-fg: #3a2c00; }
.btn--green { --btn-bg: var(--secondary); --btn-fg: #fff; }
.btn--ghost {
  background: transparent; color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--surface); }
.btn--light {
  background: #fff; color: var(--primary); border-color: #fff;
}
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,253,251,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; gap: 20px;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 1.32rem; color: var(--primary); letter-spacing: .01em;
}
.brand-text span {
  font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--secondary); font-weight: 600; margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .95rem; font-weight: 500; color: var(--text);
  padding: 9px 14px; border-radius: 999px;
  transition: color .18s, background .18s; position: relative;
}
.nav-links a:hover { color: var(--primary); background: var(--surface-tint); }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--border);
  background: var(--surface); border-radius: 12px; cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--surface-green); color: #e9efe9;
  padding-block: 64px 120px;
}
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1.4fr 1fr 1fr;
}
.footer-brand img { width: 60px; height: 60px; object-fit: contain; margin-bottom: 14px;
  background: rgba(255,255,255,.92); border-radius: 14px; padding: 6px; }
.footer-brand b { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: #fff; display: block; }
.footer-brand p { color: #b9cabd; margin-top: 10px; font-size: .95rem; max-width: 34ch; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: .82rem; text-transform: uppercase; letter-spacing: .15em; color: var(--accent); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { color: #c8d6cb; font-size: .95rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  color: #93a796; font-size: .85rem;
}
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center; color: #d6e2d9;
  transition: .2s;
}
.social-row a:hover { background: var(--accent); color: #3a2c00; border-color: var(--accent); transform: translateY(-2px); }
.social-row svg { width: 17px; height: 17px; }

/* ---------- mobile bottom action bar ---------- */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none;
  background: rgba(255,253,251,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.action-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 4px; border-radius: 12px;
  font-size: .72rem; font-weight: 600; color: var(--text);
}
.action-bar a svg { width: 21px; height: 21px; }
.action-bar a.primary { background: var(--primary); color: #fff; }
.action-bar a.accent { background: var(--accent); color: #3a2c00; }
.action-bar a.green { background: var(--secondary); color: #fff; }

/* ---------- trust strip ---------- */
.trust {
  display: flex; flex-wrap: wrap; gap: 14px 36px;
  align-items: center; justify-content: center;
}
.trust .item { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--muted); font-weight: 500; }
.trust .item svg { width: 20px; height: 20px; color: var(--secondary); }
.trust .item b { color: var(--text); }
.stars { color: var(--accent); letter-spacing: 2px; font-size: 1rem; }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card .media { aspect-ratio: 1 / 1; overflow: hidden; background: var(--surface-tint); position: relative; }
.card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .media img { transform: scale(1.06); }
.card .body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card .tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(255,253,251,.92); color: var(--primary);
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  padding: 6px 12px; border-radius: 999px; text-transform: uppercase;
}
.card h3 { font-size: 1.55rem; color: var(--text); }
.card .desc { color: var(--muted); font-size: .92rem; }
.card .meta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 8px; }
.card .link {
  color: var(--primary); font-weight: 600; font-size: .9rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.card:hover .link svg { transform: translateX(4px); }
.card .link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }

/* occasion mini card */
.occasion {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3 / 4; display: flex; align-items: flex-end;
  color: #fff; isolation: isolate;
}
.occasion img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s var(--ease); }
.occasion::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(20,20,22,.82) 0%, rgba(20,20,22,.18) 52%, rgba(20,20,22,0) 100%); }
.occasion:hover img { transform: scale(1.07); }
.occasion .label { padding: 22px; }
.occasion .label h3 { color: #fff; font-size: 1.7rem; }
.occasion .label p { color: rgba(255,255,255,.82); font-size: .88rem; margin-top: 2px; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- page hero (interior pages) ---------- */
.page-hero {
  background: var(--surface-tint);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(48px, 7vw, 80px);
}
.page-hero .crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.page-hero .crumbs a:hover { color: var(--primary); }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
.page-hero p { margin-top: 12px; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,16,18,.92);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; animation: lbfade .25s var(--ease); }
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
.lb-stage { margin: 0; max-width: min(92vw, 880px); display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lb-stage img { max-width: 100%; max-height: 78vh; border-radius: 12px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.6); }
.lb-stage figcaption { color: #f3e9ec; font-size: .95rem; text-align: center; }
.lb-close, .lb-nav {
  background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.22);
  cursor: pointer; border-radius: 50%; display: grid; place-items: center;
  transition: .2s; backdrop-filter: blur(6px);
}
.lb-close { position: absolute; top: 20px; right: 20px; width: 46px; height: 46px; font-size: 26px; line-height: 1; }
.lb-nav { width: 52px; height: 52px; font-size: 30px; flex: none; margin: 0 6px; }
.lb-close:hover, .lb-nav:hover { background: var(--primary); border-color: var(--primary); }
@media (max-width: 640px) {
  .lb-nav { position: absolute; bottom: 24px; }
  .lb-prev { left: 24px; } .lb-next { right: 24px; }
}

/* ---------- gallery ---------- */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px; }
.filter-row button {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: .9rem;
  padding: 9px 18px; border-radius: 999px; cursor: pointer;
  background: var(--surface); border: 1.5px solid var(--border); color: var(--muted);
  transition: .2s;
}
.filter-row button:hover { border-color: var(--primary); color: var(--primary); }
.filter-row button.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.masonry { columns: 3; column-gap: 18px; }
.masonry .tile { break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius); overflow: hidden; position: relative; background: var(--surface-tint); }
.masonry .tile img { width: 100%; transition: transform .6s var(--ease), filter .3s; }
.masonry .tile:hover img { transform: scale(1.05); }
.masonry .tile::after {
  content: ""; position: absolute; inset: 0; background: rgba(214,72,107,0); transition: .3s;
}
.masonry .tile:hover::after { background: rgba(214,72,107,.12); }
@media (max-width: 820px) { .masonry { columns: 2; } }
@media (max-width: 520px) { .masonry { columns: 1; } }

/* ---------- form ---------- */
.form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--text); }
.field label .req { color: var(--primary); }
.field input, .field textarea, .field select {
  font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--text);
  padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 12px;
  background: var(--bg); transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(214,72,107,.14);
}
.field .err { font-size: .8rem; color: var(--primary-deep); display: none; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: var(--primary); background: #fdf3f6; }
.field.invalid .err { display: block; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 16px; }
.success-panel {
  background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--secondary);
  border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); text-align: center;
}
.success-panel .check {
  width: 62px; height: 62px; border-radius: 50%; background: var(--secondary);
  display: grid; place-items: center; margin: 0 auto 18px; color: #fff;
}
.success-panel .check svg { width: 30px; height: 30px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- contact info rows ---------- */
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--border); }
.info-row:last-child { border-bottom: 0; }
.info-row .ic {
  width: 46px; height: 46px; flex: none; border-radius: 12px;
  background: var(--surface-tint); display: grid; place-items: center; color: var(--primary);
}
.info-row .ic svg { width: 22px; height: 22px; }
.info-row .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 600; }
.info-row .val { font-size: 1.05rem; color: var(--text); font-weight: 500; margin-top: 2px; }
.info-row a.val:hover { color: var(--primary); }
.map-placeholder {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
  background:
    repeating-linear-gradient(45deg, #f1ece2 0 12px, #ece6db 12px 24px);
  min-height: 320px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--secondary-deep); text-align: center; padding: 24px;
}
.map-placeholder .pin { width: 52px; height: 52px; border-radius: 50%; background: var(--surface); display: grid; place-items: center; box-shadow: var(--shadow-sm); color: var(--primary); }
.map-placeholder .pin svg { width: 26px; height: 26px; }
.map-placeholder code { font-family: 'IBM Plex Mono', monospace; background: rgba(255,255,255,.7); padding: 3px 9px; border-radius: 6px; font-size: .8rem; color: var(--muted); }

/* ============================================================
   HOME PAGE
   ============================================================ */
.hero { position: relative; padding-block: clamp(40px, 6vw, 84px) clamp(56px, 7vw, 96px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -180px; right: -160px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(214,72,107,.10), rgba(214,72,107,0) 70%);
  border-radius: 50%; z-index: 0;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.hero-copy .eyebrow { margin-bottom: 18px; }
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy .lead { margin-bottom: 30px; }
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; font-size: .92rem; color: var(--muted); }
.rating-chip { display: inline-flex; align-items: center; gap: 9px; }
.rating-chip b { color: var(--text); }
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }

.hero-visual { position: relative; }
.hero-img-main { border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; }
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-sub {
  position: absolute; bottom: -26px; left: -34px; width: 42%; aspect-ratio: 1/1;
  border-radius: 18px; overflow: hidden; border: 5px solid var(--bg); box-shadow: var(--shadow-md);
}
.hero-img-sub img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; top: 20px; right: -14px;
  background: var(--bg); border-radius: 16px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 14px 16px; color: var(--secondary); text-align: center;
}
.hero-badge svg { width: 26px; height: 26px; }
.hero-badge span { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.05rem; line-height: 1; color: var(--text); }

.trust-band { border-block: 1px solid var(--border); padding-block: 22px; background: var(--surface); }

.row-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.row-head .eyebrow { margin-bottom: 10px; }
.row-head h2 { margin: 0; }

.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.about-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-copy .eyebrow { margin-bottom: 14px; }
.about-copy h2 { margin-bottom: 16px; }
.check-list { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.check-list svg { width: 20px; height: 20px; color: var(--secondary); flex: none; }

.events-band { background: var(--surface-green); color: #fff; padding-block: clamp(48px, 7vw, 90px); }
.events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.events-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/10; }
.events-media img { width: 100%; height: 100%; object-fit: cover; }

.review {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; margin: 0; display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.review blockquote { margin: 0; font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; line-height: 1.32; color: var(--text); }
.review figcaption { font-size: .82rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

.cta-band { background: var(--primary); color: #fff; padding-block: clamp(56px, 8vw, 100px); text-align: center; }
.cta-inner { max-width: 640px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 48ch; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; width: 100%; }
  .about-grid, .events-grid { grid-template-columns: 1fr; }
  .events-media { order: -1; }
}

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 780px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .action-bar { display: grid; }
  body { padding-bottom: 76px; }
  .site-footer { padding-bottom: 120px; }

  /* mobile menu drawer */
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--surface); flex-direction: column; align-items: stretch;
    padding: 14px 18px 22px; gap: 2px; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: .25s var(--ease); z-index: 55;
  }
  .nav-links.open { display: flex; transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 12px; font-size: 1.05rem; border-radius: 12px; }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { background: var(--surface-tint); }
}
@media (max-width: 560px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}
