/* ==========================================================================
   Unterseiten-Ergänzungen — nutzt ausschließlich die Design-Tokens aus
   styles.css. Ändert NICHT das freigegebene Startseiten-Design.
   ========================================================================== */

/* Einheitliche Text-Skala (Unterseiten): nur 3 Nicht-Überschrift-Größen +
   die Überschriften-Tokens (--step-*). */
:root {
  --fs-label: 0.75rem;  /* uppercase Micro-Labels (Tabellenkopf, Chip-Gruppen) */
  --fs-small: 0.9rem;   /* Kleintext: Captions, Notizen, Tabellenzellen, Formular, Namen */
  --fs-body:  1.0625rem;/* Fließtext (Absätze, Listen) */
}

/* Seiten-Header (statt Video-Hero der Startseite) */
.page-hero {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-start;
  min-height: 560px;
  background-color: var(--forest);
  background-image: linear-gradient(105deg, rgba(14,42,30,0.94) 0%, rgba(14,42,30,0.82) 45%, rgba(14,42,30,0.55) 100%), var(--hero-img, none);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  color: var(--cream);
  padding: 9.5rem 0 3.5rem;
  overflow: hidden;
}
@media (max-width: 700px) { .page-hero { min-height: 420px; padding-top: 8.75rem; } }
/* Kompakter Hero für News-Detailseiten (nur Datum + Titel) */
.page-hero.post-hero { min-height: 380px; }
@media (max-width: 700px) { .page-hero.post-hero { min-height: 300px; } }
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.55;
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 162, 75, 0.16) 0, transparent 42%),
    radial-gradient(circle at 85% 85%, rgba(46, 139, 87, 0.22) 0, transparent 45%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero h1 {
  font-family: var(--font-serif); font-weight: 600; line-height: 1.05;
  font-size: var(--step-3); margin: 1rem 0 0; max-width: 20ch;
}
.page-hero h1 em { font-style: italic; color: var(--gold-soft); }
.page-hero .lead { color: rgba(247, 245, 239, 0.85); max-width: 62ch; margin-top: 1.5rem; }
.page-hero h1 { margin-bottom: 0; }
.crumbs { font-size: var(--fs-small); letter-spacing: 0.02em; color: rgba(247, 245, 239, 0.6); margin-bottom: 0.5rem; }
.crumbs a { color: rgba(247, 245, 239, 0.78); }
.crumbs a:hover { color: var(--gold-soft); }

/* Anker-Sektionen: Offset wegen fixierter Nav */
[id] { scroll-margin-top: 6.5rem; }

/* Rhythmus: aufeinanderfolgende HELLE Sektionen zusammenrücken (einfacher
   Abstand statt doppelt). Übergänge zu/von dunklen Sektionen (.band/.live)
   behalten den vollen Abstand für Luft am Farbwechsel. */
.section:not(.band):not(.live) + .section:not(.band):not(.live) { padding-top: 0; }

/* Abschnitts-Kopf */
.sec-head { max-width: 54ch; margin-bottom: 2.4rem; }
.sec-head h2 { margin: 0.8rem 0 1.25rem; }
.sec-head .lead { margin-top: 0; }

/* Einheitliche Fließtext-Größe auf den Unterseiten
   (Lead bleibt groß; Tabellen, Notizen, Chips & Captions bleiben klein) */
.section .wrap p:not(.lead):not(.tbl-note):not(.form-note),
.section .wrap li {
  font-size: var(--fs-body);
  line-height: 1.65;
}

/* Fließtext in dunklen Sektionen (Band/Live) heller für ausreichenden Kontrast */
.band .split-body p, .live .split-body p,
.band .split-body li, .live .split-body li,
.band .prose, .live .prose { color: rgba(247, 245, 239, 0.85); }

/* CTA-Baustein behält seine eigene (größere) Typografie wie auf der Startseite,
   nicht die vereinheitlichte Unterseiten-Fließtextgröße */
.section .wrap .cta p { font-size: var(--step-1) !important; line-height: 1.7 !important; }

/* Porträt-Media (z. B. Pro-Foto): Hochformat, native Größe, nicht hochskaliert */
.split-media.pro-portrait { aspect-ratio: 387 / 363; width: 100%; max-width: 500px; justify-self: center; }

/* Fließtext */
.prose { max-width: 68ch; }
.prose > * + * { margin-top: 1.1rem; }
.prose h3 { font-family: var(--font-serif); font-size: var(--step-1); margin-top: 2rem; }
.prose a { color: var(--fairway); text-decoration: underline; text-underline-offset: 3px; }
.prose ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.prose ul li { position: relative; padding-left: 1.6rem; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--gold);
}

