/* Saiid Kobeisy — couture house identity
 * Ivory atelier + ink + whisper gold.
 */

@font-face { font-display: swap; }

:root {
  --bg: #FBFAF7;
  --surface: #FFFFFF;
  --text: #1A1A1A;
  --ink-soft: #2A2724;
  --muted: #6E6A63;
  --muted-2: #9C968B;
  --primary: #1A1A1A;
  --secondary: #8C6B4F;
  --accent: #B08D57;
  --accent-soft: #C9A876;
  --border: #E7E2D9;
  --border-strong: #D6CFC2;
  --focus: #B08D57;
  --shadow-card: 0 1px 0 rgba(26,26,26,0.04);

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --page-x: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 10vw, 128px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, [role="button"]:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 1px solid var(--focus);
  outline-offset: 2px;
}

::selection { background: #1A1A1A; color: var(--bg); }

/* Typography */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.005em; }
.mono { font-family: var(--mono); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow.gold { color: var(--accent); }

h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.05; }
h1 { font-size: clamp(48px, 7vw, 104px); letter-spacing: -0.01em; }
h2 { font-size: clamp(36px, 5vw, 64px); letter-spacing: -0.008em; }
h3 { font-size: clamp(24px, 2.6vw, 32px); }
h4 { font-size: clamp(18px, 1.6vw, 22px); letter-spacing: 0; }

p { margin: 0; color: var(--ink-soft); }

/* App scaffolding */
#root { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

/* Topbar */
.topbar {
  background: #1A1A1A;
  color: var(--bg);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px var(--page-x);
}
.topbar a { color: var(--accent-soft); border-bottom: 1px solid rgba(201,168,118,0.4); padding-bottom: 1px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,247,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--page-x);
  gap: 24px;
}
.nav-links { display: flex; gap: 26px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }
.nav-links button {
  background: none; border: 0; padding: 6px 0; color: var(--ink-soft); font: inherit; letter-spacing: inherit; text-transform: inherit; cursor: pointer;
  position: relative;
}
.nav-links button::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px; background: var(--accent); transition: right 0.35s ease;
}
.nav-links button:hover::after, .nav-links button.active::after { right: 0; }
.nav-links button.active { color: var(--text); }

.nav-logo {
  display: flex; justify-content: center; align-items: center;
}
.wordmark {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 18px;
  white-space: nowrap;
  color: var(--text);
}
.wordmark .amp { letter-spacing: 0.12em; }
.wordmark-small { font-size: 14px; }

