:root {
  color-scheme: dark;
  --black: #000;
  --panel: #101010;
  --panel-2: #1a1a1a;
  --line: rgba(255, 255, 255, 0.14);
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.68);
  --lime: #d6de1b;
  --lime-soft: rgba(214, 222, 27, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, 0.74);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  height: 78px;
  left: 0;
  padding: 0 clamp(18px, 4vw, 58px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 30;
}

.brand,
.desktop-nav button,
footer button,
.menu-button,
.close-button {
  background: none;
  border: 0;
  color: var(--text);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  justify-self: start;
  padding: 0;
}

.brand img {
  display: block;
  height: 42px;
  object-fit: contain;
  width: 58px;
}

.brand span,
footer strong {
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand strong,
footer strong::first-letter {
  color: var(--lime);
}

.desktop-nav {
  display: flex;
  gap: clamp(18px, 4vw, 54px);
  justify-self: center;
}

.desktop-nav button,
footer button {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav button:hover,
footer button:hover {
  color: var(--lime);
}

.book-button,
.primary-action,
.secondary-action,
.outline-center {
  align-items: center;
  border-radius: 0;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 48px;
  min-width: 0;
  padding: 0 24px;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  white-space: normal;
}

.book-button,
.primary-action {
  background: var(--lime);
  border: 1px solid var(--lime);
  color: #050505;
}

.book-button:hover,
.primary-action:hover,
.secondary-action:hover,
.outline-center:hover {
  transform: translateY(-2px);
}

.secondary-action,
.outline-center {
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--text);
}

.menu-button {
  display: none;
}

.hero {
  align-items: end;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 78px) 78px;
  position: relative;
}

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

.hero-image {
  background-image: url('/assets/hero-vw-polo-detail.jpg');
  background-position: center;
  background-size: cover;
  filter: contrast(1.08) saturate(0.72);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.68) 38%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.08) 48%);
}

.hero-content {
  max-width: 720px;
  min-width: 0;
  position: relative;
  width: min(100%, 720px);
  z-index: 1;
}

.eyebrow {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.92;
  overflow-wrap: normal;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 {
  font-size: clamp(52px, 8vw, 96px);
  margin-bottom: 24px;
  max-width: 900px;
}

h2 {
  font-size: clamp(38px, 7vw, 72px);
  margin-bottom: 18px;
}

h3 {
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-copy,
.section-intro p,
.about-copy p,
.trust-item p,
.service-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.hero-copy {
  max-width: 530px;
}

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

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

.quick-strip span {
  align-items: center;
  background: #070707;
  color: var(--text);
  display: flex;
  font-size: 12px;
  font-weight: 900;
  gap: 12px;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 72px;
  text-transform: uppercase;
}

.quick-strip svg,
.trust-item svg,
.contact-list svg {
  color: var(--lime);
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(70px, 9vw, 118px) 20px 0;
}

.section-intro {
  align-items: end;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.5fr);
  margin-bottom: 34px;
}

.section-intro p:last-child {
  margin-bottom: 0;
}

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

.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  min-height: 430px;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: rgba(214, 222, 27, 0.74);
  transform: translateY(-5px);
}

.service-card img {
  aspect-ratio: 1 / 0.9;
  display: block;
  filter: contrast(1.05) saturate(0.76);
  height: auto;
  object-fit: cover;
  width: 100%;
}

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

.service-card button {
  align-items: center;
  background: none;
  border: 0;
  color: var(--lime);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 8px;
  letter-spacing: 0.1em;
  padding: 0;
  text-transform: uppercase;
}

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

.trust-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  padding: 34px;
}

.trust-item span {
  color: var(--lime);
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 42px;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

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

.gallery-item {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  min-height: 240px;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
}

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

.gallery-item img {
  display: block;
  filter: contrast(1.08) saturate(0.76);
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 260ms ease;
  width: 100%;
}

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

.gallery-item::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 55%);
  content: "";
  inset: 0;
  position: absolute;
}

.gallery-item span {
  bottom: 18px;
  font-size: 13px;
  font-weight: 900;
  left: 18px;
  letter-spacing: 0.1em;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.outline-center {
  margin: 28px auto 0;
}

.about-section {
  align-items: center;
  display: grid;
  gap: clamp(30px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
}

.about-image {
  border: 1px solid var(--line);
  overflow: hidden;
}

.about-image img {
  aspect-ratio: 1.18 / 1;
  display: block;
  filter: contrast(1.03) saturate(0.82);
  object-fit: cover;
  width: 100%;
}

.about-copy p:not(.eyebrow) {
  max-width: 560px;
}

.booking-cta {
  align-items: center;
  background: var(--lime);
  color: #050505;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: clamp(80px, 9vw, 120px);
  padding: clamp(30px, 5vw, 52px) clamp(22px, 6vw, 76px);
}

.booking-cta .eyebrow {
  color: #050505;
}

.booking-cta h2 {
  margin-bottom: 0;
}

.dark-action {
  background: #050505;
  border-color: #050505;
  color: var(--text);
  flex: 0 0 auto;
}

.contact-section {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.9fr);
  padding-bottom: 64px;
}

.contact-panel,
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 42px);
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-list a,
.contact-list span {
  align-items: center;
  color: var(--text);
  display: flex;
  gap: 12px;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  color: var(--muted);
  display: grid;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #080808;
  border: 1px solid var(--line);
  color: var(--text);
  min-height: 46px;
  outline: 0;
  padding: 12px 14px;
  transition: border-color 160ms ease;
}

