:root {
  --ink: #162340;
  --ink-2: #243866;
  --navy: #0f2555;
  --blue: #173e82;
  --red: #e52e2e;
  --gold: #f0b429;
  --green: #2d8b57;
  --paper: #ffffff;
  --soft: #f3f6fb;
  --line: #d9e1ef;
  --muted: #5b6680;
  --shadow: 0 18px 42px rgba(15, 37, 85, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--paper);
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 10;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--navy);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(15, 37, 85, 0.08);
}

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

.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: clamp(170px, 22vw, 265px);
  border: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav a {
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  color: var(--navy);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--paper);
  background: var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--navy);
  font-size: 1.35rem;
  cursor: pointer;
}

.top-strip {
  background: var(--navy);
  color: var(--paper);
  font-size: 0.92rem;
}

.top-strip .wrap {
  min-height: 42px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.top-strip a {
  color: var(--paper);
  text-decoration: none;
  font-weight: 700;
}

.hero {
  min-height: calc(100vh - 134px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(15, 37, 85, 0.96) 0%, rgba(15, 37, 85, 0.88) 43%, rgba(255, 255, 255, 0) 68%),
    url("../images/gallery-04.jpg") center / cover no-repeat;
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.hero-home .wrap {
  grid-template-columns: minmax(0, 680px);
}

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

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  color: var(--paper);
  font-size: clamp(2.4rem, 5.8vw, 5.8rem);
  max-width: 10ch;
}

.hero .lead {
  margin: 1.1rem 0 0;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 800;
}

.hero .support {
  margin: 1rem 0 0;
  color: #e7eefc;
  font-size: 1.08rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.2rem;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  background: var(--red);
  color: var(--paper);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button:hover,
button.button:hover {
  background: #c91f25;
  border-color: #c91f25;
}

.button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-card {
  align-self: stretch;
  display: grid;
  align-items: end;
  min-height: 420px;
  border: 8px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-ribbon {
  background: var(--red);
  color: var(--paper);
  font-weight: 800;
}

.brand-ribbon .wrap {
  min-height: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-names {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.brand-names span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  font-weight: 800;
}

.section {
  padding: clamp(3.2rem, 7vw, 6rem) 0;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: var(--navy);
  color: var(--paper);
}

.section.dark h2,
.section.dark h3 {
  color: var(--paper);
}

.section-title {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-title.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2,
.split h2,
.page-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-title p,
.split p,
.page-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section.dark .section-title p,
.section.dark p,
.section.dark li {
  color: #dce7fb;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
}

.split-media {
  position: relative;
}

.framed-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 8px solid var(--paper);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 8px 22px rgba(15, 37, 85, 0.07);
}

.card h3 {
  font-size: 1.24rem;
  margin-bottom: 0.65rem;
}

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

.brand-card {
  border-top: 5px solid var(--red);
}

.brand-card:nth-child(2) {
  border-top-color: #f28f1c;
}

.brand-card:nth-child(3) {
  border-top-color: var(--green);
}

.brand-card:nth-child(4) {
  border-top-color: var(--blue);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
}

.page-hero {
  min-height: 360px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(15, 37, 85, 0.96), rgba(15, 37, 85, 0.72)),
    url("../images/gallery-02.jpg") center / cover no-repeat;
  color: var(--paper);
}

.page-hero .wrap {
  padding: 4rem 0;
}

.page-hero p {
  max-width: 660px;
  color: #e7eefc;
  font-size: 1.15rem;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.info-item {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

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

.logo-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.product-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-group {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.product-group h3 {
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 1.5rem;
}

.product-list li {
  break-inside: avoid;
  padding: 0.2rem 0;
  color: var(--muted);
}

.details-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.contact-card {
  display: grid;
  gap: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.75rem;
  align-items: start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--paper);
  font-weight: 900;
}

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

.form-card {
  background: var(--navy);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.form-card h2,
.form-card h3 {
  color: var(--paper);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

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

input,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-card input,
.form-card textarea {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
}

.form-card input::placeholder,
.form-card textarea::placeholder {
  color: #cbd8ef;
}

.form-note {
  min-height: 24px;
  margin: 0.8rem 0 0;
  color: #dce7fb;
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 360px;
  border-radius: var(--radius);
}

.faq {
  display: grid;
  gap: 0.8rem;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy);
}

.site-footer {
  background: #101827;
  color: var(--paper);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 3.2rem 0;
}

.footer-main img {
  max-width: 260px;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 0.4rem;
}

.footer-main h2,
.footer-main h3 {
  color: var(--paper);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.footer-main p,
.footer-main li {
  color: #cbd8ef;
}

.footer-main ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-main a {
  color: #eaf1ff;
  text-decoration: none;
}

.footer-main a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1rem 0;
  color: #cbd8ef;
  font-size: 0.92rem;
}

.footer-bottom .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.65rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero .wrap,
  .split,
  .split.reverse,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(15, 37, 85, 0.96), rgba(15, 37, 85, 0.84)),
      url("../images/gallery-04.jpg") center / cover no-repeat;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 12ch;
  }

  .hero-card {
    min-height: auto;
  }

  .cards,
  .gallery-grid,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-strip .wrap {
    justify-content: center;
    text-align: center;
  }

  .nav-wrap {
    min-height: 78px;
  }

  .brand img {
    width: 190px;
  }

  .hero {
    min-height: auto;
  }

  .hero .wrap,
  .page-hero .wrap {
    padding: 2.5rem 0;
  }

  .cards,
  .gallery-grid,
  .info-list,
  .footer-main,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .product-list {
    columns: 1;
  }
}

/* Home page mockup styling */
.home-page {
  background: #fff;
  color: #25304a;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
}

.home-page .site-header {
  position: relative;
  background: #fff;
  border: 0;
  box-shadow: none;
}

.home-page .nav-wrap,
.home-wrap {
  width: min(1600px, calc(100% - 128px));
  margin: 0 auto;
}

.home-page .nav-wrap {
  min-height: 118px;
}

.home-page .brand img {
  width: 300px;
}

.home-page .site-nav {
  gap: 2rem;
  font-size: 0.82rem;
  font-style: italic;
  text-transform: uppercase;
}

.home-page .site-nav a {
  padding: 0;
  border-radius: 0;
  color: #11172d;
  text-decoration: none;
}

.home-page .site-nav a:hover,
.home-page .site-nav a[aria-current="page"] {
  color: #11172d;
  background: transparent;
}

.mock-hero {
  position: relative;
  min-height: 855px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(21, 46, 106, 0.95) 0%, rgba(21, 46, 106, 0.92) 48%, rgba(21, 46, 106, 0.82) 48%, rgba(21, 46, 106, 0.82) 100%),
    url("../images/gallery-04.jpg") left center / cover no-repeat;
}

.mock-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/logo.jpg") 13% 10% / 420px auto no-repeat;
  opacity: 0.14;
}

.mock-hero::after {
  content: "Our Town Batteries\a& Lubricants";
  white-space: pre;
  position: absolute;
  top: 72px;
  left: 570px;
  color: rgba(255, 255, 255, 0.12);
  font-size: clamp(3rem, 4.4vw, 6.3rem);
  line-height: 1.05;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  pointer-events: none;
}

.mock-hero .home-wrap {
  position: relative;
  z-index: 1;
  min-height: 855px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 2rem;
}

.mock-hero-copy {
  max-width: 690px;
  color: #fff;
}

.mock-kicker,
.mock-red,
.mock-service-copy p,
.mock-section-heading p {
  color: #ef3338;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 1.05rem;
  text-transform: uppercase;
}

.mock-kicker {
  color: #fff;
  font-size: 1.05rem;
}

.mock-hero h1,
.mock-copy h2,
.mock-service h2,
.mock-contact-details h2,
.mock-form h2,
.mock-section-heading h2 {
  color: #1c2f70;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
}

.mock-hero h1 {
  color: #fff;
  font-size: clamp(3rem, 4.75vw, 5.7rem);
  line-height: 1.08;
}

.mock-hero-copy > p:not(.mock-kicker) {
  margin: 1.25rem 0 1.8rem;
  color: #fff;
  font-size: 1.02rem;
}

.mock-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  min-width: 180px;
  padding: 0.95rem 1.45rem;
  border: 0;
  border-radius: 0;
  background: #e53334;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.mock-button:hover {
  background: #c92328;
}

