:root {
  --bg: #0a0a0a;
  --surface: #111114;
  --surface-2: #18181d;
  --surface-hover: #202027;
  --line: #26262c;
  --line-strong: #34343c;
  --accent: #7b2bf5;
  --accent-hover: #8f45ff;
  --accent-pressed: #6a1fe0;
  --accent-subtle: rgba(123, 43, 245, 0.14);
  --accent-ring: rgba(123, 43, 245, 0.5);
  --price: #f5a524;
  --text: #f5f5f5;
  --text-body: #b4b4bc;
  --text-muted: #7a7a84;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter Tight", Inter, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
  --ink: var(--bg);
  --black: var(--bg);
  --bay: var(--surface);
  --bay-2: var(--surface-hover);
  --field: var(--surface-2);
  --field-line: var(--line-strong);
  --steel: var(--text-body);
  --muted: var(--text-muted);
  --white: var(--text);
  --purple: var(--accent);
  --purple-deep: var(--accent-pressed);
  --purple-light: var(--accent-hover);
  --amber: var(--price);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
  --radius: 8px;
  --radius-sm: 6px;
  --image-grade: contrast(1.18) saturate(0.72) brightness(0.82);
  --img-scrim: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.55) 22%, rgba(10,10,10,0) 48%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: 88px 88px, 88px 88px;
  opacity: 0.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent-ring);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 12px 5vw;
  background: rgba(3, 3, 4, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.brand-mark svg {
  width: 32px;
  height: 32px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-word {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

nav a:hover {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255,255,255,0.06);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 5vw;
  align-items: end;
  padding: 150px 5vw 56px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: var(--image-grade);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 50%, rgba(123,43,245,0.1), transparent 34%);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3,3,4,0.94) 0%, rgba(3,3,4,0.68) 44%, rgba(3,3,4,0.18) 100%),
    linear-gradient(0deg, rgba(3,3,4,0.9) 0%, rgba(3,3,4,0.08) 54%, rgba(3,3,4,0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.eyebrow,
.service-type {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 {
  font-size: 104px;
  max-width: 760px;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--steel);
  font-size: 21px;
}

.hero-actions,
.quote-shortcuts,
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button,
.quote-shortcuts a,
.contact-list a,
form button,
.map-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.primary,
form button {
  border-color: transparent;
  background: var(--accent);
  box-shadow: 0 14px 34px rgba(123, 43, 245, 0.24);
}

.secondary {
  border-color: rgba(246, 244, 240, 0.34);
  background: rgba(255,255,255,0.06);
}

.ghost,
.map-link,
.quote-shortcuts a,
.contact-list a {
  background: rgba(3,3,4,0.18);
}

.button:hover,
.quote-shortcuts a:hover,
.contact-list a:hover,
.map-link:hover,
form button:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  background-color: var(--surface-hover);
}

.primary:hover,
form button:hover {
  background: var(--accent-hover);
}

.primary:active,
form button:active {
  background: var(--accent-pressed);
}

.work-order {
  position: relative;
  z-index: 2;
  align-self: end;
  border: 1px solid rgba(245,245,245,0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025)),
    rgba(8,8,10,0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.work-order::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(245,245,245,0.18);
  border-radius: var(--radius-sm);
  pointer-events: none;
}

.ticket-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 18px;
  border-bottom: 1px solid rgba(245,245,245,0.14);
}

.ticket-top span,
.work-order dt {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticket-top strong {
  color: var(--price);
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.work-order dl {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 10px 24px 24px;
}

.work-order dl div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(245,245,245,0.1);
}

.work-order dl div:last-child {
  border-bottom: 0;
}

.work-order dd {
  margin: 0;
  color: var(--steel);
  font-size: 15px;
  font-weight: 800;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-strip div {
  padding: 24px 5vw;
  background: #0a0a0c;
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  font-size: 18px;
}

.signal-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 82px 5vw;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 640px;
}

.section h2 {
  max-width: 920px;
  font-size: 54px;
}

.section-heading p,
.why-copy p,
.quote-copy p,
.visit-copy p,
details p {
  color: var(--muted);
  font-size: 17px;
}

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

.service-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,0.24);
  transition:
    transform 200ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 200ms cubic-bezier(0.4, 0, 0.2, 1),
    background 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--surface-hover);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2;
  background: var(--accent);
  opacity: 0;
  transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
  opacity: 0.78;
}

