/* Kugua Inc — site styles */

:root {
  --paper: #faf9f5;
  --paper-warm: #f1eee6;
  --surface: #ffffff;
  --ink: #142019;
  --ink-secondary: #3f4943;
  --muted: #687169;
  --rule: #dedfd8;
  --rule-strong: #c5c9c0;
  --accent: #174c37;
  --accent-hover: #0f3b2a;
  --accent-soft: #dce9e1;
  --copper: #a85f2c;
  --copper-soft: #f1dfd1;
  --shadow-sm: 0 10px 30px rgba(20, 32, 25, 0.08);
  --shadow-lg: 0 24px 70px rgba(20, 32, 25, 0.13);
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino,
    Georgia, "Times New Roman", serif;

  --wrap: 1240px;
  --gutter: 1.5rem;
  --label-col: 168px;

  --step-display: clamp(2.75rem, 6.4vw, 5.45rem);
  --step-h2: clamp(1.85rem, 3.6vw, 2.9rem);
  --step-h3: clamp(1.15rem, 1.6vw, 1.4rem);
  --step-body: clamp(1rem, 0.4vw + 0.94rem, 1.1rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--step-body);
  line-height: 1.62;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.025em;
}

p {
  margin: 0 0 1.15em;
  max-width: 62ch;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}

::selection {
  background: var(--accent-soft);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- shell ---------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  z-index: 60;
}

.skip:focus {
  left: 0.75rem;
  top: 0.75rem;
}

/* ---------- header ---------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 245, 0.9);
  backdrop-filter: saturate(130%) blur(14px);
  border-bottom: 1px solid var(--rule);
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 0.3rem 0;
}

.wordmark__mark {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.wordmark__text b {
  font-weight: 600;
}

.wordmark__text span {
  color: var(--muted);
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--rule-strong);
}

.nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

.nav .nav__cta {
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 0.66rem 1rem;
}

.nav .nav__cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
}

/* ---------- generic bands ---------- */

.band {
  border-top: 1px solid var(--rule);
  padding: clamp(3rem, 6vw, 5.25rem) 0;
}

.band--dark {
  border-top-color: rgba(255, 255, 255, 0.14);
  background: var(--ink);
  color: #f9faf7;
}

.band--dark .label,
.band--dark .small,
.band--dark .media-caption {
  color: #aab5ad;
}

.band--dark .section-title {
  color: #fff;
}

.band--first {
  border-top: 0;
}

.band--warm {
  background: var(--paper-warm);
}

.row {
  display: grid;
  grid-template-columns: var(--label-col) minmax(0, 1fr);
  gap: 0 clamp(1.5rem, 4vw, 3.5rem);
}

.row--wide {
  grid-template-columns: minmax(0, 1fr);
}

.label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.5rem;
}

.label--accent {
  color: var(--accent);
}

.row__label {
  position: sticky;
  top: 96px;
  align-self: start;
}

h2.section-title {
  font-size: var(--step-h2);
  line-height: 1.08;
  margin-bottom: 1.4rem;
  max-width: 30ch;
}

.lede {
  font-size: clamp(1.05rem, 1vw + 0.9rem, 1.28rem);
  line-height: 1.5;
  color: var(--ink-secondary);
  max-width: 56ch;
}

.small {
  font-size: 0.88rem;
  color: var(--muted);
}

.spaced {
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
}

/* ---------- hero ---------- */

.hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3.5rem, 7vw, 6rem);
}

.hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero__eyebrow em {
  font-style: normal;
  color: var(--accent);
}

.hero h1 {
  font-size: var(--step-display);
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 14ch;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.hero h1 .soft {
  color: var(--muted);
}

.hero__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
}

.hero--home {
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.82fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.hero__visual {
  position: relative;
}

.hero__visual::before {
  content: "";
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  top: -10%;
  right: -8%;
  border-radius: 50%;
  background: var(--copper-soft);
  z-index: -1;
}

.hero__visual img,
.media-frame img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.hero__visual img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero__badge {
  position: absolute;
  left: -1.25rem;
  bottom: 1.5rem;
  max-width: 220px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-md);
  background: rgba(250, 249, 245, 0.94);
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.1rem;
  backdrop-filter: blur(12px);
}

