@font-face {
  font-family: 'Gilroy';
  src: url('/assets/fonts/Gilroy-Light.woff2') format('woff2'),
      url('/assets/fonts/Gilroy-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy ExtraBold';
  src: url('/assets/fonts/Gilroy-ExtraBold.woff2') format('woff2'),
      url('/assets/fonts/Gilroy-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --wp-black: #0b0b0c;
  --wp-ivory: #f4efe6;
  --wp-stone: #b7b0a4;
  --wp-gold: #B6925C;
  --wp-gold-bright: #d4b07a;
  --wp-paper: #f6f3ee;
  --wp-ink: #1a1816;
  --wp-nav-h: 76px;
  --wp-sidebar: 17.5rem;
  --wp-max: 1120px;
  --wp-radius: 8px;
  --wp-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-anchor: none;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--wp-paper);
  color: var(--wp-ink);
  font-family: Gilroy, system-ui, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4 {
  font-family: 'Gilroy ExtraBold', Gilroy, system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.wp-main {
  min-height: 60vh;
  margin-left: var(--wp-sidebar);
  width: calc(100% - var(--wp-sidebar));
}

.wp-container {
  width: min(var(--wp-max), calc(100% - 2.5rem));
  margin: 0 auto;
}

.wp-section {
  padding: 5.5rem 0;
}

.wp-section--tight {
  padding: 3.5rem 0;
}

.wp-section--dark {
  background: var(--wp-black);
  color: var(--wp-ivory);
}

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

.wp-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 40rem;
  color: inherit;
}

.wp-section--dark .wp-lead {
  color: var(--wp-stone);
}

.wp-label {
  margin: 0 0 0.85rem;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wp-gold);
  font-family: Gilroy, system-ui, sans-serif;
  font-weight: 300;
}

.wp-rule {
  width: 40px;
  height: 1px;
  background: var(--wp-gold);
  border: 0;
  margin: 1.25rem 0;
}

/* Buttons */
.wp-btn,
.wp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  border: 1px solid currentColor;
  border-radius: var(--wp-radius);
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.3s ease, transform 0.3s var(--wp-ease);
}

.wp-btn:hover {
  border-color: var(--wp-gold);
  background: rgba(182, 146, 92, 0.1);
}

.wp-btn-primary {
  background: var(--wp-gold);
  border-color: var(--wp-gold);
  color: var(--wp-black);
}

.wp-btn-primary:hover {
  background: var(--wp-gold-bright);
  border-color: var(--wp-gold-bright);
  color: var(--wp-black);
  box-shadow: 0 10px 30px rgba(182, 146, 92, 0.35);
  transform: translateY(-1px);
}

.wp-btn:disabled,
.wp-btn-primary:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

/* Loader (base styles live inline in loader.pug so it paints first) */
#page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none;
}

/* Cookie bar */
#cookies-eu-banner {
  display: none;
  position: fixed;
  left: var(--wp-sidebar);
  right: 0;
  bottom: 0;
  z-index: 80;
  background: var(--wp-black);
  color: var(--wp-ivory);
  border-top: 1px solid rgba(182, 146, 92, 0.4);
  padding: 0.85rem 1.25rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

#cookies-eu-banner.is-visible {
  display: flex;
}

#cookies-eu-accept {
  background: var(--wp-gold);
  color: var(--wp-black);
  border: 0;
  border-radius: var(--wp-radius);
  min-height: 36px;
  padding: 0.4rem 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
}

/* Sidebar */
.wp-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 50;
  width: var(--wp-sidebar);
  display: flex;
  flex-direction: column;
  padding: 2.4rem 1.6rem 1.5rem;
  background: #141312;
  color: var(--wp-ivory);
  overflow: visible;
  transform: translateZ(0);
}

.wp-nav::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(182, 146, 92, 0.6) 18%, rgba(182, 146, 92, 0.6) 82%, transparent 100%);
  pointer-events: none;
}