/* Preis-/Datentabelle im Design */
.tbl-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-soft); background: var(--white); }
.tbl { width: 100%; border-collapse: collapse; background: var(--white); color: var(--ink); min-width: 460px; }
.tbl th, .tbl td { text-align: left; padding: 0.95rem 1.3rem; border-bottom: 1px solid var(--line); font-size: var(--fs-small); }
.tbl thead th { background: var(--forest); color: var(--cream); font-weight: 600; font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; padding-top: 0.85rem; padding-bottom: 0.85rem; }
.tbl th:not(:first-child), .tbl td:not(:first-child) { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.tbl tbody td { transition: background 0.15s var(--ease); }
.tbl tbody td:first-child { font-weight: 500; color: var(--forest); }
.tbl tbody tr:nth-child(even) td { background: rgba(14, 42, 30, 0.035); }
.tbl tbody tr:hover td { background: rgba(201, 162, 75, 0.1); }
.tbl tbody tr:last-child td { border-bottom: none; }
.tbl-note { font-size: var(--fs-small); color: var(--muted); margin-top: 0.8rem; }
@media (max-width: 560px) {
  .tbl { min-width: 0; }
  .tbl th, .tbl td { padding: 0.7rem 0.8rem; }
  .tbl thead th { letter-spacing: 0.04em; }
}

/* Kompakte Detail-Liste (Label ↔ Wert), z. B. Turnierinfos */
.meta-list { display: grid; gap: 0; max-width: 480px; margin: 0; border-top: 1px solid var(--line); }
.meta-list > div { display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem; padding: 0.75rem 0; border-bottom: 1px solid var(--line); }
.meta-list dt { color: var(--muted); font-size: var(--fs-small); flex: none; }
.meta-list dd { margin: 0; font-weight: 600; color: var(--forest); text-align: right; }

/* Personen-Karten mit Avatar (z. B. Vorstand) */
.person-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
.person { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.4rem 1rem 1.2rem; text-align: center; }
.person .avatar { width: 84px; height: 84px; border-radius: 50%; overflow: hidden; margin: 0 auto 0.9rem; background: var(--cream-2); box-shadow: 0 6px 16px -8px rgba(14,42,30,0.5); }
.person .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.person b { display: block; font-size: var(--fs-small); color: var(--forest); line-height: 1.2; }
.person span { display: block; color: var(--muted); font-size: var(--fs-small); margin-top: 0.25rem; }

/* Karten-Raster für Personen/Bahnen/Listen */
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.tile { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.15rem 1.3rem; }
.tile b { display: block; font-size: var(--fs-small); color: var(--forest); }
.tile span { display: block; color: var(--muted); font-size: var(--fs-small); margin-top: 0.2rem; }
.tile .role { color: var(--fairway); font-weight: 500; }

/* ===== Bahn-Gallery (18 Löcher) ===== */
.bahn-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.bahn-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.bahn-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.bahn-card figure { margin: 0; }
.bahn-card .ph { position: relative; aspect-ratio: 795 / 1307; overflow: hidden; background: var(--cream); }
.bahn-card .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bahn-card .no { position: absolute; top: 0.7rem; left: 0.7rem; display: inline-flex; align-items: center; justify-content: center; min-width: 2rem; height: 2rem; padding: 0 0.5rem; background: rgba(14,42,30,0.9); color: var(--cream); border-radius: 999px; font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.02em; }
.bahn-card figcaption { padding: 0.85rem 1.05rem 1rem; }
.bahn-card figcaption b { display: block; color: var(--forest); font-size: var(--fs-body); }
.bahn-card figcaption span { display: block; color: var(--muted); font-size: var(--fs-small); margin-top: 0.2rem; font-variant-numeric: tabular-nums; }

/* Bahn-Gallery als aufklappbare Sektion */
.bahn-toggle { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); overflow: hidden; }
.bahn-toggle > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 1rem; padding: 1.15rem 1.5rem; }
.bahn-toggle > summary::-webkit-details-marker { display: none; }
.bahn-toggle > summary:hover { background: rgba(46, 139, 87, 0.05); }
.bahn-toggle .bt-txt { display: flex; flex-direction: column; gap: 0.25rem; }
.bahn-toggle .bt-txt b { color: var(--forest); font-size: var(--step-1); font-weight: 600; }
.bahn-toggle .bt-cta { margin-left: auto; display: inline-flex; align-items: center; gap: 0.55rem; color: var(--fairway); font-weight: 600; font-size: var(--fs-small); white-space: nowrap; }
.bahn-toggle .bt-cta::after { content: ""; width: 0.55rem; height: 0.55rem; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform 0.2s var(--ease); }
.bahn-toggle[open] .bt-cta::after { transform: rotate(-135deg); }
.bahn-toggle[open] > summary { border-bottom: 1px solid var(--line); }
.bahn-toggle .bahn-panel { padding: 1.4rem 1.5rem 1.6rem; }
@media (max-width: 560px) { .bahn-toggle > summary { padding: 1rem 1.1rem; } .bahn-toggle .bahn-panel { padding: 1.1rem; } .bahn-toggle .bt-cta { font-size: var(--fs-label); } }

