/* Bowerbird. shared design system for the landing page (index.html) and the
   app shell (app.html). White / deep-green organic-editorial. No build step. */

:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --ink: #2b332c;
  --ink-soft: #6b756c;
  --ink-faint: #9aa49b;
  --green: #4e6b51;
  --green-deep: #37503b;
  --green-tint: #eef2ec;
  --green-line: #d8e0d6;
  --sand: #efece4;
  --line: #e7e5de;
  --danger: #a4574a;
  --danger-tint: #f7ece9;
  --amber: #a88a4a;
  --amber-tint: #f6ecd2;

  /* ---------- The collected color ----------
     Satin bowerbirds obsessively collect objects of exactly one color: blue.
     We borrow that idea for the brand: ONE accent, used sparingly, never as
     a background or a body-text color. #2f4f6f tuned slightly warmer/deeper
     than a pure "corporate" navy so it sits quietly next to the sage greens
     and cream instead of competing with them. Reserved for: the wordmark
     dot, one hero highlight, and the "collected objects" in the bowerbird
     illustration. Do not use it for buttons, links, or anything repeated
     more than a few times per page. */
  --blue-collected: #2f4f6f;
  --blue-collected-tint: #eaeff3;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(43, 51, 44, 0.05), 0 8px 24px rgba(43, 51, 44, 0.06);
  --serif: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button { font: inherit; }

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

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

.serif { font-family: var(--serif); }