/* Tint only. Live blur samples the floating hero every frame and flickers on scroll. */
body.is-home.is-over-hero .wp-nav {
  background: rgba(11, 11, 12, 0.72);
}

.wp-nav-logo {
  flex-shrink: 0;
  align-self: flex-start;
}

.wp-nav-logo img {
  height: 104px;
  width: 104px;
  max-width: none;
  object-fit: contain;
}

.wp-nav-links {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: 2.2rem;
}

.wp-nav-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--wp-gold);
  border-radius: 1px;
  opacity: 0;
  transform: translateY(0);
  transition: transform 0.4s var(--wp-ease), height 0.4s var(--wp-ease), opacity 0.25s ease;
  pointer-events: none;
}

.wp-nav-marker.is-on {
  opacity: 1;
}

.wp-nav-links > a,
.wp-nav-drop > a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.68);
  transition: color 0.25s ease, letter-spacing 0.3s var(--wp-ease);
}

.wp-nav-links > a:hover,
.wp-nav-drop > a:hover,
.wp-nav-links > a.is-active,
.wp-nav-drop.is-active > a {
  color: var(--wp-ivory);
}

.wp-nav-links > a:hover,
.wp-nav-drop > a:hover {
  letter-spacing: 0.2em;
}

.wp-nav-drop {
  position: relative;
  display: flex;
  flex-direction: column;
}

.wp-nav-menu {
  position: absolute;
  left: 100%;
  top: -0.7rem;
  padding-left: 1.7rem;
  z-index: 55;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: opacity 0.25s ease, transform 0.3s var(--wp-ease), visibility 0s linear 0.3s;
}

.wp-nav-drop:hover .wp-nav-menu,
.wp-nav-drop:focus-within .wp-nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s;
}

.wp-nav-menu-panel {
  min-width: 14.5rem;
  padding: 0.8rem 0.6rem;
  background: rgba(20, 19, 18, 0.94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(182, 146, 92, 0.28);
  border-left: 2px solid var(--wp-gold);
  border-radius: var(--wp-radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.wp-nav-menu a {
  display: block;
  padding: 0.5rem 0.8rem;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wp-stone);
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.25s var(--wp-ease);
}

.wp-nav-menu a:hover {
  color: var(--wp-ivory);
  background: rgba(182, 146, 92, 0.1);
  padding-left: 1rem;
}

.wp-nav-menu a.is-active {
  color: var(--wp-gold);
}

.wp-nav-menu-all {
  margin-top: 0.4rem;
  padding-top: 0.8rem !important;
  border-top: 1px solid rgba(182, 146, 92, 0.25);
  border-radius: 0 !important;
  color: var(--wp-gold) !important;
}

.wp-nav-book {
  align-self: flex-start;
  margin-top: 1.6rem;
}

.wp-nav-base {
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(182, 146, 92, 0.2);
}

.wp-nav-phone {
  display: block;
  font-family: 'Gilroy ExtraBold', Gilroy, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--wp-ivory);
  transition: color 0.2s ease;
}

.wp-nav-phone:hover {
  color: var(--wp-gold);
}

.wp-nav-hours {
  display: block;
  margin: 0.25rem 0 1rem;
  font-size: 0.8rem;
  color: var(--wp-stone);
}

.wp-nav-base .wp-socials a {
  color: var(--wp-stone);
  transition: color 0.2s ease, transform 0.3s var(--wp-ease);
}

.wp-nav-base .wp-socials a:hover {
  color: var(--wp-gold);
  transform: translateY(-2px);
}

.wp-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--wp-ivory);
  cursor: pointer;
  padding: 0;
}

.wp-nav-toggle span,
.wp-nav-toggle span::before,
.wp-nav-toggle span::after {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  position: relative;
}

.wp-nav-toggle span::before,
.wp-nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}

.wp-nav-toggle span::before { top: -6px; }
.wp-nav-toggle span::after { top: 6px; }

