/* ==========================================================================
   Madama Group — main stylesheet
   Palette drawn from the logo: ink black + olive green on warm paper.
   ========================================================================== */

:root {
  --ink: #16180f;
  --ink-soft: #3c4033;
  --olive: #4d6612;
  --olive-deep: #3b500c;
  --leaf: #7a942e;
  --paper: #f7f6f0;
  --cream: #eeece1;
  --line: #d9d6c6;
  --white: #ffffff;
  --max: 1140px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Archivo", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--olive); text-decoration: none; }
a:hover { color: var(--olive-deep); }

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

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 14px;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { background: var(--ink); color: var(--paper); }

.btn-solid {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
}
.btn-solid:hover { background: var(--olive-deep); border-color: var(--olive-deep); color: var(--white); }

.btn-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}
.btn-light:hover { background: var(--white); color: var(--ink); }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */

.topbar {
  background: var(--ink);
  color: #b9bcae;
  font-size: 13px;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 36px;
  gap: 16px;
}
.topbar a { color: #d7dacb; }
.topbar a:hover { color: var(--white); }
.topbar-contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-social { display: flex; gap: 14px; align-items: center; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 11px;
  border: 1px solid rgba(247, 246, 240, 0.28);
  border-radius: 2px;
  font-weight: 600;
}
.lang-toggle:hover { background: rgba(247, 246, 240, 0.12); border-color: rgba(247, 246, 240, 0.5); }
.lang-toggle svg { flex: none; opacity: 0.75; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 240, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand img { height: 58px; width: auto; }
.brand-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand:hover { color: var(--ink); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2px;
}
.main-nav a {
  display: block;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.main-nav a:hover { color: var(--olive); }
.main-nav a.active { color: var(--olive); }

.has-sub { position: relative; }
.has-sub > a::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 2px solid var(--olive);
  box-shadow: 0 14px 30px rgba(22, 24, 15, 0.1);
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.has-sub:hover .sub,
.has-sub:focus-within .sub,
.has-sub.open .sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sub a { padding: 9px 20px; font-size: 14.5px; }
.sub a:hover { background: var(--paper); }

.nav-cta { margin-left: 14px; }
.main-nav a.nav-cta { color: var(--white); }
.main-nav a.nav-cta:hover { color: var(--white); background: var(--olive-deep); border-color: var(--olive-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* --------------------------------------------------------------------------
   Home hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
/* The photo reads as atmosphere, not portraiture: blurred and knocked back so
   no individual is identifiable. The negative inset bleeds the blur past the
   edges, which would otherwise show as a soft border. */
.hero-photo {
  position: absolute;
  inset: -30px;
  background-size: cover;
  background-position: center 32%;
  filter: blur(7px) saturate(0.85);
  opacity: 0.42;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 24, 15, 0.95), rgba(22, 24, 15, 0) 40%),
    linear-gradient(100deg, rgba(22, 24, 15, 0.92) 25%, rgba(22, 24, 15, 0.5) 70%, rgba(22, 24, 15, 0.72));
}
.hero .wrap {
  position: relative;
  padding-top: 110px;
  padding-bottom: 120px;
  max-width: var(--max);
}
.hero .eyebrow { color: var(--leaf); }
.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  max-width: 13em;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: #c4d585;
}
.hero p {
  font-size: 19px;
  color: #cfd2c2;
  max-width: 34em;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section { padding: 88px 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--ink); color: var(--paper); }

.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 42px); margin-bottom: 16px; }
.section-head p { color: var(--ink-soft); font-size: 18px; }
.section-dark .section-head p { color: #b9bcae; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Numbered service list (home + solutions overview) */
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid;
  grid-template-columns: 80px 1.1fr 1.6fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: background 0.15s ease;
}
.svc-row:hover { background: rgba(77, 102, 18, 0.05); }
.svc-num {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--olive);
}
.svc-row h3 { font-size: 24px; }
.svc-row p { color: var(--ink-soft); font-size: 16px; }
.svc-go {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  white-space: nowrap;
}
.svc-row:hover .svc-go { color: var(--olive-deep); }