.contact-form textarea {
  min-height: 96px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--lime);
}

.form-status {
  color: var(--lime);
  margin-bottom: 0;
}

footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: auto auto 1fr auto;
  padding: 26px clamp(18px, 4vw, 58px);
}

footer img {
  height: 42px;
  object-fit: contain;
  width: 58px;
}

footer div {
  display: flex;
  gap: 26px;
  justify-content: center;
}

footer p {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 0;
}

.mobile-menu {
  background: rgba(0, 0, 0, 0.96);
  border-left: 1px solid var(--line);
  bottom: 0;
  display: grid;
  gap: 12px;
  padding: 24px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 220ms ease;
  visibility: hidden;
  width: min(360px, 86vw);
  z-index: 60;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu button:not(.close-button) {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 900;
  min-height: 58px;
  text-transform: uppercase;
}

.close-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  justify-self: end;
  line-height: 1;
  padding: 0;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  width: 42px;
}

.close-button span {
  display: block;
  font-size: 28px;
  font-weight: 300;
  transform: translateY(-1px);
}

.close-button:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: #050505;
  transform: translateY(-1px);
}

.modal-backdrop {
  align-items: center;
  background: rgba(0, 0, 0, 0.78);
  display: grid;
  inset: 0;
  padding: 20px;
  position: fixed;
  z-index: 80;
}

.modal-card,
.lightbox-card {
  background: #080808;
  border: 1px solid rgba(214, 222, 27, 0.32);
  justify-self: center;
  max-width: 560px;
  padding: 28px;
  position: relative;
  width: min(100%, 560px);
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
}

.modal-card .eyebrow,
.lightbox-card img {
  margin-right: 46px;
}

.service-picker {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin: 24px 0;
}

.service-picker button,
.lightbox-footer button {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  min-height: 46px;
}

.service-picker button.active {
  background: var(--lime);
  color: #050505;
}

.modal-action {
  text-decoration: none;
  width: 100%;
}

.lightbox-card {
  max-width: 860px;
  width: min(100%, 860px);
}

.lightbox-card img {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  width: 100%;
}

.lightbox-footer {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding-top: 16px;
}

.lightbox-footer span {
  align-items: center;
  color: var(--lime);
  display: flex;
  font-weight: 900;
  gap: 8px;
  text-transform: uppercase;
}

.top-button {
  align-items: center;
  background: var(--lime);
  border: 0;
  bottom: 22px;
  color: #050505;
  display: flex;
  height: 44px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 22px;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
  width: 44px;
  z-index: 45;
}

.top-button.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .menu-button {
    display: inline-flex;
  }

  .desktop-nav {
    display: none;
  }

  .brand {
    justify-self: center;
  }

  .brand span {
    display: none;
  }

  .book-button {
    min-height: 42px;
    padding: 0 14px;
  }

  .hero {
    min-height: 92svh;
    padding: 126px 20px 54px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.12) 60%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.42));
  }

  h1 {
    font-size: clamp(42px, 14vw, 82px);
  }

  .quick-strip,
  .service-grid,
  .why-grid,
  .section-intro,
  .about-section,
  .contact-section,
  footer {
    grid-template-columns: 1fr;
  }

  .quick-strip span {
    justify-content: start;
    padding: 0 20px;
  }

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

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

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: auto;
  }

  .booking-cta {
    align-items: start;
    flex-direction: column;
  }

  footer {
    justify-items: start;
  }

  footer div {
    flex-wrap: wrap;
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .book-button {
    font-size: 0;
    gap: 0;
    width: 44px;
  }

  .book-button span {
    font-size: 18px;
  }

  .hero-actions,
  .primary-action,
  .secondary-action,
  .outline-center {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

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

  .gallery-item:first-child {
    grid-column: auto;
  }

  .gallery-item {
    min-height: 220px;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 10px;
    padding: 0 14px;
  }

  .hero {
    min-height: 100svh;
    padding: 112px 16px 44px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.08em;
    line-height: 1.25;
  }

  h1 {
    font-size: clamp(34px, 13.5vw, 42px);
    line-height: 0.96;
    margin-bottom: 18px;
  }

  h2 {
    font-size: clamp(32px, 12vw, 44px);
    line-height: 0.98;
  }

  .hero-copy,
  .section-intro p,
  .about-copy p,
  .trust-item p,
  .service-card p {
    font-size: 15px;
  }

  .primary-action,
  .secondary-action,
  .outline-center {
    font-size: 11px;
    line-height: 1.15;
    min-height: 46px;
    padding: 0 14px;
  }
}

@media (max-width: 300px) {
  .section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero {
    padding-left: 12px;
    padding-right: 12px;
  }

  h1 {
    font-size: clamp(30px, 13vw, 36px);
  }
}