/* Mobile overlay */
.wp-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--wp-black);
  color: var(--wp-ivory);
  padding: 1.25rem 1.5rem 2rem;
  display: none;
  flex-direction: column;
  overflow-y: auto;
}

.wp-nav-overlay.is-open {
  display: flex;
  animation: wp-fade 0.3s ease both;
}

.wp-nav-overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--wp-nav-h);
}

.wp-nav-overlay-close {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--wp-ivory);
  font-size: 1.6rem;
  cursor: pointer;
  transition: transform 0.35s var(--wp-ease), color 0.2s ease;
}

.wp-nav-overlay-close:hover {
  transform: rotate(90deg);
  color: var(--wp-gold);
}

.wp-nav-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 2rem;
  font-family: 'Gilroy ExtraBold', Gilroy, sans-serif;
  font-size: 1.8rem;
}

.wp-nav-overlay nav a {
  color: var(--wp-ivory);
}

.wp-nav-overlay.is-open nav > * {
  animation: wp-up 0.55s var(--wp-ease) both;
}

.wp-nav-overlay.is-open nav > :nth-child(1) { animation-delay: 60ms; }
.wp-nav-overlay.is-open nav > :nth-child(2) { animation-delay: 120ms; }
.wp-nav-overlay.is-open nav > :nth-child(3) { animation-delay: 180ms; }
.wp-nav-overlay.is-open nav > :nth-child(4) { animation-delay: 240ms; }
.wp-nav-overlay.is-open nav > :nth-child(5) { animation-delay: 300ms; }
.wp-nav-overlay.is-open nav > :nth-child(6) { animation-delay: 360ms; }

.wp-nav-overlay .wp-nav-sub {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0.4rem 0 0.8rem 0.2rem;
  font-family: Gilroy, sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

.wp-nav-overlay .wp-nav-sub a {
  color: var(--wp-stone);
}

.wp-nav-overlay .wp-nav-sub a.is-active {
  color: var(--wp-gold);
}

.wp-nav-overlay .wp-btn-primary {
  margin-top: auto;
  align-self: flex-start;
}

.wp-nav-overlay-contact {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--wp-stone);
  line-height: 1.6;
}

.wp-nav-overlay-contact a {
  display: block;
  color: var(--wp-ivory);
}

@media (max-width: 899px) {
  :root {
    --wp-sidebar: 0px;
  }

  .wp-nav {
    right: 0;
    bottom: auto;
    width: 100%;
    height: var(--wp-nav-h);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    overflow: visible;
  }

  .wp-nav::after {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(182, 146, 92, 0.6) 15%, rgba(182, 146, 92, 0.6) 85%, transparent 100%);
  }

  .wp-nav > .wp-nav-logo {
    align-self: center;
    display: flex;
    align-items: center;
    height: 100%;
  }

  .wp-nav > .wp-nav-logo img {
    height: 48px;
    width: 48px;
  }

  .wp-nav-overlay .wp-nav-logo {
    align-self: center;
    display: flex;
    align-items: center;
  }

  .wp-nav-overlay .wp-nav-logo img {
    height: 52px;
    width: 52px;
  }

  .wp-nav-links,
  .wp-nav-book,
  .wp-nav-base {
    display: none;
  }

  .wp-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .wp-main,
  .wp-footer {
    margin-left: 0;
    width: 100%;
  }

  #cookies-eu-banner {
    left: 0;
  }
}

/* Footer */
.wp-footer {
  background: var(--wp-black);
  color: var(--wp-stone);
  padding: 3.5rem 0 2rem;
  margin-left: var(--wp-sidebar);
  width: calc(100% - var(--wp-sidebar));
}

.wp-footer-rule {
  height: 1px;
  background: rgba(182, 146, 92, 0.35);
  margin-bottom: 2.2rem;
}

.wp-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.wp-footer h2 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wp-gold);
  font-family: Gilroy, sans-serif;
  font-weight: 300;
}