/* ---------- Buttons ---------- */
.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
  white-space: nowrap;
}
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-primary { background: var(--green-deep); color: #fff; }
.btn-primary:hover:not(:disabled) { background: var(--green); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover:not(:disabled) { border-color: var(--green-line); background: var(--green-tint); }
.btn-outline-invert { background: transparent; border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-outline-invert:hover:not(:disabled) { background: rgba(255,255,255,0.12); }
.btn-invert { background: #fff; color: var(--green-deep); }
.btn-invert:hover:not(:disabled) { background: var(--sand); }
.btn-sm { padding: 7px 15px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-link {
  background: none; border: none; color: var(--green-deep); font-weight: 600;
  font-size: 13.5px; cursor: pointer; text-decoration: underline; text-underline-offset: 2px;
  padding: 2px 0;
}

/* ---------- Forms ---------- */
label { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; letter-spacing: 0.01em; }
input, select, textarea {
  width: 100%;
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 13px;
}
input::placeholder, textarea::placeholder { color: var(--ink-faint); }
textarea { resize: vertical; min-height: 84px; }
input:focus, select:focus, textarea:focus { border-color: var(--green); }
.field { margin-bottom: 16px; }
.field .hint { font-size: 12px; color: var(--ink-faint); margin-top: 5px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.field.check { display: flex; align-items: center; gap: 8px; }
.field.check input { width: auto; }
.field.check label { margin: 0; }

/* ---------- Banners ---------- */
.banner {
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 13.5px;
  border: 1px solid transparent;
  margin-bottom: 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.banner b { display: block; margin-bottom: 2px; }
.banner-error { background: var(--danger-tint); color: var(--danger); border-color: #ecd6d1; }
.banner-warn { background: var(--amber-tint); color: #7a611f; border-color: #e2d7ba; }
.banner-info { background: var(--green-tint); color: var(--green-deep); border-color: var(--green-line); }
.banner.hidden { display: none; }

/* ---------- Vine divider (organic motif reused across sections) ---------- */
.divider { display: flex; justify-content: center; margin: 8px 0; opacity: 0.9; }
.divider svg { width: 120px; height: 16px; }

/* =====================================================================
   LANDING PAGE
   ===================================================================== */
body.landing .wrap { padding-bottom: 0; }

.site-nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(251, 250, 247, 0.86);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-nav .inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; gap: 20px;
}
.logo {
  font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--green-deep);
  text-decoration: none; letter-spacing: 0.01em; display: flex; align-items: center; gap: 8px;
}
.logo .mark { color: var(--blue-collected); } /* the one collected color: touch 1 of 3 */
.logo-mark { width: 22px; height: auto; flex: none; display: block; }
.auth-card .logo .logo-mark { width: 27px; }
/* Reusable mark from /logo-mark.svg, sized per placement */
.hero-mark { width: 100%; max-width: 210px; height: auto; display: block; margin: 0 auto; }
.meaning-mark { width: 100%; max-width: 168px; height: auto; display: block; }
.site-nav nav { display: flex; align-items: center; gap: 28px; }
.site-nav nav a.nav-link { font-size: 13.5px; color: var(--ink-soft); text-decoration: none; }
.site-nav nav a.nav-link:hover { color: var(--ink); }
.site-nav .actions { display: flex; align-items: center; gap: 10px; }

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 64px;
}
.hero .eyebrow {
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint);
  margin-bottom: 16px; font-weight: 600;
}
.hero h1 {
  font-family: var(--serif); font-weight: 500; font-size: 52px; line-height: 1.12;
  color: var(--green-deep); letter-spacing: -0.01em;
}
.hero h1 { max-width: 16ch; }
.hero p.lede { margin-top: 20px; font-size: 17px; color: var(--ink-soft); max-width: 54ch; line-height: 1.6; }
.hero .hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero .hero-note { margin-top: 16px; font-size: 12.5px; color: var(--ink-faint); }

/* ---------- The meaning section (why "bowerbird") ---------- */
.meaning { padding: 8px 0 60px; }
.meaning-grid {
  max-width: 640px; margin: 0 auto;
}
.meaning-art { display: flex; align-items: center; justify-content: center; }
.meaning-art svg { width: 100%; max-width: 380px; height: auto; }
/* the collected objects in the illustration: touch 3 of 3. Hidden until the
   section scrolls into view, then they appear one by one, the way a bower
   slowly fills with found objects. Purely decorative; safe to disable. */
.meaning-art .collect-dot {
  opacity: 0; transform: scale(0.4); transform-origin: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.meaning.in-view .meaning-art .collect-dot { opacity: 1; transform: scale(1); }
.meaning-art .collect-dot:nth-of-type(1) { transition-delay: 0.05s; }
.meaning-art .collect-dot:nth-of-type(2) { transition-delay: 0.22s; }
.meaning-art .collect-dot:nth-of-type(3) { transition-delay: 0.39s; }
.meaning-art .collect-dot:nth-of-type(4) { transition-delay: 0.56s; }
@media (prefers-reduced-motion: reduce) {
  .meaning-art .collect-dot { transition: none; opacity: 1; transform: none; }
}

.meaning-copy .eyebrow {
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint);
  margin-bottom: 14px; font-weight: 600;
}
.dict-entry { margin-bottom: 26px; }
.dict-entry .word { font-family: var(--serif); font-size: 26px; color: var(--green-deep); }
.dict-entry .ipa { color: var(--ink-faint); font-size: 14px; margin-left: 8px; }
.dict-entry .pos { font-style: italic; color: var(--ink-faint); font-size: 13px; margin-left: 8px; }
.dict-entry .def { margin-top: 6px; color: var(--ink-soft); font-size: 14.5px; max-width: 54ch; }

.beats { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.beat { display: flex; gap: 14px; align-items: baseline; }
.beat .b-tag {
  flex-shrink: 0; width: 78px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green);
}
.beat p { font-family: var(--serif); font-size: 18px; color: var(--ink); line-height: 1.5; }
.meaning-close { font-size: 15.5px; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 18px; }
.meaning-close b { color: var(--green-deep); font-weight: 600; }

@media (max-width: 880px) {
  .meaning-grid { grid-template-columns: 1fr; gap: 30px; }
  .meaning-art svg { max-width: 240px; }
}

/* ---------- How it works ---------- */
.section { padding: 56px 0; }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 44px; }
.section-head .eyebrow {
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint);
  margin-bottom: 10px; font-weight: 600;
}
.section-head h2 { font-family: var(--serif); font-weight: 500; font-size: 32px; color: var(--green-deep); }
.section-head p { margin-top: 12px; color: var(--ink-soft); font-size: 15px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.step .num {
  font-family: var(--serif); font-size: 15px; color: var(--green); font-weight: 600;
  border: 1px solid var(--green-line); border-radius: 999px; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.step h3 { font-family: var(--serif); font-weight: 500; font-size: 19px; color: var(--ink); margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 30px 26px; display: flex; flex-direction: column;
  position: relative;
}
.price-card.featured { border-color: var(--green); box-shadow: 0 2px 4px rgba(55,80,59,0.08), 0 16px 32px rgba(55,80,59,0.12); }
.price-card.featured::before {
  content: "Most couples choose this"; position: absolute; top: -12px; left: 26px;
  background: var(--green-deep); color: #fff; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px;
}
.price-card .plan-name { font-family: var(--serif); font-size: 19px; color: var(--green-deep); margin-bottom: 6px; }
.price-card .plan-price { font-family: var(--serif); font-size: 34px; color: var(--ink); }
.price-card .plan-price small { font-family: var(--sans); font-size: 13px; color: var(--ink-faint); font-weight: 500; }
.price-card .plan-desc { color: var(--ink-soft); font-size: 13.5px; margin: 8px 0 20px; min-height: 40px; }
.price-card ul { list-style: none; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-card li { font-size: 13.5px; color: var(--ink); display: flex; gap: 9px; align-items: flex-start; }
.price-card li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--green-deep); border-radius: var(--radius-lg); color: #fff;
  padding: 54px 48px; text-align: center; margin: 20px 0 64px;
}
.cta-band h2 { font-family: var(--serif); font-weight: 500; font-size: 30px; }
.cta-band p { margin-top: 12px; color: rgba(255,255,255,0.78); font-size: 15px; }
.cta-band .hero-actions { justify-content: center; margin-top: 26px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line); padding: 28px 0 40px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.site-footer .logo { font-size: 15px; }
.site-footer .fine { color: var(--ink-faint); font-size: 12.5px; }
.site-footer nav { display: flex; gap: 18px; }
.site-footer nav a { font-size: 12.5px; color: var(--ink-soft); text-decoration: none; }
.site-footer nav a:hover { color: var(--ink); }

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; padding-top: 44px; }
  .hero-art { order: -1; }
  .hero-art svg { max-width: 220px; }
  .hero h1 { font-size: 38px; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .site-nav nav { display: none; }
}

/* =====================================================================
   APP SHELL
   ===================================================================== */
body.app-shell { min-height: 100vh; }
.app-header {
  padding: 26px 0 8px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.app-header .brand { display: flex; align-items: baseline; gap: 10px; }
.app-header .brand .sub { color: var(--ink-faint); font-size: 12.5px; }
.app-header .right { display: flex; align-items: center; gap: 14px; }

.stat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 9px 16px; min-width: 92px; box-shadow: var(--shadow); text-align: center;
}
.stat .k { font-size: 10px; text-transform: uppercase; letter-spacing: 0.09em; color: var(--ink-faint); }
.stat .v { font-family: var(--serif); font-size: 19px; color: var(--green-deep); margin-top: 1px; }
.stat.low .v { color: var(--danger); }

.user-menu { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--ink-soft); }
.user-menu b { color: var(--ink); }

/* ---------- Tabs ---------- */
nav.tabs {
  display: flex; gap: 6px; margin: 30px 0 26px; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: var(--bg); z-index: 20; padding-top: 6px;
}
nav.tabs button {
  appearance: none; border: none; background: none; font: inherit; font-size: 14.5px;
  color: var(--ink-soft); padding: 10px 16px 12px; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px; letter-spacing: 0.01em;
}
nav.tabs button:hover { color: var(--ink); }
nav.tabs button.active { color: var(--green-deep); font-weight: 600; border-bottom-color: var(--green); }

section.tab-panel { display: none; }
section.tab-panel.active { display: block; }

h2.section-title { font-family: var(--serif); font-weight: 500; font-size: 21px; color: var(--green-deep); margin: 4px 0 4px; }
.section-note { color: var(--ink-soft); font-size: 13.5px; margin-bottom: 18px; }

/* ---------- Auth screen ---------- */
.auth-screen {
  min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px;
}
.auth-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 40px 38px; width: 100%; max-width: 400px;
}
.auth-card .logo { justify-content: center; margin-bottom: 6px; }
.auth-card .sub { text-align: center; color: var(--ink-soft); font-size: 13.5px; margin-bottom: 26px; }
.auth-toggle { display: flex; background: var(--sand); border-radius: 999px; padding: 3px; margin-bottom: 24px; }
.auth-toggle button {
  flex: 1; border: none; background: none; padding: 9px 0; border-radius: 999px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft); cursor: pointer;
}
.auth-toggle button.active { background: #fff; color: var(--green-deep); box-shadow: var(--shadow); }
.auth-form { display: none; }
.auth-form.active { display: block; }

/* ---------- Search list + form ---------- */
.layout-2col { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.search-list { display: flex; flex-direction: column; gap: 8px; }
.search-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px; text-align: left; cursor: pointer; width: 100%;
}
.search-item:hover { border-color: var(--green-line); }
.search-item.active { border-color: var(--green); background: var(--green-tint); }
.search-item .si-label { font-weight: 600; font-size: 13.5px; color: var(--ink); }
.search-item .si-meta { font-size: 12px; color: var(--ink-faint); margin-top: 2px; }

.card-panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 24px 26px;
}