/* Download-Karten (Scorecard & Tabellen) */
.dl-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.dl-card { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.25rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); color: var(--ink); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease); }
.dl-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(201, 162, 75, 0.55); }
.dl-ic { flex: none; width: 2.75rem; height: 2.75rem; display: grid; place-items: center; border-radius: 12px; background: rgba(46, 139, 87, 0.10); color: var(--fairway); }
.dl-ic svg { width: 1.35rem; height: 1.35rem; }
.dl-tx { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.dl-tx b { color: var(--forest); font-size: var(--fs-body); font-weight: 600; }
.dl-tx span { color: var(--muted); font-size: var(--fs-label); letter-spacing: 0.06em; text-transform: uppercase; }
.dl-arr { flex: none; margin-left: auto; width: 1.1rem; height: 1.1rem; color: var(--gold); transition: transform 0.2s var(--ease); }
.dl-card:hover .dl-arr { transform: translateY(3px); }

/* Partnerhotels (Übernachten) — verlinkte Karten, gleiche Höhe */
.hotel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; align-items: stretch; }
.hotel-card { display: flex; flex-direction: column; gap: 0.7rem; height: 100%; padding: 1.2rem 1.3rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); color: var(--ink); text-decoration: none; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease); }
.hotel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(201, 162, 75, 0.5); }
.hotel-card .hc-top { display: flex; align-items: center; }
.hotel-card .hc-ic { flex: none; width: 2.6rem; height: 2.6rem; display: grid; place-items: center; border-radius: 50%; background: rgba(46, 139, 87, 0.10); color: var(--fairway); }
.hotel-card .hc-ic svg { width: 1.25rem; height: 1.25rem; }
.hotel-card .hc-dist { flex: none; margin-left: auto; font-size: var(--fs-label); font-weight: 600; color: var(--forest); background: rgba(201, 162, 75, 0.16); padding: 0.32rem 0.65rem; border-radius: 999px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.hotel-card .hc-tx b { display: block; color: var(--forest); font-size: var(--fs-body); font-weight: 600; line-height: 1.25; min-height: 2.5em; }
.hotel-card .hc-loc { display: block; color: var(--muted); font-size: var(--fs-small); margin-top: 0.15rem; }
.hotel-card .hc-go { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: auto; color: var(--fairway); font-size: var(--fs-small); font-weight: 600; }
.hotel-card .hc-go svg { width: 0.9rem; height: 0.9rem; transition: transform 0.2s var(--ease); }
.hotel-card:hover .hc-go svg { transform: translateX(3px); }


/* ===== Aufklappbare Platzregeln (Accordion) ===== */
.rules { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.4rem; }
.rules details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-soft); overflow: hidden; }
.rules summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 0.8rem; padding: 0.95rem 1.2rem; font-weight: 500; color: var(--forest); font-size: var(--fs-body); }
.rules summary::-webkit-details-marker { display: none; }
.rules summary::after { content: ""; margin-left: auto; width: 0.6rem; height: 0.6rem; border-right: 2px solid var(--fairway); border-bottom: 2px solid var(--fairway); transform: rotate(45deg); transition: transform 0.2s var(--ease); flex: none; }
.rules details[open] summary::after { transform: rotate(-135deg); }
.rules summary:hover { background: rgba(46, 139, 87, 0.06); }
.rules .rule-body { padding: 0 1.2rem 1.1rem; color: var(--ink); font-size: var(--fs-small); line-height: 1.65; }
.rules .rule-body p { margin: 0 0 0.5rem; }
.rules .rule-body p:last-child { margin-bottom: 0; }
.rules .rule-body ul { margin: 0.3rem 0 0.6rem 1.1rem; padding: 0; }
.rules .rule-body li { margin-bottom: 0.25rem; }
.rules .rule-body .ref { color: var(--muted); font-size: var(--fs-label); letter-spacing: 0.02em; }

