/* ============================================================
   BONGO HAMA ENTERPRISES · professional rebrand
   Brand red · black · white (matched to company logo)
   Moving company · Tabata Kwa Mkua, Dar es Salaam
   ============================================================ */

:root {
  --red: #d31c23;
  --red-deep: #a3141a;
  --red-tint: #fdeeee;
  --ink: #16181b;
  --paper: #ffffff;
  --bg: #fbfbfc;
  --gray: #f3f4f6;
  --line: #e5e7ea;
  --soft: #5d6169;
  --container: 1200px;
  --sel-bg: var(--red);
  --sel-fg: #fff;
  --display: "Archivo", sans-serif;
  --body: "Manrope", sans-serif;

  /* legacy aliases kept for older markup */
  --cream: var(--bg);
  --cream-2: var(--gray);
  --orange: var(--red);
  --orange-deep: var(--red-deep);
  --violet: var(--ink);
  --violet-deep: #000;
  --lemon: var(--red);
  --teal: var(--red);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.7;
  animation: page-in .7s ease-out;
}
@keyframes page-in { from { opacity: 0; } }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 108%;
  letter-spacing: -.01em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 3px;
  background: linear-gradient(90deg, var(--ink) 0 8px, var(--red) 8px 100%);
}

.h-display {
  font-size: clamp(2.5rem, 5.6vw, 4.4rem);
  line-height: 1.02;
  text-transform: uppercase;
}
.h-section {
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  line-height: 1.06;
  text-transform: uppercase;
}
.h-section .o, .h-section .v, .h-display .o, .h-display .v { color: var(--red); }

/* former squiggle-underline → clean brand rule */
.squig {
  position: relative;
  white-space: nowrap;
  color: var(--red);
}
.squig::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -.08em;
  height: .1em;
  background: linear-gradient(90deg, var(--ink) 0 14%, var(--red) 14% 86%, var(--ink) 86%);
}
.lede { color: var(--soft); font-size: 1.12rem; max-width: 56ch; }

