:root {
  --ink: #101417;
  --muted: #626b73;
  --ice: #f3f7f9;
  --frost: #fbfcfd;
  --red: #c91622;
  --red-dark: #a8111b;
  --blue: #263d52;
  --line: rgba(16, 20, 23, 0.1);
  --shadow: 0 18px 45px rgba(16, 20, 23, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--frost);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.has-lightbox {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--ink);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 252, 253, 0.92);
  box-shadow: 0 10px 34px rgba(16, 20, 23, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 1px solid rgba(11, 15, 20, 0.08);
}

.brand-text {
  display: grid;
  gap: 1px;
  font-size: 15px;
  line-height: 1.05;
}

.brand-text small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(215, 25, 32, 0.12);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 71vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: #f5f7f8;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-overlay {
  width: 100%;
}

.hero-image {
  inset: auto -7vw auto auto;
  top: 41%;
  width: min(57vw, 790px);
  height: auto;
  max-height: 70%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  opacity: 0.13;
  transform: translateY(-45%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 12%, #000 30%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 12%, #000 30%);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 252, 253, 0.98) 0%, rgba(251, 252, 253, 0.9) 36%, rgba(251, 252, 253, 0.42) 62%, rgba(251, 252, 253, 0.04) 86%),
    linear-gradient(0deg, rgba(251, 252, 253, 0.3), rgba(251, 252, 253, 0.02) 50%);
}

.hero-content {
  position: relative;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 104px;
  transform: translateY(-24px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.quote-section h2,
.faq h2 {
  margin: 0;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(48px, 7vw, 88px);
}

.hero-subtitle {
  margin: 10px 0 0;
  color: var(--red);
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.card-topline {
  display: flex;
  align-items: center;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--red);
}

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

.button.secondary {
  color: var(--ink);
  border-color: rgba(16, 20, 23, 0.22);
  background: rgba(255, 255, 255, 0.42);
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1160px, calc(100% - 36px));
  margin: 22px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.gallery-section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 84px 0 56px;
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 30px;
}

.gallery-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1;
}

.gallery-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.skate-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eef2f4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-slides {
  position: absolute;
  inset: 0;
  background: #e9eef2;
}

.gallery-slides img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
}

.gallery-slides img.is-active {
  opacity: 1;
  pointer-events: auto;
  cursor: zoom-in;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 24px rgba(16, 20, 23, 0.16);
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  background: #fff;
}

.gallery-arrow-left {
  left: 12px;
}

.gallery-arrow-right {
  right: 12px;
}

.gallery-blank {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(238, 242, 244, 0.7)),
    #eef2f4;
}

.gallery-blank::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(104, 114, 124, 0.32);
  border-radius: 8px;
}

.gallery-blank figcaption {
  display: none;
}

.gallery-item figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 8px 24px rgba(16, 20, 23, 0.04);
  backdrop-filter: blur(10px);
}

.gallery-item figcaption span {
  color: rgba(16, 20, 23, 0.72);
  font-weight: 800;
}

.gallery-item figcaption small {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(8, 10, 12, 0.72);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(18px);
  transition: opacity 180ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox img {
  display: block;
  max-width: min(1120px, 100%);
  max-height: min(82vh, 840px);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 32px;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 40px;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.28);
}

.lightbox-arrow-left {
  left: clamp(16px, 3vw, 36px);
}

.lightbox-arrow-right {
  right: clamp(16px, 3vw, 36px);
}

.gallery-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.strip span {
  padding: 16px 20px;
  border-right: 1px solid var(--line);
  text-align: center;
  font-weight: 700;
  color: var(--muted);
}

.section,
.quote-section,
.faq,
.wrap-grid {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 76px 0 28px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 42px;
  align-items: end;
}

.section h2,
.quote-section h2,
.faq h2 {
  font-size: clamp(34px, 4.5vw, 58px);
}

.intro > p,
.quote-copy p {
  color: var(--muted);
  font-size: 17px;
}

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

.wrap-card {
  min-height: 235px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 20, 23, 0.04);
}

.card-topline {
  gap: 8px;
  min-height: 36px;
}

.swatch {
  width: 34px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(10, 21, 32, 0.12);
}

.red { background: #d71920; }
.silver { background: linear-gradient(135deg, #eef3f5, #9faab2); }
.black { background: #111820; }
.blue { background: #123f6d; }
.white { background: #fff; }
.chrome { background: linear-gradient(135deg, #ffffff, #6f7d86, #edf5fb); }
.charcoal { background: #37424d; }
.gold { background: #d7a330; }

.wrap-card h3,
.steps h3 {
  margin: 22px 0 10px;
  font-size: 20px;
}

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

.step-note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.wrap-card strong {
  display: block;
  margin-top: 28px;
  color: var(--ink);
  font-size: 18px;
}

.process {
  padding-bottom: 68px;
}

.section-heading {
  max-width: 720px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.steps span {
  color: var(--blue);
  font-weight: 900;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.75fr) minmax(320px, 1fr);
  gap: 42px;
  padding: 78px 0 58px;
  border-top: 1px solid var(--line);
}

.estimate {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding: 22px;
  color: #fff;
  background: #14181c;
  border-radius: var(--radius);
}

.estimate span {
  color: rgba(255, 255, 255, 0.72);
}

.estimate strong {
  font-size: 36px;
}

.estimate small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(16, 20, 23, 0.08);
}

label {
  display: grid;
  gap: 8px;
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
}

.input-note {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  min-height: 45px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  font: inherit;
}

select {
  height: 48px;
  padding-right: 42px;
  line-height: 1.2;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 21px) 21px,
    calc(100% - 15px) 21px;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

textarea {
  resize: vertical;
}

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

.form-message {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--blue);
  font-weight: 700;
}

.faq {
  padding: 18px 0 76px;
}

.faq h2 {
  margin-bottom: 24px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

summary {
  padding: 18px 20px;
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: #fff;
  background: #14181c;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 860px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 4px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    color: var(--ink);
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-image {
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: none;
    object-fit: cover;
    object-position: 62% top;
    opacity: 0.22;
    transform: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(251, 252, 253, 0.98) 0%, rgba(251, 252, 253, 0.86) 42%, rgba(251, 252, 253, 0.08) 78%),
      linear-gradient(90deg, rgba(251, 252, 253, 0.72), rgba(251, 252, 253, 0.08));
  }

  .hero-content {
    margin: 0 auto;
    padding: 110px 0 36px;
    transform: none;
  }

  .strip,
  .gallery-heading,
  .intro,
  .wrap-grid,
  .steps,
  .quote-section {
    grid-template-columns: 1fr;
  }

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

  .strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-top: 66px;
  }

  .quote-section {
    padding-top: 66px;
  }
}

@media (max-width: 560px) {
  .brand-text {
    max-width: 150px;
    line-height: 1.1;
  }

  .hero {
    min-height: 720px;
  }

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

  .quote-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .gallery-section {
    padding-top: 62px;
  }

  .skate-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-blank {
    display: none;
  }

  .site-footer {
    display: grid;
  }
}