.hero__badge strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}

.hero__badge span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.hero__meta {
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
}

.hero__meta dl {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.hero__meta div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.86rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.7rem;
}

.hero__meta div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero__meta dt {
  color: var(--muted);
}

.hero__meta dd {
  margin: 0;
  text-align: right;
}

/* ---------- links ---------- */

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  margin-top: 1.75rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  color: #fff;
  background: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
}

.button--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}

.button--secondary:hover {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
}

.tlink {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.2rem;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.tlink span {
  color: var(--accent);
  transition: transform 0.15s ease;
}

.tlink:hover {
  color: var(--accent);
}

.tlink:hover span {
  transform: translateX(3px);
}

.tlink--quiet {
  border-bottom-color: var(--rule-strong);
}

.tlink--quiet span {
  color: var(--muted);
}

.tlink--quiet:hover {
  border-bottom-color: var(--accent);
}

.inline-link {
  border-bottom: 1px solid var(--rule-strong);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.inline-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ---------- numbered items ---------- */

.items {
  list-style: none;
  border-top: 1px solid var(--rule);
}

.item {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 0 1rem;
  padding: clamp(1.5rem, 2.5vw, 2rem) 0;
  border-bottom: 1px solid var(--rule);
}

.item__num {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding-top: 0.42rem;
  font-variant-numeric: tabular-nums;
}

.item h3 {
  font-size: var(--step-h3);
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.item p {
  color: var(--ink-secondary);
  margin-bottom: 0;
}

.item__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
  margin-top: 1rem;
}

.item__tags li {
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  padding: 0.16rem 0.45rem;
}

/* ---------- notes (two-up prose blocks) ---------- */

.notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem) clamp(1.75rem, 5vw, 4rem);
}

.note h3 {
  font-size: 1.12rem;
  margin-bottom: 0.55rem;
}

.note p {
  color: var(--ink-secondary);
  max-width: 46ch;
}

.note--full {
  grid-column: 1 / -1;
}

/* ---------- capability and feature cards ---------- */

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.56fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading p {
  color: var(--ink-secondary);
}

.service-grid,
.case-grid,
.trust-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  min-height: 270px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--rule-strong);
  box-shadow: var(--shadow-sm);
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: auto;
}

.service-card h3 {
  font-size: 1.15rem;
  margin: 2.5rem 0 0.65rem;
}

.service-card p {
  color: var(--ink-secondary);
  font-size: 0.91rem;
  line-height: 1.55;
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.media-split--reverse {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.08fr);
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-warm);
  box-shadow: var(--shadow-sm);
}

.media-frame img {
  aspect-ratio: 4 / 3;
}

