/* Plumbers On-Route — Sitewright
   White-dominant. Navy sampled from the badge (#053D7E). Copper accent.
   Type: Archivo (display) / Public Sans (body) */

:root {
  --navy:       #053D7E;
  --navy-deep:  #04264D;
  --navy-ink:   #012247;
  --blue:      #2472CE;   /* logo blue, AA-safe on white text */
  --blue-lit:  #1C5CA8;
  --blue-on-dark: #6FA8E4;
  --white:      #FFFFFF;
  --mist:       #F4F7FA;
  --line:       #E2E8F0;
  --ink:        #1C2530;   /* charcoal */
  --slate:      #5A6B7D;

  --wrap: 1160px;
  --gut: clamp(20px, 5vw, 48px);
  --sec: clamp(60px, 8vw, 104px);

  --display: "Archivo", system-ui, sans-serif;
  --body: "Public Sans", system-ui, sans-serif;
  --shadow: 0 1px 2px rgba(16,32,48,.05), 0 8px 24px rgba(16,32,48,.06);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation: none !important; transition: none !important; } }

body {
  margin: 0; background: var(--white); color: var(--ink);
  font-family: var(--body); font-size: 17px; line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

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

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin: 0; color: var(--navy-ink); }
h1 { font-size: clamp(2.25rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.14rem; font-weight: 700; letter-spacing: -0.008em; }

.eyebrow {
  font-family: var(--display); font-size: .72rem; font-weight: 700;
  letter-spacing: .17em; text-transform: uppercase; color: var(--blue);
  margin: 0 0 16px; display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 9px; height: 9px; border: 1.5px solid var(--blue); flex: none; }

.lede { font-size: clamp(1.02rem, 1.35vw, 1.19rem); color: var(--slate); max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-weight: 700; font-size: .96rem;
  padding: 15px 26px; border-radius: 4px; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-lit); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); }
