/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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


/* ===== BASE STYLES ===== */
/* body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #1f2937;
  line-height: 1.6;
} */

:root {
  --font-heading: 'Clash Display', sans-serif;
  --font-body: 'Be Vietnam Pro', sans-serif;
}


body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: #1f2937;
  line-height: 1.7;
}


h1,
h2,
h3,
.logo {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
}




@font-face {
  font-family: 'Monument Extended';
  src: url('/fonts/MonumentExtended-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}




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

ul {
  list-style: none;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  /* was: sticky */
  top: 0;
  left: 0;
  right: 0;
  z-index: 4000;
  /* above content/sections */
  background-color: #1f2937;
}

/* ===== NAVBAR ===== */
.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  color: white;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}

/* ===== NAV LINKS (DESKTOP) ===== */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffcc00;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
    /* above the menu */
  }

  .hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
  }

  .dark .hamburger .bar {
    background: #fff !important;
  }


  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-height: 0;
    padding: 0;
    gap: 20px;
    background-color: transparent;
    backdrop-filter: none;
    transition:
      max-height 0.3s ease,
      padding 0.3s ease,
      background-color 0.3s ease,
      backdrop-filter 0.3s ease;
  }

  .nav-links.open {
    max-height: 500px;
    padding: 40px 0;
    background-color: rgba(31, 41, 55, 0.4);
    /* semi-transparent navy */
    backdrop-filter: blur(12px);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 1.2rem;
    color: white;
  }

  /* Hide nav-links in desktop by default */
  .nav-links {
    display: flex;
  }

  @media (min-width: 769px) {
    .hamburger {
      display: none;
    }

    .nav-links {
      position: static;
      flex-direction: row;
      gap: 30px;
      padding: 0;
      max-height: none;
      background-color: transparent;
      backdrop-filter: none;
      overflow: visible;
    }
  }
}





/* ===== HERO SECTION (desktop unchanged, mobile fixed) ===== */
.hero {
  position: relative;
  min-height: 600px;
  /* keep your original desktop height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .7)),
    url('assets/home/hero.png') center/cover no-repeat;
}

/* content (desktop look stays the same) */
.hero-content {
  max-width: 700px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.hero-content h2 {
  font-size: 2.8rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* ===== MOBILE FIXES ===== */
@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
    /* fill the screen on phones */
    padding: 0 12px;
    /* darker at the bottom so text pops, better top crop */
    background:
      linear-gradient(to bottom,
        rgba(0, 0, 0, .15) 0%,
        rgba(0, 0, 0, .35) 35%,
        rgba(0, 0, 0, .75) 100%),
      url('assets/home/hero.png') center top/cover no-repeat;
  }

  /* remove the heavy box on phones; keep clean full-bleed text */
  .hero-content {
    background: transparent;
    border-radius: 0;
    padding: 0 8px 18px;
    max-width: 560px;
    margin: 0 auto 18px;
    box-shadow: none;
  }

  .hero-content h2 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .hero-content p {
    font-size: clamp(0.95rem, 3.6vw, 1.1rem);
    margin-bottom: 20px;
  }

  .btn {
    padding: 12px 22px;
  }
}

/* Optional: slight polish on large screens only */
@media (min-width: 1024px) {
  .hero {
    background-position: center;
  }

  .hero-content {
    padding: 48px;
  }
}

/* Button (as you had) */
.btn {
  display: inline-block;
  background-color: #ffcc00;
  color: #1f2937;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: background .3s ease;
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.25);
}

.btn:hover {
  background-color: #e6b800;
}


.service-card-img {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.service-card-img:hover {
  transform: scale(1.02);
}

.service-card-img .service-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  color: white;
  transition: background 0.3s ease;
}

.service-card-img .service-overlay h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

.service-card-img .service-overlay p {
  margin-top: 0.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: #f0f0f0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.service-card-img:hover .service-overlay {
  background: rgba(0, 0, 0, 0.85);
}






