:root {
  color-scheme: light;
  --ink: #17223a;
  --muted: #5e6c82;
  --surface: #fbfcff;
  --surface-strong: #ffffff;
  --line: #d9e2ef;
  --brand: #244895;
  --brand-dark: #153474;
  --brand-soft: #eaf1ff;
  --navy: #111b32;
  --danger: #a3242f;
  --shadow: 0 20px 60px rgb(24 47 86 / 0.14);
  --radius: 8px;
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --ink: #edf4ff;
    --muted: #b7c5d8;
    --surface: #0c1424;
    --surface-strong: #101b2f;
    --line: #253955;
    --brand: #77a4ff;
    --brand-dark: #a8c4ff;
    --brand-soft: #152746;
    --navy: #07101f;
    --shadow: 0 20px 60px rgb(0 0 0 / 0.35);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 30;
  transform: translateY(-140%);
  background: var(--brand);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  --header-height: 84px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--surface-strong) 94%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 8px 0;
  box-sizing: border-box;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 112px;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a,
.dropdown-toggle {
  border: 0;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font: inherit;
  padding: 8px 0;
  white-space: nowrap;
  cursor: pointer;
}

.nav-service {
  position: relative;
}

.nav-service::after {
  content: "";
  position: absolute;
  top: 100%;
  right: -18px;
  left: -18px;
  height: 16px;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 114px;
}

.dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 25;
  min-width: 250px;
  transform: translateX(-50%);
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-service:hover .dropdown-menu,
.nav-service:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-2px);
}

.dropdown-menu a {
  border-radius: 6px;
  padding: 10px 12px;
}

.dropdown-menu a:hover {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: var(--brand-dark);
}

.button:active {
  transform: translateY(1px);
}

.button.secondary {
  background: var(--surface-strong);
  border-color: var(--line);
  color: var(--brand-dark);
}

.button.secondary:hover {
  border-color: var(--brand);
}

.button.light {
  background: #fff;
  color: #153474;
}

.button.light:hover {
  background: #edf4ff;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, calc(100dvh - 74px), 760px);
  padding: 70px 0 58px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand-soft) 70%, transparent), transparent 48%),
    var(--surface);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  line-height: 1.04;
  overflow-wrap: normal;
  hyphens: manual;
}

.hero p {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-media {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(12 20 36 / 0.12), rgb(12 20 36 / 0.52));
}

.hero-panel {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.18);
  border: 1px solid rgb(255 255 255 / 0.26);
  color: #fff;
  backdrop-filter: blur(12px);
}

.hero-panel span {
  display: grid;
  gap: 4px;
  min-height: 96px;
  padding: 16px;
  background: rgb(11 22 42 / 0.52);
}

.hero-panel strong {
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1;
}

.hero-panel small {
  color: rgb(255 255 255 / 0.82);
  font-weight: 700;
}

section {
  scroll-margin-top: 92px;
}

.section {
  padding: clamp(64px, 9vw, 104px) 0;
}

.section.tight {
  padding: clamp(42px, 6vw, 72px) 0;
}

.section.navy {
  background: var(--navy);
  color: #f5f8ff;
}

.section.navy .muted,
.section.navy p {
  color: #c5d1e5;
}

.section.navy .eyebrow {
  color: #c5d1e5;
}

.section h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.section p {
  max-width: 68ch;
  color: var(--muted);
}

.section-lead {
  margin: 18px 0 0;
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 36px;
}

.service-feature,
.service-list a,
.info-tile,
.process-item,
.article-card,
.contact-form,
.contact-card,
.thanks-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 12px 34px rgb(24 47 86 / 0.08);
}

.service-feature {
  overflow: hidden;
}