.wp-footer-tag {
  color: var(--wp-ivory);
  font-family: 'Gilroy ExtraBold', Gilroy, sans-serif;
  font-size: 1.05rem;
  line-height: 1.4;
  max-width: 16rem;
}

.wp-footer a {
  transition: color 0.2s ease;
}

.wp-footer a:hover {
  color: var(--wp-ivory);
}

.wp-footer-phone {
  font-size: 1.35rem;
  color: var(--wp-ivory);
  font-family: 'Gilroy ExtraBold', Gilroy, sans-serif;
}

.wp-footer-phone:hover {
  color: var(--wp-gold) !important;
}

.wp-footer-meta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.wp-socials {
  display: flex;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wp-socials a {
  display: inline-flex;
  color: var(--wp-ivory);
  transition: color 0.2s ease;
}

.wp-socials a:hover {
  color: var(--wp-gold);
}

.wp-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 767px) {
  .wp-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Page header */
.wp-page-header {
  position: relative;
  overflow: hidden;
  background: var(--wp-black);
  color: var(--wp-ivory);
  padding: 4.5rem 0 4rem;
}

.wp-page-header::before {
  content: '';
  position: absolute;
  width: min(60vw, 720px);
  height: min(60vw, 720px);
  left: -8%;
  top: -55%;
  background: radial-gradient(circle, rgba(182, 146, 92, 0.22) 0%, transparent 62%);
  pointer-events: none;
}

.wp-page-header .wp-container {
  position: relative;
}

.wp-page-header h1::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--wp-gold);
  margin-top: 1.1rem;
}

.wp-page-header .wp-lead {
  color: var(--wp-stone);
}

@media (max-width: 899px) {
  .wp-page-header {
    padding-top: calc(var(--wp-nav-h) + 3.5rem);
    padding-bottom: 3.25rem;
  }

  .wp-404 {
    padding-top: var(--wp-nav-h);
  }
}

/* Hero */
.wp-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--wp-ivory);
  background: var(--wp-black);
  overflow: hidden;
}

.wp-hero--scene {
  margin-left: calc(-1 * var(--wp-sidebar));
  width: calc(100% + var(--wp-sidebar));
  padding: 6rem 5vw 5.5rem calc(var(--wp-sidebar) + 4vw);
  display: grid;
  grid-template-columns: minmax(0, 26rem) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.wp-hero--scene::before {
  content: '';
  position: absolute;
  left: 10%;
  right: 5%;
  bottom: -30%;
  height: 90%;
  background: radial-gradient(ellipse at 55% 100%, rgba(182, 146, 92, 0.26) 0%, rgba(182, 146, 92, 0.08) 35%, transparent 65%);
  pointer-events: none;
}

.wp-hero--scene::after {
  content: '';
  position: absolute;
  left: calc(var(--wp-sidebar) + 4vw);
  right: 5vw;
  bottom: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(182, 146, 92, 0.45) 30%, rgba(182, 146, 92, 0.45) 70%, transparent 100%);
  pointer-events: none;
}

.wp-hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
}

.wp-hero-copy > * {
  animation: wp-up 0.9s var(--wp-ease) both;
}

.wp-hero-copy > :nth-child(1) { animation-delay: 0.45s; }
.wp-hero-copy > :nth-child(2) { animation-delay: 0.6s; }
.wp-hero-copy > :nth-child(3) { animation-delay: 0.75s; }
.wp-hero-copy > :nth-child(4) { animation-delay: 0.85s; }
.wp-hero-copy > :nth-child(5) { animation-delay: 1s; }

.wp-hero-copy h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  margin-bottom: 0.4em;
}

.wp-hero-copy .wp-lead {
  color: var(--wp-stone);
  max-width: 24rem;
}

.wp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.wp-hero-scroll {
  position: absolute;
  left: calc(var(--wp-sidebar) + 4vw);
  bottom: 1.8rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wp-stone);
  animation: wp-fade 1s ease 1.4s both;
}