/* Card grid (industries) */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 30px 28px 26px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
a.card:hover {
  border-color: var(--olive);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(22, 24, 15, 0.07);
  color: var(--ink);
}
.card h3 { font-size: 21px; }
.card p { font-size: 15.5px; color: var(--ink-soft); flex: 1; }
.card .svc-go { margin-top: 6px; }
.card-icon { color: var(--olive); margin-bottom: 6px; }
.card-icon svg { width: 30px; height: 30px; }

/* Two-column feature (text + text / text + figure) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.split h2 { font-size: clamp(28px, 3.2vw, 38px); margin-bottom: 18px; }
.split p + p { margin-top: 16px; }
.split .lead { font-size: 19px; }
.muted { color: var(--ink-soft); }

.figure-frame {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 14px;
  border-radius: 3px;
}
.figure-frame img { border-radius: 2px; }

/* Detail list used on inner pages */
.detail-list { list-style: none; border-top: 1px solid var(--line); }
.detail-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.detail-list .svc-num { padding-top: 4px; }
.detail-list h3 { font-size: 20px; margin-bottom: 6px; }
.detail-list p { color: var(--ink-soft); font-size: 16px; }

/* Checklist */
.check-list { list-style: none; display: grid; gap: 14px; }
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16.5px;
}
.check-list svg {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 4px;
  color: var(--olive);
}

/* Stat band */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 44px;
  margin-top: 60px;
}
.stat .stat-n {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 8px;
}
.stat p { color: var(--ink-soft); font-size: 15.5px; }

/* --------------------------------------------------------------------------
   Inner page hero
   -------------------------------------------------------------------------- */

.page-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 72px 0 64px;
}
.page-hero h1 { font-size: clamp(34px, 4.4vw, 52px); margin-bottom: 18px; max-width: 16em; }
.page-hero .lead {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 42em;
}
.crumbs {
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--olive); }
.crumbs span { margin: 0 8px; color: var(--line); }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band { background: var(--ink); color: var(--paper); }
.cta-band .wrap {
  padding-top: 84px;
  padding-bottom: 84px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}
.cta-band h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.cta-band h2 em { font-style: italic; color: #c4d585; }
.cta-band p { color: #b9bcae; max-width: 36em; }
.cta-band .cta-actions { display: flex; gap: 16px; justify-content: flex-end; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Careers
   -------------------------------------------------------------------------- */

.job {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--olive);
  border-radius: 3px;
  padding: 34px 36px;
}
.job + .job { margin-top: 24px; }
.job-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.job h3 { font-size: 24px; }
.job-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.tag {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive-deep);
  background: rgba(77, 102, 18, 0.1);
  padding: 5px 12px;
  border-radius: 2px;
}
.job p { color: var(--ink-soft); font-size: 16px; max-width: 56em; }
.job ul { margin: 14px 0 0 20px; color: var(--ink-soft); font-size: 16px; }
.job ul li { margin-bottom: 6px; }

/* Job detail page */
.job-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 60px;
  align-items: start;
}
.job-side {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}
.job-facts {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--olive);
  border-radius: 3px;
  padding: 22px 24px;
  display: grid;
  gap: 14px;
}
.job-fact { display: grid; gap: 2px; font-size: 15.5px; }
.job-fact__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
}
.job-block { margin-bottom: 40px; }
.job-block h3 {
  font-size: 22px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.job-list { margin-left: 20px; color: var(--ink-soft); }
.job-list li { margin-bottom: 8px; }

.field .field-label,
.field > label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
/* Formatted questions: the emphasised parts have to out-weigh the rest. */
.field .field-label strong,
.field > label strong { font-weight: 700; }
.field .field-label br + br,
.field > label br + br { line-height: 2.2; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 13px 14px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--olive);
}
.req { color: var(--olive); }

/* The application form panel */
.apply-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--olive);
  border-radius: 3px;
  padding: 38px 40px;
}
.apply-card .form-grid { gap: 26px; }
.apply-card .field input,
.apply-card .field select,
.apply-card .field textarea { background: var(--paper); }
.apply-card .field input:focus,
.apply-card .field select:focus,
.apply-card .field textarea:focus { background: var(--white); }

.field input,
.field select,
.field textarea { accent-color: var(--olive); }

