:root {
  --plum: #281a35;
  --plum-deep: #190f23;
  --plum-soft: #4a3659;
  --lagoon: #078f8b;
  --lagoon-deep: #056864;
  --lagoon-pale: #d9efeb;
  --coral: #e9634b;
  --coral-deep: #b94333;
  --cream: #f5efe3;
  --cream-deep: #e8ddcc;
  --paper: #fffdf8;
  --ink: #241f27;
  --muted: #6e6670;
  --line: #d9cfc0;
  --white: #ffffff;
  --shadow: 0 24px 72px rgba(40, 26, 53, .13);
  --radius: 28px;
  --page: 1340px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 128px;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body,
input,
textarea,
select,
button {
  font-family: Arial, Helvetica, sans-serif;
}

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

figure {
  margin: 0;
  min-width: 0;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font-size: 1rem;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .98;
}

h1 {
  font-size: clamp(3.25rem, 7vw, 7.6rem);
  margin-bottom: 30px;
  max-width: 10.5ch;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 5.1rem);
  margin-bottom: 24px;
  max-width: 14ch;
}

h3 {
  color: var(--plum);
  font-size: 1.18rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--lagoon);
  color: var(--plum-deep);
}

:focus-visible {
  border-radius: 4px;
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  background: var(--white);
  color: var(--plum);
  font-weight: 800;
  left: 16px;
  padding: 12px 18px;
  position: fixed;
  top: -100px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  background: rgba(245, 239, 227, .94);
  border-bottom: 1px solid rgba(40, 26, 53, .13);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(190px, .85fr) minmax(380px, 1.5fr) auto;
  margin: 0 auto;
  max-width: var(--page);
  min-width: 0;
  padding: 15px 22px;
}

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

.brand-mark {
  align-items: center;
  background: var(--plum);
  border-radius: 50%;
  color: var(--cream);
  display: inline-flex;
  flex: 0 0 46px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
  height: 46px;
  justify-content: center;
  letter-spacing: -.06em;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.brand small {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  margin-top: 5px;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2.2vw, 34px);
  justify-content: center;
  min-width: 0;
}