/* Partner-/Sponsoren-Logowand — vereinheitlicht beliebige Logo-Größen:
   feste, gleich hohe Kacheln, Logo per object-fit zentriert (kein Verzerren,
   kein Hochskalieren winziger Rastergrafiken über ihre native Größe hinaus). */
.logo-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1rem; }
.logo-cell {
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  min-height: 120px; padding: 1.3rem 1.5rem;
}
.logo-cell img {
  max-width: 100%; max-height: 64px; width: auto; height: auto;
  object-fit: contain; display: block;
}
a.logo-cell { transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease); }
a.logo-cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: rgba(201, 162, 75, 0.5); }
@media (max-width: 520px) { .logo-wall { grid-template-columns: repeat(2, 1fr); } .logo-cell { min-height: 100px; } }

/* Partner-/Sponsoren-Chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 0.55rem 1.05rem; font-size: var(--fs-small); font-weight: 500; color: var(--forest); }
.chip-group + .chip-group { margin-top: 1.6rem; }
.chip-group h4 { font-size: var(--fs-label); letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.9rem; font-weight: 600; }

/* Timeline (Historie) */
.timeline { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; border-left: 2px solid var(--line); padding-left: 1.5rem; margin: 0; }
.timeline li { position: relative; }
.timeline li::before { content: ""; position: absolute; left: calc(-1.5rem - 6px); top: 0.35em; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px var(--cream); }
.timeline b { color: var(--fairway); margin-right: 0.5rem; }

/* News-Liste */
.news { display: grid; gap: 1.1rem; }
.news-item { display: grid; grid-template-columns: 160px 1fr auto; gap: 1.2rem 1.6rem; align-items: start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.4rem 1.6rem; }
.news-item .date { font-family: var(--font-serif); font-weight: 600; color: var(--forest); font-size: var(--step-1); line-height: 1.15; white-space: nowrap; }
.news-item .btn { align-self: center; white-space: nowrap; }
.news-item h3 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 0.4rem; }
.news-item p { color: var(--muted); }
@media (max-width: 720px) {
  .news-item { grid-template-columns: 1fr; gap: 0.4rem; }
  .news-item .btn { align-self: start; justify-self: start; margin-top: 0.6rem; }
}

