@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Montserrat:wght@400;700&family=Red+Hat+Display:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --ink: #07071d;
  --navy: #1d1c6e;
  --navy-2: #120f56;
  --blue: #0f65c9;
  --cyan: #45bdf4;
  --pale: #f4f8fd;
  --line: rgba(29, 28, 110, 0.16);
  --muted: #50555c;
  --white: #ffffff;
  --shadow: 0 16px 36px rgba(7, 7, 29, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Red Hat Display", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  background: var(--white);
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.6rem 0.9rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.22s ease, box-shadow 0.22s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(7, 7, 29, 0.12);
}

.nav-shell {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--white);
  font-weight: 900;
  font-size: 0.95rem;
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand {
  color: var(--navy);
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
}

.site-header.is-scrolled .site-nav,
.site-header.is-open .site-nav {
  color: var(--ink);
}

.site-nav a,
.dropdown-trigger {
  text-decoration: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 8px 0;
}

.site-nav a:hover,
.dropdown-trigger:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-nav .nav-cta {
  padding: 10px 16px !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 0;
  text-decoration: none !important;
  box-shadow: 0 6px 16px rgba(29, 28, 110, 0.24);
}

.site-nav .nav-cta:hover {
  background: var(--navy-2) !important;
  text-decoration: none;
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 250px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: none;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  display: grid;
}

.dropdown-panel a {
  padding: 10px 12px;
}

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  padding: 7px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.site-header.is-scrolled .nav-toggle span,
.site-header.is-open .nav-toggle span {
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  padding: 88px 20px 122px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background-color: #0372d9;
  background-image:
    linear-gradient(180deg, rgba(0, 112, 218, 0.08), rgba(8, 32, 112, 0.55)),
    var(--hero-bg, url("../img/bg-67409.png"));
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -78px;
  height: 170px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(740px, 100%);
  display: grid;
  justify-items: center;
}

.hero-logo {
  width: min(470px, 84vw);
  margin: 22px auto 46px;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.22));
}

.eyebrow,
.kicker {
  margin: 0 0 10px;
  color: var(--navy);
  font-weight: 900;
  font-size: 0.9rem;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

h1,
h2,
h3 {
  font-family: "Archivo Black", "Red Hat Display", Arial, sans-serif;
  line-height: 1.14;
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.05rem, 5vw, 3.55rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.22rem, 2.5vw, 1.65rem);
}

.hero h1,
.hero h2 {
  color: var(--white);
  text-shadow: 0 2px 16px rgba(5, 15, 70, 0.25);
}

.hero h1 {
  max-width: 660px;
}

.hero p {
  margin: 0;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 12px 18px;
  border: 0;
  border-radius: 0;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--navy-2);
  box-shadow: 0 10px 24px rgba(29, 28, 110, 0.25);
}

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

.hero .button {
  margin-top: 26px;
}

.section {
  padding: 76px 0;
}

.section.tight {
  padding: 56px 0;
}

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

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.two-col.reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
}

.content p {
  margin: 12px 0;
}

.content strong {
  color: var(--navy);
}

.content ul,
.content ol {
  padding-left: 1.2rem;
}

.framed-link {
  position: relative;
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s ease;
}

.framed-link:hover,
.framed-link.reveal.is-visible:hover,
.plain-image-link:hover,
.plain-image-link.reveal.is-visible:hover {
  transform: translateY(-6px);
}

.framed-link:focus-visible,
.plain-image-link:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 8px;
}

.framed-img {
  display: block;
  width: 100%;
  border: 0;
  box-shadow: 0 18px 38px rgba(7, 7, 29, 0.22);
  transition: box-shadow 0.22s ease, filter 0.22s ease;
}

.framed-link:hover .framed-img {
  box-shadow: 0 24px 46px rgba(7, 7, 29, 0.28);
}

.plain-image-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease;
}

.services-intro {
  text-align: center;
  padding-top: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
  margin-top: 40px;
}