.nav-right {
  display: flex; align-items: center; justify-content: flex-end; gap: 18px; font-size: 12px;
}
.locale-toggle {
  display: inline-flex; gap: 0; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--border-strong); border-radius: 0;
}
.locale-toggle button {
  background: none; border: 0; padding: 6px 10px; font: inherit; letter-spacing: inherit; text-transform: inherit; color: var(--muted); cursor: pointer;
}
.locale-toggle button.active { background: var(--text); color: var(--bg); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid var(--text);
  background: var(--text); color: var(--bg);
  padding: 14px 22px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn.ghost { background: transparent; color: var(--text); }
.btn.ghost:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn.gold { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn.gold:hover { background: var(--text); border-color: var(--text); }
.btn.sm { padding: 10px 16px; font-size: 10px; }
.btn.lg { padding: 18px 30px; }
.btn .arrow { display: inline-block; transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* Sticky CTA */
.appt-pill {
  position: fixed; right: 24px; bottom: 24px; z-index: 40;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--text); color: var(--bg);
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  box-shadow: 0 12px 40px rgba(26,26,26,0.25);
  cursor: pointer; border: 0;
}
.appt-pill:hover { background: var(--accent); }
.appt-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-soft); }
.appt-pill .dot.live { animation: pulse 2s infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(176,141,87,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(176,141,87,0); }
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: calc(100vh - 88px - 38px);
}
.hero-copy {
  padding: clamp(48px, 8vw, 96px) clamp(28px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: center; gap: 36px;
  position: relative;
}
.hero-copy .signature {
  position: absolute; left: clamp(28px, 5vw, 80px); top: clamp(40px, 6vw, 80px);
}
.hero-display {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(56px, 8.5vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.012em;
}
.hero-display em {
  font-style: italic; font-family: var(--serif); color: var(--secondary);
  font-weight: 400;
}
.hero-meta {
  display: flex; gap: 28px; flex-wrap: wrap; margin-top: 8px;
}
.hero-meta > div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .num { font-family: var(--serif); font-size: 28px; }
.hero-meta .lbl { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 12px; }
.hero-image { position: relative; background: var(--surface); overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image .frame-tag {
  position: absolute; left: 24px; top: 24px;
  background: rgba(251,250,247,0.94); padding: 10px 14px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}
.hero-image .frame-tag strong { display: block; color: var(--text); font-weight: 500; letter-spacing: 0.18em; margin-top: 3px; }
.hero-image .swap-row {
  position: absolute; right: 24px; bottom: 24px; display: flex; gap: 8px;
}
.hero-image .swap-row button {
  width: 42px; height: 42px; border: 1px solid rgba(231,226,217,0.7); background: rgba(251,250,247,0.9); cursor: pointer; padding: 0;
}
.hero-image .swap-row button img { width: 100%; height: 100%; object-fit: cover; }
.hero-image .swap-row button.active { outline: 1.5px solid var(--accent); outline-offset: 2px; }

/* Section frame */
section { padding: var(--section-y) var(--page-x); }
section + section { border-top: 1px solid var(--border); }

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 56px;
}
.section-head .lhs { display: flex; flex-direction: column; gap: 12px; max-width: 720px; }
.section-head p { color: var(--muted); max-width: 56ch; }
.section-head .rhs { display: flex; gap: 12px; font-size: 12px; align-items: center; }

/* Trust spine */
.trust {
  background: var(--text); color: #EFEAE0;
  padding: 64px var(--page-x);
  border-top: 1px solid var(--text);
  border-bottom: 1px solid var(--text);
}
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; align-items: start; }
.trust-cell { display: flex; flex-direction: column; gap: 6px; border-left: 1px solid rgba(239,234,224,0.18); padding-left: 22px; }
.trust-cell .num { font-family: var(--serif); font-size: clamp(36px, 4vw, 52px); color: #fff; letter-spacing: -0.01em; }
.trust-cell .lbl { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-soft); }
.trust-cell p { color: rgba(239,234,224,0.7); font-size: 13px; max-width: 30ch; }

/* Line tiles */
.line-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.line-tile {
  position: relative; background: var(--surface); overflow: hidden; cursor: pointer; min-height: 540px;
}
.line-tile .ph { position: absolute; inset: 0; overflow: hidden; }
.line-tile .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.line-tile:hover .ph img { transform: scale(1.04); }
.line-tile .ph::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.55) 0%, rgba(26,26,26,0) 55%);
}
.line-tile .body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 36px 32px;
  color: #fff;
  display: flex; flex-direction: column; gap: 8px;
}
.line-tile .body h3 { color: #fff; }
.line-tile .body p { color: rgba(255,255,255,0.78); font-size: 13px; max-width: 36ch; }
.line-tile .more { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-soft); margin-top: 12px; display: inline-flex; gap: 8px; align-items: center; }

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(20px, 2vw, 36px);
}
.product-card {
  display: flex; flex-direction: column; gap: 14px; cursor: pointer;
  text-align: left;
  background: none; border: 0; padding: 0; font: inherit; color: inherit;
}
.product-card .image-wrap {
  position: relative; aspect-ratio: 3/4; background: var(--surface); overflow: hidden;
  border: 1px solid var(--border);
}
.product-card .image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.product-card:hover .image-wrap img { transform: scale(1.02); }
.product-card .badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(251,250,247,0.92);
  padding: 6px 10px; font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}
.product-card .quickview {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  background: var(--text); color: var(--bg);
  padding: 10px 12px; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0; transform: translateY(6px); transition: opacity 0.3s ease, transform 0.3s ease;
  text-align: center;
}
.product-card:hover .quickview { opacity: 1; transform: translateY(0); }