.wp-hero-scroll::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--wp-gold);
  transform-origin: left;
  animation: wp-scroll-line 2.4s var(--wp-ease) infinite;
}

/* Hero scene */
.wp-scene {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  min-height: 62vh;
  min-height: 62svh;
}

.wp-scene-glow,
.wp-scene-floor {
  display: none;
}

.wp-scene-specks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wp-scene-specks span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--wp-gold);
  opacity: 0;
  animation: wp-speck var(--dur, 9s) linear var(--delay, 0s) infinite;
}

.wp-scene-specks span:nth-child(1) { left: 8%; top: 70%; --dur: 9s; --delay: 0s; }
.wp-scene-specks span:nth-child(2) { left: 22%; top: 85%; --dur: 12s; --delay: 2s; width: 2px; height: 2px; }
.wp-scene-specks span:nth-child(3) { left: 38%; top: 78%; --dur: 10s; --delay: 4s; }
.wp-scene-specks span:nth-child(4) { left: 52%; top: 90%; --dur: 14s; --delay: 1s; width: 2px; height: 2px; }
.wp-scene-specks span:nth-child(5) { left: 66%; top: 72%; --dur: 11s; --delay: 5s; }
.wp-scene-specks span:nth-child(6) { left: 78%; top: 88%; --dur: 13s; --delay: 3s; }
.wp-scene-specks span:nth-child(7) { left: 90%; top: 76%; --dur: 9.5s; --delay: 6s; width: 2px; height: 2px; }
.wp-scene-specks span:nth-child(8) { left: 30%; top: 95%; --dur: 15s; --delay: 7s; }
.wp-scene-specks span:nth-child(9) { left: 60%; top: 82%; --dur: 10.5s; --delay: 8s; width: 4px; height: 4px; }

.wp-scene-layer {
  position: absolute;
  will-change: transform;
  animation: wp-fade 1.2s ease var(--draw-delay, 0.4s) both;
}

.wp-scene-float {
  position: relative;
  animation: wp-float var(--dur, 8s) ease-in-out var(--delay, 0s) infinite alternate;
}

.wp-scene-float svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.wp-scene-shadow {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -9%;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(182, 146, 92, 0.5) 0%, rgba(182, 146, 92, 0.12) 50%, transparent 75%);
  filter: blur(4px);
  animation: wp-shadow var(--dur, 8s) ease-in-out var(--delay, 0s) infinite alternate;
}

.wp-scene svg .wp-line,
.wp-scene svg .wp-glint {
  fill: none;
  stroke: var(--wp-gold);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 2600;
  stroke-dashoffset: 2600;
  animation: wp-draw 2.4s cubic-bezier(0.4, 0, 0.2, 1) var(--draw-delay, 0.4s) forwards;
}

.wp-scene svg .wp-line--heavy {
  stroke-width: 3;
}

.wp-scene svg .wp-glint {
  stroke: var(--wp-ivory);
  stroke-width: 1.2;
  opacity: 0.55;
}

.wp-scene-car {
  left: -14%;
  width: 122%;
  top: 18%;
  --dur: 9s;
  --amp: 14px;
  --draw-delay: 0.5s;
}

.wp-scene-car .wp-scene-shadow {
  left: 8%;
  right: 8%;
  bottom: -6%;
  height: 22px;
}

.wp-scene-washer {
  left: 2%;
  bottom: 6%;
  width: clamp(110px, 20%, 170px);
  --dur: 7s;
  --amp: 10px;
  --delay: -2s;
  --draw-delay: 0.9s;
}

.wp-scene-mats {
  right: 0;
  bottom: 3%;
  width: clamp(150px, 30%, 260px);
  --dur: 10.5s;
  --amp: 12px;
  --delay: -4s;
  --draw-delay: 1.1s;
}

.wp-scene-bubble,
.wp-scene-drop {
  --dur: 6s;
  --amp: 18px;
  --draw-delay: 1.4s;
}

.wp-scene-bubble .wp-scene-float,
.wp-scene-drop .wp-scene-float {
  animation-name: wp-float-slow;
}