/* ---------- nav ---------- */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid transparent;
  transition: border-color .4s, box-shadow .4s;
  backdrop-filter: blur(12px);
}
.site-nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 12px 32px -26px rgba(22, 24, 27, .5);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 2rem;
}
.brand { display: flex; align-items: center; gap: .8rem; }
.brand svg, .brand img { width: 48px; height: 48px; }
.brand img {
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
}
.site-footer .brand img { box-shadow: 0 0 0 2px rgba(255, 255, 255, .18); }
.brand .wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: 1.22rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1;
}
.brand .wordmark small {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-top: .3rem;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .34em;
  color: var(--ink);
}
.brand .wordmark small::before,
.brand .wordmark small::after {
  content: "";
  height: 2px;
  width: 12px;
  background: linear-gradient(90deg, var(--red) 0 55%, var(--ink) 55%);
}
.brand .wordmark small::after {
  background: linear-gradient(90deg, var(--ink) 0 45%, var(--red) 45%);
}
.site-footer .brand .wordmark small { color: #b9bcc2; }

/* legacy span-based brand text */
.brand > span:not(.wordmark) {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.bh-o { color: var(--red); }

.nav-links { display: flex; gap: 2.1rem; font-weight: 700; font-size: .9rem; }
.nav-links a { color: var(--soft); padding: .35rem 0; position: relative; transition: color .25s; }
.nav-links a:hover, .nav-links a.is-current { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.nav-links a:hover::after, .nav-links a.is-current::after { transform: scaleX(1); transform-origin: left; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 106%;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  transition: background .25s, transform .2s, box-shadow .25s;
}
.btn:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -14px rgba(211, 28, 35, .6);
}
.btn.v { background: var(--ink); }
.btn.v:hover { background: #000; box-shadow: 0 14px 26px -14px rgba(0, 0, 0, .55); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.nav-burger { display: none; }
@media (max-width: 940px) {
  .nav-links, .site-nav .btn { display: none; }
  .nav-burger { display: flex; flex-direction: column; gap: 6px; padding: .6rem; }
  .nav-burger span { width: 26px; height: 2.5px; border-radius: 2px; background: var(--ink); transition: .3s; }
  body.nav-open .nav-burger span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
  body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
  .mobile-menu {
    position: fixed; inset: 84px 0 0; z-index: 49;
    background: var(--paper);
    border-top: 1px solid var(--line);
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    gap: 1.4rem; text-align: center;
    padding: 2rem 1.5rem 3rem;
    overflow-y: auto;
    opacity: 0; pointer-events: none; transition: opacity .3s;
  }
  body.nav-open .mobile-menu { opacity: 1; pointer-events: auto; }
  body.nav-open .site-nav { background: var(--paper); }
  .mobile-menu a { font-family: var(--display); font-weight: 800; font-size: 1.7rem; text-transform: uppercase; padding: .2rem .8rem; }
  .mobile-menu a.is-current { color: var(--red); }
  .mobile-menu .mm-actions {
    display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center;
    margin-top: 1.2rem; padding-top: 1.8rem;
    border-top: 1px solid var(--line);
    width: min(320px, 100%);
  }
  .mobile-menu .mm-actions a.btn {
    display: inline-flex; /* wins over the .site-nav .btn { display:none } above */
    font-size: .82rem; padding: .9rem 1.5rem;
    color: #fff;
  }
}
@media (min-width: 941px) { .mobile-menu { display: none; } }

/* ============================================================
   MOBILE OPTIMIZATION (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  body { font-size: 1rem; }

  .site-nav .container { height: 72px; }
  .brand svg, .brand img { width: 42px; height: 42px; }
  .brand .wordmark { font-size: 1.05rem; }
  .mobile-menu { inset: 72px 0 0; }

  .h-display { font-size: clamp(2.1rem, 10.5vw, 2.7rem); }
  .h-section { font-size: clamp(1.55rem, 7.5vw, 2rem); }
  .kicker { font-size: .66rem; letter-spacing: .2em; }
  .lede { font-size: 1.02rem; }

  .hero { padding: 7rem 0 3.5rem; min-height: auto; }
  .hero .container { gap: 2.4rem; }
  .hero .lede { margin-top: 1.2rem; }
  .hero-cta { margin-top: 1.8rem; gap: .8rem; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-badges { margin-top: 1.8rem; gap: .6rem; }
  .hero-badges span { font-size: .68rem; padding: .5rem .95rem; }

  .btn { padding: .95rem 1.6rem; font-size: .84rem; }

  .photo-chip { left: 12px; bottom: 18px; padding: .65rem .95rem; }
  .photo-chip strong { font-size: 1rem; }
  .photo-chip span { font-size: .58rem; }

  .hama-marquee span { font-size: .85rem; gap: 2rem; }
  .hama-marquee .pdt-marquee-track { gap: 2rem; padding-right: 2rem; }

  .section { padding: 4.2rem 0; }
  .section-head { margin-bottom: 2.2rem; }
  .section-head .btn { display: none; } /* "All services" etc: cards link anyway, keep the fold tight */

  .page-hero { padding: 8.5rem 0 3.2rem; }

  .stick-card { padding: 1.8rem 1.6rem; }
  .step { padding: 1.7rem 1.5rem; }
  .speech { padding: 1.8rem 1.6rem; }
  .feature-split { gap: 2.2rem; }
  .feature-split .checks li { font-size: .95rem; }

  .quote-widget { padding: 1.5rem; gap: 1.8rem; border-radius: 14px; }
  .qw-field { margin-bottom: 1.4rem; }
  .chip-row { gap: .55rem; }
  .chip-row button { padding: .6rem 1rem; font-size: .84rem; }
  .qw-result { padding: 1.7rem; }

  .faq summary { padding: 1.15rem 3.2rem 1.15rem 1.3rem; font-size: .94rem; }
  .faq .a { padding: 0 1.3rem 1.3rem; font-size: .92rem; }

  .c-form { padding: 1.6rem; }
  .side-card { padding: 1.7rem; }
  .side-card .row { grid-template-columns: 88px 1fr; }
  .logo-card img { max-width: 170px; }

  .cta-band { padding: 4.2rem 0; }
  .cta-band .btn { width: min(320px, 100%); justify-content: center; }

  .site-footer { padding: 3.4rem 0 2rem; }
  .footer-grid { gap: 2.2rem; margin-bottom: 2.4rem; }
  .footer-bottom { justify-content: center; text-align: center; }

  .ba-caption { flex-direction: column; gap: .25rem; font-size: .84rem; }
  .kanga { height: 5px; }
}
@media (max-width: 380px) {
  .h-display { font-size: 2rem; }
  .chip-row button { padding: .55rem .85rem; font-size: .8rem; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 96svh;
  display: flex;
  align-items: center;
  padding: 9rem 0 5rem;
  background:
    radial-gradient(70% 90% at 90% 0%, rgba(211, 28, 35, .06), transparent 55%),
    var(--paper);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 980px) { .hero .container { grid-template-columns: 1fr; } }
.hero .lede { margin-top: 1.7rem; }
.hero-cta { display: flex; gap: 1rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero-badges { display: flex; gap: .8rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero-badges span {
  font-weight: 800;
  font-size: .74rem;
  letter-spacing: .04em;
  border: 1.5px solid var(--line);
  background: var(--paper);
  border-radius: 100px;
  padding: .55rem 1.15rem;
  color: var(--soft);
}
.hero-badges span:first-child {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-tint);
}

/* ---------- photo frames ---------- */
.photo-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 70px -42px rgba(22, 24, 27, .65);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(22, 24, 27, .08);
  pointer-events: none;
}
.photo-frame .band {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--ink) 0 18%, var(--red) 18% 100%);
}
.photo-chip {
  position: absolute;
  left: 18px; bottom: 24px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: .85rem 1.2rem;
  box-shadow: 0 16px 30px -18px rgba(22, 24, 27, .55);
}
.photo-chip strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--red);
  line-height: 1.1;
}
.photo-chip span {
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--soft);
}