.product-meta { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.product-meta .name { font-family: var(--serif); font-size: 20px; line-height: 1.15; }
.product-meta .line { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.product-meta .price { font-family: var(--sans); font-size: 13px; color: var(--text); white-space: nowrap; }
.product-meta .price.req { color: var(--accent); font-style: italic; font-family: var(--serif); font-size: 16px; }

/* Filter chips */
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  padding: 8px 14px; border: 1px solid var(--border-strong); background: transparent; cursor: pointer;
}
.chip.active { background: var(--text); color: var(--bg); border-color: var(--text); }
.chip:hover { color: var(--text); }
.chip .n { color: var(--muted-2); margin-left: 6px; font-size: 10px; }
.chip.active .n { color: var(--accent-soft); }

/* Product detail modal */
.modal-scrim {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(26,26,26,0.55); backdrop-filter: blur(4px);
  display: flex; justify-content: flex-end;
  animation: scrimIn 0.25s ease;
}
@keyframes scrimIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  width: min(960px, 92vw); height: 100vh; overflow-y: auto;
  background: var(--bg);
  animation: slideIn 0.4s cubic-bezier(.16,.84,.34,1);
  display: grid; grid-template-rows: auto 1fr;
}
@keyframes slideIn { from { transform: translateX(40px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.modal-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 28px; border-bottom: 1px solid var(--border);
  background: var(--bg); position: sticky; top: 0; z-index: 2;
}
.modal-head .crumbs { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); display: flex; gap: 10px; }
.modal-head .crumbs .sep { color: var(--border-strong); }
.modal-close {
  background: none; border: 0; cursor: pointer; padding: 8px;
  font-size: 18px; line-height: 1; color: var(--text);
}
.modal-body { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; }
.modal-image { background: var(--surface); border-right: 1px solid var(--border); position: sticky; top: 60px; align-self: start; height: calc(100vh - 60px); }
.modal-image img { width: 100%; height: 100%; object-fit: cover; }
.modal-info { padding: 48px 44px; display: flex; flex-direction: column; gap: 28px; }
.modal-info h2 { font-size: 44px; line-height: 1; }
.modal-info .price-row { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 0; }
.modal-info .price-row .v { font-family: var(--serif); font-size: 26px; }
.modal-info .price-row .v.req { color: var(--accent); font-style: italic; }
.modal-info .spec-list { display: grid; gap: 18px; }
.modal-info .spec-list > div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding-bottom: 16px; border-bottom: 1px dashed var(--border); }
.modal-info .spec-list .k { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); padding-top: 3px; }
.modal-info .spec-list .v { color: var(--ink-soft); font-size: 14px; }
.modal-info .actions { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }

