:root {
  color-scheme: dark;
  --bg: #050607;
  --panel: rgba(14, 18, 21, 0.82);
  --panel-strong: #10171a;
  --line: rgba(214, 255, 244, 0.16);
  --line-strong: rgba(218, 151, 32, 0.48);
  --text: #f6f8f3;
  --muted: #aab3ad;
  --soft: #6f7a77;
  --lime: #da971f;
  --cyan: #f0bd55;
  --amber: #ffca6b;
  --black: #050607;
  --font-display: "Cabinet Grotesk", "Outfit", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 8px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
  --site-pad: clamp(16px, 4vw, 64px);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: var(--font-body);
  letter-spacing: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 189, 85, 0.16), transparent 36rem),
    radial-gradient(circle at 88% 22%, rgba(218, 151, 32, 0.16), transparent 26rem),
    linear-gradient(180deg, #080b0d 0%, #101619 46%, #080b0d 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 70%, transparent);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

picture {
  display: block;
  width: 100%;
  height: 100%;
}

picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

address {
  font-style: normal;
}

.site-icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 80;
  transform: translateY(calc(-100% - 24px));
  padding: 10px 14px;
  border-radius: 999px;
  color: #061009;
  background: var(--lime);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  z-index: 60;
  top: 18px;
  left: 50%;
  width: min(1160px, calc(100vw - 28px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 12, 14, 0.68);
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(24px);
  transition: background 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 12, 14, 0.9);
  border-color: rgba(218, 151, 32, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  width: clamp(176px, 20vw, 286px);
}

.brand-logo {
  width: 100%;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 18px rgba(218, 151, 32, 0.14));
}

.desktop-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.desktop-nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-link,
.header-cta,
.mobile-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.header-link {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.header-cta,
.mobile-wa {
  color: #071008;
  background: var(--lime);
  box-shadow: 0 0 34px rgba(218, 151, 32, 0.24);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  font-weight: 800;
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: none;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(5, 7, 8, 0.95);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-nav a {
  padding: 14px;
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.mobile-nav .mobile-wa {
  color: #071008;
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  min-height: min(940px, 100svh);
  display: grid;
  place-items: center;
  padding: 178px var(--site-pad) 84px;
  overflow: hidden;
}

.hero-bg,
.page-hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  filter: brightness(1.18) contrast(1.08) saturate(0.96);
}

.hero-bg img,
.page-hero-image img {
  object-position: center;
}

.hero-bg img {
  object-position: 64% center;
}

.hero-bg img,
.page-hero-image img,
.bento-card img,
.service-card img,
.accordion-panel img,
.scenario-slide img,
.pin-item img,
.contact-media img,
.story-panel img {
  filter: sepia(0.16) saturate(0.92) hue-rotate(350deg) contrast(1.08) brightness(1.04);
}

.hero-wash,
.hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 50% 38%, rgba(5, 7, 8, 0.02), rgba(5, 7, 8, 0.48) 38rem),
    linear-gradient(180deg, rgba(5, 7, 8, 0.1), rgba(5, 7, 8, 0.78));
}

.hero-copy {
  width: min(1120px, calc(100vw - 32px));
  margin-inline: auto;
  text-align: center;
}