.site-nav a {
  color: var(--plum-soft);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .055em;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a::after {
  background: var(--coral);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
  width: 100%;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-phone {
  align-items: flex-end;
  background: var(--plum);
  border-radius: 999px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  padding: 10px 18px;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone span {
  color: var(--lagoon-pale);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.header-phone strong {
  font-size: 1rem;
  margin-top: 4px;
}

main {
  display: block;
  min-width: 0;
}

main > section {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--page);
  min-width: 0;
  width: calc(100% - 44px);
}

.hero {
  align-items: stretch;
  display: grid;
  gap: clamp(36px, 6vw, 96px);
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  min-height: min(820px, calc(100vh - 84px));
  padding: clamp(62px, 8vw, 118px) 0 84px;
}

.hero-copy {
  align-self: center;
  min-width: 0;
}

.eyebrow {
  color: var(--lagoon-deep);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .17em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-lead {
  color: var(--plum-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.65;
  margin-bottom: 34px;
  max-width: 700px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 42px;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--coral-deep);
  color: var(--white);
}

.button-primary:hover {
  background: var(--plum);
}

.text-link {
  color: var(--plum);
  font-weight: 800;
  text-underline-offset: 5px;
}

.text-link span {
  color: var(--coral);
  margin-left: 4px;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-services li {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--plum-soft);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .025em;
  padding: 8px 13px;
}

.hero-visual {
  border-radius: 220px 220px 30px 30px;
  box-shadow: var(--shadow);
  min-height: 570px;
  overflow: hidden;
  position: relative;
}

.hero-visual::before {
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: inherit;
  content: "";
  inset: 14px;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

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

.hero-visual figcaption {
  background: var(--plum);
  bottom: 24px;
  color: var(--white);
  left: 24px;
  max-width: calc(100% - 48px);
  padding: 18px 22px;
  position: absolute;
}

.hero-visual figcaption span,
.hero-visual figcaption strong {
  display: block;
}

.hero-visual figcaption span {
  color: var(--lagoon-pale);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-visual figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  margin-top: 4px;
}

.chapter {
  padding-bottom: clamp(86px, 10vw, 150px);
  padding-top: clamp(86px, 10vw, 150px);
}

.chapter-heading {
  align-items: start;
  display: grid;
  gap: clamp(24px, 4vw, 62px);
  grid-template-columns: auto minmax(0, 1fr);
  margin-bottom: clamp(42px, 7vw, 82px);
  max-width: 1040px;
}

.chapter-heading > div {
  min-width: 0;
}

.chapter-heading > div > p:last-child {
  color: var(--muted);
  max-width: 720px;
}

.chapter-number {
  color: var(--coral);
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 8vw, 8.2rem);
  font-style: italic;
  letter-spacing: -.075em;
  line-height: .75;
}

.access-types {
  border-top: 1px solid var(--line);
}

.type-list {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.type-list article {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 64px minmax(0, 200px) minmax(0, 1fr);
  min-width: 0;
  padding: 28px 24px;
}

.type-list article:nth-child(odd) {
  border-right: 1px solid var(--line);
  padding-left: 0;
}

.type-list article:nth-child(even) {
  padding-right: 0;
}

.type-list article > span {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
}

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

.type-list p {
  color: var(--muted);
  font-size: .96rem;
}

.fault-report {
  background: var(--plum);
  border-radius: var(--radius);
  color: var(--white);
  display: grid;
  gap: clamp(46px, 7vw, 105px);
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  max-width: calc(var(--page) + 88px);
  padding: clamp(52px, 7vw, 104px);
  width: calc(100% - 28px);
}

.fault-report .chapter-number {
  color: var(--coral);
  margin-bottom: 42px;
}

.fault-report .eyebrow {
  color: var(--lagoon-pale);
}

.fault-report h2 {
  color: var(--white);
  font-size: clamp(2.55rem, 4.6vw, 5.1rem);
}

.report-intro > p:last-child {
  color: #d9cfdd;
  max-width: 520px;
}

.report-steps {
  border-top: 1px solid rgba(255, 255, 255, .22);
  list-style: none;
  margin: 0;
  padding: 0;
}

.report-steps li {
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  display: grid;
  gap: 22px;
  grid-template-columns: 46px minmax(0, 1fr);
  padding: 25px 0;
}

.report-steps li > span {
  align-items: center;
  border: 1px solid var(--lagoon);
  border-radius: 50%;
  color: var(--lagoon-pale);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.report-steps h3 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  margin-bottom: 5px;
}

.report-steps p {
  color: #d9cfdd;
  font-size: .96rem;
}

.scope {
  padding-top: clamp(110px, 12vw, 180px);
}

.scope-layout {
  align-items: stretch;
  display: grid;
  gap: clamp(34px, 6vw, 82px);
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
}

.scope-layout > figure {
  border-radius: var(--radius);
  min-height: 650px;
  overflow: hidden;
}

.scope-layout > figure img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.scope-items {
  border-top: 1px solid var(--line);
}

.scope-items article {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.scope-items article > span {
  color: var(--lagoon-deep);
  display: block;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.scope-items h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  margin-bottom: 7px;
}

.scope-items p {
  color: var(--muted);
  max-width: 620px;
}

.photo-story {
  align-items: start;
  display: grid;
  gap: clamp(34px, 6vw, 84px);
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  padding-bottom: clamp(105px, 12vw, 180px);
}

.photo-story-main {
  min-height: 760px;
  position: relative;
}

.photo-story-main img {
  border-radius: 28px 160px 28px 28px;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.photo-story figcaption {
  background: var(--paper);
  bottom: 20px;
  color: var(--plum);
  font-size: .76rem;
  font-weight: 900;
  left: 20px;
  letter-spacing: .1em;
  padding: 12px 16px;
  position: absolute;
  text-transform: uppercase;
}

.photo-story-copy {
  padding-top: 38px;
}

.photo-story-copy .chapter-number {
  margin-bottom: 50px;
}

.photo-story-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 40px;
}

.photo-story-copy figure {
  min-height: 340px;
  position: relative;
}

.photo-story-copy figure img {
  border-radius: 20px;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.safety {
  align-items: start;
  background: var(--coral);
  border-radius: var(--radius);
  color: var(--plum-deep);
  display: grid;
  gap: clamp(34px, 5vw, 76px);
  grid-template-columns: auto minmax(0, 1.15fr) minmax(280px, .85fr);
  max-width: calc(var(--page) + 88px);
  padding: clamp(50px, 7vw, 96px);
  width: calc(100% - 28px);
}

.safety-number {
  color: rgba(40, 26, 53, .35);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-style: italic;
  letter-spacing: -.08em;
  line-height: .8;
}

.safety .eyebrow {
  color: var(--plum-deep);
}

.safety h2 {
  color: var(--plum-deep);
}

.safety-copy > p:last-child {
  max-width: 660px;
}

.safety ul {
  border-top: 1px solid rgba(40, 26, 53, .35);
  list-style: none;
  margin: 0;
  padding: 0;
}

.safety li {
  border-bottom: 1px solid rgba(40, 26, 53, .35);
  font-weight: 700;
  padding: 17px 0 17px 28px;
  position: relative;
}

.safety li::before {
  content: "×";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  left: 0;
  position: absolute;
  top: 10px;
}

.faq {
  padding-top: clamp(115px, 12vw, 180px);
}

.faq-list {
  margin-left: auto;
  max-width: 910px;
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq details:first-child {
  border-top: 1px solid var(--line);
}

.faq summary {
  color: var(--plum);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.3;
  list-style: none;
  padding: 25px 52px 25px 0;
  position: relative;
}

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

.faq summary::after {
  align-items: center;
  border: 1px solid var(--lagoon);
  border-radius: 50%;
  color: var(--lagoon-deep);
  content: "+";
  display: inline-flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  height: 34px;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 22px;
  width: 34px;
}

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

.faq details p {
  color: var(--muted);
  max-width: 760px;
  padding: 0 42px 27px 0;
}

.garage-brands {
  border-top: 1px solid var(--line);
}

.garage-brands-layout {
  display: grid;
  gap: clamp(34px, 7vw, 90px);
  grid-template-columns: minmax(0, .72fr) minmax(420px, 1.28fr);
  align-items: start;
}

.garage-brands-copy {
  padding-top: 10px;
}

.garage-brands-copy p {
  color: var(--plum-soft);
}

.garage-brands-copy strong {
  color: var(--plum);
}

.maker-directory {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 1px;
  background: var(--plum);
  border: 1px solid var(--plum);
}

.maker-directory span {
  display: grid;
  min-height: 96px;
  place-items: center;
  padding: 13px 8px;
  background: var(--paper);
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 700;
  text-align: center;
}

.maker-directory span:nth-child(3n + 2) {
  color: var(--white);
  background: var(--lagoon-deep);
}

.maker-directory-note {
  max-width: 900px;
  margin: 30px 0 0 auto;
  padding-left: 18px;
  color: var(--muted);
  border-left: 6px solid var(--coral);
  font-size: .82rem;
}

.maker-directory-note strong {
  color: var(--plum);
}

.client-notes {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: clamp(86px, 10vw, 150px);
  padding: clamp(54px, 8vw, 110px);
  width: calc(100% - 28px);
  max-width: calc(var(--page) + 88px);
}

.client-notes-layout {
  display: grid;
  gap: clamp(34px, 7vw, 92px);
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
}

.editorial-note {
  margin: 0;
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background: var(--plum);
  border-left: 10px solid var(--coral);
}

.editorial-note p {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.35;
}

.publication-rules {
  border-top: 1px solid var(--line);
}

.publication-rules article {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(160px, .7fr) minmax(0, 1.3fr);
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.publication-rules strong {
  color: var(--lagoon-deep);
}

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

.client-notes-action {
  display: inline-block;
  margin-top: 30px;
}

.contact {
  background: var(--lagoon-pale);
  border-radius: 150px 28px 28px 28px;
  display: grid;
  gap: clamp(46px, 8vw, 112px);
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
  margin-bottom: 42px;
  max-width: calc(var(--page) + 88px);
  padding: clamp(66px, 8vw, 118px);
  width: calc(100% - 28px);
}

.contact-copy {
  align-self: start;
  min-width: 0;
}

.contact-copy > p:not(.eyebrow) {
  color: var(--plum-soft);
  max-width: 560px;
}

.contact-phone {
  border-bottom: 1px solid rgba(40, 26, 53, .28);
  border-top: 1px solid rgba(40, 26, 53, .28);
  display: block;
  margin-top: 42px;
  padding: 21px 0;
  text-decoration: none;
}

.contact-phone span,
.contact-phone strong {
  display: block;
}

.contact-phone span {
  color: var(--lagoon-deep);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-phone strong {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -.04em;
  margin-top: 5px;
}

.contact-form {
  background: var(--paper);
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
  padding: clamp(26px, 4vw, 48px);
}

.form-row {
  min-width: 0;
}

.form-row-wide,
.legal-check,
.contact-form > .button {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--plum);
  display: block;
  font-size: .82rem;
  font-weight: 800;
  margin-bottom: 7px;
}

.form-row label span {
  color: var(--muted);
  font-weight: 400;
}

.form-row input,
.form-row textarea {
  appearance: none;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  display: block;
  min-width: 0;
  padding: 13px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}

.form-row textarea {
  min-height: 138px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--lagoon);
  box-shadow: 0 0 0 4px rgba(7, 143, 139, .13);
  outline: 0;
}

.legal-check {
  align-items: start;
  color: var(--muted);
  display: grid;
  font-size: .84rem;
  gap: 10px;
  grid-template-columns: 19px minmax(0, 1fr);
  line-height: 1.45;
}

.legal-check input {
  accent-color: var(--lagoon);
  height: 18px;
  margin: 2px 0 0;
  width: 18px;
}

.legal-check a {
  color: var(--plum);
  font-weight: 800;
  text-underline-offset: 3px;
}

.contact-form > .button {
  justify-self: start;
  margin-top: 4px;
  min-width: 190px;
}

.form-trap {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  margin: 0 auto;
  max-width: var(--page);
  padding: 34px 22px calc(34px + env(safe-area-inset-bottom));
}

.site-footer > div {
  min-width: 0;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.site-footer span {
  color: var(--muted);
  font-size: .82rem;
  margin-top: 3px;
}

.site-footer > a {
  color: var(--plum);
  font-size: .84rem;
  font-weight: 800;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.mobile-call {
  display: none;
}

.not-found {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 110px);
  padding: 64px 22px;
}

.not-found-card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 760px;
  overflow: hidden;
  padding: clamp(42px, 8vw, 88px);
  position: relative;
  text-align: center;
  width: 100%;
}

.not-found-card::before {
  background: var(--lagoon);
  content: "";
  height: 12px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.not-found-card .eyebrow {
  margin-bottom: 24px;
}

.not-found-card h1 {
  font-size: clamp(3rem, 9vw, 6.5rem);
  margin-left: auto;
  margin-right: auto;
}

.not-found-card p {
  color: var(--muted);
  margin: 0 auto 30px;
  max-width: 570px;
}

.not-found-card .button {
  margin: 0 5px 10px;
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 15px 24px;
    grid-template-columns: minmax(190px, 1fr) auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr);
  }

  .type-list article {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .type-list article p {
    grid-column: 2;
  }

  .safety {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .safety ul {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 145px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 72px;
  }

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

  .hero-visual {
    aspect-ratio: 16 / 10;
    border-radius: 160px 160px 26px 26px;
    min-height: 0;
  }

  .fault-report,
  .scope-layout,
  .photo-story,
  .garage-brands-layout,
  .client-notes-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .fault-report {
    gap: 54px;
  }

  .scope-layout > figure {
    aspect-ratio: 16 / 11;
    min-height: 0;
  }

  .photo-story-main {
    min-height: 600px;
  }

  .photo-story-copy {
    display: grid;
    gap: 0 36px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
    padding-top: 0;
  }

  .photo-story-copy .chapter-number,
  .photo-story-copy .eyebrow,
  .photo-story-copy h2,
  .photo-story-copy > p {
    grid-column: 1;
  }

  .photo-story-copy figure {
    align-self: stretch;
    grid-column: 2;
    grid-row: 1 / 6;
    min-height: 420px;
  }

  .contact {
    border-radius: 120px 24px 24px;
  }

  .contact-copy {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 126px;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  main > section,
  .fault-report,
  .safety,
  .client-notes,
  .contact {
    width: calc(100% - 28px);
  }

  .header-inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header-phone {
    display: none;
  }

  .site-nav {
    gap: 22px;
    margin-left: -15px;
    margin-right: -15px;
    overflow-x: auto;
    padding: 4px 15px 8px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    gap: 48px;
    padding-bottom: 70px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 5rem);
  }

  .hero-visual {
    border-radius: 110px 110px 22px 22px;
  }

  .chapter-heading {
    gap: 19px;
    grid-template-columns: 1fr;
  }

  .chapter-heading .chapter-number {
    margin-bottom: 12px;
  }

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

  .type-list article,
  .type-list article:nth-child(odd),
  .type-list article:nth-child(even) {
    border-right: 0;
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 24px 0;
  }

  .fault-report,
  .safety,
  .contact {
    border-radius: 22px;
    padding: 46px 24px;
  }

  .scope-layout > figure {
    border-radius: 20px;
  }

  .photo-story-main {
    min-height: 470px;
  }

  .photo-story-main img {
    border-radius: 20px 90px 20px 20px;
  }

  .photo-story-copy {
    display: block;
  }

  .photo-story-copy figure {
    min-height: 360px;
  }

  .maker-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .maker-directory span {
    min-height: 82px;
  }

  .maker-directory span:nth-child(3n + 2) {
    color: var(--plum);
    background: var(--paper);
  }

  .maker-directory span:nth-child(4n + 2),
  .maker-directory span:nth-child(4n + 3) {
    color: var(--white);
    background: var(--lagoon-deep);
  }

  .client-notes {
    border-radius: 22px;
    padding: 46px 24px;
  }

  .publication-rules article {
    gap: 7px;
    grid-template-columns: 1fr;
  }

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

  .safety-number {
    margin-bottom: 8px;
  }

  .safety ul {
    grid-column: auto;
  }

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

  .form-row-wide,
  .legal-check,
  .contact-form > .button {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
  }

  .site-footer > a {
    white-space: normal;
  }

  .mobile-call {
    align-items: center;
    background: var(--plum);
    bottom: 0;
    color: var(--white);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    left: 0;
    min-height: 66px;
    padding: 13px max(18px, env(safe-area-inset-right)) calc(13px + env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
    position: fixed;
    right: 0;
    text-decoration: none;
    z-index: 200;
  }

  .mobile-call span {
    color: var(--lagoon-pale);
    font-size: .73rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .mobile-call strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.27rem;
  }

  .not-found {
    min-height: calc(100vh - 170px);
    padding: 42px 14px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  main > section,
  .fault-report,
  .safety,
  .contact {
    width: calc(100% - 24px);
  }

  .brand-mark {
    flex-basis: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 1.12rem;
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .text-link {
    text-align: center;
  }

  .hero-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-services li {
    text-align: center;
  }

  .hero-visual {
    aspect-ratio: 4 / 5;
    border-radius: 90px 90px 18px 18px;
  }

  .hero-visual figcaption {
    bottom: 14px;
    left: 14px;
    max-width: calc(100% - 28px);
    padding: 14px 16px;
  }

  .type-list article,
  .type-list article:nth-child(odd),
  .type-list article:nth-child(even) {
    gap: 10px 14px;
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .type-list article p {
    grid-column: 1 / -1;
  }

  .fault-report,
  .safety,
  .client-notes,
  .contact {
    padding: 40px 18px;
  }

  .report-steps li {
    gap: 14px;
    grid-template-columns: 39px minmax(0, 1fr);
  }

  .report-steps li > span {
    height: 34px;
    width: 34px;
  }

  .scope-layout > figure {
    aspect-ratio: 4 / 5;
  }

  .photo-story-main {
    min-height: 410px;
  }

  .photo-story-copy figure {
    min-height: 310px;
  }

  .faq summary {
    padding-right: 45px;
  }

  .faq details p {
    padding-right: 0;
  }

  .contact-form {
    border-radius: 16px;
    padding: 22px 16px;
  }

  .contact-form > .button {
    width: 100%;
  }

  .not-found-card {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 350px) {
  .header-inner {
    padding-left: 11px;
    padding-right: 11px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    flex-basis: 38px;
    font-size: .94rem;
    height: 38px;
  }

  .brand strong {
    font-size: 1.02rem;
  }

  .brand small {
    font-size: .62rem;
  }

  .site-nav {
    margin-left: -11px;
    margin-right: -11px;
    padding-left: 11px;
    padding-right: 11px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2.08rem;
  }

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

  .mobile-call {
    gap: 8px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .mobile-call strong {
    font-size: 1.12rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
