/* ==========================================================================
   Culinelle — designtokens
   Palett: rostfritt stål + kolsvart + gasflammans blå, ett stänk av glöd.
   Typografi: Fraunces (display) / Work Sans (gränssnitt) / IBM Plex Mono (data)
   ========================================================================== */

:root {
  --ink: #1B1E1C;
  --ink-soft: #3A3F3C;
  --paper: #EFF1EF;
  --paper-warm: #E6E9E3;
  --card: #FBFCFA;
  --steel: #8B928D;
  --steel-line: #D7DAD3;
  --steel-line-dark: #2C302E;

  --accent-bright: #FFBD6D;
  --accent: #B3692C;
  --accent-dark: #8F5220;
  --accent-tint: #F7E4CC;

  --ember: #C7451F;
  --ember-tint: #F6DFD5;

  --success: #3A7D44;
  --success-tint: #DEEBDF;
  --amber: #B8791A;
  --amber-tint: #F3E6CF;
  --off: #9AA098;
  --off-tint: #E9EAE6;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --radius: 3px;
  --shadow-card: 0 1px 2px rgba(27,30,26,0.06), 0 6px 16px rgba(27,30,26,0.05);
  --shadow-lift: 0 10px 30px rgba(27,30,26,0.16);

  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0 0 0.4em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }

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

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.9em;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.9em 1.6em;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: transparent; color: var(--paper); border-color: rgba(239,241,239,0.4); }
.btn-ghost:hover { border-color: var(--paper); background: rgba(239,241,239,0.08); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--steel-line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

/* ---------- Header ---------- */
.site-header {
  background: var(--ink);
  color: var(--paper);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--steel-line-dark);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--paper);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo span { color: var(--accent-bright); }
.logo-img { height: 40px; width: auto; display: block; }
.footer-logo { height: 34px; width: auto; display: block; margin-bottom: 14px; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: var(--paper);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.6em 0.9em;
  border-radius: var(--radius);
  opacity: 0.82;
  transition: opacity 0.15s, background 0.15s;
}
.main-nav a:hover, .main-nav a.active { opacity: 1; background: rgba(239,241,239,0.08); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.spike-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(239,241,239,0.35);
  color: var(--paper);
  padding: 0.55em 0.9em;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-family: var(--font-mono);
}
.spike-toggle:hover { border-color: var(--paper); }
.spike-count {
  background: var(--ember);
  color: #fff;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 0 4px;
}
.spike-count[data-empty="true"] { display: none; }

.nav-toggle { display: none; background: none; border: none; color: var(--paper); }

@media (max-width: 860px) {
  .main-nav { position: absolute; top: 76px; left: 0; right: 0; background: var(--ink); flex-direction: column; align-items: stretch; padding: 8px 20px 18px; border-bottom: 1px solid var(--steel-line-dark); display: none; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.9em 0.5em; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding: 96px 0 120px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg svg { width: 100%; height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(27,30,26,0.94) 30%, rgba(27,30,26,0.55) 68%, rgba(27,30,26,0.4) 100%);
  z-index: 1;
}
.hero .wrap { position: relative; z-index: 2; max-width: 680px; }
@media (max-width: 900px) { .hero { padding: 64px 0 80px; } }

.hero h1 { color: var(--paper); max-width: 13ch; }
.hero .lede { color: #C7CCC7; font-size: 1.1rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

/* ---------- Nyheter (news) ---------- */
.news {
  padding: 72px 0;
  border-bottom: 1px solid var(--steel-line);
}
.news-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .news-grid { grid-template-columns: 1fr; } }

.news-card {
  background: var(--card);
  border: 1px solid var(--steel-line);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.news-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.news-date { font-family: var(--font-mono); font-size: 0.75rem; color: var(--steel); text-transform: uppercase; letter-spacing: 0.08em; }
.news-card h3 { margin: 0.6em 0 0.4em; font-size: 1.08rem; }
.news-card p { font-size: 0.92rem; margin-bottom: 0; }
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3em 0.6em;
  border-radius: 2px;
  background: var(--accent-tint);
  color: var(--accent-dark);
  margin-bottom: 10px;
}
.tag.ember { background: var(--ember-tint); color: var(--ember); }

/* ---------- Two-path CTA band ---------- */
.paths { padding: 72px 0 88px; }
.paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 760px) { .paths-grid { grid-template-columns: 1fr; } }
.path-card {
  padding: 40px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.path-card.dark { background: var(--ink); color: var(--paper); }
.path-card.light { background: var(--card); border: 1px solid var(--steel-line); }
.path-card h3 { font-size: 1.6rem; }
.path-card.dark h3 { color: var(--paper); }
.path-card p { max-width: 40ch; }
.path-card.dark p { color: #C7CCC7; }
.path-card .btn { margin-top: 12px; }
.path-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 14px;
  display: block;
}
.path-card.dark .path-num { color: #8B928D; }

/* ---------- Inspiration (homepage lifestyle section) ---------- */
.inspiration { padding: 72px 0 96px; border-top: 1px solid var(--steel-line); }
.inspiration-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 52px; align-items: center; }
@media (max-width: 860px) { .inspiration-grid { grid-template-columns: 1fr; } }
.inspiration-media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.inspiration-media-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}
/* a single image spans the whole grid; extra images added later tile in automatically */
.inspiration-media-grid img:only-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
.inspiration-text .eyebrow { margin-bottom: 0.7em; }
.inspiration-text p { max-width: 44ch; }
.inspiration-text .btn { margin-top: 8px; }

