:root {
  --ink: #171914;
  --ink-soft: #3c4037;
  --paper: #f3f3f3;
  --white: #ffffff;
  --silver: #c8c8c8;
  --steel: #6d6d6d;
  --line: rgba(23, 25, 20, 0.16);
  --muted: #777b70;
  --display: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --radius: 3px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 82px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(100% - 48px, 1220px);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcement {
  background: #000;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.announcement-inner {
  align-items: center;
  display: flex;
  height: 32px;
  justify-content: space-between;
}

.announcement span {
  align-items: center;
  display: flex;
  gap: 9px;
}

.announcement i {
  background: var(--white);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.announcement a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  z-index: 20;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(23, 25, 20, 0.06);
}

.nav-wrap {
  align-items: center;
  display: flex;
  height: 82px;
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: flex;
  height: 80px;
  line-height: 1;
  width: 105px;
}

.brand img {
  height: auto;
  object-fit: contain;
  width: 100%;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 36px;
}

.desktop-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.desktop-nav a::after {
  background: var(--ink);
  bottom: -7px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 28px;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: #292d25;
}

.button-silver {
  background: linear-gradient(135deg, #f5f5f5, var(--silver));
  color: var(--ink);
}

.button-silver:hover {
  background: var(--white);
}

.nav-cta {
  min-height: 46px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.garage-intro {
  --door-progress: 0;
  background: #ececec;
  height: 165vh;
  position: relative;
}

.garage-sticky {
  height: calc(100vh - 82px);
  min-height: 610px;
  overflow: hidden;
  position: sticky;
  top: 82px;
}

.garage-reveal {
  align-items: center;
  background:
    repeating-linear-gradient(
      90deg,
      #f7f7f4 0,
      #f7f7f4 112px,
      #ffffff 112px,
      #ffffff 120px,
      #deded9 120px,
      #f3f3ef 124px
    );
  color: var(--ink);
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  opacity: calc(var(--door-progress) * 1.3);
  position: absolute;
}

.garage-reveal::before {
  background:
    linear-gradient(90deg, rgba(20, 20, 18, 0.08), transparent 1.2% 98.8%, rgba(20, 20, 18, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), transparent 18%, transparent 78%, rgba(65, 65, 61, 0.1));
  border: 10px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(25, 25, 23, 0.1),
    inset 0 18px 28px rgba(255, 255, 255, 0.82),
    inset 0 -30px 50px rgba(112, 112, 105, 0.08);
  content: "";
  inset: 0;
  position: absolute;
}

.garage-reveal-mark,
.garage-reveal > p {
  position: relative;
  transform: translateY(calc((1 - var(--door-progress)) * 30px));
}

.garage-reveal-mark {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.garage-reveal-mark strong {
  font-family: var(--display);
  font-size: clamp(74px, 10vw, 132px);
  font-weight: 650;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.garage-reveal-mark span {
  border-top: 1px solid rgba(25, 25, 23, 0.5);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.3em;
  margin-top: 20px;
  padding: 12px 8px 0;
  text-transform: uppercase;
}

.garage-reveal > p {
  color: #30302e;
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 450;
  letter-spacing: -0.025em;
  margin-top: 32px;
}

.garage-door {
  color: var(--white);
  height: 100%;
  inset: 0;
  position: absolute;
  transform: translateY(0);
}

.garage-door.door-bounce {
  animation: door-bounce 940ms cubic-bezier(0.22, 0.75, 0.25, 1) 180ms both;
}

@keyframes door-bounce {
  0% {
    transform: translateY(-7px);
  }
  28% {
    transform: translateY(6px);
  }
  52% {
    transform: translateY(-3px);
  }
  74% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(0);
  }
}

.garage-door-surface {
  background: transparent;
  box-shadow:
    inset 18px 0 #070808,
    inset -18px 0 #070808;
  inset: 0;
  perspective: 1400px;
  position: absolute;
  transform-style: preserve-3d;
}

.garage-panel {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 20%, transparent 80%, rgba(0, 0, 0, 0.15)),
    linear-gradient(180deg, #4a4d4b 0%, #343735 18%, #242625 72%, #191a1a 100%);
  border-bottom: 3px solid #080909;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 -10px 18px rgba(0, 0, 0, 0.19),
    0 4px 9px rgba(0, 0, 0, 0.46);
  height: 20%;
  left: 18px;
  position: absolute;
  right: 18px;
  transform: translate3d(0, var(--panel-y, 0px), var(--panel-z, 0px))
    rotateX(var(--panel-rotate, 0deg));
  transform-origin: top center;
  transform-style: preserve-3d;
  will-change: transform;
}

.garage-panel-1 {
  background-position-y: 0;
  top: 0;
}

.garage-panel-2 {
  top: 20%;
}

.garage-panel-3 {
  top: 40%;
}

.garage-panel-4 {
  top: 60%;
}

.garage-panel-5 {
  top: 80%;
}

.garage-windows {
  display: grid;
  gap: 13px;
  grid-template-columns: repeat(4, minmax(72px, 118px));
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
}

.garage-windows i {
  background:
    linear-gradient(118deg, transparent 0 23%, rgba(255, 255, 255, 0.32) 25%, rgba(255, 255, 255, 0.08) 38%, transparent 40%),
    radial-gradient(circle at 74% 28%, rgba(188, 209, 212, 0.24), transparent 34%),
    linear-gradient(180deg, #526064 0%, #293235 42%, #151a1b 100%);
  border: 4px solid #0b0d0d;
  border-radius: 2px;
  box-shadow:
    inset 0 0 0 2px rgba(134, 146, 146, 0.45),
    inset 0 8px 16px rgba(196, 220, 223, 0.08),
    inset 0 -10px 18px rgba(0, 0, 0, 0.52),
    0 1px 0 rgba(255, 255, 255, 0.2),
    0 3px 6px rgba(0, 0, 0, 0.42);
  height: 55px;
  overflow: hidden;
  position: relative;
}

.garage-windows i::before {
  background:
    linear-gradient(166deg, transparent 0 43%, rgba(183, 201, 202, 0.14) 44% 47%, transparent 48%),
    linear-gradient(15deg, transparent 0 67%, rgba(255, 255, 255, 0.08) 68% 70%, transparent 71%);
  content: "";
  inset: 3px;
  position: absolute;
}

.garage-windows i::after {
  border: 1px solid rgba(0, 0, 0, 0.64);
  box-shadow:
    inset 1px 1px rgba(255, 255, 255, 0.12),
    inset -1px -1px rgba(0, 0, 0, 0.5);
  content: "";
  inset: 2px;
  position: absolute;
}

.garage-windows i:nth-child(2) {
  filter: brightness(0.92);
}

.garage-windows i:nth-child(3) {
  filter: brightness(1.08);
}

.garage-windows i:nth-child(4) {
  background-position: 12px 0, center, center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.22) 43%, rgba(0, 0, 0, 0.02) 76%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), transparent 34%);
  inset: 0;
  position: absolute;
  opacity: calc(1 - (var(--door-progress) * 1.4));
}

.hero-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: relative;
  opacity: calc(1 - (var(--door-progress) * 1.55));
  transform: translateY(calc(var(--door-progress) * -45px));
  will-change: opacity, transform;
}

.hero-copy {
  margin-top: -20px;
  max-width: 680px;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 600;
  gap: 0;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.eyebrow span + span::before {
  background: currentColor;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 3px;
  margin: 0 13px 3px;
  width: 3px;
}

.eyebrow-light {
  color: rgba(255, 254, 249, 0.76);
}

.garage-door h1 {
  font-family: var(--display);
  font-size: clamp(58px, 6.6vw, 96px);
  font-weight: 600;
  letter-spacing: -0.068em;
  line-height: 0.95;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.garage-door h1 em {
  color: var(--silver);
  font-style: normal;
}

.hero-copy > p {
  color: rgba(255, 254, 249, 0.78);
  font-size: 18px;
  line-height: 1.55;
  margin: 29px 0 34px;
  max-width: 520px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 32px;
}

.text-link {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 18px;
}

.text-link-light {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding-bottom: 4px;
}

.hero-proof {
  align-items: center;
  bottom: 34px;
  display: flex;
  gap: 18px;
  position: absolute;
  right: 0;
}

.proof-number {
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--display);
  font-size: 37px;
  font-weight: 600;
  line-height: 1;
  padding-right: 18px;
}

.stars {
  color: var(--silver);
  font-size: 12px;
  letter-spacing: 0.13em;
}

.proof-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  margin-top: 3px;
}

.garage-handle {
  background: linear-gradient(180deg, #ddd, #545454 45%, #111);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 5px;
  bottom: 42px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
  height: 12px;
  left: 50%;
  opacity: calc(0.9 - var(--door-progress));
  position: absolute;
  transform: translateX(-50%);
  width: 90px;
}

.scroll-cue {
  align-items: center;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  left: 50%;
  opacity: calc(1 - (var(--door-progress) * 4));
  position: absolute;
  transform: translateX(-50%);
}

.scroll-cue span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue i {
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  height: 34px;
  position: relative;
  width: 20px;
}

.scroll-cue i::after {
  animation: scroll-dot 1.8s ease-in-out infinite;
  background: var(--white);
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 7px;
  position: absolute;
  top: 6px;
  width: 4px;
}

@keyframes scroll-dot {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(13px);
  }
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  gap: 15px;
  min-height: 116px;
  padding: 20px 28px;
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-icon {
  align-items: center;
  background: var(--paper);
  border-radius: 50%;
  display: flex;
  flex: 0 0 41px;
  height: 41px;
  justify-content: center;
}

.trust-icon svg {
  fill: none;
  height: 21px;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  width: 21px;
}

.trust-item div {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
}

.trust-item small {
  color: var(--muted);
  font-size: 10px;
}

.garage-zone {
  position: relative;
}

.garage-showroom {
  background:
    linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
    repeating-linear-gradient(90deg, #d9d7d1 0 179px, #c9c6bf 180px 181px);
}

.garage-showroom .service-card {
  border: 7px solid #e8e6e1;
  box-shadow:
    0 18px 38px rgba(33, 31, 28, 0.12),
    inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.section {
  padding: 105px 0;
}

.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 58px;
}

.section-heading > p {
  color: var(--muted);
  max-width: 390px;
}

.kicker {
  color: #666b5f;
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-bottom: 19px;
  text-transform: uppercase;
}

.section h2 {
  font-family: var(--display);
  font-size: clamp(42px, 4.5vw, 66px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
}

.service-card {
  background: var(--white);
  border: 0;
  border-radius: 24px;
  min-height: 390px;
  padding: 30px;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  box-shadow: 0 24px 60px rgba(23, 25, 20, 0.08);
  transform: translateY(-5px);
}

.card-number {
  color: #9b9e95;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  left: 30px;
  position: absolute;
  top: 28px;
}

.service-card h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 15px 0 24px;
}

.service-card a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 13px;
  font-weight: 600;
  justify-content: space-between;
  padding-bottom: 8px;
}

.service-card:not(.service-feature) {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.service-icon {
  left: 50%;
  position: absolute;
  top: 54px;
  transform: translateX(-50%);
}

.service-icon svg {
  fill: none;
  height: 80px;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
  width: 80px;
}

.opener-illustration {
  height: 104px;
  top: 51px;
  width: 190px;
}

.opener-illustration span,
.opener-illustration i {
  display: block;
  position: absolute;
}

.opener-motor {
  background: #f5f5f2;
  border: 2px solid #272925;
  border-radius: 13px;
  box-shadow: 0 7px 15px rgba(25, 27, 23, 0.1);
  height: 58px;
  left: 2px;
  top: 15px;
  width: 68px;
  z-index: 3;
}

.opener-light {
  background: #ffffff;
  border: 1px solid #9b9d98;
  border-radius: 6px;
  height: 27px;
  left: 9px;
  top: 13px;
  width: 46px;
}

.opener-rail {
  background: #333531;
  height: 3px;
  left: 68px;
  top: 42px;
  width: 118px;
  z-index: 2;
}

.opener-rail::after {
  background: #333531;
  border-radius: 50%;
  content: "";
  height: 7px;
  position: absolute;
  right: -3px;
  top: -2px;
  width: 7px;
}

.opener-trolley {
  background: #ffffff;
  border: 1.5px solid #2a2c29;
  border-radius: 3px;
  height: 13px;
  left: 133px;
  top: 37px;
  width: 22px;
  z-index: 4;
}

.opener-release {
  background: #4a4c48;
  height: 28px;
  left: 143px;
  top: 49px;
  width: 1.5px;
}

.opener-release::after {
  background: #4a4c48;
  border-radius: 50%;
  bottom: -6px;
  content: "";
  height: 6px;
  left: -2px;
  position: absolute;
  width: 6px;
}

.service-feature {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: 0.8fr 1fr;
}

.service-feature .card-number {
  color: rgba(255, 255, 255, 0.55);
}

.service-feature p {
  color: rgba(255, 255, 255, 0.62);
}

.service-feature a {
  border-color: rgba(255, 255, 255, 0.22);
}

.service-content {
  align-self: end;
}

.door-illustration {
  align-self: center;
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 224px;
  justify-content: flex-end;
  padding: 8px;
}

.door-illustration > span {
  border: 1px solid rgba(255, 255, 255, 0.34);
  flex: 1;
}

.door-illustration .door-top {
  background: var(--silver);
  border-color: var(--silver);
  flex: 0.35;
}

.door-story {
  background: #f5f5f7;
  overflow: hidden;
}

.story-intro {
  margin: 0 auto 74px;
  max-width: 900px;
  text-align: center;
}

.story-intro h2 {
  font-size: clamp(46px, 5.8vw, 80px);
}

.story-intro > p {
  color: #6e6e73;
  font-size: 19px;
  line-height: 1.55;
  margin: 30px auto 0;
  max-width: 680px;
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.feature-card {
  background: var(--white);
  border-radius: 28px;
  min-height: 520px;
  overflow: hidden;
  padding: 48px;
  position: relative;
}

.feature-card-wide {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-column: 1 / 3;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 550px;
}

.feature-label {
  color: #6e6e73;
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.feature-card h3 {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.feature-card p {
  color: #6e6e73;
  font-size: 16px;
  line-height: 1.55;
  margin-top: 24px;
  max-width: 470px;
}

.feature-card-dark {
  background: #090909;
  color: var(--white);
}

.feature-card-dark .feature-label,
.feature-card-dark p {
  color: rgba(255, 255, 255, 0.58);
}

.sound-visual {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  height: 320px;
  justify-content: center;
}

.sound-visual span {
  background: linear-gradient(180deg, #151515, #bababa);
  border-radius: 999px;
  display: block;
  width: clamp(18px, 2.2vw, 32px);
}

.sound-visual span:nth-child(1),
.sound-visual span:nth-child(5) {
  height: 72px;
  opacity: 0.22;
}

.sound-visual span:nth-child(2),
.sound-visual span:nth-child(4) {
  height: 154px;
  opacity: 0.48;
}

.sound-visual span:nth-child(3) {
  height: 252px;
}

.layer-visual {
  bottom: -20px;
  height: 210px;
  left: 48px;
  position: absolute;
  right: 48px;
}

.layer-visual span {
  background: linear-gradient(125deg, #242424, #777);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px 18px 0 0;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
}

.layer-visual span:nth-child(1) {
  height: 90px;
  transform: translateY(42px) scaleX(0.78);
}

.layer-visual span:nth-child(2) {
  height: 135px;
  transform: translateY(18px) scaleX(0.89);
}

.layer-visual span:nth-child(3) {
  background: linear-gradient(125deg, #ececec, #777);
  height: 170px;
}

.phone-visual {
  background: #0b0b0b;
  border: 7px solid #1e1e1e;
  border-radius: 38px;
  bottom: -130px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  color: var(--white);
  height: 350px;
  left: 50%;
  padding: 45px 28px 28px;
  position: absolute;
  transform: translateX(-50%);
  width: 210px;
}

.phone-camera {
  background: #252525;
  border-radius: 99px;
  height: 12px;
  left: 50%;
  position: absolute;
  top: 15px;
  transform: translateX(-50%);
  width: 50px;
}

.phone-door {
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 124px;
  padding: 8px;
}

.phone-door i {
  border: 1px solid rgba(255, 255, 255, 0.36);
  flex: 1;
}

.phone-visual b {
  display: block;
  font-family: var(--display);
  font-size: 14px;
  margin-top: 20px;
  text-align: center;
}

.feature-card-details {
  display: flex;
  flex-direction: column;
}

.detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 34px 0;
}

.detail-list span {
  background: #f1f1f3;
  border-radius: 999px;
  color: #535358;
  font-size: 12px;
  padding: 9px 13px;
}

.apple-link {
  color: #424245;
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
  gap: 8px;
  margin-top: auto;
  width: fit-content;
}

.apple-link:hover {
  text-decoration: underline;
}

.work {
  background: var(--white);
}

.work-layout {
  align-items: center;
  display: grid;
  gap: clamp(55px, 8vw, 120px);
  grid-template-columns: 1.2fr 0.8fr;
}

.work-image {
  min-height: 640px;
  overflow: hidden;
  position: relative;
}

.work-image img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 63% center;
  position: absolute;
  width: 100%;
}

.image-tag {
  background: var(--ink);
  color: var(--white);
  bottom: 0;
  font-size: 10px;
  font-weight: 600;
  left: 0;
  letter-spacing: 0.12em;
  padding: 13px 18px;
  position: absolute;
  text-transform: uppercase;
}

.work-copy > p {
  color: var(--muted);
  margin: 28px 0 30px;
  max-width: 460px;
}

.check-list {
  list-style: none;
  margin-bottom: 36px;
}

.check-list li {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 14px;
  gap: 14px;
  padding: 13px 0;
}

.check-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.check-list span {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  font-size: 10px;
  height: 21px;
  justify-content: center;
  width: 21px;
  color: var(--white);
}

.repair-story {
  background-color: #151515;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1.2px, transparent 1.3px);
  background-size: 18px 18px;
  color: var(--white);
}

.garage-workbench::after {
  background: linear-gradient(180deg, #9a7046, #654425);
  bottom: 0;
  box-shadow: 0 -8px 22px rgba(0, 0, 0, 0.35);
  content: "";
  height: 14px;
  left: 0;
  position: absolute;
  right: 0;
}

.repair-layout {
  display: grid;
  gap: clamp(70px, 10vw, 150px);
  grid-template-columns: 0.85fr 1.15fr;
}

.repair-heading {
  align-self: start;
  position: sticky;
  top: 135px;
}

.repair-heading .kicker {
  color: rgba(255, 255, 255, 0.5);
}

.repair-heading > p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  margin: 28px 0 36px;
  max-width: 470px;
}

.repair-heading .button-dark {
  background: var(--white);
  color: var(--ink);
}

.repair-heading .button-dark:hover {
  background: #dedede;
}

.symptom-list article {
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 36px;
  grid-template-columns: 36px 1fr;
  padding: 34px 0 38px;
}

.symptom-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.symptom-list article > span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  font-weight: 600;
}

.symptom-list h3 {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.symptom-list p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  margin-top: 11px;
  max-width: 480px;
}

.safety-note {
  align-items: center;
  background: #202020;
  border-radius: 22px;
  display: grid;
  gap: 40px;
  grid-template-columns: 0.35fr 1fr;
  margin-top: 65px;
  padding: 34px 40px;
}

.safety-note strong {
  font-family: var(--display);
  font-size: 19px;
}

.safety-note p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.process {
  background: var(--paper);
}

.process-grid {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.process-step {
  min-height: 280px;
  padding: 31px 42px 38px 0;
}

.process-step + .process-step {
  border-left: 1px solid var(--line);
  padding-left: 42px;
}

.process-step > span {
  color: #969a90;
  display: block;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 80px;
}

.process-step h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.process-step p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 13px;
  max-width: 290px;
}

.faq {
  background: var(--white);
}

.faq-layout {
  align-items: start;
  display: grid;
  gap: clamp(70px, 10vw, 150px);
  grid-template-columns: 0.75fr 1.25fr;
}

.faq-heading {
  position: sticky;
  top: 135px;
}

.faq-heading > p {
  color: var(--muted);
  margin-top: 26px;
  max-width: 350px;
}

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

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

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  gap: 30px;
  justify-content: space-between;
  letter-spacing: -0.025em;
  list-style: none;
  padding: 27px 0;
}

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

.faq-list summary span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  flex: 0 0 32px;
  font-size: 20px;
  font-weight: 400;
  height: 32px;
  justify-content: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.faq-list details[open] summary span {
  background: var(--ink);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-list details > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 650px;
  padding: 0 58px 30px 0;
}

.reviews {
  background: var(--ink);
  color: var(--white);
}

.review-card {
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
}

.quote-mark {
  color: var(--silver);
  font-family: Georgia, serif;
  font-size: 80px;
  height: 70px;
  line-height: 1;
}

.review-card blockquote {
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.review-meta {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  margin-top: 54px;
  padding-top: 24px;
  text-align: left;
}

.review-meta > div {
  display: flex;
  flex-direction: column;
}

.review-meta strong {
  font-family: var(--display);
  font-size: 14px;
}

.review-meta span,
.review-meta small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.review-rating {
  text-align: right;
}

.review-rating span {
  color: var(--silver);
  letter-spacing: 0.12em;
}

.quote {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 35%, rgba(0, 0, 0, 0.04)),
    #c9c7c2;
  padding: 100px 0;
}

.quote-shell {
  display: grid;
  gap: 90px;
  grid-template-columns: 0.85fr 1.15fr;
}

.kicker-dark {
  color: rgba(23, 25, 20, 0.68);
}

.quote-copy > p {
  margin: 26px 0 40px;
  max-width: 380px;
}

.quote-phone {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.quote-phone span {
  color: rgba(23, 25, 20, 0.6);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.quote-form {
  background: var(--white);
  border-radius: 26px;
  box-shadow: 0 28px 80px rgba(23, 25, 20, 0.13);
  padding: 72px 42px 42px;
  position: relative;
}

.quote-form::before {
  border-bottom: 1px solid var(--line);
  content: "PGD SERVICE REQUEST";
  font-size: 10px;
  font-weight: 700;
  left: 42px;
  letter-spacing: 0.16em;
  padding-bottom: 14px;
  position: absolute;
  right: 42px;
  top: 27px;
}

.form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.quote-form label {
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  font-size: 11px;
  font-weight: 600;
  gap: 8px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  background: #f5f5f7;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--ink);
  font-size: 14px;
  outline: none;
  padding: 14px 15px;
  resize: vertical;
  text-transform: none;
  transition: border-color 180ms ease, background 180ms ease;
  width: 100%;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  background: var(--white);
  border-color: var(--ink);
}

.quote-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 17px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.form-button {
  border: 0;
  width: 100%;
}

.form-note {
  color: var(--muted);
  font-size: 10px;
  margin-top: 12px;
  text-align: center;
}

.form-success {
  background: var(--silver);
  display: none;
  font-size: 14px;
  font-weight: 600;
  margin-top: 18px;
  padding: 15px;
  text-align: center;
}

.form-success.visible {
  display: block;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 76px 0 22px;
}

.footer-main {
  align-items: start;
  display: grid;
  gap: 35px;
  grid-template-columns: 1.2fr 1fr 0.65fr 1fr;
}

.brand-footer {
  color: var(--white);
  height: auto;
  overflow: visible;
  width: 170px;
}

.brand-footer img {
  filter: grayscale(1) invert(1) contrast(1.15);
  mix-blend-mode: screen;
}

.footer-main > p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  gap: 8px;
}

.footer-contact {
  text-align: right;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  margin-top: 65px;
  padding-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .desktop-nav {
    gap: 22px;
  }

  .nav-cta {
    display: none;
  }

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

  .trust-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .service-feature {
    grid-column: 1 / 3;
  }

  .work-layout {
    gap: 50px;
    grid-template-columns: 1fr 1fr;
  }

  .work-image {
    min-height: 560px;
  }

  .feature-card {
    min-height: 480px;
    padding: 38px;
  }

  .repair-layout,
  .faq-layout {
    gap: 60px;
  }

  .quote-shell {
    gap: 50px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1220px);
  }

  .announcement-inner {
    justify-content: center;
  }

  .announcement a {
    display: none;
  }

  .nav-wrap {
    height: 72px;
  }

  .site-header .brand {
    height: 68px;
    width: 90px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    background: none;
    border: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 8px 0 8px 8px;
  }

  .menu-toggle > span:not(.sr-only) {
    background: var(--ink);
    display: block;
    height: 1.5px;
    transition: transform 180ms ease;
    width: 25px;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    background: var(--paper);
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 0;
    overflow: hidden;
    padding: 0 16px;
    transition: height 220ms ease, padding 220ms ease;
  }

  .mobile-menu.open {
    height: calc(100vh - 104px);
    padding-top: 24px;
  }

  .mobile-menu > a:not(.button) {
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.04em;
    padding: 16px 0;
  }

  .mobile-menu .button {
    margin-top: 24px;
  }

  .garage-intro {
    height: 150svh;
  }

  .garage-sticky {
    height: calc(100svh - 72px);
    min-height: 590px;
    top: 72px;
  }

  .garage-reveal {
    background-position: 54% center;
  }

  .garage-reveal-mark {
    max-width: calc(100vw - 64px);
  }

  .garage-reveal-mark strong {
    font-size: 78px;
  }

  .garage-reveal-mark span {
    font-size: 7px;
    letter-spacing: 0.22em;
    margin-top: 16px;
    white-space: nowrap;
  }

  .garage-reveal > p {
    font-size: 19px;
    margin-top: 26px;
  }

  .garage-panel {
    left: 8px;
    right: 8px;
  }

  .garage-windows {
    gap: 5px;
    grid-template-columns: repeat(4, 47px);
    right: 18px;
  }

  .garage-windows i {
    border-width: 3px;
    height: 34px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.08)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent 50%);
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 45px;
  }

  .hero-copy {
    margin: 0;
  }

  .garage-door h1 {
    font-size: clamp(50px, 15vw, 74px);
  }

  .hero-copy > p {
    font-size: 16px;
    margin: 23px 0 28px;
    max-width: 400px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-proof {
    display: none;
  }

  .garage-handle {
    bottom: 44px;
    left: auto;
    right: 22px;
    transform: none;
    width: 64px;
  }

  .scroll-cue {
    display: none;
  }

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

  .trust-item {
    align-items: flex-start;
    min-height: 130px;
    padding: 20px 15px;
  }

  .trust-item:nth-child(odd) {
    border-left: 0;
  }

  .trust-item:nth-child(3) {
    border-left: 0;
  }

  .trust-icon {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }

  .section-heading > p {
    font-size: 14px;
  }

  .section h2 {
    font-size: clamp(39px, 11vw, 54px);
  }

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

  .service-card,
  .service-feature {
    grid-column: auto;
    min-height: 400px;
  }

  .service-feature {
    grid-template-columns: 0.78fr 1fr;
  }

  .story-intro {
    margin-bottom: 44px;
    text-align: left;
  }

  .story-intro > p {
    font-size: 16px;
    margin-left: 0;
  }

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

  .feature-card,
  .feature-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 470px;
    padding: 30px 24px;
  }

  .feature-card-wide {
    min-height: 600px;
  }

  .feature-card h3 {
    font-size: 39px;
  }

  .sound-visual {
    height: 250px;
  }

  .layer-visual {
    left: 24px;
    right: 24px;
  }

  .phone-visual {
    bottom: -145px;
  }

  .work-layout {
    grid-template-columns: 1fr;
  }

  .work-image {
    min-height: 460px;
  }

  .work-copy {
    padding-top: 12px;
  }

  .repair-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .repair-heading,
  .faq-heading {
    position: static;
  }

  .symptom-list article {
    gap: 18px;
    grid-template-columns: 28px 1fr;
  }

  .safety-note {
    gap: 14px;
    grid-template-columns: 1fr;
    margin-top: 55px;
    padding: 26px 22px;
  }

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

  .process-step {
    min-height: auto;
    padding: 28px 0 32px;
  }

  .process-step + .process-step {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .process-step > span {
    margin-bottom: 38px;
  }

  .review-meta {
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }

  .review-rating {
    text-align: left;
  }

  .faq-list summary {
    font-size: 18px;
    padding: 23px 0;
  }

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

  .quote {
    padding: 85px 0;
  }

  .quote-shell {
    grid-template-columns: 1fr;
  }

  .quote-form {
    box-shadow: 0 20px 60px rgba(23, 25, 20, 0.14);
    padding: 65px 20px 26px;
  }

  .quote-form::before {
    left: 20px;
    right: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
}

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

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

  .garage-intro {
    height: auto;
  }

  .garage-sticky {
    height: calc(100vh - 82px);
    position: relative;
    top: 0;
  }

  .garage-door {
    transform: none;
  }

  .garage-reveal {
    display: none;
  }
}