.hero-copy h1,
.page-hero h1 {
  max-width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 7.2vw, 6.6rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy p,
.page-hero p {
  max-width: 720px;
  margin: 28px auto 0;
  color: #d4ddd8;
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  line-height: 1.7;
}

.inline-image {
  display: inline-block;
  width: clamp(92px, 14vw, 188px);
  height: clamp(38px, 5vw, 70px);
  margin: 0 0.12em;
  vertical-align: middle;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.32)), url("/assets/generated/tint-installation.webp");
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(218, 151, 32, 0.28), 0 0 38px rgba(240, 189, 85, 0.16);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.action-row {
  justify-content: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  max-width: 100%;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  white-space: normal;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #071008;
  background: linear-gradient(135deg, var(--lime), #ffd77a);
  box-shadow: 0 0 42px rgba(218, 151, 32, 0.28);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.btn-outline {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
}

.section-pad {
  padding: clamp(92px, 13vw, 188px) var(--site-pad);
}

.section-copy {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-copy.wide {
  max-width: 1040px;
}

.section-copy h2,
.pin-title h2,
.contact-copy h2,
.map-band h2,
.footer-cta h2,
.story-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-copy p,
.pin-title p,
.contact-copy p,
.map-band p,
.story-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.bento-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.bento-card::after,
.service-card::after,
.contact-action::after,
.accordion-panel::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(218, 151, 32, 0.22), transparent 18rem);
  transition: opacity 220ms ease;
}

.bento-card:hover::after,
.service-card:hover::after,
.contact-action:hover::after,
.accordion-panel:hover::after {
  opacity: 1;
}

.bento-card:hover img,
.service-card:hover img,
.accordion-panel:hover img,
.scenario-slide:hover img,
.pin-item:hover img {
  transform: scale(1.055);
}

.bento-card img,
.service-card img,
.accordion-panel img,
.scenario-slide img,
.pin-item img {
  transition: transform 720ms ease;
}

.bento-image {
  position: absolute;
  inset: 0;
}

.bento-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
}

.bento-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.bento-copy strong {
  display: block;
  max-width: 520px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1;
}

.bento-copy em {
  display: block;
  max-width: 560px;
  margin-top: 10px;
  color: #cbd4cf;
  font-style: normal;
  line-height: 1.55;
}

.bento-1 {
  grid-column: span 5;
}

.bento-2 {
  grid-column: span 4;
}

.bento-3 {
  grid-column: span 3;
}

.bento-4 {
  grid-column: span 7;
}

.bento-5 {
  grid-column: span 5;
}

.pinned-story {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 6vw, 90px);
  max-width: 1260px;
  min-height: 168vh;
  margin: 0 auto;
}

.pin-copy {
  position: relative;
}

.pin-title {
  top: 18vh;
  max-width: 520px;
}

.pin-gallery {
  display: grid;
  gap: 28px;
}

.pin-item {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.pin-item picture {
  height: 290px;
  overflow: hidden;
}

.pin-item div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.pin-item .site-icon {
  width: 30px;
  height: 30px;
  color: var(--lime);
}

.pin-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.04;
}

.pin-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.word-reveal {
  max-width: 1160px;
  margin: 0 auto;
}

.word-reveal p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.8vw, 5.8rem);
  line-height: 1;
  font-weight: 900;
  text-align: center;
  text-wrap: balance;
}

.scenario-shell {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
}

.scenario-track {
  display: grid;
}

.scenario-slide {
  display: none;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(18, 24, 26, 0.88), rgba(5, 7, 8, 0.92));
  box-shadow: var(--shadow);
}

.scenario-slide.is-active {
  display: grid;
}

.scenario-slide picture {
  min-height: 520px;
  overflow: hidden;
}

.scenario-slide > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(26px, 5vw, 58px);
}

.scenario-slide h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
}

.scenario-slide p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.carousel-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.carousel-controls button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.carousel-controls button:first-child svg {
  transform: rotate(90deg);
}

.carousel-controls button:last-child svg {
  transform: rotate(-90deg);
}

.page-hero {
  min-height: 900px;
  grid-template-columns: minmax(0, 1fr);
  text-align: center;
  padding-top: 230px;
}

.page-hero > div {
  position: relative;
  z-index: 2;
  max-width: 1020px;
  transform: translateY(22px);
}

.service-hero::after,
.about-hero::after,
.contact-hero::after {
  background:
    radial-gradient(circle at 50% 42%, rgba(5, 7, 8, 0.16), rgba(5, 7, 8, 0.68) 38rem),
    linear-gradient(180deg, rgba(5, 7, 8, 0.34), rgba(5, 7, 8, 0.86));
}