/* Forms */
.form {
  display: grid; gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: clamp(28px, 4vw, 48px);
}
.form-row { display: grid; gap: 6px; }
.form-row.two { grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.form-row input, .form-row select, .form-row textarea {
  font-family: var(--sans); font-size: 14px; color: var(--text);
  background: transparent; border: 0; border-bottom: 1px solid var(--border-strong);
  padding: 10px 0; outline: none;
}
.form-row textarea { min-height: 90px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-bottom-color: var(--accent); }
.form-row .help { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* Two-column splits */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start;
}
.split.lopsided { grid-template-columns: 1.2fr 1fr; }

/* Timeline */
.timeline {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 60px;
  position: relative;
}
.tl-item {
  display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 22px 0;
  border-top: 1px solid var(--border);
}
.tl-item .y { font-family: var(--serif); font-size: 32px; color: var(--accent); }
.tl-item .t { color: var(--ink-soft); }

/* Stores */
.stores-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); }
.store-card {
  padding: 36px; border-right: 1px solid var(--border);
  background: var(--surface);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.store-card:last-child { border-right: 0; }
.store-card .city { font-family: var(--serif); font-size: 40px; line-height: 1; }
.store-card .role { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.store-card address { font-style: normal; white-space: pre-line; color: var(--ink-soft); line-height: 1.55; }
.store-card .meta { font-size: 13px; color: var(--muted); display: grid; gap: 6px; }
.store-card .meta strong { color: var(--text); font-weight: 500; }
.store-card .caveat { font-size: 11px; color: var(--secondary); border-left: 2px solid var(--accent); padding-left: 10px; line-height: 1.5; }

/* Lookbook strip */
.strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.strip-item { aspect-ratio: 3/4; overflow: hidden; background: var(--surface); }
.strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.strip-item:hover img { transform: scale(1.03); }

/* Press strip */
.press { display: flex; gap: clamp(20px, 4vw, 56px); flex-wrap: wrap; justify-content: space-between; padding-top: 36px; padding-bottom: 36px; }
.press-item { display: flex; flex-direction: column; gap: 4px; }
.press-item .pub { font-family: var(--serif); font-size: 22px; }
.press-item .credit { font-size: 11px; color: var(--muted); letter-spacing: 0.05em; }
.press-item .y { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-top: 2px; }

/* Footer */
footer {
  background: #14130F; color: #D9D2C5;
  padding: 80px var(--page-x) 40px;
}
footer .ft-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
footer h5 { font-family: var(--serif); font-size: 22px; color: #fff; margin: 0 0 16px; font-weight: 400; }
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
footer a { color: #BCB3A3; font-size: 13px; }
footer a:hover { color: var(--accent-soft); }
footer .small { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #79716A; }
footer .ft-bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  font-size: 11px; color: #79716A; letter-spacing: 0.16em; text-transform: uppercase;
}

/* Page transitions */
.page { animation: fadeIn 0.45s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Bridal split */
.bridal-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); margin-top: 56px; }
.bridal-pane { background: var(--surface); padding: 48px; display: flex; flex-direction: column; gap: 18px; }
.bridal-pane .tag { display: inline-block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent); padding: 4px 8px; align-self: flex-start; }

/* Helpers */
.divider { height: 1px; background: var(--border); margin: 36px 0; }
.muted { color: var(--muted); }
.rule { width: 36px; height: 1px; background: var(--accent); display: inline-block; margin-bottom: 16px; }
.rule.light { background: var(--accent-soft); }

/* Toast / submitted */
.toast {
  position: fixed; right: 24px; bottom: 90px; z-index: 60;
  background: var(--text); color: var(--bg);
  padding: 18px 22px;
  border-left: 3px solid var(--accent);
  max-width: 360px;
  font-size: 13px; line-height: 1.5;
  box-shadow: 0 12px 40px rgba(26,26,26,0.25);
  animation: slideIn 0.4s cubic-bezier(.16,.84,.34,1);
}
.toast .t-title { font-family: var(--serif); font-size: 20px; margin-bottom: 6px; }
.toast .t-close { float: right; background: none; border: 0; color: var(--bg); cursor: pointer; font-size: 16px; margin-top: -8px; margin-right: -8px; }

/* RTL */
[dir="rtl"] .nav-links button::after { left: auto; right: 0; right: 100%; }
[dir="rtl"] .nav-links button:hover::after, [dir="rtl"] .nav-links button.active::after { left: 0; right: 0; }
[dir="rtl"] .btn:hover .arrow { transform: translateX(-4px); }
[dir="rtl"] .appt-pill { right: auto; left: 24px; }
[dir="rtl"] .modal-scrim { justify-content: flex-start; }
[dir="rtl"] .modal-body { grid-template-columns: 1fr 1.1fr; }
[dir="rtl"] .modal-image { border-right: 0; border-left: 1px solid var(--border); }

/* Responsive */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 70vh; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .line-tiles { grid-template-columns: 1fr; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-image { position: static; height: auto; aspect-ratio: 3/4; border-right: 0; border-bottom: 1px solid var(--border); }
  .split, .split.lopsided { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .stores-grid { grid-template-columns: 1fr; }
  .store-card { border-right: 0; border-bottom: 1px solid var(--border); }
  .store-card:last-child { border-bottom: 0; }
  .bridal-split { grid-template-columns: 1fr; }
  footer .ft-grid { grid-template-columns: 1fr 1fr; }
  .strip { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
}