.mock-hero-photo {
  margin: 0 -92px 0 0;
  align-self: start;
  padding-top: 96px;
}

.mock-hero-photo img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  box-shadow: 0 18px 35px rgba(16, 28, 57, 0.18);
}

.mock-products {
  position: relative;
  padding: 118px 0 70px;
  background: #fff;
}

.checkered {
  position: absolute;
  display: block;
  width: 455px;
  height: 130px;
  background:
    linear-gradient(45deg, #000 25%, transparent 25%, transparent 75%, #000 75%),
    linear-gradient(45deg, #000 25%, transparent 25%, transparent 75%, #000 75%);
  background-color: #fff;
  background-position: 0 0, 24px 24px;
  background-size: 48px 48px;
  transform: skewY(10deg) rotate(4deg);
  filter: drop-shadow(0 6px 2px rgba(0, 0, 0, 0.02));
}

.checkered-left {
  left: -45px;
  top: -43px;
  clip-path: polygon(0 8%, 100% 0, 85% 72%, 0 100%);
}

.mock-section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.mock-section-heading h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 3.1vw, 3.6rem);
}

.mock-section-heading span {
  color: #59606d;
  font-size: 0.95rem;
}

.mock-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(2rem, 5vw, 6rem);
}

.mock-brand {
  min-height: 290px;
  padding: 38px 24px;
  text-align: center;
  background: #fff;
}