.btn-outline { border-color: var(--line); color: var(--navy-ink); background: #fff; }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.btn-white { background: #fff; color: var(--navy-ink); }
.btn-white:hover { background: var(--mist); }

/* ---------- Top bar + header ---------- */
.topbar { background: var(--navy-deep); color: #C9D6E4; font-size: .82rem; }
.topbar-in { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; flex-wrap: wrap; }
.topbar a:not(.btn) { color: #fff; text-decoration: none; font-weight: 600; }
.topbar strong { color: var(--blue); font-weight: 700; }
@media (max-width: 620px) { .topbar-in { justify-content: center; text-align: center; } .topbar .hide-sm { display: none; } }

.hdr { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.hdr-in { display: flex; align-items: center; justify-content: space-between; gap: 22px; height: 80px; }

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { width: 46px; height: 46px; flex: none; }
.logo-txt { font-family: var(--display); font-weight: 800; font-size: 1.06rem; letter-spacing: -0.02em; line-height: 1.1; color: var(--navy-ink); }
.logo-txt span { display: block; font-size: .57rem; font-weight: 700; letter-spacing: .2em; color: var(--blue); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a:not(.btn) { font-size: .95rem; font-weight: 600; text-decoration: none; color: var(--ink); }
.nav a:not(.btn):hover, .nav a:not(.btn)[aria-current="page"] { color: var(--navy); }
.nav .btn { padding: 12px 22px; font-size: .9rem; }
@media (max-width: 940px) { .nav a:not(.btn) { display: none; } }

/* ---------- Sections ---------- */
.sec { padding-block: var(--sec); }
.sec-mist { background: var(--mist); }
.sec-navy { background: var(--navy-deep); color: #D5E0EC; }
.sec-navy h1, .sec-navy h2, .sec-navy h3 { color: #fff; }
.sec-navy .lede { color: #AFC1D4; }

.sec-head { max-width: 60ch; margin-bottom: clamp(36px, 4.5vw, 58px); }
.sec-head h2 { margin-bottom: 16px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head.center .lede { margin-inline: auto; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, var(--mist) 0%, var(--white) 100%); padding-block: clamp(48px, 6vw, 84px) clamp(40px, 5vw, 68px); }
.hero-in { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--navy); }
.hero .lede { margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero-note { font-size: .9rem; color: var(--slate); margin: 0; }
.hero-note strong { color: var(--navy-ink); }
@media (max-width: 900px) { .hero-in { grid-template-columns: 1fr; } }

.badge-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.pill { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 7px 15px; font-size: .81rem; font-weight: 700; color: var(--navy-ink); box-shadow: var(--shadow); }
.pill .st { color: var(--blue); letter-spacing: .06em; }

.shot { border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.ph { aspect-ratio: 4/3; background: repeating-linear-gradient(135deg, #E9EEF4 0 20px, #E1E8F0 20px 40px); display: grid; place-items: center; padding: 24px; text-align: center; }
.ph span { font-family: var(--display); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: #7D8FA1; }
.ph-tall { aspect-ratio: 4/5; }

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--line); background: #fff; }
.trust-in { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 26px 24px; text-align: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-family: var(--display); font-weight: 800; font-size: 1rem; color: var(--navy-ink); margin-bottom: 2px; }
.trust-item span { font-size: .82rem; color: var(--slate); }
@media (max-width: 820px) { .trust-in { grid-template-columns: 1fr 1fr; } .trust-item:nth-child(2) { border-right: 0; } .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 30px 28px 32px; position: relative; transition: transform .16s ease, box-shadow .16s ease; }
.card::before { content: ""; position: absolute; inset: -1px auto auto -1px; width: 46px; height: 3px; background: var(--blue); border-radius: 6px 0 6px 0; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 10px; }
.card p { margin: 0; font-size: .96rem; color: var(--slate); line-height: 1.62; }
.card ul { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.card li { font-size: .9rem; color: var(--slate); padding-left: 16px; position: relative; }
.card li::before { content: ""; position: absolute; left: 0; top: 10px; width: 5px; height: 5px; background: var(--blue); border-radius: 50%; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-3 { grid-template-columns: 1fr; } }

/* ---------- Emergency band ---------- */
.band { background: var(--navy); color: #fff; }
.band-in { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-block: clamp(38px, 4.5vw, 56px); flex-wrap: wrap; }
.band h2 { color: #fff; font-size: clamp(1.55rem, 2.7vw, 2.1rem); max-width: 22ch; margin-bottom: 8px; }
.band p { margin: 0; color: #BFD2E6; }
.band .btn { font-size: 1.1rem; padding: 18px 30px; }

/* ---------- Reviews ---------- */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 28px 26px; }
.quote .stars { color: var(--blue); letter-spacing: .14em; font-size: .88rem; margin-bottom: 14px; }
.quote p { margin: 0 0 18px; font-size: 1rem; color: var(--ink); line-height: 1.6; }
.quote cite { font-style: normal; font-size: .84rem; font-weight: 700; color: var(--navy-ink); }
.quote cite span { display: block; font-weight: 500; color: var(--slate); font-size: .8rem; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }

/* ---------- Reasons ---------- */
.cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(26px, 3.5vw, 48px); }
.cols h3 { margin: 0 0 10px; }
.cols p { color: var(--slate); font-size: .98rem; margin: 0; }
.cols .n { display: inline-grid; place-items: center; width: 40px; height: 40px; border: 1.5px solid var(--blue); color: var(--blue); font-family: var(--display); font-weight: 800; font-size: .86rem; border-radius: 4px; margin-bottom: 18px; }
.sec-navy .cols p { color: #AFC1D4; }
@media (max-width: 840px) { .cols { grid-template-columns: 1fr; } }

/* ---------- Areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; }
.areas li { list-style: none; }
.areas a, .areas span { display: block; text-decoration: none; font-family: var(--display); font-weight: 700; font-size: .93rem; padding: 12px 20px; border: 1px solid var(--line); border-radius: 100px; background: #fff; color: var(--navy-ink); }
.areas a:hover { border-color: var(--navy); color: var(--navy); }
.areas .primary { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 4.5vw, 66px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 6px; margin-bottom: 12px; }
.faq summary { cursor: pointer; list-style: none; font-family: var(--display); font-weight: 700; font-size: 1.04rem; color: var(--navy-ink); padding: 20px 52px 20px 22px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 20px; top: 16px; font-size: 1.5rem; font-weight: 400; color: var(--blue); line-height: 1.2; }
.faq details[open] summary::after { content: "\2013"; }
.faq p { margin: 0 22px 22px; color: var(--slate); }

/* ---------- Form ---------- */
.form { display: grid; gap: 15px; background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 30px; box-shadow: var(--shadow); }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 6px; }
.field label { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); font-family: var(--display); }
.field input, .field select, .field textarea { font-family: var(--body); font-size: 1rem; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 13px 14px; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); outline: none; }
.form small { color: var(--slate); font-size: .82rem; }
.hp { position: absolute; left: -9999px; }
@media (max-width: 560px) { .row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.ftr { background: var(--navy-deep); color: #AFC1D4; padding-block: 58px 34px; }
.ftr .logo-txt { color: #fff; }
.ftr-in { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.ftr h4 { font-family: var(--display); font-size: .72rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--blue); margin: 0 0 16px; }
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.ftr a:not(.btn) { color: #AFC1D4; text-decoration: none; font-size: .94rem; }
.ftr a:not(.btn):hover { color: #fff; }
.ftr p { font-size: .94rem; margin: 0 0 8px; }
.ftr-btm { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.ftr-btm p { font-size: .84rem; margin: 0; }
@media (max-width: 820px) { .ftr-in { grid-template-columns: 1fr; } }

/* ---------- Mobile call bar ---------- */
.callbar { display: none; }
@media (max-width: 760px) {
  .callbar { display: flex; position: fixed; inset: auto 0 0 0; z-index: 60; background: var(--blue); color: #fff; text-decoration: none; align-items: center; justify-content: center; gap: 9px; font-family: var(--display); font-weight: 800; font-size: 1.05rem; padding: 16px; box-shadow: 0 -4px 20px rgba(4,38,77,.22); }
  body { padding-bottom: 60px; }
}

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(12px); transition: opacity .45s ease, transform .45s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }

/* ---------- Hero video ---------- */

.hero-video { position: relative; overflow: hidden; background: var(--navy-ink); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-fallback {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, #0d2444 0 26px, #123056 26px 52px);
}
.hero-vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Wash tuned for WCAG AA: white body text on the lightest point of the gradient. */
.hero-wash {
  position: absolute; inset: 0;
  background: linear-gradient(104deg, rgba(1,20,42,.94) 0%, rgba(2,32,64,.90) 42%, rgba(5,61,126,.80) 100%);
}
.hero-video .hero-in { position: relative; z-index: 1; }
.hero-video h1 { color: #fff; }
.hero-video h1 em { color: var(--blue-on-dark); }
.hero-video .lede { color: #D7E3F0; }
.hero-video .hero-note { color: #AFC1D4; }
.hero-video .hero-note strong { color: #fff; }
.hero-video .pill {
  background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.26);
  color: #fff; box-shadow: none; backdrop-filter: blur(4px);
}
.hero-video .pill .st { color: var(--blue-on-dark); }
.hero-video .btn-outline { background: transparent; border-color: rgba(255,255,255,.45); color: #fff; }
.hero-video .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.hero-video .shot { border-color: rgba(255,255,255,.18); }
.hero-video .ph { background: repeating-linear-gradient(135deg, #12263f 0 20px, #16304d 20px 40px); }
.hero-video .ph span { color: #8FA6BE; }

/* Mobile + reduced motion: poster/fallback only, no video download. */
@media (max-width: 760px) { .hero-vid { display: none; } }
@media (prefers-reduced-motion: reduce) { .hero-vid { display: none; } }

/* ---------- Clickable service cards ---------- */

.card-link { padding: 0; }
.card-a { display: block; padding: 30px 28px 32px; text-decoration: none; color: inherit; }
.card-a h3 { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card-a .arw {
  font-style: normal; font-size: 1.5rem; line-height: 1; color: var(--blue);
  transform: translateX(0); transition: transform .16s ease;
}
.card-link:hover .arw { transform: translateX(4px); }
.card-more {
  display: inline-block; margin-top: 16px;
  font-family: var(--display); font-size: .8rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; color: var(--blue);
}

/* ---------- Breadcrumb + prose ---------- */

.crumb { font-size: .85rem; color: var(--slate); margin-bottom: 20px; }
.crumb a:not(.btn) { color: var(--slate); text-decoration: none; }
.crumb a:not(.btn):hover { color: var(--navy); }
.crumb span { color: var(--navy-ink); }

.prose { max-width: 820px; }
.prose .lede + .lede { margin-top: 14px; }
.prose a:not(.btn) { color: var(--navy); font-weight: 700; }

/* ===== Jay revision pass ===== */

/* Logo: larger, single-line locality only (item 47) */
.logo img { width: 64px; height: 64px; }
.logo-txt-min { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--navy); }

/* Stronger hierarchy on section headings (items 11, 12) */
.h2-lg { font-size: clamp(2.1rem, 3.8vw, 3rem); }
.lede-lg { font-size: clamp(1.15rem, 1.7vw, 1.4rem); color: var(--navy-ink); font-weight: 600; }

/* Service cards: more white space, slightly narrower (item 14) */
.grid-3 { gap: 30px; }
.sec .grid-3 { max-width: 1080px; margin-inline: auto; }

/* Why Choose Us without numbered boxes (item 27) */
.cols-plain .n { display: none; }
.cols-plain h3 { margin-bottom: 10px; }

/* Reviews carousel (item 24) — horizontal scroll-snap on mobile, grid on desktop */
@media (max-width: 760px) {
  .quotes[data-carousel] {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 85%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .quotes[data-carousel] .quote { scroll-snap-align: center; }
}

/* Areas: all locations equal, no highlighted Milton (item 33) */
.areas .primary { background: #fff; border-color: var(--line); color: var(--navy-ink); }
.areas .primary:hover { border-color: var(--navy); color: var(--navy); }

/* Emergency "what to do" checklist (Jay §3.3) */
.steps-list { max-width: 720px; margin: 0 auto; padding: 0; list-style: none; display: grid; gap: 14px; }
.steps-list li { position: relative; padding: 16px 18px 16px 52px; background: #fff; border: 1px solid var(--line); border-radius: 6px; font-size: 1.02rem; color: var(--ink); }
.steps-list li::before { counter-increment: step; content: counter(step); position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; display: grid; place-items: center; background: var(--navy); color: #fff; border-radius: 50%; font-family: var(--display); font-weight: 700; font-size: .8rem; }
.steps-list { counter-reset: step; }

/* 4-up plain columns (emergency "why choose") */
.cols-plain { grid-template-columns: repeat(4, 1fr); text-align: center; }
.cols-why { grid-template-columns: repeat(3, 1fr); max-width: 940px; margin-inline: auto; }
.cols-plain h3 { font-size: 1.02rem; }
@media (max-width: 820px) { .cols-plain { grid-template-columns: 1fr 1fr; } }

/* Service-area map (Jay §4) */
.area-map { height: 460px; border-radius: 8px; border: 1px solid var(--line); overflow: hidden; z-index: 0; }
.map-pin span { display: block; width: 18px; height: 18px; background: var(--navy); border: 2px solid #fff; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 2px 5px rgba(1,34,71,.4); }
.leaflet-popup-content strong { font-family: var(--display); color: var(--navy-ink); }
@media (max-width: 600px) { .area-map { height: 360px; } }

/* Service-page process steps (Jay §2 Learn More) */
.proc .step-n { display: inline-block; font-family: var(--display); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.proc h3 { margin-bottom: 8px; }
.proc { text-align: left; }
@media (min-width: 821px) { .proc.cols-plain { grid-template-columns: repeat(3, 1fr); } }

/* Real van imagery in shot frames */
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 6px; }
.hero .shot img, .hero-video .shot img { aspect-ratio: 16/9; }

/* ===== Mobile nav / hamburger ===== */
.nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 0;
  background: transparent; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--navy-ink);
  border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px var(--gut) 20px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.mobile-nav a:not(.btn) {
  padding: 14px 4px; font-family: var(--display); font-weight: 600; font-size: 1.05rem;
  color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line);
}
.mobile-nav a:not(.btn)[aria-current="page"] { color: var(--navy); }
.mobile-nav .btn { margin-top: 16px; justify-content: center; }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .mobile-nav:not([hidden]) { display: flex; }
}

/* Tighter band for short 3-column sections (Why Choose) */
.sec-tight { padding-block: clamp(48px, 6vw, 76px); }
@media (max-width: 840px) { .cols-why { grid-template-columns: 1fr; max-width: 420px; } }

/* Elongate the header Call Now button on mobile (fills space between logo and hamburger) */
@media (max-width: 940px) {
  .hdr-in .nav { flex: 1; margin: 0 14px; }
  .hdr-in .nav .btn-primary {
    flex: 1;
    justify-content: center;
    padding-inline: 16px;
    white-space: nowrap;
  }
}

/* Thank-you confirmation page */
.ty-check { display: inline-grid; place-items: center; width: 76px; height: 76px; margin: 0 auto; border-radius: 50%; background: var(--blue); color: #fff; font-size: 2.4rem; font-weight: 700; line-height: 1; }