/* ---------- USP strip ---------- */
.usp-strip { background: var(--paper-warm); border-top: 1px solid var(--steel-line); border-bottom: 1px solid var(--steel-line); padding: 48px 0; }
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 760px) { .usp-grid { grid-template-columns: 1fr; } }
.usp-item { display: flex; gap: 14px; }
.usp-icon { flex: none; width: 38px; height: 38px; color: var(--accent); }
.usp-item h4 { margin: 0 0 4px; font-size: 1rem; font-family: var(--font-body); font-weight: 700; }
.usp-item p { font-size: 0.9rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #C7CCC7; padding: 56px 0 30px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--steel-line-dark); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--paper); font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.site-footer a { color: #C7CCC7; text-decoration: none; font-size: 0.92rem; }
.site-footer a:hover { color: var(--paper); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; font-size: 0.8rem; color: #7C837E; flex-wrap: wrap; gap: 8px; }

/* ==========================================================================
   Sortiment (catalog)
   ========================================================================== */

.catalog-header { background: var(--ink); color: var(--paper); padding: 52px 0 40px; }
.catalog-header .eyebrow { color: #9CA39D; }
.catalog-header .eyebrow::before { background: var(--accent-bright); }
.catalog-header h1 { color: var(--paper); font-size: clamp(2rem, 4vw, 2.8rem); max-width: 20ch; }
.catalog-header p { color: #C7CCC7; max-width: 60ch; }

.catalog-toolbar {
  position: sticky;
  top: 76px;
  z-index: 30;
  background: var(--paper);
  border-bottom: 1px solid var(--steel-line);
  padding: 16px 0;
}
.toolbar-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.search-input, .filter-select {
  border: 1px solid var(--steel-line);
  background: var(--card);
  border-radius: var(--radius);
  padding: 0.7em 1em;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
}
.search-input { flex: 1 1 260px; max-width: 340px; min-width: 200px; }
.category-filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper-warm);
  border: 1px solid var(--steel-line);
  border-radius: 24px;
  padding: 8px 16px;
}
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  border: 1.5px solid var(--steel-line);
  background: var(--card);
  border-radius: 20px;
  padding: 0.55em 1.15em;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.chip:hover { border-color: var(--accent); }
.chip.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.result-count { font-family: var(--font-mono); font-size: 0.78rem; color: var(--steel); white-space: nowrap; margin-left: auto; }
.filter-label { font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); white-space: nowrap; }

.catalog-body { padding: 40px 0 100px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--steel-line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s, transform 0.15s;
}
.product-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }

.product-thumb {
  aspect-ratio: 4/3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  overflow: hidden;
}
.product-thumb svg { width: 46%; height: 46%; opacity: 0.92; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb .img-count {
  position: absolute; top: 10px; right: 10px;
  background: rgba(27,30,26,0.55);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 3px 7px;
  border-radius: 10px;
}
.product-thumb .stock-dot-wrap {
  position: absolute; top: 10px; left: 10px;
  display: flex; align-items: center; gap: 6px;
  background: rgba(27,30,26,0.55);
  padding: 4px 9px 4px 7px;
  border-radius: 20px;
}

/* category thumb color themes */
.thumb-serv  { background: linear-gradient(135deg, #3A3F3C, #1B1E1C); }
.thumb-kok   { background: linear-gradient(135deg, #FFBD6D, #B3692C); }
.thumb-forv  { background: linear-gradient(135deg, #6B7268, #454A44); }
.thumb-eng   { background: linear-gradient(135deg, #4F564F, #33372F); }
.thumb-kok svg { color: var(--ink); }

.stock-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.stock-dot.in { background: #4FD066; box-shadow: 0 0 0 3px rgba(79,208,102,0.25); }
.stock-dot.low { background: #E8B84B; box-shadow: 0 0 0 3px rgba(232,184,75,0.25); }
.stock-dot.out { background: #9AA098; }
.stock-label { font-family: var(--font-mono); font-size: 0.66rem; color: #fff; text-transform: uppercase; letter-spacing: 0.04em; }

.product-info { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-cat { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--steel); }
.product-info h3 { font-size: 1.02rem; margin: 0; }
.product-desc { font-size: 0.85rem; color: var(--ink-soft); margin: 0; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; gap: 10px; }
.product-price { font-family: var(--font-mono); font-size: 1.02rem; font-weight: 600; }
.product-price small { font-family: var(--font-body); font-weight: 400; font-size: 0.72rem; color: var(--steel); }

.btn-add {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 0.5em 0.8em;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-add:hover:not(:disabled) { background: var(--ink); color: var(--paper); }
.btn-add.added { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-add:disabled { border-color: var(--steel-line); color: var(--steel); }

.empty-state { text-align: center; padding: 80px 20px; color: var(--steel); }
.empty-state h3 { color: var(--ink-soft); }

/* ---------- Product modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(27,30,26,0.55);
  display: none; align-items: center; justify-content: center;
  z-index: 100; padding: 24px;
}
.modal-backdrop.open { display: flex; }
.product-modal {
  background: var(--card);
  border-radius: 6px;
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-lift);
}
@media (max-width: 720px) { .product-modal { grid-template-columns: 1fr; } }
.modal-gallery { background: var(--ink); }
.modal-gallery-main { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.modal-gallery-main svg { width: 40%; height: 40%; color: rgba(255,255,255,0.85); }
.modal-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.modal-thumbs { display: flex; gap: 8px; padding: 12px; flex-wrap: wrap; }
.modal-thumbs button { width: 44px; height: 44px; border-radius: 3px; border: 1px solid rgba(239,241,239,0.25); background: rgba(239,241,239,0.06); display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 0; }
.modal-thumbs button.active { border-color: var(--accent-bright); }
.modal-thumbs svg { width: 55%; height: 55%; color: var(--paper); }
.modal-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 30px; position: relative; }
.modal-close { position: absolute; top: 14px; right: 14px; background: none; border: none; color: var(--steel); font-size: 1.4rem; line-height: 1; padding: 6px; }
.modal-close:hover { color: var(--ink); }
.modal-body h2 { font-size: 1.5rem; margin-bottom: 4px; }
.modal-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.modal-price { font-family: var(--font-mono); font-size: 1.4rem; font-weight: 700; margin: 10px 0 14px; }
.modal-price small { font-family: var(--font-body); font-weight: 400; font-size: 0.8rem; color: var(--steel); }
.modal-sku { font-family: var(--font-mono); font-size: 0.75rem; color: var(--steel); margin-bottom: 18px; }

/* ---------- Offertspik (quote drawer) — signature element ---------- */
.spike-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 400px; max-width: 92vw;
  height: 100%;
  background: var(--ink);
  color: var(--paper);
  z-index: 90;
  transition: right 0.28s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0,0,0,0.25);
}
.spike-drawer.open { right: 0; }
.spike-rail {
  position: absolute; left: -3px; top: 0; bottom: 0; width: 3px;
  background: repeating-linear-gradient(180deg, var(--accent-bright) 0 2px, transparent 2px 14px);
}
.spike-head { padding: 24px 24px 16px; border-bottom: 1px dashed rgba(239,241,239,0.18); }
.spike-head h3 { color: var(--paper); font-size: 1.1rem; margin-bottom: 2px; }
.spike-head p { color: #9CA39D; font-size: 0.82rem; margin: 0; }
.spike-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: #9CA39D; font-size: 1.4rem; }
.spike-close:hover { color: var(--paper); }

.spike-tickets { flex: 1; overflow-y: auto; padding: 10px 18px; }
.ticket {
  background: rgba(239,241,239,0.05);
  border: 1px solid rgba(239,241,239,0.12);
  border-left: 3px solid var(--accent-bright);
  border-radius: 3px;
  padding: 12px 14px;
  margin: 10px 0;
  position: relative;
}
.ticket .t-name { font-weight: 600; font-size: 0.9rem; padding-right: 20px; }
.ticket .t-meta { font-family: var(--font-mono); font-size: 0.76rem; color: #9CA39D; margin-top: 4px; display: flex; justify-content: space-between; align-items: center; }
.ticket .t-remove { position: absolute; top: 10px; right: 10px; background: none; border: none; color: #9CA39D; font-size: 1rem; padding: 2px; }
.ticket .t-remove:hover { color: var(--ember); }
.qty-stepper { display: inline-flex; align-items: center; gap: 8px; }
.qty-stepper button { background: rgba(239,241,239,0.1); border: none; color: var(--paper); width: 22px; height: 22px; border-radius: 3px; font-size: 0.9rem; line-height: 1; }
.qty-stepper button:hover { background: rgba(239,241,239,0.2); }

.spike-empty { padding: 40px 20px; text-align: center; color: #7C837E; }
.spike-empty svg { width: 44px; height: 44px; margin: 0 auto 14px; opacity: 0.5; }

.spike-foot { padding: 18px 24px 24px; border-top: 1px solid var(--steel-line-dark); }
.spike-foot .btn { margin-top: 10px; }

/* ---------- Forms (offert / återförsäljare) ---------- */
.form-page { padding: 60px 0 100px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .form-grid { grid-template-columns: 1fr; } }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 6px; }
.field .hint { font-size: 0.78rem; color: var(--steel); margin-top: 4px; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--steel-line);
  background: var(--card);
  border-radius: var(--radius);
  padding: 0.8em 1em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

.form-note {
  background: var(--paper-warm);
  border: 1px solid var(--steel-line);
  border-radius: var(--radius);
  padding: 22px;
}
.form-note h4 { font-size: 0.95rem; margin-bottom: 8px; }
.form-note ul { padding-left: 20px; margin: 0; font-size: 0.88rem; color: var(--ink-soft); }
.form-note li { margin-bottom: 6px; }

.form-summary-list { border: 1px solid var(--steel-line); border-radius: var(--radius); background: var(--card); margin-bottom: 20px; }
.form-summary-item { display: flex; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--steel-line); font-size: 0.88rem; }
.form-summary-item:last-child { border-bottom: none; }
.form-summary-item span:first-child { font-weight: 600; }
.form-summary-item span:last-child { font-family: var(--font-mono); color: var(--steel); }

.success-box { background: var(--success-tint); border: 1px solid var(--success); color: var(--success); padding: 16px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.9rem; display: none; }
.success-box.show { display: block; }
.error-box { background: var(--ember-tint); border: 1px solid var(--ember); color: var(--ember); padding: 16px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.9rem; display: none; }
.error-box.show { display: block; }

/* thank-you page */
.confirm-page { padding: 110px 0; text-align: center; }
.confirm-icon { width: 60px; height: 60px; margin: 0 auto 24px; color: var(--accent); }