.service-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-feature-content {
  padding: clamp(22px, 4vw, 34px);
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list a {
  display: grid;
  gap: 8px;
  padding: 20px;
  text-decoration: none;
}

.service-list a:hover {
  border-color: var(--brand);
}

.service-list span,
.article-card span {
  color: var(--brand-dark);
  font-weight: 900;
}

.short-answer {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(26px, 6vw, 72px);
  align-items: start;
}

.answer-box {
  position: sticky;
  top: 110px;
  border-left: 4px solid var(--brand);
  padding-left: 22px;
}

.answer-copy p:first-child {
  margin-top: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.info-tile {
  padding: 18px;
}

.info-tile strong {
  display: block;
  color: var(--brand-dark);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.info-tile span {
  color: var(--muted);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 12px;
  margin-top: 36px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.gallery-grid figure:first-child {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.process-item {
  padding: 22px;
}

.process-item p {
  margin-bottom: 0;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  padding: clamp(30px, 6vw, 54px);
}

.cta-band p {
  color: rgb(255 255 255 / 0.85);
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: start;
}

.contact-card {
  padding: clamp(24px, 5vw, 38px);
}

.contact-card img {
  width: 190px;
  margin-bottom: 28px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.contact-list div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-list strong {
  display: block;
  color: var(--brand-dark);
}

.contact-list a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-form {
  padding: clamp(22px, 4vw, 34px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label,
.legend {
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid color-mix(in srgb, var(--line) 80%, var(--ink));
  border-radius: 7px;
  background: var(--surface);
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background:
    linear-gradient(45deg, transparent 50%, var(--brand-dark) 50%) calc(100% - 21px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, var(--brand-dark) 50%, transparent 50%) calc(100% - 16px) 50% / 6px 6px no-repeat,
    linear-gradient(to bottom, transparent 20%, var(--line) 20%, var(--line) 80%, transparent 80%) calc(100% - 39px) 50% / 1px 24px no-repeat,
    var(--surface);
}

select::-ms-expand {
  display: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 85%, var(--ink));
}

.segmented {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.segmented label {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 11px 12px;
  background: var(--surface);
  font-weight: 800;
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 13px 14px;
  background: color-mix(in srgb, var(--brand-soft) 24%, var(--surface));
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.48;
}

.segmented input,
.checkbox-row input {
  width: auto;
  min-height: auto;
  accent-color: var(--brand);
}

.checkbox-row input {
  margin-top: 0.28em;
}

.checkbox-row a {
  color: var(--brand-dark);
  font-weight: 850;
  text-underline-offset: 3px;
}

.field-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.page-hero {
  padding: 76px 0;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand-soft) 78%, transparent), transparent 55%),
    var(--surface);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
}

.page-hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.13rem;
}

.page-hero-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.garo-hero .page-hero-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
}

.garo-hero-media img {
  aspect-ratio: 16 / 10;
  object-position: 62% center;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.article-copy h2,
.article-copy h3 {
  margin-top: 34px;
}

.article-copy h2:first-child,
.article-copy h3:first-child {
  margin-top: 0;
}

.article-copy p {
  font-size: 1.04rem;
}

.article-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  position: sticky;
  top: 110px;
}

.article-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.related-grid a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface-strong);
  text-decoration: none;
  font-weight: 900;
}

.related-grid a:hover {
  border-color: var(--brand);
}

.section.navy .related-grid a {
  background: #fff;
  color: #111b32;
}

.section.navy .related-grid a:hover {
  border-color: #77a4ff;
}

.section.navy .feature-strip article,
.section.navy .reference-list article {
  color: #111b32;
}

.section.navy .feature-strip p,
.section.navy .reference-list p {
  color: #5e6c82;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.feature-strip article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  padding: 22px;
  box-shadow: 0 12px 34px rgb(24 47 86 / 0.08);
}

.feature-strip p {
  margin-bottom: 0;
}

.reference-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.reference-list article {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  padding: 12px;
  box-shadow: 0 12px 34px rgb(24 47 86 / 0.08);
}

.reference-list img {
  width: 128px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.reference-list h3,
.reference-list p {
  margin: 0;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
}

.policy-page .page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  overflow-wrap: anywhere;
}

.policy-page .page-hero-media {
  background: #fff;
}

.policy-page .page-hero-media img {
  object-fit: contain;
  padding: clamp(22px, 4vw, 46px);
}

.policy-summary {
  position: sticky;
  top: 110px;
}

.policy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 12px 34px rgb(24 47 86 / 0.08);
}

.policy-card h2:first-child,
.policy-card h3:first-child {
  margin-top: 0;
}

.policy-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
  overflow-wrap: break-word;
}

.policy-card section + section {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.policy-card ul {
  padding-left: 1.2rem;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.cookie-copy {
  display: grid;
  gap: 6px;
}

.cookie-copy p {
  margin: 0;
  color: var(--muted);
}

.cookie-copy a {
  color: var(--brand-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.site-footer {
  background: var(--navy);
  color: #f5f8ff;
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer-grid p,
.footer-grid a {
  color: #c5d1e5;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
}

.fineprint {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 0.15);
  color: #aebbd2;
}

.fineprint a {
  color: #dbe6f7;
  text-underline-offset: 4px;
}

.thanks-card {
  max-width: 760px;
  padding: clamp(28px, 6vw, 54px);
  margin: 70px auto;
}

.hidden {
  display: none !important;
}

@media (prefers-reduced-motion: no-preference) {
  .button,
  .service-list a,
  .related-grid a {
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
  }

  .service-list a:hover,
  .related-grid a:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 980px) {
  .site-header {
    --header-height: 78px;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-height) + 14px) 16px auto;
    display: none;
    justify-self: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-strong);
    box-shadow: var(--shadow);
  }

  body.menu-open .site-nav {
    display: grid;
    gap: 10px;
  }

  .nav-service {
    display: grid;
    gap: 8px;
  }

  .nav-service::after {
    display: none;
  }

  .dropdown-toggle {
    display: none;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    min-width: 0;
    padding: 0 0 0 10px;
    border: 0;
    border-left: 3px solid var(--line);
  }

  .nav-actions .button {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-grid,
  .page-hero-grid,
  .about-grid,
  .contact-grid,
  .short-answer,
  .article-layout,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .garo-hero .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 420px;
  }

  .answer-box,
  .policy-summary,
  .article-card {
    position: static;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: clamp(36px, 5vw, 48px);
  }

  .service-feature {
    border-color: #c6d4e7;
    box-shadow: 0 18px 46px rgb(24 47 86 / 0.12);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid figure:first-child {
    grid-row: auto;
  }

  .process-grid,
  .footer-grid,
  .feature-strip,
  .reference-list,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reference-list article {
    grid-template-columns: 112px 1fr;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-shell {
    width: min(100% - 24px, 1180px);
  }

  .hero,
  .page-hero {
    padding-top: 44px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.25rem, 13vw, 3.55rem);
  }

  .hero-media {
    min-height: 360px;
  }

  .garo-hero-media img {
    aspect-ratio: 4 / 3;
    object-position: 66% center;
  }

  .hero-panel,
  .stats-grid,
  .process-grid,
  .footer-grid,
  .form-grid,
  .segmented,
  .feature-strip,
  .reference-list,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .reference-list article {
    grid-template-columns: 1fr;
  }

  .reference-list img {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .hero-panel span {
    min-height: 78px;
    padding: 12px;
  }

  .hero-panel {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-panel strong {
    font-size: clamp(1.25rem, 8vw, 1.85rem);
  }

  .hero-panel small {
    font-size: 0.68rem;
  }

  .field.full {
    grid-column: auto;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
  }

  .cookie-actions .button {
    width: 100%;
  }

  .brand img {
    width: 100px;
  }
}
