/* ==========================================================
   Diaspora Express — site styles
   Flat colour only. Palette taken from the logo.
   ========================================================== */

:root {
  --ink: #121412;
  --ink-soft: #2a2d29;
  --paper: #f5f2ea;
  --paper-2: #ebe6d9;
  --white: #ffffff;
  --green: #0b7a3b;
  --green-dark: #075a2b;
  --red: #c8102e;
  --muted: #5d6059;
  --line: #d8d2c3;

  --display: "Archivo", "Arial Narrow", sans-serif;
  --body: "Public Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;

  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-stretch: 75%;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0;
  text-transform: uppercase;
}
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.label {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.label::before {
  content: "";
  width: 22px; height: 3px;
  background: var(--red);
}
.label--light { color: #cfd2cb; }

/* ---------- Kenya stripe rule ---------- */
.stripe {
  height: 14px;
  background: var(--red);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--green);
  box-shadow: inset 0 1px 0 var(--white), inset 0 -1px 0 var(--white);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 22px;
  font-family: var(--display);
  font-stretch: 85%;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translate(-3px, -3px); box-shadow: 3px 3px 0 var(--red); }
.btn--green { background: var(--green); border-color: var(--green); }
.btn--green:hover { box-shadow: 3px 3px 0 var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn--white { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- Top bar + header ---------- */
.topbar {
  background: var(--ink);
  color: #e6e8e3;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.topbar .wrap {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; min-height: 38px; flex-wrap: wrap;
}
.topbar a { text-decoration: none; color: #fff; }
.topbar a:hover { text-decoration: underline; }
.topbar__links { display: flex; gap: 22px; }
@media (max-width: 640px) { .topbar__links a:not(:first-child) { display: none; } }

.header {
  background: var(--white);
  border-bottom: 2px solid var(--ink);
  position: sticky; top: 0; z-index: 50;
}
.header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark {
  width: 66px; height: 40px; overflow: hidden; position: relative; flex: none;
}
.brand__mark img {
  position: absolute; width: 98px; max-width: none; left: -20px; top: -6px;
}
.brand__name {
  font-family: var(--display); font-stretch: 80%; font-weight: 800;
  font-size: 22px; line-height: 0.9; text-transform: uppercase; letter-spacing: 0.02em;
}
.brand__name span {
  display: block; font-size: 11.5px; letter-spacing: 0.42em; color: var(--green);
  font-stretch: 100%; margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav a:not(.btn) {
  text-decoration: none; font-weight: 600; font-size: 15.5px;
  padding: 8px 14px; position: relative;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.nav a:not(.btn):hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav .btn { margin-left: 10px; padding: 11px 18px; font-size: 15px; }

.nav-toggle {
  display: none; background: none; border: 2px solid var(--ink);
  width: 46px; height: 46px; cursor: pointer; padding: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 2px; background: var(--ink); margin: 0 auto;
  position: relative; transition: transform .2s ease;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--white); border-bottom: 2px solid var(--ink);
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--gutter) 20px;
    display: none;
  }
  .nav-open .nav { display: flex; }
  .nav a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
  .nav a:not(.btn)::after { left: 0; right: auto; width: 40px; bottom: 10px; }
  .nav .btn { margin: 16px 0 0; justify-content: center; }
}

/* ---------- Hero (home) ---------- */
.hero { padding: clamp(40px, 7vw, 90px) 0 clamp(56px, 8vw, 100px); }
.hero .wrap {
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero h1 {
  font-size: clamp(46px, 7.4vw, 104px);
  margin: 20px 0 26px;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero h1 .mark {
  background: var(--red); color: var(--white); padding: 0 .12em; display: inline-block;
  transform: rotate(-1.5deg);
}
.hero__lead { font-size: clamp(17px, 1.6vw, 19.5px); max-width: 56ch; color: var(--ink-soft); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 28px; }
.hero__where {
  display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px;
  border-top: 1px solid var(--line); padding-top: 20px;
}
.pin { width: 18px; height: 18px; color: var(--red); flex: none; }

.hero__visual { position: relative; padding-bottom: 60px; }
.hero__photo {
  border: 2px solid var(--ink); aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 17% 50%; }

/* Errand docket card */
.docket {
  position: absolute; right: -24px; bottom: 0; width: min(330px, 88%);
  background: var(--white); border: 2px solid var(--ink);
  font-family: var(--mono); font-size: 13px; line-height: 1.45;
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-2deg);
}
.docket__head {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--ink); color: #fff; padding: 9px 14px; font-size: 11.5px; letter-spacing: .08em;
}
.docket__body { padding: 14px 16px 6px; }
.docket__task { font-family: var(--body); font-weight: 700; font-size: 16px; line-height: 1.3; margin-bottom: 4px; }
.docket__meta { color: var(--muted); font-size: 12px; margin-bottom: 12px; }
.docket ol { list-style: none; margin: 0; padding: 12px 16px 14px; border-top: 2px dashed var(--line); }
.docket li { display: grid; grid-template-columns: 16px 1fr auto; gap: 10px; align-items: center; padding: 3px 0; }
.docket li::before {
  content: ""; width: 12px; height: 12px; border: 2px solid var(--green); background: var(--green);
}
.docket li.is-live::before { background: var(--white); border-color: var(--red); animation: blink 1.2s steps(2) infinite; }
.docket li time { color: var(--muted); font-size: 12px; }
.docket__note { padding: 0 16px 12px; font-size: 11px; color: var(--muted); letter-spacing: .04em; }
@keyframes blink { 50% { background: var(--red); } }

@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero__visual { max-width: 560px; }
  .hero__photo { aspect-ratio: 4 / 3; }
  .docket { right: -8px; }
}
@media (max-width: 520px) {
  .docket { position: relative; right: auto; width: 100%; margin-top: -40px; transform: rotate(-1deg); box-shadow: 5px 5px 0 var(--ink); }
  .hero__visual { padding-bottom: 0; }
}

/* ---------- Clock strip ---------- */
.clocks { background: var(--ink); color: var(--white); padding: 26px 0; }
.clocks .wrap { display: grid; grid-template-columns: auto 1fr; gap: 24px 48px; align-items: center; }
.clocks__intro { font-family: var(--display); font-stretch: 80%; font-weight: 700; font-size: 20px; text-transform: uppercase; line-height: 1.1; max-width: 22ch; }
.clocks__intro b { color: #6fd39a; font-weight: 800; }
.clocks__list { display: grid; grid-template-columns: repeat(5, 1fr); border-left: 1px solid #3a3d39; }
.clock { padding: 4px 18px; border-right: 1px solid #3a3d39; }
.clock__city { font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: #a9ada5; }
.clock__time { font-family: var(--mono); font-size: 26px; font-weight: 500; letter-spacing: .02em; }
.clock--home .clock__city { color: #6fd39a; }
.clock--home .clock__time { color: #fff; }
@media (max-width: 960px) {
  .clocks .wrap { grid-template-columns: 1fr; }
  .clocks__intro { max-width: none; }
}
@media (max-width: 640px) {
  .clocks__list { grid-template-columns: repeat(3, 1fr); row-gap: 14px; }
  .clock__time { font-size: 21px; }
  .clock { padding: 2px 12px; }
}

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tint { background: var(--paper-2); }
.section--white { background: var(--white); }
.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px 60px; align-items: end;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-head h2 { font-size: clamp(38px, 5.4vw, 72px); margin-top: 16px; }
.section-head p { color: var(--ink-soft); max-width: 52ch; margin: 0; }
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; } }

/* Service index rows (home) */
.svc-index { border-top: 2px solid var(--ink); list-style: none; margin: 0; padding: 0; }
.svc-index li { border-bottom: 1px solid var(--ink); }
.svc-index a {
  display: grid; grid-template-columns: 70px 1.1fr 1.4fr 40px; gap: 24px; align-items: center;
  padding: 28px 0; text-decoration: none; transition: background .15s ease, padding .2s ease;
}
.svc-index a:hover { background: var(--white); padding-left: 16px; padding-right: 16px; }
.svc-index__no { font-family: var(--mono); font-size: 14px; color: var(--red); }
.svc-index h3 { font-size: clamp(26px, 3vw, 38px); }
.svc-index p { margin: 0; color: var(--ink-soft); }
.svc-index__arrow { width: 32px; height: 32px; transition: transform .2s ease; }
.svc-index a:hover .svc-index__arrow { transform: translateX(6px); color: var(--green); }
@media (max-width: 760px) {
  .svc-index a { grid-template-columns: 44px 1fr 28px; gap: 8px 14px; }
  .svc-index p { grid-column: 2 / 3; }
  .svc-index__arrow { grid-row: 1; grid-column: 3; width: 24px; }
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; counter-reset: step; border: 2px solid var(--ink); background: var(--white); }
.step { padding: 34px 30px 38px; border-right: 2px solid var(--ink); position: relative; }
.step:last-child { border-right: 0; }
.step__no {
  font-family: var(--display); font-stretch: 62%; font-weight: 900; font-size: 96px; line-height: .8;
  color: var(--paper-2); -webkit-text-stroke: 2px var(--ink); margin-bottom: 22px;
}
.step:nth-child(2) .step__no { -webkit-text-stroke-color: var(--green); }
.step:nth-child(3) .step__no { -webkit-text-stroke-color: var(--red); }
.step h3 { font-size: 30px; margin-bottom: 12px; }
.step p { margin: 0; color: var(--ink-soft); }
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 2px solid var(--ink); }
  .step:last-child { border-bottom: 0; }
}

/* Photo band */
.band { position: relative; min-height: clamp(380px, 52vw, 600px); display: flex; align-items: flex-end; color: var(--white); background: var(--ink); }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.band .wrap { position: relative; width: 100%; padding-top: 60px; padding-bottom: clamp(40px, 6vw, 80px); }
.band h2 { font-size: clamp(52px, 10vw, 150px); line-height: .88; }
.band h2 span { color: var(--white); background: var(--green); padding: 0 .1em; }
.band p { font-size: 19px; max-width: 46ch; margin-top: 22px; }

/* Promise grid */
.promises { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 2px solid var(--ink); }
.promise { padding: 28px 24px 8px 0; border-right: 1px solid var(--line); margin-right: 24px; }
.promise:last-child { border-right: 0; margin-right: 0; }
.promise svg { width: 34px; height: 34px; color: var(--green); margin-bottom: 18px; }
.promise h3 { font-size: 24px; margin-bottom: 10px; }
.promise p { color: var(--ink-soft); font-size: 16px; }
@media (max-width: 960px) {
  .promises { grid-template-columns: 1fr 1fr; }
  .promise:nth-child(2) { border-right: 0; margin-right: 0; }
}
@media (max-width: 560px) {
  .promises { grid-template-columns: 1fr; }
  .promise { border-right: 0; margin-right: 0; border-bottom: 1px solid var(--line); padding-right: 0; }
}

/* Why split (home) */
.why { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.why__photo { margin: 0; border: 2px solid var(--ink); background: var(--ink); box-shadow: 10px 10px 0 var(--red); }
.why__photo img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; object-position: 40% 50%; }
.why__photo figcaption { color: var(--white); font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em; padding: 12px 16px; }
.promises--2 { grid-template-columns: 1fr 1fr; }
.promises--2 .promise:nth-child(2) { border-right: 0; margin-right: 0; }
.promises--2 .promise:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
@media (max-width: 960px) { .why { grid-template-columns: 1fr; } .why__photo { max-width: 620px; box-shadow: 6px 6px 0 var(--red); } }

/* Intro split (services) */
.intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; margin-bottom: clamp(48px, 6vw, 80px); }
.intro-split h2 { font-size: clamp(38px, 5.4vw, 72px); margin: 16px 0 24px; }
.intro-split p { color: var(--ink-soft); max-width: 50ch; }
.intro-split__photo { margin: 0; border: 2px solid var(--ink); box-shadow: -10px 10px 0 var(--green); overflow: hidden; }
.intro-split__photo img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; object-position: 35% 50%; }
@media (max-width: 860px) { .intro-split { grid-template-columns: 1fr; } .intro-split__photo { box-shadow: 6px 6px 0 var(--green); } }

/* CTA block */
.cta { background: var(--green); color: var(--white); padding: clamp(56px, 8vw, 96px) 0; border-top: 2px solid var(--ink); }
.cta .wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: end; }
.cta h2 { font-size: clamp(42px, 6.4vw, 88px); }
.cta p { font-size: 18px; margin: 18px 0 0; max-width: 44ch; }
.cta__actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.cta__actions .btn { justify-content: space-between; }
.cta .btn--white:hover { box-shadow: 3px 3px 0 var(--ink); }
.cta .btn--ghost-light:hover { box-shadow: 3px 3px 0 var(--ink); }
@media (max-width: 800px) { .cta .wrap { grid-template-columns: 1fr; } }

/* ---------- Page header (inner pages) ---------- */
.page-head { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.page-head img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.page-head .wrap { position: relative; padding-top: clamp(64px, 9vw, 120px); padding-bottom: clamp(48px, 6vw, 80px); }
.page-head h1 { font-size: clamp(52px, 9vw, 128px); margin: 18px 0 20px; }
.page-head p { font-size: clamp(17px, 1.7vw, 20px); max-width: 54ch; margin: 0; color: #e8eae5; }

/* ---------- Services page ---------- */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; border-top: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.svc-card {
  padding: 36px 34px 34px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  background: var(--paper); scroll-margin-top: 100px;
}
.svc-card:nth-child(4n+2), .svc-card:nth-child(4n+3) { background: var(--white); }
.svc-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.svc-card__no { font-family: var(--mono); font-size: 13px; color: var(--red); letter-spacing: .06em; }
.svc-card svg { width: 40px; height: 40px; color: var(--ink); }
.svc-card h3 { font-size: clamp(30px, 3.2vw, 42px); margin: 6px 0 14px; }
.svc-card > p { color: var(--ink-soft); }
.svc-card ul { list-style: none; margin: 18px 0 0; padding: 0; border-top: 1px dashed var(--line); }
.svc-card li { padding: 9px 0 9px 26px; border-bottom: 1px dashed var(--line); position: relative; font-size: 15.5px; }
.svc-card li::before { content: ""; position: absolute; left: 0; top: 17px; width: 12px; height: 3px; background: var(--green); }
@media (max-width: 800px) { .svc-detail { grid-template-columns: 1fr; } .svc-card:nth-child(n) { background: var(--paper); } .svc-card:nth-child(even) { background: var(--white); } }

/* Plans */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  background: var(--white); border: 2px solid var(--ink); display: flex; flex-direction: column;
}
.plan__tag { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; padding: 10px 22px; border-bottom: 2px solid var(--ink); }
.plan--feature { box-shadow: 10px 10px 0 var(--green); }
.plan--feature .plan__tag { background: var(--ink); color: var(--white); }
.plan__body { padding: 26px 22px 28px; display: flex; flex-direction: column; flex: 1; }
.plan h3 { font-size: 36px; margin-bottom: 8px; }
.plan__for { color: var(--muted); font-size: 15.5px; margin-bottom: 20px; }
.plan__price { font-family: var(--display); font-stretch: 80%; font-weight: 700; font-size: 20px; text-transform: uppercase; padding: 14px 0; border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.plan__price small { display: block; font-family: var(--mono); font-size: 11.5px; color: var(--muted); letter-spacing: .06em; font-weight: 400; }
.plan ul { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.plan li { padding: 7px 0 7px 28px; position: relative; font-size: 15.5px; }
.plan li::before {
  content: ""; position: absolute; left: 2px; top: 13px; width: 12px; height: 6px;
  border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green); transform: rotate(-45deg);
}
.plan .btn { justify-content: center; }
@media (max-width: 960px) { .plans { grid-template-columns: 1fr; max-width: 520px; } .plan--feature { box-shadow: 6px 6px 0 var(--green); } }

/* Pricing notes */
.notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.note { border-top: 3px solid var(--ink); padding-top: 18px; }
.note h4 { font-size: 22px; margin-bottom: 8px; }
.note p { color: var(--ink-soft); font-size: 16px; margin: 0; }
@media (max-width: 800px) { .notes { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.channels { list-style: none; margin: 24px 0 0; padding: 0; border-top: 2px solid var(--ink); }
.channels a {
  display: grid; grid-template-columns: 52px 1fr 24px; gap: 16px; align-items: center;
  padding: 20px 0; border-bottom: 1px solid var(--ink); text-decoration: none;
}
.channels a:hover .channels__value { color: var(--green); }
.channels__icon { width: 52px; height: 52px; border: 2px solid var(--ink); display: grid; place-items: center; background: var(--white); }
.channels__icon svg { width: 24px; height: 24px; }
.channels li:first-child .channels__icon { background: var(--green); border-color: var(--green); color: var(--white); }
.channels__kind { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.channels__value { font-weight: 700; font-size: 19px; word-break: break-word; transition: color .15s ease; }
.channels__arrow { width: 22px; height: 22px; }

.hours { margin-top: 34px; padding: 22px 24px; background: var(--ink); color: var(--white); }
.hours h3 { font-size: 22px; margin-bottom: 8px; }
.hours p { margin: 0; color: #d9dbd5; font-size: 15.5px; }

.form-card { background: var(--white); border: 2px solid var(--ink); box-shadow: 10px 10px 0 var(--ink); }
.form-card__head { padding: 22px 28px; border-bottom: 2px dashed var(--line); }
.form-card__head h2 { font-size: clamp(32px, 3.6vw, 44px); margin-top: 10px; }
.form { padding: 24px 28px 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; }
.field label i { font-style: normal; color: var(--red); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 16px; color: var(--ink); background: var(--paper);
  border: 2px solid var(--ink); border-radius: 0; padding: 12px 14px; width: 100%;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23121412' stroke-width='2.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); background: var(--white); box-shadow: 4px 4px 0 var(--green); }
.field textarea { min-height: 130px; resize: vertical; }
.form__foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 6px; }
.form__hint { font-size: 14px; color: var(--muted); margin: 0; flex-basis: 100%; }
.form__error { grid-column: 1 / -1; color: var(--red); font-weight: 600; font-size: 15px; margin: 0; display: none; }
.form__error.is-shown { display: block; }
@media (max-width: 560px) { .form { grid-template-columns: 1fr; padding: 20px; } .form-card__head { padding: 20px; } .form-card { box-shadow: 6px 6px 0 var(--ink); } }

/* FAQ */
.faq { max-width: 880px; border-top: 2px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--ink); }
.faq summary {
  list-style: none; cursor: pointer; display: grid; grid-template-columns: 1fr 34px; gap: 20px; align-items: center;
  padding: 24px 0; font-family: var(--display); font-stretch: 85%; font-weight: 700; font-size: clamp(20px, 2.2vw, 25px);
  text-transform: uppercase; line-height: 1.15;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; width: 34px; height: 34px; border: 2px solid var(--ink); display: grid; place-items: center;
  font-family: var(--mono); font-size: 20px; font-weight: 400; transition: background .15s ease;
}
.faq details[open] summary::after { content: "–"; background: var(--ink); color: var(--white); }
.faq details p { margin: -6px 54px 24px 0; color: var(--ink-soft); }

.area { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.area h2 { font-size: clamp(38px, 5vw, 64px); margin: 16px 0 18px; }
.area__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area__tags span { border: 2px solid var(--ink); padding: 6px 12px; font-weight: 600; font-size: 15px; background: var(--white); }
.area__tags span.is-main { background: var(--ink); color: var(--white); }
.area__photo { border: 2px solid var(--ink); aspect-ratio: 4/3; overflow: hidden; }
.area__photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 800px) { .area { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #d9dbd5; padding: 64px 0 0; font-size: 15.5px; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__logo { background: var(--white); width: 190px; padding: 6px; margin-bottom: 20px; }
.footer h4 { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; font-weight: 500; color: #8f938b; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 9px; }
.footer a { text-decoration: none; color: #fff; }
.footer a:hover { text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 4px; }
.footer__tag { font-family: var(--display); font-stretch: 80%; font-weight: 800; text-transform: uppercase; color: #fff; font-size: 26px; line-height: 1; margin-bottom: 10px; }
.footer__bottom { border-top: 1px solid #33362f; padding: 20px 0 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-family: var(--mono); font-size: 12px; color: #8f938b; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60; width: 58px; height: 58px;
  background: var(--green); color: var(--white); display: grid; place-items: center;
  border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); transition: transform .15s ease;
}
.wa-float:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.wa-float svg { width: 28px; height: 28px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .docket li.is-live::before { animation: none; }
}
