:root {
  --ink: #11100e;
  --ink-2: #211f1b;
  --paper: #f4efe8;
  --paper-2: #e5ded3;
  --muted: #8c8579;
  --line: rgba(244, 239, 232, 0.16);
  --line-dark: rgba(17, 16, 14, 0.12);
  --gold: #c7a56b;
  --red: #a73d32;
  --steel: #75818a;
  --green: #74826b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(17, 16, 14, 0.82);
  border-bottom: 1px solid rgba(244, 239, 232, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 86px;
}

.brand-logo {
  width: 72px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(244, 239, 232, 0.76);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  padding: 10px 0;
}

.main-nav a:hover {
  color: var(--paper);
}

.nav-cta {
  padding: 10px 16px !important;
  color: var(--ink) !important;
  background: var(--gold);
}

.icon-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--paper);
  background: rgba(244, 239, 232, 0.08);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 420px);
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  min-height: calc(100svh - 112px);
  padding: clamp(72px, 10vw, 132px) clamp(18px, 4vw, 56px) 42px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.9) 0%, rgba(17, 16, 14, 0.56) 48%, rgba(17, 16, 14, 0.86) 100%),
    linear-gradient(0deg, rgba(17, 16, 14, 0.96) 0%, rgba(17, 16, 14, 0.12) 38%),
    url("https://images.squarespace-cdn.com/content/v1/6787335734d1b51aa3964805/f47ab521-72ea-4eca-a322-8011aa339f97/A7M00792.jpg?format=2500w") center / cover;
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  right: 7vw;
  bottom: -10px;
  width: 32vw;
  max-width: 520px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--red), var(--steel));
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.1vw, 7.8rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(244, 239, 232, 0.82);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
}

.button svg,
.icon-button svg,
.main-nav svg {
  width: 18px;
  height: 18px;
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
}

.button.secondary {
  color: var(--paper);
  background: rgba(244, 239, 232, 0.08);
  border-color: var(--line);
}

.hero-panel {
  display: grid;
  gap: 1px;
  background: rgba(244, 239, 232, 0.12);
  box-shadow: var(--shadow);
  scrollbar-width: none;
}

.hero-panel::-webkit-scrollbar {
  display: none;
}

.hero-panel div {
  padding: 22px;
  background: rgba(17, 16, 14, 0.75);
  backdrop-filter: blur(10px);
}

.hero-panel span {
  color: var(--gold);
  font-weight: 800;
}

.hero-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
}

.hero-panel p {
  margin: 8px 0 0;
  color: rgba(244, 239, 232, 0.68);
}

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

.intro-band a,
.intro-band span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 72px;
  padding: 14px 18px;
  color: rgba(244, 239, 232, 0.82);
  text-align: center;
  border-right: 1px solid var(--line);
}

.intro-band svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex: 0 0 auto;
}

.section,
.split-feature,
.process,
.gallery,
.quote {
  padding: clamp(70px, 9vw, 124px) clamp(18px, 4vw, 56px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.65fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: 36px;
}

.section-heading.wide {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
}

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

h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.3vw, 4.8rem);
  line-height: 1;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.section-heading p,
.split-copy > p,
.detail-section > div > p,
.quote-copy p {
  color: rgba(244, 239, 232, 0.68);
  font-size: 1.05rem;
}

.services {
  background: var(--paper);
  color: var(--ink);
}

.services .section-kicker,
.services .service-card svg,
.new-car .section-kicker,
.faq .section-kicker {
  color: var(--red);
}

.services .section-heading p,
.new-car .section-heading p,
.faq .section-heading p {
  color: rgba(17, 16, 14, 0.66);
}

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

.service-card {
  background: #fffaf2;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
}

.service-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card svg,
.mini-grid svg {
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
}

.service-card p {
  color: rgba(17, 16, 14, 0.68);
}

.service-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--red);
  font-weight: 800;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.9fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  background: #161411;
}

.split-feature img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.video-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(70px, 9vw, 124px) clamp(18px, 4vw, 56px);
  background: #0f1111;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.video-copy p {
  color: rgba(244, 239, 232, 0.68);
  font-size: 1.05rem;
}

.video-copy .button {
  margin-top: 18px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  background: #070707;
  border: 1px solid rgba(199, 165, 107, 0.34);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(244, 239, 232, 0.08);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: rgba(244, 239, 232, 0.82);
}

.check-list svg {
  width: 19px;
  min-width: 19px;
  color: var(--gold);
}

.packages {
  background: var(--ink);
}