.wp-scene-bubble svg,
.wp-scene-drop svg {
  width: auto;
}

.wp-scene-bubble--a { left: 28%; top: 10%; --dur: 6.5s; --delay: -1s; }
.wp-scene-bubble--b { left: 60%; top: 6%; --dur: 5.5s; --delay: -3s; --amp: 22px; }
.wp-scene-bubble--c { right: 6%; top: 18%; --dur: 8s; --delay: -2.5s; --amp: 16px; }
.wp-scene-drop--a { left: 14%; top: 42%; --dur: 7s; --delay: -0.5s; }
.wp-scene-drop--b { left: 82%; top: 50%; --dur: 6s; --delay: -4s; --amp: 20px; }

@keyframes wp-float {
  from { transform: translateY(calc(var(--amp, 12px) * -1)); }
  to { transform: translateY(var(--amp, 12px)); }
}

@keyframes wp-float-slow {
  from { transform: translate3d(0, calc(var(--amp, 12px) * -1), 0) rotate(-3deg); }
  to { transform: translate3d(0, var(--amp, 12px), 0) rotate(3deg); }
}

@keyframes wp-shadow {
  from { transform: scaleX(1.08); opacity: 0.7; }
  to { transform: scaleX(0.82); opacity: 0.3; }
}

@keyframes wp-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes wp-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes wp-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes wp-scroll-line {
  0% { transform: scaleX(0); transform-origin: left; }
  45% { transform: scaleX(1); transform-origin: left; }
  55% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

@keyframes wp-speck {
  0% { transform: translateY(0); opacity: 0; }
  15% { opacity: 0.8; }
  85% { opacity: 0.4; }
  100% { transform: translateY(-38vh); opacity: 0; }
}

@media (max-width: 1199px) {
  .wp-hero--scene {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(40vh, 1fr) auto;
    align-items: end;
    padding-top: 4rem;
  }

  .wp-scene {
    grid-column: 1;
    grid-row: 1;
    min-height: 40vh;
    min-height: 40svh;
  }

  .wp-scene-car {
    left: 2%;
    width: 96%;
    top: 14%;
  }

  .wp-hero-copy {
    grid-column: 1;
    grid-row: 2;
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 899px) {
  .wp-hero--scene {
    margin-left: 0;
    width: 100%;
    padding: calc(var(--wp-nav-h) + 1.5rem) 1.25rem 4.5rem;
    gap: 1rem;
  }

  .wp-hero--scene::after {
    display: none;
  }

  .wp-hero-scroll {
    left: 1.25rem;
    bottom: 1.2rem;
  }

  .wp-scene {
    min-height: 36vh;
    min-height: 36svh;
  }

  .wp-scene-car {
    left: 0;
    width: 100%;
    top: 20%;
  }

  .wp-scene-washer,
  .wp-scene-bubble--c,
  .wp-scene-drop--b {
    display: none;
  }

  .wp-scene-mats {
    width: 36%;
    right: 2%;
    bottom: 0;
  }

  .wp-hero-copy {
    padding-bottom: 1.5rem;
  }

  .wp-hero-copy h1 {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }
}

/* Split */
.wp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 28rem;
}

.wp-split-media {
  overflow: hidden;
}

.wp-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 16rem;
  transition: transform 1.2s var(--wp-ease);
}

.wp-split:hover .wp-split-media img {
  transform: scale(1.03);
}

.wp-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 8%;
  background: var(--wp-paper);
}

.wp-split-copy img {
  margin-top: 1.5rem;
  max-width: 280px;
}

@media (max-width: 767px) {
  .wp-split {
    grid-template-columns: 1fr;
  }
}

/* Service tiles */
.wp-center {
  text-align: center;
}

.wp-center .wp-lead {
  margin-left: auto;
  margin-right: auto;
}

.wp-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  text-align: left;
}