.service-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.service-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--line);
  filter: var(--image-grade);
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card img.photo-crop-top,
.photo-tile img.photo-crop-top {
  object-position: center 18%;
}

.service-card img.photo-focus-person,
.photo-tile img.photo-focus-person,
.credential-photo img.photo-focus-person {
  object-position: 42% 32%;
}

.service-card.featured img {
  height: min(42vw, 520px);
  min-height: 340px;
  max-height: 520px;
  aspect-ratio: auto;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  aspect-ratio: 16 / 10;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3,3,4,0) 44%, rgba(3,3,4,0.72) 100%),
    linear-gradient(90deg, rgba(9, 48, 55, 0.18), rgba(153, 83, 19, 0.16));
}

.service-card.featured::after {
  right: auto;
  bottom: 0;
  width: calc(100% * 1.15 / 2);
  height: min(42vw, 520px);
  max-height: 520px;
  aspect-ratio: auto;
}

.service-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
}

.service-card.featured .service-copy {
  justify-content: center;
  padding: 48px;
}

.service-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}

.service-card p {
  margin: 0;
}

.price {
  margin-bottom: 4px !important;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
}

.price span {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
}

.price-quote {
  width: fit-content;
  padding: 5px 8px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--text-body);
  background: rgba(255,255,255,0.035);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-copy p:last-child {
  color: var(--muted);
  font-size: 15px;
  margin-top: 6px;
}

.why-section,
.quote-section,
.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: stretch;
}

.why-section {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 56px;
  align-items: start;
}

.quote-section {
  display: block;
}

.visit-copy,
.map-card,
form,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17,18,22,0.88);
}

.visit-copy {
  padding: 30px;
}

.why-copy,
.quote-copy {
  padding: 4px 0;
}

.quote-copy {
  max-width: 760px;
  margin: 0 auto 32px;
}

.checks {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.checks li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--steel);
  font-weight: 800;
}

.checks li::before {
  content: "";
  width: 16px;
  height: 2px;
  margin-top: 12px;
  background: var(--purple-light);
  box-shadow: 0 0 18px rgba(123, 43, 245, 0.4);
}

.proof-board {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.proof-board img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  filter: var(--image-grade);
}

.proof-board .proof-main {
  grid-row: span 2;
}

.credential-card {
  min-height: 420px;
  display: grid;
  grid-template-rows: minmax(190px, 0.85fr) auto;
  align-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 24%, rgba(123,43,245,0.16), transparent 34%),
    var(--surface);
  text-align: center;
  overflow: hidden;
}

.credential-photo {
  width: 100%;
  height: 100%;
  min-height: 190px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.credential-photo img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  display: block;
  object-fit: cover;
  object-position: center 36%;
  filter: var(--image-grade);
}

.credential-copy {
  position: relative;
  width: 100%;
  padding: 30px 32px 36px;
  background:
    radial-gradient(circle at 50% 0%, rgba(123,43,245,0.12), transparent 42%),
    var(--surface);
}

.ase-seal {
  position: relative;
  width: 128px;
  height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(123,43,245,0.18), transparent 70%),
    #141418;
  box-shadow: 0 18px 42px rgba(0,0,0,0.34);
}