/* ===== SECTIONS ===== */
.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section h2,
.section-title {
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: #1f2937;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* ===== GRID & CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* If not already present from the review-card snippet */
:root {
  --rc-bg: #ffffff;
  --rc-border: rgba(0, 0, 0, 0.12);
  --rc-border-hover: rgba(0, 0, 0, 0.22);
}

@media (prefers-color-scheme: dark) {
  :root {
    --rc-bg: #0b0f14;
    --rc-border: rgba(255, 255, 255, 0.18);
    --rc-border-hover: rgba(255, 255, 255, 0.32);
  }
}

.dark {
  --rc-bg: #0b0f14;
  --rc-border: rgba(255, 255, 255, 0.18);
  --rc-border-hover: rgba(255, 255, 255, 0.32);
}

/* Updated service-card */
.service-card {
  background: var(--rc-bg);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--rc-border);
  /* NEW: border */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.2s ease,
    background 0.2s ease;
  /* smooth theme switch */
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--rc-border-hover);
  /* NEW: hover border */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}


.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #111827;
}

.service-card p {
  font-size: 1rem;
  color: #444;
}

/* ===== BUTTON SECONDARY ===== */
.btn-secondary {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #1f2937;
  color: #1f2937;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #1f2937;
  color: white;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #0f172a, #1f2937);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* ===== FORM STYLES ===== */
form {
  max-width: 600px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

input,
textarea {
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: white;
  color: #1f2937;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #ffcc00;
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.2);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button[type="submit"] {
  padding: 12px 25px;
  background-color: #ffcc00;
  color: #1f2937;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #e6b800;
}

.footer-enhanced {
  background-color: #111827;
  color: #ddd;
  padding: 40px 20px 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-contact {
  flex: 1 1 40%;
}

.footer-contact h3,
.footer-map-section h3 {
  color: #ffcc00;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.contact-list a {
  color: #ffcc00;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.icon {
  font-size: 1.2rem;
  width: 24px;
}

/* Map Section */
.footer-map-section {
  flex: 1 1 55%;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 200px;
  position: relative;
}

.map-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  text-indent: -9999px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.footer-bottom {
  text-align: center;
  color: #888;
  font-size: 0.85rem;
  margin-top: 30px;
  border-top: 1px solid #2e3a4b;
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-contact,
  .footer-map-section {
    width: 100%;
  }

  .footer-contact h3,
  .footer-map-section h3 {
    text-align: center;
    width: 100%;
  }

  .contact-list li {
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
    /* 👈 Center icons + text */
    align-items: center;
    gap: 10px;
  }

  .icon {
    margin-right: 0;
    min-width: 20px;
    display: inline-block;
    vertical-align: middle;
  }

  .map-container {
    height: 180px;
  }

  .footer-bottom {
    text-align: center;
  }
}


/* ===== CTA ===== */
/* ===== CTA ===== */
.cta {
  width: 100%;
  background: linear-gradient(135deg, #0f172a, #1f2937);
  color: #fff;
  padding: 28px 16px;
  margin-top: 20px;
}

.cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.cta__subtitle {
  margin: 4px 0 0;
  font-size: 1rem;
  color: #cbd5e1;
}

.cta__btn {
  padding: 14px 24px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 204, 0, 0.35);
}

/* Mobile */
@media (max-width: 640px) {
  .cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta__btn {
    width: 100%;
    max-width: 320px;
  }
}


/* ===== ANIMATIONS ===== */
.fade-in {
  animation: fadeIn 1s ease-in both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== PROJECT GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-grid img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}


.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}

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

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  text-align: center;
  color: white;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}




/* Viewport */
.carousel-container {
  position: relative;
  overflow: hidden;
}

/* Moving strip (spacing uses GAP!) */
.carousel-track {
  display: flex;
  gap: 24px;
  /* <<< add this */
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

/* Desktop: exactly 3 cards (2 gaps -> 48px total) */
/* Theme vars (light by default) */
:root {
  --rc-bg: #ffffff;
  --rc-border: rgba(0, 0, 0, 0.12);
  --rc-border-hover: rgba(0, 0, 0, 0.22);
}

/* Respect system dark mode */
@media (prefers-color-scheme: dark) {
  :root {
    --rc-bg: #0b0f14;
    --rc-border: rgba(255, 255, 255, 0.18);
    --rc-border-hover: rgba(255, 255, 255, 0.32);
  }
}

/* If you use a class-based dark mode (e.g., Tailwind's .dark) */
.dark {
  --rc-bg: #0b0f14;
  --rc-border: rgba(255, 255, 255, 0.18);
  --rc-border-hover: rgba(255, 255, 255, 0.32);
}

.review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  box-sizing: border-box;
  /* ensures border doesn't break your width calc */
  background: var(--rc-bg);
  border: 1px solid var(--rc-border);
  /* NEW: border */
  border-radius: 12px;
  /* optional but looks nice */
  padding: 16px;
  /* adjust as needed */
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.review-card:hover {
  border-color: var(--rc-border-hover);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}



/* MOBILE ONLY (e.g., iPhone 12 Pro) */
@media (max-width: 640px) {

  /* give the track a tiny vertical buffer and let the 1px line render */
  .carousel-container {
    overflow-x: hidden;
    overflow-y: visible;
    padding-block: 4px;
  }

  /* simulate the border with an inset shadow so Safari doesn't clip it */
  .review-card {
    border: 1px solid transparent;
    /* keep radius, avoid double line */
    box-shadow:
      0 0 0 1px var(--rc-border) inset,
      0 6px 20px rgba(0, 0, 0, 0.06);
    -webkit-transform: translateZ(0);
    /* iOS layer fix */
    transform: translateZ(0);
  }

  .review-card:hover {
    box-shadow:
      0 0 0 1px var(--rc-border-hover) inset,
      0 10px 25px rgba(0, 0, 0, 0.10);
  }

  /* extra nudge on iOS only */
  @supports (-webkit-touch-callout: none) {
    .carousel-container {
      padding-bottom: 6px;
    }
  }
}



/* harmless; overflow hidden */

.carousel-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  /* left button | carousel | right button */
  align-items: center;
  gap: 16px;
}

/* Buttons — now static (not absolutely positioned) */
.carousel-nav.outer {
  position: static;
  /* important: sit outside as normal flow */
  border: none;
  background: rgba(0, 0, 0, 0.1);
  color: #222;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s, transform .1s;
  font-size: 22px;
  line-height: 1;
}

.carousel-nav.outer:hover {
  background: rgba(0, 0, 0, 0.2);
}

.carousel-nav.outer:active {
  transform: scale(0.96);
}



/* Tablet: 2 cards (1 gap -> 24px) */
@media (max-width: 991px) {
  .review-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

/* Mobile: 1 card (no width calc) */
@media (max-width: 600px) {
  .review-card {
    flex: 0 0 100%;
  }
}




.phone-input {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  max-width: 100%;
}

.country-code {
  background: #f4f4f4;
  padding: 0.75rem;
  font-weight: bold;
  font-family: inherit;
  border-right: 1px solid #ccc;
  color: #333;
}

.phone-input input {
  flex: 1;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  outline: none;
}

.phone-input input:focus {
  border: none;
  outline: none;
}



/* === Paint-Reveal Intro (global) === */
:root {
  /* Timing & feel */
  --paint-duration-ms: 2200;
  --paint-reveal-lag: .10;

  /* No column tint */
  --paint-color: transparent;
  --paint-wet-alpha: 0;
  --paint-edge-h: 18px;

  /* Start “wall” color while rolling */
  --paint-blur: 6px;
  /* fabric colors (soft, easy on eyes) */
  --roller-dark: #cdd4da;
  /* cool grey-blue */
  --roller-light: #e6eaee;
  /* pale grey-blue */
}

/* Root overlay that hosts the columns + canvas */
.paint-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  contain: layout paint style;
  background: transparent;
  /* columns do the covering */
  opacity: 1;
}

.paint-overlay[hidden] {
  display: none !important;
}

.paint-overlay.fade-out {
  animation: po-fade .35s ease forwards;
}

@keyframes po-fade {
  to {
    opacity: 0
  }
}

/* Canvas draws the rollers */
#rollerCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

/* One “cover” column per roller.
   We cut a transparent hole from TOP down to --revealY. */
.cover-clip {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  pointer-events: none;
  -webkit-mask: linear-gradient(transparent 0 var(--revealY, 0px), #000 var(--revealY, 0px) 100%) no-repeat;
  mask: linear-gradient(transparent 0 var(--revealY, 0px), #000 var(--revealY, 0px) 100%) no-repeat;
}

.cover-pane {
  position: absolute;
  inset: 0;
  background: #fff;
  /* “wall” white before reveal */
  backdrop-filter: blur(var(--paint-blur));
  -webkit-backdrop-filter: blur(var(--paint-blur));
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --paint-duration-ms: 700;
    --paint-blur: 0px;
  }
}

@media (max-width:640px) {
  :root {
    --paint-blur: 0px;
  }
}







/* =========================
   DARK MODE — Neutral Slate
   (auto: OS dark preference)
   ========================= */
@media (prefers-color-scheme: dark) {

  /* ---- Palette (semantic) ---- */
  :root {
    --bg: #0e1116;
    /* page background */
    --surface: #12161c;
    /* cards, sections */
    --elevated: #161b22;
    /* nav, hero glass, overlays */
    --text: #e6e6e6;
    /* main text */
    --muted: #a7b0be;
    /* secondary text */
    --border: #2a3240;
    /* lines, inputs */
    --shadow: rgba(0, 0, 0, .45);
    --overlay: rgba(18, 22, 28, .6);
    --overlay-strong: rgba(18, 22, 28, .85);
    --primary: #ffcc00;
    /* your accent */
    --primary-2: #e6b800;
  }

  /* ---- Base ---- */
  body {
    background-color: var(--bg);
    color: var(--text);
  }

  header {
    background-color: var(--elevated);
  }

  .navbar,
  .logo,
  .nav-links a {
    color: var(--text);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary);
  }

  /* Mobile menu */
  @media (max-width: 768px) {
    .nav-links {
      background-color: transparent;
    }

    .nav-links.open {
      background-color: var(--overlay);
      backdrop-filter: blur(12px);
    }

    .hamburger .bar {
      background-color: var(--text);
    }
  }

  /* ---- Hero ---- */
  .hero {
    color: var(--text);
    background:
      linear-gradient(var(--overlay), var(--overlay-strong)),
      url('assets/home/hero.png') center/cover no-repeat;
  }



  .btn {
    background-color: var(--primary);
    color: #0b0d11;
  }

  .btn:hover {
    background-color: var(--primary-2);
  }

  .btn-secondary {
    border: 2px solid var(--text);
    color: var(--text);
  }

  .btn-secondary:hover {
    background-color: var(--text);
    color: #0b0d11;
  }

  /* ---- Sections & Cards ---- */
  .section h2,
  .section-title {
    color: #f5f7fa;
  }

  .section-subtitle {
    color: var(--muted);
  }

  .service-card {
    background-color: var(--surface);
    box-shadow: 0 10px 28px var(--shadow);
  }

  .service-card h3 {
    color: #f4f6f8;
  }

  .service-card p {
    color: var(--muted);
  }

  .service-card-img {
    box-shadow: 0 6px 20px var(--shadow);
  }

  .service-card-img .service-overlay {
    background: var(--overlay);
    color: var(--text);
  }

  .service-card-img:hover .service-overlay {
    background: var(--overlay-strong);
  }

  .service-card-img .service-overlay h3 {
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .95);
  }

  .service-card-img .service-overlay p {
    color: #dde4ee;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .9);
  }

  /* ---- Forms ---- */
  input,
  textarea {
    background-color: #0f1319;
    color: var(--text);
    border: 1px solid var(--border);
  }

  input::placeholder,
  textarea::placeholder {
    color: #91a0b4;
  }

  input:focus,
  textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, .22);
    outline: none;
  }

  button[type="submit"] {
    background-color: var(--primary);
    color: #0b0d11;
  }

  button[type="submit"]:hover {
    background-color: var(--primary-2);
  }

  /* ---- Footer ---- */
  .footer-enhanced {
    background-color: #0b0e13;
    color: #d7dbe2;
  }

  .footer-contact h3,
  .footer-map-section h3 {
    color: var(--primary);
  }

  .contact-list a {
    color: #ffd84d;
  }

  .contact-list a:hover {
    color: var(--primary);
  }

  .footer-bottom {
    color: #9aa7b8;
    border-top: 1px solid var(--border);
  }

  .map-container {
    box-shadow: 0 6px 22px var(--shadow);
  }


  .cta__title {
    color: #ffffff;
  }

  .cta__subtitle {
    color: var(--muted);
  }

  .cta__btn {
    background-color: var(--primary);
    color: #0b0d11;
    box-shadow: 0 10px 26px rgba(255, 204, 0, .28);
  }

  .cta__btn:hover {
    box-shadow: 0 12px 28px rgba(255, 204, 0, .36);
  }

  /* ---- Gallery & Lightbox ---- */
  .gallery-grid img:hover {
    box-shadow: 0 10px 24px var(--shadow);
  }

  .gallery-item .overlay {
    background: rgba(22, 27, 34, .65);
    color: var(--text);
  }

  .lightbox {
    background: rgba(10, 12, 16, .92);
  }

  /* ---- Carousel ---- */
  .carousel-nav.outer {
    background: rgba(255, 255, 255, .08);
    color: var(--text);
  }

  .carousel-nav.outer:hover {
    background: rgba(255, 255, 255, .16);
  }

  input,
  textarea {
    background-color: #161b22;
    /* dark surface always */
    color: #f1f5f9;
    border: 1px solid #2a3240;
  }

  input:focus,
  textarea:focus {
    background-color: #161b22;
    /* keep same dark bg */
    border-color: #ffcc00;
    /* accent border */
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.25);
    outline: none;
  }

  input::placeholder,
  textarea::placeholder {
    color: #94a3b8;
  }

  .country-code {
    background: #0f1319;
    /* match dark */
    color: #f1f5f9;
    border-right: 1px solid #2a3240;
  }

  /* ---- Paint-Reveal ---- */
  :root {
    --roller-dark: #b9c2cc;
    --roller-light: #d7dee6;
    --paint-blur: 4px;
  }

  .cover-pane {
    background: var(--bg);
    backdrop-filter: blur(var(--paint-blur));
  }
}