.wp-tile {
  position: relative;
  display: block;
  min-height: 220px;
  overflow: hidden;
  color: var(--wp-ivory);
  border-radius: var(--wp-radius);
}

.wp-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--wp-ease);
}

.wp-tile:hover img {
  transform: scale(1.05);
}

.wp-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11, 11, 12, 0.82) 100%);
  transition: opacity 0.4s ease;
}

.wp-tile::before {
  content: '\2192';
  position: absolute;
  right: 1.1rem;
  bottom: 1.05rem;
  z-index: 2;
  color: var(--wp-gold);
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s ease, transform 0.45s var(--wp-ease);
}

.wp-tile:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.wp-tile span {
  position: absolute;
  left: 1.1rem;
  right: 3rem;
  bottom: 1rem;
  z-index: 1;
  font-family: 'Gilroy ExtraBold', Gilroy, sans-serif;
  letter-spacing: 0.02em;
}

.wp-tile span::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  margin-top: 0.5rem;
  background: var(--wp-gold);
  transition: width 0.45s var(--wp-ease);
}

.wp-tile:hover span::after {
  width: 40px;
}

/* Seven tiles in three columns: the orphan on the last row stretches across. */
.wp-tiles > .wp-tile:last-child:nth-child(3n + 1) {
  grid-column: 1 / -1;
  min-height: 260px;
}

@media (max-width: 900px) {
  .wp-tiles {
    grid-template-columns: 1fr 1fr;
  }

  .wp-tiles > .wp-tile:last-child:nth-child(3n + 1) {
    grid-column: auto;
    min-height: 220px;
  }

  .wp-tiles > .wp-tile:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .wp-tiles {
    grid-template-columns: 1fr;
  }
}

/* Testimonials */
.wp-quotes {
  position: relative;
  max-width: 40rem;
  margin: 0 auto;
  padding-top: 3rem;
  text-align: center;
  display: grid;
}

.wp-quotes::before {
  content: '\201C';
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Gilroy ExtraBold', Gilroy, sans-serif;
  font-size: 11rem;
  line-height: 1;
  color: var(--wp-gold);
  opacity: 0.14;
  pointer-events: none;
}

.wp-quote {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.7s ease, transform 0.7s var(--wp-ease);
  pointer-events: none;
}

.wp-quote.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.wp-quote blockquote {
  margin: 0 0 1.2rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.wp-quote cite {
  display: block;
  font-style: normal;
  color: var(--wp-gold);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.wp-quote-dots {
  grid-area: 2 / 1;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.wp-quote-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(182, 146, 92, 0.35);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s var(--wp-ease);
}

.wp-quote-dots button.is-active {
  background: var(--wp-gold);
  transform: scale(1.3);
}

/* Brands */
.wp-brands {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.wp-brands img {
  max-height: 52px;
  width: auto;
  opacity: 0.8;
  filter: grayscale(1);
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.4s var(--wp-ease);
}

.wp-brands a:hover img {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
}

/* Inner cards / steps */
.wp-steps {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0 1.5rem;
}

.wp-step {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
}

.wp-step-num {
  color: var(--wp-gold);
  font-family: 'Gilroy ExtraBold', Gilroy, sans-serif;
  font-size: 1.1rem;
}

.wp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.wp-card {
  padding: 1.6rem 1.5rem;
  background: #fff;
  border-top: 1px solid var(--wp-gold);
  border-radius: 0 0 var(--wp-radius) var(--wp-radius);
  transition: transform 0.4s var(--wp-ease), box-shadow 0.4s ease;
}

.wp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(26, 24, 22, 0.08);
}

.wp-card h3 {
  margin-bottom: 0.5rem;
}

.wp-band-image {
  min-height: 36vh;
  overflow: hidden;
}

.wp-band-image img {
  width: 100%;
  height: 36vh;
  object-fit: cover;
}

.wp-band-image--tall img {
  height: 62vh;
  object-position: center 40%;
}

/* Packages */
.wp-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.wp-packages button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: var(--wp-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 24, 22, 0.08);
  transition: transform 0.4s var(--wp-ease), box-shadow 0.4s ease;
}

.wp-packages button:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(26, 24, 22, 0.14);
}