.package-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.chip {
  min-height: 38px;
  padding: 8px 14px;
  color: rgba(244, 239, 232, 0.72);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.chip.active {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 22px;
  background: #1b1815;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.package-card[hidden] {
  display: none;
}

.package-card.featured {
  background: linear-gradient(180deg, rgba(199, 165, 107, 0.18), #1b1815 48%);
  border-color: rgba(199, 165, 107, 0.55);
}

.package-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 46px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-card h3 {
  min-height: 58px;
  font-size: 1.45rem;
}

.package-card p {
  color: rgba(244, 239, 232, 0.66);
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  color: rgba(244, 239, 232, 0.82);
  list-style: none;
}

.package-card li {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.new-car {
  color: var(--ink);
  background: var(--paper-2);
}

.tier-list {
  display: grid;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.tier-list article {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(22px, 3vw, 34px);
  background: #f9f3ea;
}

.tier-list span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.tier-list h3 {
  margin-bottom: 6px;
  font-size: 1.45rem;
}

.tier-list p {
  margin-bottom: 0;
  color: rgba(17, 16, 14, 0.68);
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  background: #181a18;
}

.detail-section img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.mini-grid article {
  min-height: 210px;
  padding: 22px;
  background: rgba(244, 239, 232, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-grid p {
  color: rgba(244, 239, 232, 0.66);
}

.wrap-section {
  background: var(--paper);
  color: var(--ink);
}

.wrap-section .section-kicker {
  color: var(--green);
}

.wrap-section .section-heading p {
  color: rgba(17, 16, 14, 0.66);
}

.wrap-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.wrap-options article {
  min-height: 250px;
  padding: 24px;
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(17, 16, 14, 0.88), rgba(17, 16, 14, 0.58)),
    url("https://images.squarespace-cdn.com/content/v1/6787335734d1b51aa3964805/73f4d08a-0061-4111-9fd7-94e54e894187/%E5%8E%BB%E9%99%A4%E5%9B%BE%E7%89%87%E6%B0%B4%E5%8D%B0+%282%29.png?format=1000w") center / cover;
  border-radius: 8px;
}

.wrap-options article:nth-child(2) {
  background-image:
    linear-gradient(145deg, rgba(17, 16, 14, 0.88), rgba(17, 16, 14, 0.58)),
    url("https://images.squarespace-cdn.com/content/v1/6787335734d1b51aa3964805/48117d4b-e5a3-4aa9-83b0-84acea5bc07a/_DSC2286.jpg?format=1000w");
}

.wrap-options article:nth-child(3) {
  background-image:
    linear-gradient(145deg, rgba(17, 16, 14, 0.88), rgba(17, 16, 14, 0.58)),
    url("https://images.squarespace-cdn.com/content/v1/6787335734d1b51aa3964805/eedb3565-6d4c-4e8c-bb91-5bd2becb6159/DSC03790.jpg?format=1000w");
}

.wrap-options article:nth-child(4) {
  background-image:
    linear-gradient(145deg, rgba(17, 16, 14, 0.88), rgba(17, 16, 14, 0.58)),
    url("https://images.squarespace-cdn.com/content/v1/6787335734d1b51aa3964805/83415e6f-18ec-45b3-8d51-b96597a4732c/A7M00834.jpg?format=1000w");
}

.wrap-options p {
  color: rgba(244, 239, 232, 0.72);
}

.process {
  background: #15110f;
}

.process ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  list-style: none;
}

.process li {
  min-height: 250px;
  padding: 24px;
  background: #1d1814;
}

.process span {
  color: var(--gold);
  font-weight: 900;
}

.process strong {
  display: block;
  margin: 50px 0 12px;
  font-size: 1.16rem;
}

.process p {
  margin-bottom: 0;
  color: rgba(244, 239, 232, 0.64);
}

.gallery {
  color: var(--ink);
  background: var(--paper-2);
}

.gallery .section-kicker {
  color: var(--red);
}

.gallery h2 {
  max-width: 900px;
  margin-bottom: 34px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, minmax(180px, 280px));
  gap: 12px;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.faq {
  color: var(--ink);
  background: var(--paper);
}

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

.faq details {
  background: #fffaf2;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.faq summary {
  cursor: pointer;
  padding: 22px;
  font-size: 1.08rem;
  font-weight: 800;
}

.faq details p {
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(17, 16, 14, 0.68);
}

.quote {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 7vw, 110px);
  background:
    linear-gradient(100deg, rgba(17, 16, 14, 0.95), rgba(17, 16, 14, 0.72)),
    url("https://images.squarespace-cdn.com/content/v1/6787335734d1b51aa3964805/c7b9e362-c1a6-4d49-a8cf-cf4b316c0b74/DSC03794.jpg?format=2500w") center / cover;
}

.contact-stack {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-stack a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(244, 239, 232, 0.82);
}

.contact-stack svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(244, 239, 232, 0.94);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  color: var(--ink);
  background: #fffaf2;
  border: 1px solid rgba(17, 16, 14, 0.18);
  border-radius: 6px;
}

.quote-form textarea {
  resize: vertical;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(17, 16, 14, 0.6);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(244, 239, 232, 0.7);
  background: #0d0c0b;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--paper);
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

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

  .hero-panel {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .wrap-options,
  .process ol {
    grid-template-columns: 1fr 1fr;
  }

  .package-grid {
    grid-template-columns: repeat(5, 280px);
  }
}

@media (max-width: 860px) {
  .icon-button {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: rgba(17, 16, 14, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 5.6rem);
  }

  .hero-panel,
  .intro-band,
  .section-heading,
  .section-heading.wide,
  .split-feature,
  .video-section,
  .detail-section,
  .quote {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    overflow-x: auto;
  }

  .hero-panel div {
    min-height: 150px;
    padding: 18px;
  }

  .intro-band a,
  .intro-band span {
    justify-content: flex-start;
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-grid,
  .mini-grid,
  .wrap-options,
  .process ol,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-rows: none;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

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

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand-logo {
    width: 56px;
    height: 50px;
  }

  .main-nav {
    top: 68px;
  }

  .hero {
    padding-inline: 14px;
    padding-top: 58px;
  }

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

  .package-grid {
    grid-template-columns: minmax(250px, 1fr);
    overflow: visible;
  }

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

  .package-card h3 {
    min-height: 0;
  }
}