.upload-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.upload-row input[type=file] { flex: 1; min-width: 200px; font-size: 13px; }
.moodboard-status { font-size: 12.5px; color: var(--green-deep); }

.run-status {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: 12px;
  background: var(--green-tint); color: var(--green-deep); font-size: 13.5px; margin: 16px 0;
}
.run-status .spinner {
  width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--green-line);
  border-top-color: var(--green-deep); animation: spin 0.8s linear infinite; flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Venue cards ---------- */
.venue-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; margin-top: 18px; }
.venue-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px 18px 16px; display: flex; flex-direction: column;
  gap: 11px; position: relative;
}
.venue-card.is-fav { border-color: #e2cf9f; }

.vc-photo { position: relative; margin: -18px -18px 2px; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; background: var(--sand); height: 168px; }
.vc-photo img { width: 100%; height: 100%; object-fit: cover; }
.vc-photo .ph-fallback {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: var(--ink-faint); font-family: var(--serif); font-size: 13px; text-align: center; padding: 10px;
}
.vc-fav {
  position: absolute; top: 10px; left: 10px; z-index: 3; width: 30px; height: 30px; border-radius: 50%;
  border: none; cursor: pointer; background: rgba(255,255,255,0.92); color: var(--ink-faint);
  font-size: 15px; line-height: 1; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 4px rgba(43,51,44,0.2); padding: 0;
}
.vc-fav:hover { color: var(--amber); }
.venue-card.is-fav .vc-fav { color: #d8a531; }

.vc-top { display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; }
.vc-name { font-family: var(--serif); font-size: 17px; color: var(--ink); line-height: 1.3; }
.vc-hood { color: var(--ink-faint); font-size: 12px; margin-top: 2px; }

.style-tag {
  flex-shrink: 0; font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px; background: var(--sand); color: var(--ink-soft); white-space: nowrap;
}
.style-tag.waterfront { background: #e3edf0; color: #3d6470; }
.style-tag.garden { background: var(--green-tint); color: var(--green-deep); }
.style-tag.modern { background: #eceaf2; color: #575072; }
.style-tag.niche { background: #f0ece1; color: #7a6535; }
.style-tag.mexico { background: #f4e6dd; color: #9a5a3c; }

.fit { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink-soft); }
.fit .dots { display: inline-flex; gap: 3px; }
.fit .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line); }
.fit .dot.on { background: var(--green); }

.vc-costs { display: flex; justify-content: space-between; background: var(--bg); border-radius: 10px; padding: 9px 12px; font-size: 12.5px; }
.vc-costs .c .k { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-faint); }
.vc-costs .c .v { font-weight: 600; color: var(--green-deep); margin-top: 1px; }

.vc-notes { font-size: 12.5px; color: var(--ink-soft); line-height: 1.5; }
.vc-flags { font-size: 12px; color: var(--danger); line-height: 1.5; }
.vc-flags::before { content: "⚑ "; }

.vc-bottom { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-top: auto; padding-top: 6px; flex-wrap: wrap; }
select.status {
  appearance: none; font: inherit; font-size: 12px; font-weight: 600; border-radius: 999px;
  padding: 5px 24px 5px 11px; cursor: pointer; border: 1px solid var(--line); color: var(--ink-soft);
  background-color: var(--surface);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M1 1l4 4 4-4' fill='none' stroke='%236b756c' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat; background-position: right 9px center;
}
select.status.s-inquiry-drafted, select.status.s-inquiry-sent { background-color: #f0ead9; color: var(--amber); border-color: #e2d7ba; }
select.status.s-quote-received, select.status.s-tour-booked { background-color: var(--green-tint); color: var(--green-deep); border-color: var(--green-line); }
select.status.s-decision { background-color: var(--green-deep); color: #fff; border-color: var(--green-deep); }

.vc-links { font-size: 12px; }
.vc-links a { color: var(--green-deep); text-decoration: none; border-bottom: 1px solid var(--green-line); }
.vc-links a:hover { border-bottom-color: var(--green); }

.empty-state {
  border: 1.5px dashed var(--green-line); border-radius: var(--radius); background: var(--surface);
  padding: 44px 30px; text-align: center; color: var(--ink-soft);
}
.empty-state h3 { font-family: var(--serif); font-weight: 500; color: var(--green-deep); font-size: 18px; margin-bottom: 6px; }

.app-footer { margin-top: 60px; padding: 24px 0 40px; color: var(--ink-faint); font-size: 12px; text-align: center; }

@media (max-width: 760px) {
  .layout-2col { grid-template-columns: 1fr; }
  .field-row, .field-row.cols-3 { grid-template-columns: 1fr; }
}

/* hidden attribute must always win over display rules */
[hidden] { display: none !important; }