/* Beiträge / Blog (Aktuelles) — Grid mit Titelbild */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 980px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
.post-tile { display: flex; flex-direction: column; height: 100%; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); overflow: hidden; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.post-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.post-cover { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--cream); }
.post-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s var(--ease); }
.post-tile:hover .post-cover img { transform: scale(1.04); }
.post-tile-body { display: flex; flex-direction: column; flex: 1 1 auto; padding: 1.5rem 1.6rem 1.6rem; }
.post-tile .post-date { display: inline-flex; align-items: center; gap: 0.5rem; font-size: var(--fs-label); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--gold); }
.post-tile .post-date::before { content: ""; width: 22px; height: 1px; background: var(--gold); opacity: 0.8; }
.post-tile h2 { font-family: var(--font-serif); font-size: var(--step-1); color: var(--forest); line-height: 1.2; margin: 0.6rem 0 0.7rem; }
.post-tile h2 a { color: inherit; }
.post-tile .post-excerpt { color: var(--muted); font-size: var(--fs-small); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-tile .btn { align-self: flex-start; margin-top: 1.3rem; }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }

/* Beitrag — Detailseite */
.article { max-width: 760px; margin: 0 auto; }
.article p { color: var(--ink); font-size: var(--fs-body); line-height: 1.75; }
.article p + p { margin-top: 1.1rem; }
.article-back { margin-top: 2.4rem; }

/* Zwei Spalten */
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 1rem + 3vw, 3rem); align-items: start; }
@media (max-width: 820px) { .cols-2 { grid-template-columns: 1fr; } }

/* Vorstand-Zeile: Historie-Timeline füllt die volle Spaltenhöhe,
   damit linke (Historie) und rechte Spalte unten bündig enden */
.cols-2.greenfee-extras { align-items: stretch; }
.cols-2.greenfee-extras > div:last-child { display: flex; flex-direction: column; }
.cols-2.greenfee-extras > div:last-child > .tbl-wrap:last-child { flex: 1 1 auto; }
.cols-2.vorstand-row { align-items: stretch; }
.cols-2.vorstand-row > div:first-child { display: flex; flex-direction: column; }
.cols-2.vorstand-row .timeline { flex: 1 1 auto; justify-content: space-between; }
@media (max-width: 820px) { .cols-2.vorstand-row .timeline { flex: none; justify-content: flex-start; } }

/* Download-/Info-Buttons Reihe */
.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }

/* Download-Liste (Dokumente/PDF) */
.dl-list { list-style: none; display: flex; flex-direction: column; gap: 0; margin: 1.2rem 0 0; max-width: 460px; }
.dl-list a { display: flex; align-items: center; gap: 0.6rem; color: var(--forest); font-weight: 500; padding: 0.65rem 0; border-bottom: 1px solid var(--line); transition: color 0.2s var(--ease); }
.dl-list a:hover { color: var(--fairway); }
.dl-list a svg { width: 18px; height: 18px; color: var(--gold); flex: none; }
.dl-list a .ext { margin-left: auto; font-size: var(--fs-label); font-weight: 600; color: var(--muted); letter-spacing: 0.05em; }

/* Antrag-Layout: Formular + Foto nebeneinander (füllt die Breite) */
.antrag-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr); gap: clamp(2rem, 4vw, 3.5rem); }
.antrag-media img { width: 100%; height: 560px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-soft); position: sticky; top: 6.5rem; }
@media (max-width: 900px) { .antrag-grid { grid-template-columns: 1fr; } .antrag-media { display: none; } }

/* Formular (Mitglied werden) */
.form { display: grid; gap: 1.1rem; max-width: 760px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-row.three { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 620px) { .form-row, .form-row.three { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.02em; color: var(--forest); }
.field .req { color: var(--green); }
.field input, .field select, .field textarea {
  font: inherit; font-size: var(--fs-small); color: var(--ink); width: 100%;
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 0.7rem 0.9rem; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.22);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: var(--fs-small); color: var(--muted); }
.form-consent input { margin-top: 0.25rem; flex: none; width: 18px; height: 18px; accent-color: var(--fairway); }
.form-consent a { color: var(--fairway); text-decoration: underline; text-underline-offset: 3px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; margin-top: 0.4rem; }
.form-status { font-size: var(--fs-small); color: var(--fairway); font-weight: 500; }