.horizontal-accordion {
  display: flex;
  gap: 12px;
  max-width: 1220px;
  height: 620px;
  margin: 0 auto;
}

.accordion-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  scroll-margin-top: 128px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: flex 360ms ease, border-color 260ms ease;
}

.accordion-panel:hover,
.accordion-panel:focus,
.accordion-panel.is-wide {
  flex: 2.2 1 0;
  border-color: var(--line-strong);
}

.accordion-panel picture {
  position: absolute;
  inset: 0;
}

.accordion-panel picture::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.84));
}

.accordion-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.accordion-copy .site-icon {
  color: var(--lime);
  width: 30px;
  height: 30px;
}

.accordion-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1;
}

.accordion-copy p {
  max-width: 360px;
  margin: 0;
  color: #d6dfda;
  line-height: 1.55;
}

.accordion-copy a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1220px;
  margin: 0 auto;
}

.fitment-checklist {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(18px, 4vw, 46px);
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 54px) var(--site-pad);
}

.fitment-checklist.compact {
  padding-top: clamp(42px, 7vw, 78px);
  padding-bottom: clamp(42px, 7vw, 78px);
}

.fitment-checklist > div:first-child {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(218, 151, 32, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(218, 151, 32, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
}

.fitment-checklist h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 3.3rem);
  line-height: 0.96;
}

.fitment-checklist p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.fitment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.fitment-grid article,
.compact-service-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 16, 18, 0.86);
}

.fitment-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.fitment-grid .site-icon {
  width: 28px;
  height: 28px;
  color: var(--lime);
}

.fitment-grid strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1;
}

.fitment-grid span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.compact-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1220px;
  margin: 0 auto;
}

.compact-service-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  scroll-margin-top: 128px;
}

.compact-service-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.02;
}

.compact-service-card p {
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.service-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 15, 17, 0.86);
}

.service-card-media {
  display: block;
  height: 220px;
  overflow: hidden;
}