/* ---------- brand dash divider (echoes logo underline) ---------- */
.kanga {
  height: 6px;
  background:
    repeating-linear-gradient(90deg,
      var(--red) 0 90px,
      var(--ink) 90px 118px,
      var(--red) 118px 208px,
      var(--ink) 208px 236px);
}

/* ---------- marquee ---------- */
.hama-marquee {
  background: var(--ink);
  color: #fff;
  padding: 1rem 0;
  --marquee-speed: 26s;
}
.hama-marquee .pdt-marquee-track { gap: 3rem; padding-right: 3rem; }
.hama-marquee span {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 108%;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  gap: 3rem;
  align-items: center;
}
.hama-marquee em { font-style: normal; color: #ff6b6f; }
.hama-marquee span::after { content: ""; width: 22px; height: 3px; background: var(--red); }

/* ---------- sections ---------- */
.section { padding: 7rem 0; position: relative; }
.section.tint { background: var(--gray); border-block: 1px solid var(--line); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3.2rem;
}

/* ---------- service cards ---------- */
.stick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 1000px) { .stick-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .stick-grid { grid-template-columns: 1fr; } }
.stick-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2.3rem 2.1rem;
  position: relative;
  overflow: clip;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s, border-color .3s;
}
.stick-card:hover {
  transform: translateY(-6px);
  border-color: rgba(211, 28, 35, .45);
  box-shadow: 0 30px 48px -32px rgba(22, 24, 27, .4);
}
.stick-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--ink) 0 16%, var(--red) 16%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.stick-card:hover::before { transform: scaleX(1); }
.emoji-box {
  width: 58px; height: 58px;
  border-radius: 12px;
  background: var(--red-tint);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
}
.emoji-box svg { width: 32px; height: 32px; }
.emoji-box svg, .emoji-box svg * { stroke: var(--red); }
.stick-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.stick-card p { color: var(--soft); font-size: .94rem; }
.price-tag {
  display: inline-block;
  margin-top: 1.3rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-tint);
  border-radius: 6px;
  padding: .45rem 1rem;
}

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; counter-reset: st; }
.steps.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .steps, .steps.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps, .steps.cols-3 { grid-template-columns: 1fr; } }
.step {
  counter-increment: st;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2.2rem 2rem;
}
.step::before {
  content: "0" counter(st);
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: var(--ink);
  border-bottom: 3px solid var(--red);
  border-radius: 8px;
  padding: .4rem .8rem;
  margin-bottom: 1.2rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.step p { color: var(--soft); font-size: .93rem; }

/* ---------- split feature (photo sections) ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 940px) { .feature-split { grid-template-columns: 1fr; } }
.feature-split .checks { display: grid; gap: 1rem; margin-top: 1.8rem; }
.feature-split .checks li { display: flex; gap: .9rem; color: var(--soft); }
.feature-split .checks li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: .2rem;
  border-radius: 50%;
  background-color: var(--red-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath d='M6 11.5l3.5 3.5L16 8' fill='none' stroke='%23d31c23' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.feature-split .checks li strong { color: var(--ink); }

/* ---------- testimonials ---------- */
.speech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 1000px) { .speech-grid { grid-template-columns: 1fr; } }
.speech {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2.3rem 2.1rem;
  font-size: .97rem;
  color: var(--ink);
  position: relative;
}
.speech::before {
  content: "\201C";
  position: absolute;
  top: .6rem; right: 1.4rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  color: var(--red-tint);
}
.stars { color: var(--red); letter-spacing: .2em; margin-bottom: 1rem; font-size: .9rem; }
.speech .who { margin-top: 1.4rem; font-weight: 800; font-size: .9rem; }
.speech .who span { display: block; font-weight: 600; font-size: .76rem; color: var(--soft); letter-spacing: .04em; }