.service-card {
  min-height: 510px;
  padding: 44px 24px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  color: var(--white);
  background-image:
    linear-gradient(rgba(14, 35, 105, 0.7), rgba(14, 35, 105, 0.72)),
    var(--card-bg);
  background-size: cover;
  background-position: center;
  text-decoration: none;
  overflow: hidden;
}

.service-card:nth-child(odd) {
  transform: translateY(46px);
}

.service-card h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.service-card p {
  max-width: 250px;
  margin: 0 0 18px;
  font-size: 0.93rem;
}

.blue-band {
  background: var(--cyan);
  color: var(--white);
}

.blue-band h2,
.blue-band h3,
.blue-band .kicker {
  color: var(--white);
}

.emergency-panel {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 26px;
  background: var(--white);
  color: var(--ink);
  border: 4px solid var(--navy);
}

.emergency-panel img {
  width: 230px;
  margin: 0 auto;
}

.pale-bg {
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.9)),
    url("../img/bg-503056.png") center / cover;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.detail-card {
  min-height: 184px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.detail-card h3 {
  color: var(--white);
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.logo-section {
  text-align: left;
}

.logo-section img {
  width: min(590px, 88vw);
  margin: 0 auto 26px;
}

.subhero {
  min-height: 520px;
  padding-bottom: 96px;
}

.subhero .hero-logo {
  width: min(310px, 70vw);
  margin-bottom: 24px;
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.split-text {
  min-height: 560px;
  display: grid;
  align-content: center;
  padding: 64px max(40px, calc((100vw - 1120px) / 2));
  background: var(--navy);
  color: var(--white);
}

.split-text h2 {
  color: var(--white);
}

.split-img {
  min-height: 560px;
  background-image: var(--split-bg);
  background-size: cover;
  background-position: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.contact-card,
.form-card {
  border: 1px solid var(--line);
  padding: 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(7, 7, 29, 0.08);
}

.contact-card h2,
.form-card h2 {
  color: var(--navy);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.contact-list a {
  color: var(--navy);
  font-weight: 900;
}

.form-grid {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 800;
  color: var(--navy);
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}

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

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.footer {
  padding: 50px 0 96px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 120px repeat(4, 1fr);
  gap: 30px;
  align-items: start;
}

.footer h3 {
  font-size: 1rem;
  margin: 0 0 10px;
}

.footer p {
  margin: 0 0 6px;
  font-size: 0.94rem;
}

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

.footer-form input {
  min-height: 34px;
  font-size: 0.86rem;
}

.copyright {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.82rem;
}

.mobile-actions {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 80;
  width: min(360px, calc(100% - 36px));
  padding: 18px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.cookie-banner p {
  margin: 0 0 12px;
  font-size: 0.88rem;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cookie-actions a {
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 800;
}

.reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: transform 0.65s ease;
}

.reveal.is-visible {
  transform: translateY(0);
}

.inner-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 86px 20px 116px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background-image:
    linear-gradient(rgba(15, 18, 48, 0.4), rgba(15, 18, 48, 0.42)),
    var(--inner-bg);
  background-size: cover;
  background-position: var(--inner-pos, center);
}

.inner-hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -72px;
  height: 150px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.inner-hero-grid {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.9fr);
  gap: 26px;
  align-items: center;
  justify-items: center;
}

.inner-hero-copy {
  justify-self: end;
  max-width: 430px;
}

.inner-hero .eyebrow {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
}

.inner-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.6vw, 3.45rem);
  text-shadow: 0 3px 18px rgba(7, 7, 29, 0.34);
}

.inner-hero-logo {
  width: min(340px, 36vw);
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.28));
}

.inner-hero-cta {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin-top: 28px;
}

.intro-copy {
  padding: 58px 0 50px;
}

.intro-copy.is-centered {
  text-align: center;
}

.intro-copy h2 {
  max-width: 1040px;
  margin: 0 auto 20px;
  color: var(--ink);
}