.service-card-copy {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.service-index {
  color: var(--soft);
  font-weight: 900;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(218, 151, 32, 0.38);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(218, 151, 32, 0.1);
}

.service-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.02;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-block,
.map-band,
.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-media,
.story-panel picture {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-media {
  height: clamp(420px, 46vw, 580px);
}

.contact-media picture,
.story-panel picture {
  height: 100%;
}

.story-panel picture {
  aspect-ratio: 4 / 3;
}

.contact-copy,
.story-panel {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.contact-copy pre {
  max-width: 100%;
  overflow-x: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: #dce7e1;
  background: #070a0b;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  line-height: 1.65;
  white-space: pre-wrap;
}

.map-band {
  align-items: stretch;
}

.map-band > div {
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.map-panel {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  min-height: clamp(420px, 44vw, 560px);
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(218, 151, 32, 0.34);
  border-radius: var(--radius);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(218, 151, 32, 0.18), rgba(240, 189, 85, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.map-panel::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: 0.42;
  background:
    linear-gradient(28deg, transparent 0 41%, rgba(240, 189, 85, 0.18) 42% 43%, transparent 44% 100%),
    linear-gradient(150deg, transparent 0 33%, rgba(214, 255, 244, 0.13) 34% 35%, transparent 36% 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, auto, 52px 52px, 52px 52px;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0.88;
  filter: grayscale(0.18) contrast(1.03) brightness(1.06) saturate(0.96);
}

.map-embed::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 70% 18%, rgba(218, 151, 32, 0.08), transparent 18rem),
    linear-gradient(180deg, rgba(5, 7, 8, 0.02), rgba(5, 7, 8, 0.16));
}

.map-overlay-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  justify-items: start;
  gap: 7px;
  width: min(260px, calc(100% - 36px));
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(6, 10, 11, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(16px);
  text-align: left;
}

.map-panel .site-icon {
  width: 26px;
  height: 26px;
  color: var(--lime);
}

.map-panel strong {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1;
}

.map-panel span {
  color: #d6dfda;
  font-size: 0.86rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  cursor: pointer;
  font-weight: 900;
}

.faq-list details[open] summary .site-icon {
  transform: rotate(180deg);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.65;
}

.story-copy {
  max-width: 680px;
}

.story-panel h3,
.principle-grid h3 {
  margin: 20px 0 8px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
}

.story-panel p,
.principle-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.principle-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.principle-grid .site-icon {
  color: var(--lime);
  width: 34px;
  height: 34px;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

.contact-action {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.contact-action.primary {
  color: #071008;
  background: linear-gradient(135deg, var(--lime), #ffd77a);
}

.contact-action .site-icon {
  width: 34px;
  height: 34px;
}

.contact-action span {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.contact-action small {
  color: inherit;
  opacity: 0.78;
  font-weight: 800;
}

.site-footer {
  padding: 0 var(--site-pad) 110px;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto 18px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(218, 151, 32, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(218, 151, 32, 0.2), rgba(240, 189, 85, 0.08)),
    rgba(255, 255, 255, 0.045);
}

.footer-cta p {
  margin: 0 0 12px;
  color: var(--lime);
  font-weight: 900;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr 1.2fr;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-grid p,
.footer-grid address {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer-grid a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--text);
  font-weight: 800;
}

.footer-brand {
  margin-bottom: 14px;
}

.sticky-mobile-cta {
  position: fixed;
  z-index: 70;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(5, 7, 8, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.sticky-mobile-cta.is-hidden {
  transform: translateY(140%);
}

.sticky-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 46px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 900;
}

.sticky-action.primary {
  color: #071008;
  background: var(--lime);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .bento-grid,
  .service-grid,
  .compact-service-grid,
  .principle-grid,
  .contact-actions,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fitment-checklist {
    grid-template-columns: 1fr;
  }

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

  .bento-card {
    grid-column: span 1;
  }

  .pinned-story,
  .contact-block,
  .map-band,
  .story-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pin-title {
    position: static;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: min(100vw - 18px, 720px);
    min-height: 58px;
    padding: 8px;
    border-radius: 24px;
  }

  .brand {
    width: clamp(132px, 42vw, 184px);
  }

  .brand-logo {
    max-height: 40px;
  }

  .hero,
  .page-hero {
    min-height: 760px;
    padding-top: 142px;
    padding-bottom: 54px;
  }

  .page-hero {
    min-height: 780px;
    padding-top: 164px;
  }

  .page-hero > div {
    transform: none;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 0.92;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .action-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding-inline: 16px;
  }

  .section-pad {
    padding: 86px var(--site-pad);
  }

  .bento-grid,
  .service-grid,
  .compact-service-grid,
  .principle-grid,
  .contact-actions,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fitment-checklist {
    grid-template-columns: 1fr;
    padding: 56px var(--site-pad);
  }

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

  .fitment-grid article {
    padding: 16px;
  }

  .compact-service-card {
    padding: 16px;
  }

  .bento-card,
  .pin-item {
    min-height: 360px;
  }

  .horizontal-accordion {
    display: grid;
    height: auto;
  }

  .accordion-panel {
    min-height: 420px;
  }

  .accordion-panel,
  .accordion-panel:hover,
  .accordion-panel:focus,
  .accordion-panel.is-wide {
    flex: none;
  }

  .scenario-slide,
  .scenario-slide.is-active {
    grid-template-columns: 1fr;
  }

  .scenario-slide picture {
    min-height: 320px;
  }

  .contact-media,
  .story-panel picture {
    min-height: 0;
  }

  .contact-media {
    height: 340px;
  }

  .map-panel {
    min-height: 400px;
  }

  .map-overlay-link {
    right: 12px;
    bottom: 12px;
    width: min(240px, calc(100% - 24px));
    padding: 12px 14px;
  }

  .footer-cta {
    display: grid;
  }

  .sticky-mobile-cta {
    display: grid;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