.mock-brand-featured {
  box-shadow: 0 24px 40px rgba(26, 37, 70, 0.12);
}

.mock-brand img {
  width: auto;
  height: 82px;
  max-width: 170px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.mock-brand h3 {
  margin-bottom: 16px;
  color: #1c2f70;
  font-size: 1.4rem;
  font-style: italic;
}

.mock-brand p {
  margin: 0;
  color: #3f485a;
  font-size: 0.94rem;
  line-height: 1.38;
}

.mock-brand a {
  display: inline-block;
  margin-top: 18px;
  color: #ef3338;
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.mock-welcome {
  padding: 80px 0 146px;
  background: #fff;
}

.mock-split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 4.5rem;
}

.mock-copy h2 {
  margin-bottom: 32px;
  font-size: clamp(2.4rem, 3.7vw, 4.3rem);
  line-height: 1.16;
}

.mock-copy h3 {
  margin: 25px 0 10px;
  color: #1c2f70;
  font-size: 1.25rem;
  font-style: italic;
}

.mock-copy p {
  color: #3f485a;
  font-size: 0.98rem;
  line-height: 1.42;
}

.mock-copy .mock-button {
  margin-top: 25px;
}

.mock-image-wrap {
  position: relative;
}

.mock-image-wrap img {
  width: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: center;
}

.checkered-small {
  top: -62px;
  left: -120px;
  width: 285px;
  height: 120px;
  background-size: 34px 34px;
  background-position: 0 0, 17px 17px;
  transform: skewY(15deg) rotate(-13deg);
  clip-path: polygon(0 0, 88% 8%, 100% 80%, 12% 100%);
}

.mock-service {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  min-height: 755px;
  background: #163171;
}

.mock-service-copy {
  display: grid;
  align-items: center;
  padding-left: max(64px, calc((100vw - 1600px) / 2 + 64px));
  padding-right: 64px;
  color: #fff;
  background:
    linear-gradient(rgba(20, 48, 113, 0.92), rgba(20, 48, 113, 0.92)),
    url("../images/gallery-01.jpg") center / cover no-repeat;
}

.mock-service-copy > div {
  max-width: 640px;
}

.mock-service-copy p {
  color: #fff;
  margin-bottom: 14px;
}

.mock-service h2 {
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(2.35rem, 3.8vw, 4.35rem);
}

.mock-service span {
  display: block;
  margin-bottom: 34px;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.55;
}

.mock-service > img {
  width: 100%;
  height: 755px;
  object-fit: cover;
}

.mock-contact {
  position: relative;
  overflow: hidden;
  padding: 125px 0 120px;
  background: #fff;
}

.mock-contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(4rem, 9vw, 11rem);
  align-items: center;
}

.mock-form {
  background: #e8ebf3;
  padding: 58px 84px 76px;
  text-align: center;
}