/* ---------- page hero ---------- */
.page-hero {
  padding: 12rem 0 4.5rem;
  background:
    radial-gradient(70% 90% at 85% 0%, rgba(211, 28, 35, .07), transparent 55%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero .lede { margin-top: 1.3rem; }

/* ---------- quote widget (pricing) ---------- */
.quote-widget {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2.8rem;
  box-shadow: 0 30px 50px -40px rgba(22, 24, 27, .4);
}
@media (max-width: 900px) { .quote-widget { grid-template-columns: 1fr; padding: 2rem; } }
.qw-field { margin-bottom: 2rem; }
.qw-field label {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.chip-row { display: flex; gap: .7rem; flex-wrap: wrap; }
.chip-row button {
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: .65rem 1.2rem;
  font-weight: 700;
  font-size: .88rem;
  color: var(--soft);
  background: var(--paper);
  transition: all .2s;
}
.chip-row button:hover { border-color: var(--red); color: var(--red); }
.chip-row button.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 8px 18px -10px rgba(211, 28, 35, .7);
}
.qw-result {
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 2.4rem;
  border-top: 5px solid var(--red);
}
.qw-result .label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #9ea3ab;
}
.qw-result .figure {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: #fff;
  margin: .5rem 0 .2rem;
  line-height: 1.05;
}
.qw-result small { color: #ff8a8e; font-weight: 700; }
.qw-result ul { margin-top: 1.6rem; display: grid; gap: .6rem; }
.qw-result li {
  font-size: .88rem;
  color: #c9ccd2;
  display: flex;
  gap: .6rem;
}
.qw-result li::before { content: "\2713"; color: #ff4a50; font-weight: 800; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 1rem; max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: clip;
  transition: border-color .25s;
}
.faq details[open] { border-color: rgba(211, 28, 35, .5); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.4rem 3.4rem 1.4rem 1.8rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.02rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.5rem; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red-tint);
  color: var(--red);
  font-weight: 800;
  font-size: 1.2rem;
  transition: transform .3s, background .3s, color .3s;
}
.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--red);
  color: #fff;
}
.faq .a {
  padding: 0 1.8rem 1.6rem;
  color: var(--soft);
  font-size: .96rem;
}

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3.5rem; }
/* let grid tracks shrink below item min-content so nothing forces
   horizontal overflow on narrow screens */
.contact-grid > *, .c-row > .c-field, .quote-widget > *,
.feature-split > *, .footer-grid > *, .steps > .step { min-width: 0; }
.c-field input, .c-field select, .c-field textarea { min-width: 0; }
.side-card .row p { overflow-wrap: anywhere; }
@media (max-width: 950px) { .contact-grid { grid-template-columns: 1fr; } }
.c-form {
  display: grid;
  gap: 1.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2.6rem;
}
.c-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 560px) { .c-row { grid-template-columns: 1fr; } }
.c-field label {
  display: block;
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: .5rem;
}
.c-field input, .c-field select, .c-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: .95rem 1.1rem;
  font-weight: 600;
}
.c-field input:focus, .c-field select:focus, .c-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211, 28, 35, .14);
}
.form-done {
  display: none;
  border: 1.5px solid var(--red);
  background: var(--red-tint);
  color: var(--red-deep);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  font-weight: 700;
  font-size: .92rem;
}
.form-done.is-visible { display: block; animation: fadeUp .5s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } }

.side-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  padding: 2.6rem;
  box-shadow: 0 26px 44px -38px rgba(22, 24, 27, .45);
}
.side-card h3 { font-size: 1.3rem; margin-bottom: 1.2rem; }
.side-card .row {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 1rem;
  padding: .95rem 0;
  border-top: 1px solid var(--line);
  font-size: .94rem;
}
.side-card .row span {
  font-weight: 800;
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  padding-top: .35rem;
}
.side-card .row p { color: var(--soft); }
.side-card .row p a { color: var(--ink); font-weight: 700; }
.side-card .row p a:hover { color: var(--red); }
.logo-card {
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 1.6rem;
}
.logo-card img { max-width: 230px; width: 100%; height: auto; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: #fff;
  padding: 6.5rem 0;
  text-align: center;
  position: relative;
  overflow: clip;
  border-top: 6px solid var(--red);
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -140px; top: -140px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 28, 35, .35), transparent 70%);
}
.cta-band h2 {
  position: relative;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  text-transform: uppercase;
}
.cta-band .lede { position: relative; color: #b7bac0; margin: 1.2rem auto 2.4rem; }
.cta-band .btn { position: relative; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #b7bac0; padding: 4.5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #ff4a50;
  margin-bottom: 1.2rem;
}
.site-footer ul { display: grid; gap: .7rem; }
.site-footer a, .site-footer p { color: #b7bac0; font-size: .93rem; }
.site-footer a:hover { color: #fff; }
.site-footer .brand .wordmark { color: #ff4a50; }
.footer-bottom {
  border-top: 1px solid rgba(183, 186, 192, .25);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: #8a8e96;
}