/* Choose-one options as pills */
.field .radios { display: flex; gap: 12px; flex-wrap: wrap; }
.field .radio {
  font-size: 15.5px;
  display: flex;
  gap: 9px;
  align-items: center;
  font-weight: 500;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 2px;
  padding: 11px 22px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field .radio:hover { border-color: var(--olive); }
.field .radio:has(input:checked) {
  border-color: var(--olive);
  background: rgba(77, 102, 18, 0.08);
}
.field .radio input { accent-color: var(--olive); }
.field .checkbox { font-size: 16px; display: flex; gap: 10px; align-items: center; font-weight: 400; }

/* Styled file picker: native input stays focusable for validation messages */
.file-pick { position: relative; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.file-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.file-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 12px 24px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.file-btn:hover { background: var(--ink); color: var(--paper); }
.file-btn svg { flex: none; }
.file-name { font-size: 15px; color: var(--ink-soft); }
.file-name.has-file { color: var(--olive-deep); font-weight: 600; }

/* Voice answer: record or upload */
.voice {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  padding: 20px 22px;
}
.voice-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.voice-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.voice-tab:hover { border-color: var(--olive); color: var(--ink); }
.voice-tab.is-on {
  border-color: var(--olive);
  background: rgba(77, 102, 18, 0.08);
  color: var(--olive-deep);
}
.voice-pane { display: none; }
.voice-pane.is-on { display: block; }
.voice-controls { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.voice-rec { display: inline-flex; align-items: center; gap: 9px; }
.voice-rec.is-rec {
  border-color: #a33;
  color: #a33;
}
.voice-rec.is-rec:hover { background: #a33; color: var(--white); }
.voice-timer {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  color: #a33;
  font-variant-numeric: tabular-nums;
}
.voice-timer[hidden],
.voice-preview[hidden] { display: none; }
.rec-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a33;
  animation: rec-pulse 1.1s ease-in-out infinite;
}
@keyframes rec-pulse {
  50% { opacity: 0.25; }
}
.voice-preview { width: 100%; margin-top: 16px; }

@media (max-width: 620px) {
  .apply-card { padding: 26px 20px; }
  .field .radios { gap: 8px; }
  .field .radio { padding: 10px 16px; }
}

@media (max-width: 860px) {
  .job-layout { grid-template-columns: 1fr; }
  .job-side { position: static; }
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
}

.form-grid { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 13px 14px;
  transition: border-color 0.15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--olive);
}
.field textarea { min-height: 150px; resize: vertical; }

.contact-info { border-left: 1px solid var(--line); padding-left: 50px; }
.contact-info h3 { font-size: 20px; margin-bottom: 8px; }
.contact-info .block { margin-bottom: 30px; }
.contact-info a.big {
  font-size: 19px;
  color: var(--ink);
}
.contact-info a.big:hover { color: var(--olive); }

.form-note { font-size: 14px; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: #a6a99b;
  font-size: 15px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding: 70px 0 50px;
}
.footer-brand img { height: 64px; width: auto; margin-bottom: 18px; }
.footer-brand p { max-width: 26em; }
.site-footer h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: #a6a99b; }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(247, 246, 240, 0.12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { gap: 44px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0 18px;
    display: none;
  }
  .has-sub.open .sub { display: block; }
  .has-sub > a::after { float: right; margin-top: 9px; }
  .nav-cta { margin: 18px 0 0; display: inline-block; }

  .svc-row { grid-template-columns: 48px 1fr; }
  .svc-row p { grid-column: 2; }
  .svc-go { grid-column: 2; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .contact-info { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 40px; }
  .cta-band .wrap { grid-template-columns: 1fr; }
  .cta-band .cta-actions { justify-content: flex-start; }
  .stats { grid-template-columns: 1fr; gap: 26px; }
  .section { padding: 64px 0; }
  .hero .wrap { padding-top: 80px; padding-bottom: 88px; }
  /* Narrow screens put text over the whole photo, so the veil goes back up. */
  .hero-photo { background-position: 62% 30%; }
  .hero-photo::after {
    background: linear-gradient(180deg, rgba(22, 24, 15, 0.94) 0%, rgba(22, 24, 15, 0.8) 45%, rgba(22, 24, 15, 0.92) 100%);
  }
}

@media (max-width: 620px) {
  .grid-3, .grid-2, .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .brand-name { display: none; }
  .topbar .wrap { justify-content: center; }
  .topbar-social { display: none; }
}