/* ---------- DARK MODE ONLY ---------- */
@media (prefers-color-scheme: dark) {

  /* keep dark bg when Chrome/Safari autofill */
  input:-webkit-autofill,
  textarea:-webkit-autofill,
  select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #161b22 inset !important;
    box-shadow: 0 0 0 1000px #161b22 inset !important;
    -webkit-text-fill-color: #f1f5f9 !important;
    caret-color: #f1f5f9 !important;
    border: 1px solid #2a3240 !important;
  }

  input:-webkit-autofill:focus,
  textarea:-webkit-autofill:focus,
  select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #161b22 inset !important;
    box-shadow: 0 0 0 1000px #161b22 inset !important;
    border-color: #ffcc00 !important;
    outline: none !important;
  }

  /* only in dark mode */
  form,
  input,
  textarea,
  select,
  button {
    color-scheme: dark;
  }
}

/* ---------- LIGHT MODE (explicit) ---------- */
@media (prefers-color-scheme: light) {

  /* ensure autofill stays light */
  input:-webkit-autofill,
  textarea:-webkit-autofill,
  select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    box-shadow: 0 0 0 1000px #ffffff inset !important;
    -webkit-text-fill-color: #1f2937 !important;
    caret-color: #1f2937 !important;
    border: 1px solid #ccc !important;
  }

  form,
  input,
  textarea,
  select,
  button {
    color-scheme: light;
  }
}


