/* Boston ATM — Massachusetts & Rhode Island ATM Solutions
   Palette from logo: navy, steel blue, cyan accent */

:root {
  --navy: #0f2744;
  --navy-deep: #0a1a2e;
  --navy-mid: #1a3a5c;
  --steel: #2c4a6e;
  --blue: #3d7ea6;
  --cyan: #4aa3c7;
  --cyan-light: #6bb8d4;
  --sky: #e8f4f9;
  --ice: #f4f9fc;
  --white: #ffffff;
  --ink: #142033;
  --ink-soft: #3a4a5c;
  --muted: #6b7c8f;
  --border: rgba(15, 39, 68, 0.1);
  --border-strong: rgba(74, 163, 199, 0.35);
  --shadow: 0 12px 40px rgba(15, 39, 68, 0.08);
  --shadow-lg: 0 24px 64px rgba(15, 39, 68, 0.14);
  --radius: 10px;
  --radius-lg: 16px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", "DM Sans", system-ui, sans-serif;
  --max: 1140px;
  --header-h: 96px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 650;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.15rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.35rem); }
h3 { font-size: 1.2rem; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 52ch;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3.5rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .lead {
  margin-inline: auto;
}

.section-head h2 {
  margin-bottom: 0.85rem;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(61, 126, 166, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 14px 36px rgba(61, 126, 166, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--blue);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-mid);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  /* Soft plate so logo sits in the header, not in a hard box */
  margin: 0.15rem 0;
  padding: 0.15rem 0.2rem 0.15rem 0;
  border-radius: 8px;
  background: transparent;
}

.logo img {
  height: 72px;
  width: auto;
  max-width: min(280px, 48vw);
  object-fit: contain;
  /* Dark navy artwork blends into light header — whites/halos disappear */
  mix-blend-mode: multiply;
  background: transparent;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  padding: 0.5rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 550;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav a:hover,
.nav a.active {
  color: var(--navy);
  background: var(--sky);
}

.nav-cta {
  margin-left: 0.5rem;
}

.header-phone {
  display: none;
  font-weight: 650;
  font-size: 0.92rem;
  color: var(--navy);
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--blue);
}

@media (min-width: 1100px) {
  .header-phone {
    display: inline-flex;
    align-items: center;
    margin-right: 0.25rem;
  }
}

.footer-brand .contact-lines {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.92rem;
}

.footer-brand .contact-lines a {
  color: rgba(255, 255, 255, 0.85);
  display: inline;
  padding: 0;
}

.footer-brand .contact-lines a:hover {
  color: var(--cyan-light);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(74, 163, 199, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(61, 126, 166, 0.12), transparent 50%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 5.5rem 0 5rem;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero .eyebrow {
  color: var(--cyan-light);
}

.hero .eyebrow::before {
  background: var(--cyan-light);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.1rem;
}

.hero h1 span {
  color: var(--cyan-light);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}

.hero-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.stat {
  background: rgba(10, 26, 46, 0.35);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--cyan-light);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.stat span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.trust-bar {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.trust-bar strong {
  color: var(--white);
  font-weight: 650;
}

/* ——— Service cards ——— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--sky), #d6ebf5);
  color: var(--blue);
  margin-bottom: 1.1rem;
  font-size: 1.35rem;
}

.service-card h3 {
  margin-bottom: 0.55rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.service-card .link {
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--blue);
}

.service-card .link:hover {
  color: var(--cyan);
}

/* ——— Benefits / How it works ——— */
.bg-ice {
  background: var(--ice);
}

.bg-sky {
  background: var(--sky);
}

.bg-navy {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
}

.bg-navy h2,
.bg-navy h3 {
  color: var(--white);
}

.bg-navy .lead {
  color: rgba(255, 255, 255, 0.7);
}

.bg-navy .eyebrow {
  color: var(--cyan-light);
}

.bg-navy .eyebrow::before {
  background: var(--cyan-light);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--cyan);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.step h3 {
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

.step p {
  font-size: 0.92rem;
  color: var(--muted);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
}

.benefit {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.1rem 1.15rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.benefit-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(74, 163, 199, 0.25);
  color: var(--cyan-light);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.benefit h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.benefit p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* ——— Industries ——— */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.industry-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.industry-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.industry-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ——— Areas ——— */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.area-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.area-panel h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.area-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--sky);
  color: var(--blue);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.area-panel > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.city-list li {
  font-size: 0.85rem;
  font-weight: 550;
  padding: 0.35rem 0.75rem;
  background: var(--ice);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy);
}

/* ——— FAQ ——— */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 650;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cyan);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .faq-body {
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ——— CTA band ——— */
.cta-band {
  background:
    radial-gradient(ellipse 70% 80% at 100% 50%, rgba(74, 163, 199, 0.25), transparent 55%),
    linear-gradient(120deg, var(--navy-deep), var(--navy-mid));
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 48ch;
  margin-inline: auto  auto;
  margin-bottom: 1.5rem;
}

/* ——— Page hero (inner pages) ——— */
.page-hero {
  background:
    radial-gradient(ellipse 60% 80% at 90% 40%, rgba(74, 163, 199, 0.2), transparent 50%),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
  color: var(--white);
  padding: 3.5rem 0 3rem;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.65rem;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.85rem;
}

.breadcrumb a:hover {
  color: var(--cyan-light);
}

/* ——— Contact form ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-card {
  background: var(--ice);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.info-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.info-card p,
.info-card a {
  color: var(--muted);
  font-size: 0.95rem;
}

.info-card a:hover {
  color: var(--blue);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.form-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.form-card > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.35rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--ice);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(74, 163, 199, 0.18);
  background: var(--white);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.form-success {
  display: none;
  padding: 1rem;
  background: #e8f7ef;
  border: 1px solid #a8dcc0;
  border-radius: 8px;
  color: #1a5c38;
  margin-bottom: 1rem;
  font-weight: 550;
}

.form-success.show {
  display: block;
}

/* ——— About ——— */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.value-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.value-card .service-icon {
  margin-inline: auto;
}

.value-card h3 {
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* ——— Footer ——— */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  margin-bottom: 1rem;
  /* Light logo on navy footer; no multiply (would vanish on dark) */
  mix-blend-mode: normal;
  filter: brightness(0) invert(1) opacity(0.95);
}

.footer-brand p {
  font-size: 0.92rem;
  max-width: 32ch;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.92rem;
  padding: 0.25rem 0;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--cyan-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

/* ——— Misc ——— */
.prose {
  max-width: 68ch;
}

.prose p + p {
  margin-top: 1rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 1rem 0;
  color: var(--muted);
}

.prose li + li {
  margin-top: 0.4rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.feature-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.95rem;
}

.feature-list .tick {
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
}

.two-col-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.highlight-card h3 {
  margin-bottom: 0.65rem;
}

.highlight-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .hero-grid,
  .split,
  .contact-grid,
  .areas-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .industries-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0.25rem;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.75rem 0.85rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    position: relative;
  }
}

@media (max-width: 640px) {
  .services-grid,
  .industries-grid,
  .values-grid,
  .steps,
  .benefits-grid,
  .two-col-cards,
  .form-row,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .logo img {
    height: 56px;
    max-width: min(220px, 55vw);
  }

  .site-header {
    --header-h: 84px;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
