/* ===========================================================
   LOTS Studio — shared design system
   Warm, calm, minimal, editorial. Built to map onto
   standard WordPress blocks (sections, columns, buttons,
   quotes, forms). No framework, no heavy effects.
   =========================================================== */

:root {
  /* --- Warm neutral world --- */
  --cream:        #FEF3EA;   /* page background — warm paper */
  --cream-card:   #FFFBF4;   /* cards / raised surfaces — a touch lighter than cream */
  --beige:        #EBDED4;   /* calm panel */
  --beige-deep:   #E0D1C2;   /* deeper panel / borders (derived) */

  /* --- Ink --- */
  --brown:        #332219;   /* primary text — dark warm brown */
  --brown-soft:   #6B5849;   /* secondary text (derived) */
  --brown-faint:  rgba(51,34,25,.14);

  /* --- Accents --- */
  --burgundy:     #76220B;   /* warm brick / roest accent — CTAs, key sections */
  --burgundy-deep:#5C1A08;   /* hover (derived) */
  --olive:        #979265;   /* fresh olive accent — labels, marks, fills */
  --olive-soft:   #ABA681;   /* lighter olive tint (derived) */

  /* --- Type --- */
  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --sans:  "Montserrat", system-ui, -apple-system, sans-serif;
  --body:  "Source Sans 3", system-ui, -apple-system, sans-serif;
  --mono:  ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* --- Layout --- */
  --container: 1140px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(51,34,25,.04), 0 10px 30px -18px rgba(51,34,25,.25);
}

/* ----------------------------- reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ----------------------------- layout ---------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: 64px; }
.section-tight { padding-block: 44px; }

@media (min-width: 760px) {
  .section { padding-block: 104px; }
  .section-tight { padding-block: 72px; }
  .container { padding-inline: 40px; }
}

/* ----------------------------- type ------------------------------ */
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .92rem;
  font-weight: 600;
  color: var(--olive);
  margin: 0 0 18px;
}
.eyebrow.on-dark { color: #D7C8A8; }

h1, .h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--brown);
}
h1 em, .h1 em { font-style: italic; color: var(--burgundy); }

h2, .h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 4.4vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h2 em, .h2 em { font-style: italic; color: var(--burgundy); }

h3, .h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.3;
  letter-spacing: .005em;
}

.lead {
  font-size: clamp(1.12rem, 2.2vw, 1.35rem);
  line-height: 1.55;
  color: var(--brown-soft);
}
.muted { color: var(--brown-soft); }
.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }

/* ----------------------------- buttons --------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  min-height: 48px;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--burgundy); color: var(--cream); }
.btn-primary:hover { background: var(--burgundy-deep); }

.btn-secondary { background: transparent; color: var(--brown); border-color: var(--brown-faint); }
.btn-secondary:hover { border-color: var(--brown); background: rgba(51,34,25,.04); }

.btn-light { background: var(--cream); color: var(--burgundy); }
.btn-light:hover { background: #fff; }

.btn-ghost-light { background: transparent; color: var(--cream); border-color: rgba(248,243,235,.45); }
.btn-ghost-light:hover { border-color: var(--cream); background: rgba(248,243,235,.10); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.textlink {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  color: var(--burgundy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4em;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: border-color .18s ease, gap .18s ease;
}
.textlink:hover { border-color: var(--burgundy); gap: .65em; }
.textlink .arw { transition: transform .18s ease; }
.textlink:hover .arw { transform: translateX(2px); }

/* ----------------------------- cards ----------------------------- */
.card {
  background: var(--cream-card);
  border: 1px solid var(--brown-faint);
  border-radius: var(--radius);
  padding: 30px;
}