/* =========================
   THEME TOKENS (ONE SOURCE)
   ========================= */
:root {
  /* Surfaces & text */
  --bg-elevated: #eef1f5;
  /* slightly darker gray so the quote card stands out on light bg */
  --text-primary: #1f2937;

  /* Accent / CTA */
  --accent: #FFCC00;
  --accent-ink: #0b0f14;
  /* text on yellow */

  /* Misc */
  --border-quote: #ffffff;
  /* left rule on the quote */
}

/* System dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-elevated: #171b22;
    /* a bit lighter than a typical dark page bg */
    --text-primary: #e5e7eb;
  }
}

/* Manual dark-mode class (overrides system if you use it) */
.dark {
  --bg-elevated: #171b22;
  --text-primary: #e5e7eb;
}

/* =========================
   PRESS SECTION
   ========================= */
.press-mention {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

/* Quote card */
.press-quote {
  display: block;
  text-align: center;
  font-style: italic;
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-left: 4px solid var(--border-quote);
  padding: 1.1rem 1.25rem;
  margin: 0 0 0.9rem;
  border-radius: 12px;
  text-wrap: balance;
  /* nicer line breaks */
  opacity: 1 !important;
  filter: none !important;
}

.press-quote strong {
  font-weight: 700;
}

/* Optional source line under the quote */
.press-source {
  color: var(--text-primary);
  opacity: .8;
  margin: 0 0 1rem;
  font-style: italic;
}

/* Primary CTA button */
.press-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .72rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: .2px;

  background: var(--accent);
  color: var(--accent-ink);
  border: 2px solid var(--accent);

  box-shadow: 0 10px 30px rgba(255, 204, 0, .35);
  transition: transform .06s ease, filter .2s ease, box-shadow .2s ease;
}