.intro-copy p {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.edge-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.edge-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(12, 20, 60, 0.12), rgba(12, 20, 60, 0.12)),
    var(--edge-bg);
  background-size: cover;
  background-position: center;
}

.edge-panel {
  min-height: 560px;
  display: grid;
  align-content: center;
  padding: 70px max(54px, calc((100vw - 1120px) / 2));
  background: var(--navy);
  color: var(--white);
}

.edge-panel h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  margin-bottom: 22px;
}

.edge-panel p,
.edge-panel li {
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
}

.edge-panel p,
.stripe-panel p,
.original-feature-copy p,
.centered-notice p {
  overflow-wrap: break-word;
}

.edge-panel ul,
.original-feature-copy ul,
.stripe-panel ul {
  margin: 14px 0 16px;
  padding-left: 1.1rem;
}

.edge-panel .button,
.stripe-panel .button {
  justify-self: start;
  min-width: 280px;
  margin-top: 18px;
}

.feature-note {
  font-weight: 800;
  font-style: italic;
  color: inherit;
}

.original-white {
  padding: 62px 0;
  background: var(--white);
}

.original-feature-copy h2 {
  margin-bottom: 20px;
}

.original-feature-copy .button {
  margin-top: 16px;
}

.services-stripe {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.7fr) minmax(0, 0.9fr);
  min-height: 640px;
}

.stripe-media {
  min-height: 640px;
  background-image:
    linear-gradient(rgba(15, 28, 84, 0.08), rgba(15, 28, 84, 0.08)),
    var(--stripe-bg);
  background-size: cover;
  background-position: center;
}

.stripe-panel {
  min-height: 640px;
  display: grid;
  align-content: center;
  padding: 58px 46px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.stripe-panel h2 {
  color: var(--white);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  margin-bottom: 18px;
}

.stripe-panel p,
.stripe-panel li {
  color: rgba(255, 255, 255, 0.9);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.large-logo-section {
  padding: 76px 0 62px;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.96)),
    url("../img/bg-503056.png") center / cover;
}

.large-logo-section img {
  width: min(1080px, 86vw);
  margin: 0 auto;
}

.contact-original {
  padding: 54px 0 64px;
  background: var(--white);
}

.contact-original-grid {
  display: grid;
  grid-template-columns: minmax(540px, 1.18fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.contact-original-form {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(7, 7, 29, 0.08);
}

.contact-form-heading {
  display: grid;
  gap: 8px;
}

.contact-form-heading .eyebrow {
  margin: 0;
  color: var(--blue);
  font-family: "Archivo Black", "Red Hat Display", Arial, sans-serif;
  font-size: 0.72rem;
}

.contact-form-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
}

.contact-form-heading p {
  margin: 0;
  color: var(--muted);
}

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

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

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

.contact-field label,
.contact-field legend {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  min-height: 46px;
}

.contact-field textarea {
  min-height: 128px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--blue);
  outline: 2px solid rgba(15, 101, 201, 0.18);
  outline-offset: 1px;
}

.contact-choice-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-choice {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: var(--pale);
  color: var(--ink);
  font-size: 0.86rem;
}

.contact-choice input,
.contact-consent input {
  width: auto;
  min-height: auto;
  margin: 0;
}

.contact-file-input {
  padding: 13px;
  border-style: dashed;
  background: var(--pale);
}

.contact-file-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.contact-consent input {
  margin-top: 4px;
}

.contact-submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.contact-original-form .button {
  justify-self: start;
  min-width: 270px;
  background: var(--blue);
  color: var(--white);
}