.media-caption {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 0.75rem;
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.case-card__visual {
  min-height: 180px;
  padding: 1.25rem;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(145deg, rgba(220, 233, 225, 0.18), rgba(168, 95, 44, 0.17));
}

.case-card__visual span {
  display: inline-flex;
  width: 54px;
  aspect-ratio: 0.52;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 16px -12px 0 rgba(255, 255, 255, 0.06);
}

.case-card__body {
  padding: 1.3rem;
}

.case-card__label {
  color: #c6a17f;
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-card h3 {
  font-size: 1.18rem;
  margin: 0.6rem 0;
}

.case-card p {
  color: #bfc8c1;
  font-size: 0.88rem;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-card {
  border-top: 2px solid var(--accent);
  padding-top: 1.15rem;
}

.trust-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
}

.trust-card p {
  color: var(--ink-secondary);
  font-size: 0.9rem;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.contact-card {
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-card h2,
.contact-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.contact-card p {
  color: var(--ink-secondary);
}

.contact-card .button {
  margin-top: 0.5rem;
}

.eyebrow-note {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  background: var(--copper-soft);
  color: #74401d;
  padding: 0.4rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- pull quote ---------- */

.pull {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1.34;
  letter-spacing: -0.01em;
  max-width: 34ch;
  margin: 0;
  color: var(--ink);
}

.pull--spaced {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.pull footer {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- steps / lists ---------- */

.plain-list {
  list-style: none;
}

.plain-list li {
  border-bottom: 1px solid var(--rule);
  padding: 0.85rem 0;
  display: flex;
  gap: 0.9rem;
}

.plain-list li:last-child {
  border-bottom: 0;
}

.plain-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 0.72em;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.prose h2 {
  font-size: 1.32rem;
  margin: 2.4rem 0 0.8rem;
  letter-spacing: -0.015em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 1.05rem;
  margin: 1.6rem 0 0.5rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.15rem;
  margin: 0 0 1.15em;
  max-width: 62ch;
}

.prose li {
  margin-bottom: 0.35em;
}

.prose {
  max-width: 66ch;
}

.legal-page .hero {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.legal-page .prose {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: clamp(1.4rem, 4vw, 3rem);
  max-width: 74ch;
}

.prose .updated {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
}

/* ---------- contact strip ---------- */

.strip {
  border-top: 1px solid var(--rule);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.strip--accent {
  background: var(--accent);
  color: #fff;
}

.strip--accent .small {
  color: #c8d9cf;
}

.strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}

.strip h2 {
  font-size: var(--step-h2);
  line-height: 1.08;
  max-width: 24ch;
  margin-bottom: 0.9rem;
}

.mail {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.25rem;
  white-space: nowrap;
}

.strip--accent .mail {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #fff;
  padding: 0.72rem 1.05rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.strip--accent .mail:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.mail:hover {
  color: var(--accent);
}

/* ---------- footer ---------- */

.footer {
  border-top: 1px solid var(--rule);
  background: #e9e7df;
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 2rem;
  font-size: 0.88rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 2rem clamp(1.5rem, 4vw, 3rem);
}

.footer h2 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-secondary);
  font-weight: 400;
  margin-bottom: 0.9rem;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.footer a {
  color: var(--ink-secondary);
  border-bottom: 1px solid transparent;
}

.footer a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.footer address {
  font-style: normal;
  color: var(--ink-secondary);
  line-height: 1.7;
}

.footer__note {
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--rule-strong);
  padding-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  color: var(--ink-secondary);
  font-size: 0.8rem;
}

/* ---------- reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.9rem;
  }

  .row__label {
    position: static;
  }

  .label {
    padding-top: 0;
  }

  .hero__body {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .hero__grid,
  .media-split,
  .media-split--reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__visual {
    max-width: 680px;
  }

  .hero__visual img {
    aspect-ratio: 16 / 10;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 1.15rem;
  }

  .nav__toggle {
    display: inline-block;
  }

  .masthead__inner {
    flex-wrap: wrap;
    min-height: 58px;
  }

  .nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--rule);
    padding-bottom: 0.5rem;
  }

  .nav .nav__cta {
    margin: 0.6rem 0;
    text-align: center;
  }

  .masthead.is-open .nav {
    display: flex;
  }

  .nav a {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--rule);
    font-size: 1rem;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .nav a[aria-current="page"] {
    color: var(--accent);
  }

  .notes {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-heading,
  .service-grid,
  .trust-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-card {
    min-height: auto;
  }

  .service-card__icon {
    margin-bottom: 1.5rem;
  }

  .hero__badge {
    left: 0.75rem;
    bottom: 0.75rem;
  }

  .strip__inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .mail {
    white-space: normal;
    word-break: break-word;
  }

  .item {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.4rem;
  }

  .item__num {
    padding-top: 0;
  }
}

@media (max-width: 420px) {
  .footer__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media print {
  .masthead,
  .nav__toggle,
  .strip {
    display: none;
  }

  body {
    background: #fff;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