.press-link::after {
  content: "↗";
  font-size: .95em;
}

.press-link:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(255, 204, 0, .45);
}

.press-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  box-shadow:
    0 0 0 4px rgba(255, 204, 0, .35),
    0 14px 34px rgba(255, 204, 0, .45);
}

.press-link:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(255, 204, 0, .32);
}

/* Mobile niceties */
@media (max-width: 640px) {
  .press-mention {
    padding-inline: 1rem;
  }

  .press-link {
    width: 100%;
  }
}

.press-heading {
  text-transform: none;
  /* overrides your global uppercase on h2 */
  letter-spacing: .02em;
}

.brand-wapo {
  font-style: italic;
}


.quote-kicker {
  display: block;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: .35rem;
  opacity: .9;
}





/* Fixed layer for background figures */
html,
body {
  height: 100%;
}

body {
  isolation: isolate;
}

#universal-bg-figures {
  position: fixed;
  inset: 0;
  z-index: -1;
  /* behind all content */
  pointer-events: none;
  /* never blocks clicks */
}

/* Subtle premium gray that works on light/dark */
:root {
  --fig-stroke: #8e95a3;
  /* refine if needed */
  --fig-opacity: .30;
  /* .22–.36 to taste */
}

#universal-bg-figures .figure {
  position: absolute;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  opacity: 0;
  /* fade in via JS */
  transition: opacity 600ms ease, transform 700ms ease;
  color: var(--fig-stroke);
  filter: opacity(var(--fig-opacity)) drop-shadow(0 1px 0 rgba(0, 0, 0, .03));
}

/* keep strokes crisp while scaling */
#universal-bg-figures .figure svg * {
  vector-effect: non-scaling-stroke;
}

/* softer on small screens */
@media (max-width: 640px) {
  :root {
    --fig-opacity: .22;
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  #universal-bg-figures .figure {
    transition: opacity .3s ease;
  }
}




:root {
  --header-h: 72px;
}

/* fallback */

body {
  padding-top: var(--header-h);
}

.hero {
  height: calc(100vh - var(--header-h));
}

/* anchors don’t get hidden behind the fixed header */
[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* your shadow class from JS */
header.sticky-shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}