.contact-original-form .button[disabled],
.footer-form .button[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-status.is-ok {
  color: #1d6b3a;
  font-weight: 900;
}

.form-status.is-error {
  color: #b00020;
  font-weight: 900;
}

.contact-map {
  position: sticky;
  top: 86px;
  overflow: hidden;
  height: clamp(430px, 48vw, 620px);
  min-height: 430px;
  box-shadow: 0 18px 38px rgba(7, 7, 29, 0.16);
  background: var(--pale);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.centered-notice {
  text-align: center;
  padding-bottom: 42px;
}

.centered-notice h2 {
  color: var(--ink);
}

@media (max-width: 900px) {
  body {
    font-size: 15px;
  }

  .nav-shell {
    width: calc(100% - 22px);
    min-height: 48px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 28px;
    height: 28px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    display: none;
    padding: 16px 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    box-shadow: 0 16px 30px rgba(7, 7, 29, 0.12);
  }

  .site-header.is-open .site-nav {
    display: grid;
    gap: 8px;
  }

  .dropdown-panel {
    position: static;
    width: 100%;
    box-shadow: none;
    display: grid;
    border: 0;
    padding: 0 0 0 12px;
  }

  .nav-cta {
    justify-self: start;
  }

  .hero {
    min-height: 430px;
    padding: 58px 18px 78px;
  }

  .hero-logo {
    width: min(210px, 62vw);
    margin: 16px auto 20px;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(1.28rem, 7vw, 2rem);
  }

  .hero p {
    font-size: 0.82rem;
  }

  .button {
    width: 100%;
    min-height: 38px;
    font-size: 0.82rem;
  }

  .section {
    padding: 42px 0;
  }

  .container {
    width: min(100% - 28px, 640px);
  }

  .two-col,
  .two-col.reverse,
  .contact-layout,
  .emergency-panel,
  .split-section,
  .inner-hero-grid,
  .edge-split,
  .services-stripe,
  .contact-original-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .two-col.reverse > :first-child {
    order: 2;
  }

  .services-intro {
    text-align: left;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .service-card,
  .service-card:nth-child(odd) {
    min-height: 360px;
    transform: none;
  }

  .emergency-panel {
    padding: 16px;
  }

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

  .framed-img {
    box-shadow: 0 12px 26px rgba(7, 7, 29, 0.2);
  }

  .subhero {
    min-height: 410px;
  }

  .inner-hero {
    min-height: 430px;
    padding: 58px 18px 78px;
  }

  .inner-hero-grid {
    gap: 12px;
  }

  .inner-hero-copy {
    justify-self: center;
  }

  .inner-hero-logo {
    width: min(210px, 62vw);
  }

  .inner-hero h1 {
    font-size: clamp(1.35rem, 7vw, 2.1rem);
  }

  .inner-hero-cta {
    width: min(360px, 100%);
    margin-top: 18px;
  }

  .intro-copy {
    text-align: left;
    padding: 42px 0;
  }

  .edge-split,
  .edge-panel,
  .edge-media,
  .services-stripe,
  .stripe-panel,
  .stripe-media {
    min-height: auto;
  }

  .edge-media,
  .stripe-media {
    min-height: 300px;
  }

  .edge-panel,
  .stripe-panel {
    padding: 42px 20px;
    text-align: left;
  }

  .edge-panel .button,
  .stripe-panel .button,
  .contact-original-form .button {
    min-width: 0;
    width: 100%;
  }

  .contact-original-form {
    padding: 20px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-submit-row {
    align-items: stretch;
  }

  .contact-map {
    position: static;
    height: 300px;
    min-height: 300px;
  }

  .contact-map iframe {
    min-height: 300px;
  }

  .large-logo-section {
    padding: 44px 0;
  }

  .split-text,
  .split-img {
    min-height: auto;
    padding: 42px 20px;
  }

  .split-img {
    min-height: 300px;
  }

  .footer {
    padding-bottom: 84px;
  }

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

  .footer-grid > img {
    width: 120px;
  }

  .mobile-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
    box-shadow: 0 -10px 24px rgba(7, 7, 29, 0.12);
    border-top: 1px solid var(--line);
  }

  .mobile-actions a {
    min-height: 54px;
    display: grid;
    place-items: center;
    gap: 2px;
    text-decoration: none;
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 800;
  }

  .mobile-actions strong {
    display: block;
    font-size: 1rem;
    line-height: 1;
  }

  .cookie-banner {
    bottom: 66px;
  }
}