/* ----------------------------- placeholders ---------------------- */
/* Striped, labelled image placeholders — swap for real photos in WP */
.ph {
  position: relative;
  background-color: var(--beige);
  background-image: repeating-linear-gradient(135deg, transparent 0 15px, rgba(51,34,25,.05) 15px 16px);
  border: 1px solid var(--brown-faint);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ph-label {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .02em;
  color: var(--brown-soft);
  background: rgba(248,243,235,.9);
  border: 1px solid var(--brown-faint);
  padding: 6px 13px;
  border-radius: 999px;
  text-align: center;
}

/* ----------------------------- nav ------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--brown-faint);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 80px;
}
.wordmark { display: inline-flex; align-items: baseline; gap: .26em; text-decoration: none; white-space: nowrap; }
.wordmark .wm-lots { font-family: var(--sans); font-weight: 800; font-size: 1.7rem; letter-spacing: .02em; text-transform: uppercase; color: var(--brown); line-height: 1; }
.wordmark .wm-dot { color: var(--burgundy); }
.wordmark .wm-studio { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--burgundy); line-height: 1; }

.nav-links { display: none; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .95rem;
  text-decoration: none;
  color: var(--brown-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover { color: var(--brown); }
.nav-links a[aria-current="page"] { color: var(--brown); border-color: var(--olive); }

.nav-cta { display: none; }

.nav-end { display: flex; align-items: center; gap: 20px; }
.nav-social { display: none; align-items: center; gap: 14px; }
.nav-social a { color: var(--brown-soft); display: inline-flex; transition: color .15s ease; }
.nav-social a:hover { color: var(--burgundy); }
@media (min-width: 600px) { .nav-social { display: flex; } }

.language-switcher {
  position: relative;
  display: inline-flex;
  font-family: var(--sans);
}
.language-current {
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  min-height: 38px;
  padding: 9px 15px;
  border: 1.5px solid var(--brown-faint);
  border-radius: 10px;
  background: var(--cream-card);
  box-shadow: 0 1px 2px rgba(51,34,25,.04);
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.language-current::-webkit-details-marker { display: none; }
.language-current:hover,
.language-switcher[open] .language-current {
  border-color: rgba(118,34,11,.28);
  background: #fff;
  color: var(--burgundy);
  box-shadow: 0 4px 14px -10px rgba(51,34,25,.35);
}
.language-chevron {
  font-size: .7rem;
  line-height: 1;
  opacity: .72;
  transform: translateY(-1px);
}
.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 80;
  min-width: 210px;
  padding: 8px;
  background: var(--cream-card);
  border: 1px solid var(--brown-faint);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.language-menu a {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  align-items: center;
  column-gap: 18px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  color: var(--brown);
  text-decoration: none;
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 500;
}
.language-menu a:hover,
.language-menu a.is-active {
  background: var(--cream);
  color: var(--burgundy);
}
.language-code {
  font-size: .72rem;
  letter-spacing: .05em;
  color: var(--brown-soft);
  justify-self: end;
  white-space: nowrap;
}
.language-name {
  min-width: 0;
  white-space: nowrap;
}

.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a { color: #C9B89A; display: inline-flex; transition: color .15s ease; }
.footer-social a:hover { color: var(--cream); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid var(--brown-faint);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 20px; margin-inline: auto; background: var(--brown); transition: transform .2s ease, opacity .2s ease; }
.nav[data-open="true"] .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav[data-open="true"] .nav-toggle span:nth-child(2) { opacity: 0; }
.nav[data-open="true"] .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  border-top: 1px solid var(--brown-faint);
  background: var(--cream);
  padding: 14px 0 22px;
}
.nav[data-open="true"] .nav-mobile { display: block; }
.nav-mobile a {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.08rem;
  text-decoration: none;
  color: var(--brown);
  padding: 13px 2px;
  border-bottom: 1px solid var(--brown-faint);
}
.nav-mobile a[aria-current="page"] { color: var(--burgundy); }
.nav-mobile .btn { width: 100%; justify-content: center; margin-top: 18px; }
.nav-mobile .language-switcher {
  display: block;
  width: 100%;
  padding-block: 12px;
  border-bottom: 1px solid var(--brown-faint);
}
.nav-mobile .language-current {
  width: 100%;
  justify-content: flex-start;
}
.nav-mobile .language-menu {
  position: static;
  margin-top: 8px;
  width: 100%;
  box-shadow: none;
}

@media (min-width: 880px) {
  .nav-links, .nav-cta { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
  .nav .nav-inner { height: 108px; }
  .nav .wm-lots { font-size: 2.7rem; }
  .nav .wm-studio { font-size: 1.9rem; }
}

/* ----------------------------- footer ---------------------------- */
.footer {
  background: var(--brown);
  color: #E9DECB;
  padding-block: 56px;
}
.footer a { color: #E9DECB; text-decoration: none; }
.footer-grid { display: grid; gap: 36px; }
.footer .wm-lots { color: var(--cream); font-size: 2.3rem; }
.footer .wm-dot, .footer .wm-studio { color: #D8A99B; }
.footer .wm-studio { font-size: 1.6rem; }
.footer-tag { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: #E9DECB; margin-top: 14px; max-width: 30ch; }
.footer-col h4 { font-family: var(--sans); font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: #C9B89A; margin-bottom: 14px; font-weight: 600; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: .98rem; opacity: .9; }
.footer-col a:hover { opacity: 1; text-decoration: underline; }
.footer .language-current {
  color: #E9DECB;
  border-color: rgba(233,222,203,.28);
  background: rgba(255,251,244,.08);
  box-shadow: none;
}
.footer .language-current:hover,
.footer .language-switcher[open] .language-current {
  color: #fff;
  border-color: #D8A99B;
  background: rgba(255,251,244,.13);
  text-decoration: none;
}
.footer .language-menu {
  background: #3B281E;
  border-color: rgba(233,222,203,.18);
}
.footer .language-menu a {
  color: #E9DECB;
}
.footer .language-menu a:hover,
.footer .language-menu a.is-active {
  background: rgba(255,251,244,.08);
  color: #fff;
}
.footer .language-code { color: #C9B89A; }
.footer-bottom { border-top: 1px solid rgba(233,222,203,.18); margin-top: 40px; padding-top: 22px; font-size: .85rem; color: #C9B89A; display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; }

@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; }
}

/* ----------------------------- helpers --------------------------- */
.bg-beige { background: var(--beige); }
.bg-burgundy { background: var(--burgundy); color: var(--cream); }
.bg-brown { background: var(--brown); color: #EADFCB; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.section-head { max-width: 64ch; }
.section-head.center { margin-inline: auto; }
.grid { display: grid; gap: 22px; }
.divider { height: 1px; background: var(--brown-faint); border: 0; }

/* ----------------------------- hero ------------------------------ */
.hero { padding-top: 44px; }
.hero-grid { display: grid; gap: 36px; align-items: center; }
.hero-sub { margin-top: 24px; }
.hero-ctas { margin-top: 32px; }
.hero-note { font-family: var(--serif); font-style: italic; font-size: 1.16rem; color: var(--burgundy); margin-top: 26px; }
.hero-photo { aspect-ratio: 4 / 5; width: 100%; }

@media (min-width: 880px) {
  .hero { padding-top: 64px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 64px; }
  .hero-photo { aspect-ratio: 5 / 6; max-width: 460px; margin-left: auto; }
}

/* ----------------------------- recognition ----------------------- */
.recog-head { margin-bottom: 40px; }
.recog-list { display: grid; gap: 0; border-top: 1px solid var(--brown-faint); }
.recog-item { display: flex; gap: 18px; align-items: flex-start; padding: 22px 2px; border-bottom: 1px solid var(--brown-faint); }
.recog-item p { font-size: 1.12rem; color: var(--brown); }
.recog-mark { color: var(--olive); font-weight: 700; font-size: 1.15rem; line-height: 1.5; flex: none; }
.recog-foot { margin-top: 34px; font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 1.7rem); line-height: 1.45; max-width: 30ch; }
.recog-foot strong { color: var(--burgundy); font-weight: 400; }

@media (min-width: 880px) {
  .recog { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
  .recog-head { margin-bottom: 0; }
}

/* ----------------------------- services -------------------------- */
.services-grid { grid-template-columns: 1fr; }
.service-card { display: flex; flex-direction: column; gap: 10px; }
.service-card .service-num { font-family: var(--mono); font-size: .8rem; color: var(--olive); letter-spacing: .08em; }
.service-card h3 { margin-top: 2px; }
@media (min-width: 620px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

/* ----------------------------- steps ----------------------------- */
.steps-grid { grid-template-columns: 1fr; gap: 30px; }
.step { display: flex; flex-direction: column; gap: 12px; }
.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.3rem; color: var(--cream-card);
  background: var(--burgundy); border: 1.5px solid var(--brown-faint);
}
@media (min-width: 760px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }

/* ----------------------------- quotes ---------------------------- */
.quotes-grid { grid-template-columns: 1fr; }
.quote-card { margin: 0; display: flex; flex-direction: column; gap: 22px; }
.quote-card blockquote { margin: 0; font-family: var(--sans); font-weight: 500; font-size: 1.05rem; line-height: 1.55; color: var(--brown); }
.quote-card figcaption { display: flex; align-items: center; gap: 14px; font-size: .95rem; }
.q-avatar { width: 46px; height: 46px; border-radius: 50%; flex: none; }
@media (min-width: 760px) { .quotes-grid { grid-template-columns: repeat(3, 1fr); } }

/* ----------------------------- final CTA ------------------------- */
.cta-final { padding-block: 88px; }
@media (min-width: 760px) { .cta-final { padding-block: 120px; } }

/* ===================== DIENSTEN ===================== */
.page-intro { padding-bottom: 32px; }
.pillars { display: grid; gap: 0; }
.pillar { display: grid; gap: 18px; padding-block: 40px; }
.pillar-head { display: flex; align-items: center; gap: 16px; }
.pillar-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--burgundy); color: var(--cream);
  font-family: var(--serif); font-size: 1.45rem; line-height: 1;
  flex: none;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.chips li {
  font-family: var(--sans); font-size: .86rem; font-weight: 500;
  color: var(--brown-soft); background: var(--cream-card);
  border: 1px solid var(--brown-faint); border-radius: 999px;
  padding: 8px 15px;
}
@media (min-width: 880px) {
  .pillar { grid-template-columns: 1fr 1.25fr; gap: 48px; align-items: start; }
  .pillar-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}

.connect { display: grid; gap: 18px; }
.flow { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin: 8px 0 6px; }
.flow-step {
  font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 1.9rem); font-style: italic;
  color: var(--brown);
}
.flow-step-end { color: var(--burgundy); }
.flow-arrow { color: var(--olive); font-size: 1.3rem; }

/* Burgundy section overrides (used on the Diensten 'rode draad' block) */
.bg-burgundy .flow-step { color: #F4E4DC; }
.bg-burgundy .flow-step-end { color: #fff; }
.bg-burgundy .flow-arrow { color: #CD9A8B; }
.bg-burgundy .lead { color: #EBD9D2; }
.bg-burgundy .divider { background: rgba(248,243,235,.22); }

/* ===================== OVER ===================== */
.about-grid { display: grid; gap: 36px; align-items: center; }
.about-photo { aspect-ratio: 4 / 5; width: 100%; }
@media (min-width: 880px) {
  .about-grid { grid-template-columns: 1.1fr .9fr; gap: 60px; }
  .about-photo { max-width: 420px; margin-left: auto; aspect-ratio: 5 / 6; }
}
.exp-top { display: grid; gap: 24px; margin-bottom: 44px; }
.stat { display: flex; align-items: baseline; gap: 16px; }
.stat-num { font-family: var(--serif); font-size: clamp(3rem, 8vw, 4.6rem); line-height: 1; color: var(--burgundy); font-weight: 400; }
.stat-plus { font-size: .6em; }
.stat-label { font-family: var(--sans); font-weight: 500; font-size: 1rem; color: var(--brown-soft); max-width: 22ch; }
@media (min-width: 880px) {
  .exp-top { grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .stat { align-items: center; }
}
.exp-grid { grid-template-columns: 1fr; }
.exp-item { padding: 24px; background: var(--cream-card); border: 1px solid var(--brown-faint); border-radius: var(--radius); display: grid; gap: 8px; }
@media (min-width: 600px) { .exp-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 920px) { .exp-grid { grid-template-columns: repeat(3, 1fr); } }

.webshop { display: grid; gap: 28px; padding: 32px; }
.webshop-photo { aspect-ratio: 16 / 10; width: 100%; }
@media (min-width: 760px) {
  .webshop { grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px; padding: 40px; }
  .webshop-photo { aspect-ratio: 4 / 3; }
}
.big-quote { margin: 0; max-width: 24ch; margin-inline: auto; }
@media (min-width: 760px) { .big-quote { max-width: 30ch; } }
.big-quote blockquote { margin: 0; font-family: var(--serif); font-size: clamp(1.5rem, 3.8vw, 2.3rem); line-height: 1.32; color: var(--brown); }
.big-quote figcaption { font-family: var(--sans); font-size: .95rem; color: var(--brown-soft); margin-top: 24px; }
.big-quote figcaption strong { color: var(--brown); }
.personal { display: grid; }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; gap: 40px; align-items: start; }
.contact-details { display: grid; gap: 0; margin-top: 34px; border-top: 1px solid var(--brown-faint); }
.contact-details li { display: grid; gap: 4px; padding: 16px 2px; border-bottom: 1px solid var(--brown-faint); }
.cd-label { font-family: var(--sans); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--olive); font-weight: 600; }
.cd-value { font-size: 1.05rem; color: var(--brown); text-decoration: none; }
a.cd-value:hover { color: var(--burgundy); }
.contact-reassure { font-family: var(--serif); font-style: italic; font-size: 1.18rem; color: var(--burgundy); margin-top: 26px; max-width: 34ch; }

.contact-form { display: grid; gap: 18px; padding: 30px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--sans); font-weight: 600; font-size: .9rem; color: var(--brown); }
.field .optional { font-weight: 400; color: var(--brown-soft); }
.field input, .field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--brown);
  background: var(--cream); border: 1.5px solid var(--brown-faint);
  border-radius: var(--radius-sm); padding: 13px 15px; width: 100%;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: #A8957F; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--burgundy); box-shadow: 0 0 0 3px rgba(118,34,11,.13); }
.form-submit { margin-top: 4px; justify-content: center; }
.form-note { font-size: .95rem; color: #6E6A41; background: rgba(151,146,101,.12); border: 1px solid rgba(151,146,101,.32); border-radius: var(--radius-sm); padding: 12px 14px; }
.form-fineprint { font-size: .82rem; color: var(--brown-soft); }
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 72px; }
}

/* reveal on scroll (light, optional, respects reduced motion) */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