.wp-packages img {
  width: 100%;
}

@media (max-width: 767px) {
  .wp-cards {
    grid-template-columns: 1fr;
  }
}

/* Snap gallery */
.wp-snap {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

.wp-snap img {
  flex: 0 0 min(80%, 520px);
  height: 320px;
  object-fit: cover;
  scroll-snap-align: start;
  border-radius: var(--wp-radius);
}

/* Gallery grid */
.wp-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.wp-gallery button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--wp-radius);
}

.wp-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.8s var(--wp-ease);
}

.wp-gallery button:hover img {
  transform: scale(1.04);
}

@media (max-width: 767px) {
  .wp-gallery {
    grid-template-columns: 1fr;
  }
}

.wp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(11, 11, 12, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: pointer;
}

.wp-lightbox.is-open {
  display: flex;
  animation: wp-fade 0.25s ease both;
}

.wp-lightbox img {
  max-width: min(1100px, 100%);
  max-height: 90vh;
  object-fit: contain;
}

/* CTA */
.wp-cta {
  position: relative;
  overflow: hidden;
  background: var(--wp-black);
  color: var(--wp-ivory);
  text-align: center;
  padding: 6rem 0;
}

.wp-cta::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(80vw, 900px);
  height: min(80vw, 900px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(182, 146, 92, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.wp-cta .wp-container {
  position: relative;
}

.wp-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 20ch;
  margin: 0 auto 1.75rem;
}

/* Forms */
.wp-split-form {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.wp-form {
  display: grid;
  gap: 1.1rem;
}

.wp-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.wp-field label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wp-gold);
}

.wp-field input,
.wp-field select,
.wp-field textarea {
  border: 0;
  border-bottom: 1px solid rgba(26, 24, 22, 0.25);
  background: transparent;
  padding: 0.55rem 0;
  color: var(--wp-ink);
  border-radius: 0;
  transition: border-color 0.25s ease;
}

.wp-field input:focus,
.wp-field select:focus,
.wp-field textarea:focus {
  outline: none;
  border-bottom-color: var(--wp-gold);
}

.wp-field.is-error input,
.wp-field.is-error select,
.wp-field.is-error textarea {
  border-bottom-color: #b14a3a;
}

.wp-form-banner {
  display: none;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  border-radius: var(--wp-radius);
}

.wp-form-banner.is-visible {
  display: block;
}

.wp-form-banner.is-success {
  background: rgba(182, 146, 92, 0.18);
  color: var(--wp-ink);
}

.wp-form-banner.is-error {
  background: rgba(177, 74, 58, 0.12);
  color: #8a2f24;
}

.wp-map {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  filter: grayscale(0.4) contrast(1.05);
}

.wp-recaptcha {
  margin: 0.4rem 0;
}

@media (max-width: 767px) {
  .wp-split-form {
    grid-template-columns: 1fr;
  }
}

/* 404 */
.wp-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--wp-black);
  color: var(--wp-ivory);
}

.wp-404 .wp-label {
  font-size: 2rem;
  letter-spacing: 0.2em;
}

/* Scroll reveal (class added by washpro.js, so no-JS never hides content) */
.wp-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s var(--wp-ease);
  transition-delay: calc(var(--i, 0) * 70ms);
}

.wp-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }

  .wp-scene svg .wp-line,
  .wp-scene svg .wp-glint {
    stroke-dashoffset: 0;
  }

  .wp-scene-specks {
    display: none;
  }

  .wp-quotes {
    display: block;
  }

  .wp-quote {
    opacity: 1;
    transform: none;
    margin-bottom: 2rem;
    pointer-events: auto;
  }

  .wp-quote-dots {
    display: none;
  }

  .wp-reveal {
    opacity: 1;
    transform: none;
  }
}