.ase-seal::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.ase-seal span,
.ase-seal small {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.ase-seal span {
  color: var(--text);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.ase-seal small {
  margin-top: 6px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.credential-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.credential-card p:last-child {
  margin: 6px 0 0;
  color: var(--steel);
  font-weight: 600;
}

.credential-card strong {
  margin-top: 24px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
}

.quote-form {
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
  padding: 48px;
  border-radius: var(--radius);
  background: var(--surface);
}

label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 700;
}

.quote-form label {
  color: var(--text);
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--field-line);
  border-radius: var(--radius-sm);
  background: var(--field);
  color: var(--white);
  font: inherit;
  padding: 12px;
}

.field::placeholder {
  color: var(--text-muted);
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
  outline: none;
}

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

.full-field,
label:nth-child(6),
form button {
  grid-column: 1 / -1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.9fr;
  gap: 16px;
}

.photo-tile {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.photo-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: var(--image-grade);
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    var(--img-scrim),
    linear-gradient(90deg, rgba(9, 48, 55, 0.14), rgba(153, 83, 19, 0.12));
}

.photo-tile:hover img {
  transform: scale(1.035);
}

.photo-tile figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.photo-tile.tall {
  grid-row: span 2;
  min-height: 420px;
}

.photo-tile.wide {
  grid-column: span 2;
  min-height: 260px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

details {
  padding: 0;
  overflow: hidden;
}

summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

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

summary::after {
  content: "+";
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  border-top: 1px solid var(--line);
}

@keyframes rise {
  from {
    transform: translateY(14px);
  }

  to {
    transform: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    animation: rise 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .reveal.d1 {
    animation-delay: 0.05s;
  }

  .reveal.d2 {
    animation-delay: 0.15s;
  }

  .reveal.d3 {
    animation-delay: 0.25s;
  }

  .reveal.d4 {
    animation-delay: 0.38s;
  }
}

.visit-section {
  align-items: stretch;
}

.contact-list {
  margin-top: 24px;
}

.contact-list a {
  flex: 1 1 190px;
}

.hours {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 16px;
  background: rgba(255,255,255,0.045);
}

.hours strong,
.hours span {
  font-size: 14px;
  color: var(--text-body);
}

.hours strong {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours strong {
  color: var(--white);
}

.map-card {
  min-height: 520px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    #121318;
  background-size: 42px 42px;
}

.map-card::after {
  content: "3015 Westwood Dr. Unit B";
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 8px 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(10,10,10,0.78);
  color: var(--text-body);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

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

footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 5vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #050506;
  text-align: center;
}

.footer-mark {
  width: 28px;
  height: 28px;
  display: inline-flex;
  color: var(--accent);
}

.footer-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .work-order {
    width: min(640px, 100%);
  }

  .service-card.featured {
    grid-column: 1 / -1;
  }

  .why-section,
  .quote-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .why-section {
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
  }

  .brand-word {
    font-size: 24px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 760px;
    padding-top: 64px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .signal-strip,
  .gallery-grid,
  form {
    grid-template-columns: 1fr;
  }

  .work-order dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .ticket-top strong {
    font-size: 28px;
  }

  .section {
    padding: 62px 5vw;
  }

  .section h2 {
    font-size: 40px;
  }

  .credential-card {
    min-height: 0;
    padding: 32px;
  }

  .quote-form {
    padding: 24px;
  }

  .service-card.featured {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .service-card img,
  .service-card.featured img,
  .photo-tile,
  .photo-tile.tall,
  .photo-tile.wide {
    height: 260px;
    min-height: 260px;
  }

  .photo-tile.tall,
  .photo-tile.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .service-card img,
  .service-card.featured img {
    min-height: 0;
    aspect-ratio: auto;
  }

  .service-card::after,
  .service-card.featured::after {
    width: 100%;
    height: 260px;
    aspect-ratio: auto;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 48px;
  }

  .hero-actions,
  .quote-shortcuts,
  .contact-list {
    flex-direction: column;
  }

  .button,
  .quote-shortcuts a,
  .contact-list a,
  .map-link,
  form button {
    width: 100%;
  }

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

  .ase-seal {
    width: 112px;
    height: 112px;
  }

  .hours p {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .button:hover,
  .quote-shortcuts a:hover,
  .contact-list a:hover,
  .map-link:hover,
  form button:hover {
    transform: none;
  }
}