.mock-form h2 {
  margin-bottom: 42px;
  font-size: clamp(2rem, 2.5vw, 3rem);
}

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

.mock-form input,
.mock-form textarea {
  display: block;
  width: 100%;
  margin-bottom: 27px;
  min-height: 43px;
  padding: 0.5rem 0;
  border: 0;
  border-bottom: 2px solid #9ca2af;
  border-radius: 0;
  color: #27314c;
  background: transparent;
  font-size: 0.9rem;
}

.mock-form textarea {
  min-height: 112px;
  resize: vertical;
}

.mock-form .mock-button {
  min-width: 150px;
  min-height: 64px;
  margin-top: 12px;
}

.mock-form .form-note {
  margin: 18px 0 0;
  color: #1c2f70;
  font-size: 0.9rem;
}

.mock-contact-details {
  max-width: 650px;
}

.mock-contact-details h2 {
  margin-bottom: 26px;
  font-size: clamp(2.4rem, 3.6vw, 4.2rem);
}

.mock-contact-details > p:not(.mock-red) {
  color: #3f485a;
  font-size: 1rem;
  line-height: 1.42;
}

.mock-contact-details ul {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  color: #1c2f70;
  font-style: italic;
  font-weight: 900;
}

.mock-contact-details li {
  margin: 10px 0;
}

.mock-contact-details strong {
  display: inline-flex;
  width: 22px;
  color: #ef3338;
  font-style: normal;
}

.mock-contact-details a {
  color: #1c2f70;
  text-decoration: none;
}

.checkered-right {
  right: -34px;
  bottom: -10px;
  width: 470px;
  height: 125px;
  background-size: 42px 42px;
  background-position: 0 0, 21px 21px;
  transform: skewY(-10deg) rotate(-6deg);
  clip-path: polygon(8% 24%, 100% 0, 100% 100%, 0 92%);
}

.home-page .site-footer {
  background: #e9edf5;
  color: #28324e;
}

.home-page .footer-main {
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
  gap: 5rem;
  padding: 72px 0 58px;
}

.home-page .footer-main img {
  max-width: 260px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.home-page .footer-main h2,
.home-page .footer-main h3 {
  color: #1c2f70;
  font-size: 0.98rem;
  font-style: italic;
}

.home-page .footer-main p,
.home-page .footer-main li {
  color: #3f485a;
  font-size: 0.9rem;
  line-height: 1.55;
}

.home-page .footer-main a {
  color: #3f485a;
}

.mock-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 28px 0 46px;
  border-top: 1px solid #c8cedc;
  color: #3f485a;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .home-page .nav-wrap,
  .home-wrap {
    width: min(100% - 44px, 1600px);
  }

  .mock-hero,
  .mock-hero .home-wrap {
    min-height: auto;
  }

  .mock-hero .home-wrap,
  .mock-split,
  .mock-service,
  .mock-contact-grid {
    grid-template-columns: 1fr;
  }

  .mock-hero {
    padding: 54px 0 0;
  }

  .mock-hero-copy {
    padding-bottom: 38px;
  }

  .mock-hero-photo {
    margin: 0;
    padding: 0;
  }

  .mock-hero-photo img,
  .mock-service > img,
  .mock-image-wrap img {
    height: auto;
    min-height: 0;
  }

  .mock-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .mock-service-copy {
    padding: 70px 44px;
  }

  .home-page .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 700px) {
  .home-page .nav-wrap {
    min-height: 86px;
  }

  .home-page .brand img {
    width: 205px;
  }

  .home-page .site-nav {
    gap: 0;
    font-style: normal;
  }

  .mock-hero h1 {
    font-size: 2.55rem;
  }

  .mock-products,
  .mock-welcome,
  .mock-contact {
    padding: 70px 0;
  }

  .mock-brand-grid,
  .mock-form-row,
  .home-page .footer-main {
    grid-template-columns: 1fr;
  }

  .mock-form {
    padding: 40px 28px;
  }

  .checkered-left,
  .checkered-right,
  .checkered-small {
    opacity: 0.28;
    transform: scale(0.7);
  }

  .mock-footer-bottom {
    flex-direction: column;
  }
}
