/* ============================================================
   Design system v2 — Apple/Meta minimal, terracotta accent
   One sans. Huge type. Space. Soft depth. Subtle motion.
   ============================================================ */
:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --paper: #ffffff;
  --soft: #f5f5f7;
  --line: #e8e8ed;
  --clay: #b5502a;
  --clay-deep: #93401f;
  --clay-tint: #faf1ec;
  --river: #2e5d5a;
  --sand: #f5f5f7;            /* legacy alias */
  --badge-pending: #a07f2a;
  --badge-verified: #2e5d5a;
  --maxw: 1024px;
  --r: 22px;
  --shadow: 0 8px 30px rgba(29,29,31,.07);
  --shadow-lg: 0 24px 60px rgba(29,29,31,.12);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--paper); color: var(--ink);
  font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-weight: 700; letter-spacing: -0.022em; line-height: 1.08; }
h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); margin-bottom: .5em; }
h3 { font-size: 1.25rem; letter-spacing: -0.01em; margin-bottom: .35em; }
p { margin-bottom: 1em; }
a { color: var(--clay-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.tight { max-width: 720px; }

/* ---- Nav (Apple-style slim, blurred) ---- */
header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav { display: flex; align-items: center; gap: 22px; padding: 12px 22px;
  max-width: var(--maxw); margin: 0 auto; flex-wrap: wrap; }
.brand { font-weight: 700; font-size: 1.05rem; color: var(--ink); letter-spacing: -0.01em;
  margin-right: auto; text-decoration: none; }
.brand span { color: var(--clay); }
.nav a.item { color: #424245; font-size: .84rem; padding: 4px 0; text-decoration: none; }
.nav a.item:hover, .nav a.item.active { color: var(--ink); }

/* ---- Nav: skip link, dropdown, mobile ---- */
.skip { position: absolute; left: -9999px; top: 0; background: var(--clay); color: #fff;
  padding: 10px 16px; border-radius: 0 0 8px 0; font-size: .9rem; text-decoration: none; z-index: 200; }
.skip:focus { left: 0; }
.nav .items { display: flex; align-items: center; gap: 22px; }
.nav a.item, .menu > summary { font-size: .88rem; }

.menu { position: relative; }
.menu > summary { list-style: none; cursor: pointer; color: #424245; padding: 4px 0;
  display: inline-flex; align-items: center; gap: 5px; user-select: none; }
.menu > summary::-webkit-details-marker { display: none; }
.menu > summary:hover, .menu[open] > summary, .menu.active > summary { color: var(--ink); }
.menu > summary svg { transition: transform .18s ease; opacity: .6; }
.menu[open] > summary svg { transform: rotate(180deg); }
.menu .drop { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  min-width: 232px; background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 14px;
  box-shadow: 0 12px 34px rgba(0,0,0,.10); padding: 7px; display: flex; flex-direction: column; }
.menu .drop::before { content: ""; position: absolute; bottom: 100%; left: 0; right: 0; height: 12px; }
.menu .drop a { padding: 10px 13px; border-radius: 9px; font-size: .92rem; color: #33312e;
  text-decoration: none; white-space: nowrap; }
.menu .drop a:hover { background: #f4f0e9; color: var(--ink); }
.menu .drop a[aria-current="page"] { color: var(--clay); font-weight: 600; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 4px; }
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease; }
.nav :focus-visible { outline: 2.5px solid var(--clay); outline-offset: 3px; border-radius: 6px; }

@media (max-width: 780px) {
  .burger { display: flex; }
  .nav .items { display: none; width: 100%; flex-direction: column; align-items: stretch;
    gap: 2px; padding: 8px 0 12px; }
  .nav.open .items { display: flex; }
  .nav a.item, .menu > summary { padding: 12px 4px; font-size: 1rem; }
  .menu .drop { position: static; transform: none; box-shadow: none; border: none;
    background: transparent; padding: 0 0 6px 14px; min-width: 0; }
  .menu .drop a { padding: 10px 8px; }
}

/* ---- Hero ---- */
.hero { padding: clamp(64px, 12vh, 130px) 0 clamp(48px, 8vh, 90px); text-align: center; }
.hero .kicker, .kicker { font-size: .82rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--clay); margin-bottom: 18px; }
.hero p.lead, p.lead { font-size: clamp(1.15rem, 2.4vw, 1.45rem); color: var(--muted);
  max-width: 38em; margin: 22px auto 0; line-height: 1.5; font-weight: 400; }
.hero .cta-row { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero.left { text-align: left; }
.hero.left p.lead { margin-left: 0; }

/* ---- Buttons: pills ---- */
.btn { display: inline-block; background: var(--clay); color: #fff; text-decoration: none;
  padding: 13px 28px; border-radius: 999px; font-weight: 600; font-size: 1rem;
  border: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s; }
.btn:hover { background: var(--clay-deep); transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(181,80,42,.28); text-decoration: none; }
.btn.ghost { background: transparent; color: var(--clay-deep); border: 1.5px solid var(--clay); }
.btn.ghost:hover { background: var(--clay-tint); box-shadow: none; }
.btn.big { padding: 16px 36px; font-size: 1.1rem; }

/* ---- Sections ---- */
section.band { padding: clamp(64px, 10vh, 110px) 0; }
section.band.soft { background: var(--soft); }
.center { text-align: center; }
.eyebrow { font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 14px; }
.sub { color: var(--muted); font-size: 1.15rem; max-width: 40em; }
.center .sub { margin: 0 auto 1em; }

/* ---- Cards ---- */
.grid { display: grid; gap: 20px; }
.grid.c3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid.c2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card { background: var(--paper); border-radius: var(--r); padding: 32px;
  box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease; }
section.band.soft .card { box-shadow: none; }
.card.hoverable:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .tag { display: inline-block; font-size: .72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: var(--river); margin-bottom: 10px; }
.card h3 a { color: var(--ink); }
.soft-card { background: var(--soft); border-radius: var(--r); padding: 32px; }

/* ---- Feature rows (Apple alternating) ---- */
.feature { display: grid; gap: clamp(28px, 5vw, 64px); align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.feature h2 { margin-bottom: .4em; }
.feature p { color: var(--muted); font-size: 1.1rem; }

/* ---- Photo slots ----
   background stack: image over gradient. Missing image = tasteful gradient + label. */
.photo { border-radius: var(--r); min-height: 340px; position: relative; overflow: hidden;
  background-size: cover; background-position: center;
  background-color: #e9e2da;
  background-image: linear-gradient(135deg, #ece5dc 0%, #dcd2c5 55%, #cfc0ae 100%);
  box-shadow: var(--shadow); }
.photo.tall { min-height: 460px; }
.photo.short { min-height: 240px; }
.photo .slot-label { position: absolute; inset: auto 14px 14px 14px; font-size: .72rem;
  color: rgba(29,29,31,.45); letter-spacing: .04em; text-align: right; }
.photo.wide { min-height: 420px; border-radius: 28px; }
.photo-strip { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ---- Big statement ---- */
.statement { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.2; max-width: 26em; }
.statement em { color: var(--clay); font-style: normal; }

/* ---- Hero flashcard ---- */
.hero-card-stage { perspective: 1100px; width: min(340px, 86vw); margin: 44px auto 0; }
.hero-card { position: relative; height: 200px; cursor: pointer;
  transform-style: preserve-3d; transition: transform .55s cubic-bezier(.4,.1,.2,1); }
.hero-card.flip { transform: rotateY(180deg); }
.hero-card .face { position: absolute; inset: 0; backface-visibility: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  border-radius: 24px; box-shadow: var(--shadow-lg); }
.hero-card .front { background: var(--paper); }
.hero-card .back { background: var(--ink); color: #fff; transform: rotateY(180deg); }
.hero-card .word { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; }
.hero-card .hint { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.hero-card .back .hint { color: rgba(255,255,255,.55); }
.hero-card-nav { text-align: center; margin-top: 14px; font-size: .82rem; color: var(--muted); }

/* ---- Notices ---- */
.notice { background: var(--clay-tint); border-radius: 16px; padding: 18px 22px;
  font-size: .95rem; margin: 20px 0; }
.notice.gov { background: #eef4f3; }

/* ---- Badges ---- */
.badge { display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: .06em;
  padding: 3px 10px; border-radius: 999px; color: #fff; vertical-align: middle; }
.badge.pending { background: var(--badge-pending); }
.badge.verified { background: var(--badge-verified); }

/* ---- Archive ---- */
.search-row { display: flex; gap: 12px; margin: 26px 0; flex-wrap: wrap; }
.search-row input, .search-row select { padding: 14px 18px; border: none; border-radius: 14px;
  font-size: 1rem; background: var(--soft); font-family: inherit; outline-color: var(--clay); }
.search-row input { flex: 1; min-width: 220px; }
.entry { background: var(--paper); border-radius: 18px; padding: 20px 24px; margin-bottom: 12px;
  box-shadow: var(--shadow); }
.entry .head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.entry .shp { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.01em; }
.entry .eng { color: var(--muted); }
.entry .meta, .meta { font-size: .8rem; color: var(--muted); margin-top: 8px; }
.entry .ex { margin-top: 6px; font-style: italic; color: #424245; }

/* ---- Tables ---- */
table.plain { width: 100%; border-collapse: separate; border-spacing: 0; margin: 18px 0;
  background: var(--paper); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
table.plain th, table.plain td { padding: 14px 18px; text-align: left; font-size: .95rem;
  border-bottom: 1px solid var(--line); }
table.plain tr:last-child td { border-bottom: none; }
table.plain th { background: var(--soft); font-weight: 600; }

/* ---- Forms ---- */
form.inquiry { display: grid; gap: 14px; max-width: 520px; }
form.inquiry label { font-weight: 600; font-size: .9rem; }
form.inquiry input, form.inquiry textarea, form.inquiry select {
  width: 100%; padding: 14px 16px; border: none; border-radius: 14px; font-size: 1rem;
  font-family: inherit; background: var(--soft); outline-color: var(--clay); margin-top: 6px; }
section.band.soft form.inquiry input, section.band.soft form.inquiry textarea,
section.band.soft form.inquiry select { background: var(--paper); box-shadow: var(--shadow); }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-card { transition: none; }
}

/* ---- Footer ---- */
footer.site { padding: 64px 0 80px; background: var(--soft); margin-top: 40px;
  color: var(--muted); font-size: .88rem; }
footer.site .cols { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
footer.site a { color: var(--muted); }
.fineprint { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); font-size: .8rem; }

/* legacy aliases used by course pages */
.ph { border-radius: var(--r); min-height: 220px;
  background-image: linear-gradient(135deg, #ece5dc, #cfc0ae);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .85rem; text-align: center; padding: 12px; }

@media (max-width: 640px) {
  .nav { gap: 14px; }
  .card { padding: 24px; }
}

/* ============================================================
   EXPRESSIVE LAYER v3 — original art, no imitation kené.
   River curves, sun/moon circles, module color-worlds, display type.
   ============================================================ */
h1, h2, .statement, .brand { font-family: "Fraunces", Georgia, serif; font-weight: 600; }
h1 { letter-spacing: -0.015em; }
.hero .kicker, .kicker, .eyebrow { font-family: -apple-system, Inter, sans-serif; }

/* hero art band (inline SVG) */
.hero-art { display:block; width:100%; height:auto; margin-top:34px; border-radius:28px;
  box-shadow: var(--shadow-lg); }
@keyframes drift { 0%,100%{ transform:translateX(0);} 50%{ transform:translateX(-18px);} }
.hero-art .w1 { animation: drift 9s ease-in-out infinite; }
.hero-art .w2 { animation: drift 13s ease-in-out infinite reverse; }
.hero-art .w3 { animation: drift 17s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce){ .hero-art path { animation:none !important; } }

/* warm grain on soft bands */
section.band.soft { position:relative; }
section.band.soft::after { content:""; position:absolute; inset:0; pointer-events:none; opacity:.35;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.45 0 0 0 0 0.32 0 0 0 0 0.22 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E"); }
section.band.soft > .wrap { position:relative; z-index:1; }

/* richer buttons */
.btn { background: linear-gradient(135deg, #c95f33, var(--clay-deep)); }
.btn:hover { box-shadow: 0 12px 30px rgba(181,80,42,.35); }
.btn.ghost { background: transparent; }

/* card polish */
.card { border-top: 3px solid transparent; }
.card.hoverable:hover { border-top-color: var(--clay); }
.soft-card { border-left: 4px solid var(--sand); }

/* sun divider */
.sun-divider { display:flex; align-items:center; gap:16px; margin:8px auto; max-width:280px; }
.sun-divider::before, .sun-divider::after { content:""; flex:1; height:2px;
  background:linear-gradient(90deg, transparent, var(--line)); border-radius:2px; }
.sun-divider i { width:14px; height:14px; border-radius:50%; flex:none;
  background: radial-gradient(circle at 35% 35%, #f0c060, #d97c2b); }

/* photo slots get warm duotone-ready treatment */
.photo { filter: saturate(1.04); }
.photo::after { content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(60,35,18,.18)); }
.photo .slot-label { z-index:2; }

/* ============================================================
   ATMOSPHERE LAYER v4 — a little mysticism, kept legible.
   Warm paper, dawn-over-canopy hero with a drift of stars, one
   night-sky cosmology band, gold ceremony accent. Cards & copy
   stay clean and simply placed. No imitation kené.
   ============================================================ */
:root{
  --paper:#fcf9f4;            /* warm off-white, not clinical white */
  --soft:#f2ede4;
  --night:#151d1b;            /* deep jungle-night */
  --gold:#c1912f;
  --gold-soft:#e7c37a;
  --shadow:0 12px 36px rgba(35,26,18,.09);
  --shadow-lg:0 28px 64px rgba(35,26,18,.14);
}
body{ background:var(--paper); }
header.site{ background:rgba(252,249,244,.82); }

/* Hero — dawn light over the canopy, and a faint drift of stars */
.hero{ position:relative; overflow:hidden;
  background:
    radial-gradient(120% 80% at 50% -12%, rgba(193,145,47,.10), transparent 60%),
    radial-gradient(90% 60% at 84% 6%, rgba(46,93,90,.09), transparent 62%); }
.hero::before{ content:""; position:absolute; inset:0; z-index:0; pointer-events:none; opacity:.55;
  background-image:
    radial-gradient(1.3px 1.3px at 18% 28%, rgba(70,55,30,.45), transparent),
    radial-gradient(1px 1px at 68% 18%, rgba(70,55,30,.4), transparent),
    radial-gradient(1.4px 1.4px at 41% 62%, rgba(70,55,30,.32), transparent),
    radial-gradient(1px 1px at 86% 52%, rgba(70,55,30,.32), transparent),
    radial-gradient(1.1px 1.1px at 11% 74%, rgba(70,55,30,.28), transparent); }
.hero > .wrap{ position:relative; z-index:1; }

/* Night cosmology band — one dramatic, mystical moment */
section.band.night{ background:radial-gradient(120% 92% at 50% 0%, #26352f, var(--night) 72%);
  color:#efe7d6; position:relative; overflow:hidden; }
section.band.night::before{ content:""; position:absolute; inset:0; z-index:0; pointer-events:none; opacity:.7;
  background-image:
    radial-gradient(1.4px 1.4px at 15% 24%, rgba(231,195,122,.9), transparent),
    radial-gradient(1px 1px at 61% 14%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.5px 1.5px at 80% 40%, rgba(231,195,122,.85), transparent),
    radial-gradient(1px 1px at 34% 56%, rgba(255,255,255,.5), transparent),
    radial-gradient(1.2px 1.2px at 90% 70%, rgba(231,195,122,.7), transparent),
    radial-gradient(1px 1px at 24% 82%, rgba(255,255,255,.5), transparent),
    radial-gradient(1.3px 1.3px at 50% 34%, rgba(231,195,122,.6), transparent); }
section.band.night > .wrap{ position:relative; z-index:1; }
section.band.night .eyebrow{ color:var(--gold-soft); }
section.band.night .statement{ color:#f5eddc; }
section.band.night .statement em{ color:var(--gold-soft); font-style:normal; }
section.band.night .btn.ghost{ color:#1a231f; background:var(--gold-soft); border-color:var(--gold-soft); }
section.band.night .btn.ghost:hover{ background:#f0d69b; box-shadow:0 12px 28px rgba(193,145,47,.3); }

/* Gold ceremony accents */
.sun-divider i{ background:radial-gradient(circle at 35% 35%, var(--gold-soft), #ad7a24); }
.card.hoverable:hover{ border-top-color:var(--gold); }
.card .tag{ color:var(--gold); }
.hero .kicker, .kicker, .eyebrow{ color:var(--clay); }
.statement em{ color:var(--gold); }

/* headings a touch more crafted */
h1{ text-shadow:0 1px 0 rgba(255,255,255,.4); }

/* ============================================================
   CINEMATIC HOME LAYER v5 — full-bleed, nocturnal, image-led.
   Scoped to the homepage; other pages keep the light system.
   ============================================================ */
.hero-cine{position:relative;min-height:92vh;display:flex;align-items:flex-end;overflow:hidden;background:#14110d;color:#f4ecdb}
.hero-cine .bg{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1.06);animation:hzoom 26s ease-in-out infinite alternate}
@keyframes hzoom{to{transform:scale(1.13)}}
@media (prefers-reduced-motion:reduce){.hero-cine .bg{animation:none}}
.hero-cine::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(10,12,10,.32),rgba(10,12,10,.12) 42%,rgba(8,11,9,.9))}
.hero-cine .wrap{position:relative;z-index:2;padding:20vh 22px 9vh;text-align:left}
.hero-cine .kicker{color:var(--gold-soft)}
.hero-cine h1{font-size:clamp(3rem,9vw,6rem);color:#fff;line-height:1.02;text-shadow:0 2px 34px rgba(0,0,0,.55);margin-bottom:.22em}
.hero-cine p.lead{color:#eadfcd;max-width:38em;margin:0 0 6px}
.hero-cine .cta-row{justify-content:flex-start;margin-top:26px}
.scrollcue{position:absolute;left:50%;bottom:20px;z-index:3;transform:translateX(-50%);color:rgba(255,255,255,.55);font-size:.72rem;letter-spacing:.24em;text-transform:uppercase}
section.band.dark{background:radial-gradient(130% 100% at 50% 0%, #243029, #100e0a 78%);color:#e8dfce;position:relative}
section.band.dark .eyebrow{color:var(--gold-soft)}
section.band.dark h2,section.band.dark .statement{color:#f5eddc}
section.band.dark a{color:var(--gold-soft)}
section.band.dark .sub{color:#cabda4}
.kene-rule{height:24px;background:url('patterns/border.svg') center/auto 20px repeat-x;opacity:.45}
.houses{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:10px}
.htile{position:relative;min-height:360px;border-radius:6px;overflow:hidden;display:flex;align-items:flex-end;background:#1a1712 center/cover no-repeat;text-decoration:none;box-shadow:inset 0 0 0 1px rgba(255,255,255,.06)}
.htile::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(12,14,12,.12) 28%,rgba(8,12,9,.9));transition:background .35s}
.htile:hover::after{background:linear-gradient(180deg,rgba(12,14,12,.05) 18%,rgba(6,22,15,.93))}
.htile:hover{text-decoration:none}
.htile .t{position:relative;z-index:2;padding:24px 24px 26px}
.htile .tag{color:var(--gold-soft);font-size:.72rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em}
.htile h3{color:#fff;font-size:1.5rem;margin:.15em 0 .35em;font-family:"Fraunces",Georgia,serif}
.htile p{color:#e4dac6;font-size:.96rem;margin:0;line-height:1.5}
.htile .go{display:inline-block;margin-top:12px;color:var(--gold-soft);font-weight:600;font-size:.88rem}
.panel{position:relative;min-height:72vh;display:flex;align-items:center;overflow:hidden;color:#fff;background:#14110d center/cover no-repeat}
.panel::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(7,10,8,.85),rgba(7,10,8,.55) 48%,rgba(7,10,8,.15))}
.panel .wrap{position:relative;z-index:2}
.panel h2{color:#fff}.panel p{color:#e6dcc9}.panel .eyebrow{color:var(--gold-soft)}

/* ---- Plants ---- */
.plantgrid { display: grid; gap: 18px; margin: 26px 0 8px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.plant { background: #fff; border: 1px solid rgba(0,0,0,.07); border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column; }
.plantimg { margin: 0; position: relative; aspect-ratio: 4/3; background: #efeae1; overflow: hidden; }
.plantimg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.plantimg.noimg img { display: none; }
.plantimg.noimg::after { content: "photograph coming"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #8b8375; font-size: .82rem; letter-spacing: .04em; }
.plantimg .credit { position: absolute; left: 0; right: 0; bottom: 0; padding: 5px 9px;
  font-size: .68rem; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.55));
  text-align: right; }
.plantimg .credit:empty { display: none; }
.plantbody { padding: 15px 17px 18px; }
.plant h3 { font-size: 1.02rem; margin: 0 0 2px; font-weight: 600; }
.plant .sh { color: var(--clay); font-size: 1.12rem; }
.plant .sh.missing { color: #8b8375; font-style: italic; font-size: .92rem; font-weight: 500; }
.plant .sep { color: #c3bcb0; margin: 0 3px; }
.plant .latin { font-style: italic; color: #8b8375; font-size: .84rem; margin: 0 0 8px; }
.plant p { font-size: .92rem; line-height: 1.6; margin: 0; }
.footnote { margin-top: 28px; padding-top: 16px; border-top: 1px solid rgba(0,0,0,.07); }

/* ---- Safety ---- */
.alert { background: #fdf3f2; border: 1px solid #e8c4bf; border-left: 4px solid #b3261e;
  border-radius: 0 12px 12px 0; padding: 20px 24px; margin: 8px 0 30px; }
.alert h2 { margin-top: 0; color: #8e1f18; }
.alert p:last-child { margin-bottom: 0; }
ul.plain { list-style: none; padding: 0; margin: 10px 0 22px; }
ul.plain li { padding: 9px 0 9px 22px; position: relative; line-height: 1.6;
  border-bottom: 1px solid rgba(0,0,0,.05); }
ul.plain li:before { content: "—"; position: absolute; left: 0; color: var(--clay); }
ul.plain li:last-child { border-bottom: none; }
.freeship { background: #f2f7f3; border: 1px solid #bcd9c4; border-radius: 12px;
  padding: 14px 17px; margin: 14px 0 0; font-size: .95rem; line-height: 1.55; }
.freeship .en { color: #5d6b60; font-size: .86rem; }
.voicegrid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); }
.voicegrid .card { text-align: center; }
.voicegrid img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin: 0 auto 10px; display: block; }
