/* =========================
   The White Lotus — Custom CSS
   ========================= */

/* ---------- Brand & Background ---------- */

/* Dark */
:root[data-theme="dark"] {
  --brand: #fff9c4; /* soft lemon-amber */
  --brand-ink: #b45309; /* dark amber */
  --brand-yellow-light: #fef9c3; /* pale pastel yellow */
  --brand-yellow-warm: #fcd34d; /* soft golden yellow */  
  --bg-0: #7a6046; /* warm dawn brown */
  --bg-1: #4a392b; /* darker clay */
  --bg-0-transparent: rgba(122, 96, 70, 0.5); /* warm dawn brown, 70% opaque */
  --bg-1-transparent: rgba(74, 57, 43, 0.6); /* darker clay, 60% opaque */
  --glow-a: rgba(255, 249, 196, 0.4);
  --glow-b: rgba(255, 255, 224, 0.32);
  --text: #f3f3f3; /* pure white */
  --text-grey: #f3f3f3; /* pure white */
  --surface: rgba(255, 255, 255, 0.16);
  --surface-border: rgba(255, 255, 255, 0.28);
}

html,
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg-1);
}

h1 {
  font-weight: 400; /* bolder headings */
  letter-spacing: -0.02em;
  color: var(--text);
}

h4,
h6 {
  font-weight: 400; /* bolder headings */
  letter-spacing: -0.02em;
  color: var(--text);
}

h2 {
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--brand-yellow-light), var(--brand-yellow-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  color: transparent; /* fallback */
}

h3 {
  font-weight: 600; /* bolder headings */
  letter-spacing: -0.02em;
  color: var(--text);
}

h5 {
  font-weight: 400; /* bolder headings */
  letter-spacing: -0.02em;
  color: var(--text-grey);
  text-transform: uppercase;
}

p {
  text-align: justify;
  color: var(--text);
}

/* Page background: layered gradients with soft motion */
html[data-theme="dark"] body {
  background: radial-gradient(60% 50% at 10% -10%, var(--glow-a) 0%, transparent 60%), radial-gradient(70% 60% at 110% 20%, var(--glow-b) 0%, transparent 65%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1));
  background-attachment: fixed;
  background-size: 160% 160%, 160% 160%, 100% 100%;
  color-scheme: dark;
}
@media (prefers-reduced-motion: no-preference) {
  html[data-theme="dark"] body {
    animation: bg-pan 28s linear infinite;
  }
  @keyframes bg-pan {
    0% {
      background-position: 0% 0%, 100% 0%, 0 0;
    }
    50% {
      background-position: 100% 50%, 0% 50%, 0 0;
    }
    100% {
      background-position: 0% 0%, 100% 0%, 0 0;
    }
  }
}

html[data-theme="light"] body {
  background: radial-gradient(60% 50% at 10% -10%, var(--glow-a) 0%, transparent 60%), radial-gradient(70% 60% at 110% 20%, var(--glow-b) 0%, transparent 65%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1));
  background-attachment: fixed;
  background-size: 160% 160%, 160% 160%, 100% 100%;
  color-scheme: light;
  color: #111827; /* dark grey text */
}

@media (prefers-reduced-motion: no-preference) {
  html[data-theme="light"] body {
    animation: bg-pan 28s linear infinite;
  }
}

/* ---------- Base polish ---------- */
* {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--brand); /* this will use your amber from :root */
}

footer {
  margin: 0.25rem 0 0.5rem;
  color: #96a3b5;
}

/* Keep active link tint */
.nav a[aria-current="page"],
.header-nav a[aria-current="page"] {
  color: var(--brand);
}

/* --- Sticky glass header (already present in your CSS; keep it) --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(10, 15, 24, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}
.site-header.scrolled {
  background: rgba(10, 15, 24, 0.55);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* 3-col header grid: left spacer | centered logo | right actions */
.header-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0rem 0;
}
.nav-spacer {
  min-width: 0;
}
.nav-actions {
  display: flex;
  justify-content: flex-end;
}

/* Centered logo */
.brand-link {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-block: 0;
}
.brand-logo {
  display: block;
  height: 80px;
  width: auto;
}
@media (max-width: 640px) {
  .brand-logo {
    height: 80px;
  }
}
.brand-link:hover .brand-logo {
  filter: drop-shadow(0 1px 6px rgba(251, 191, 36, 0.2));
}

/* Hamburger button */
/* Menu button always visible and centered */
.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

/* Better hamburger icon */
.menu-btn svg {
  width: 64px;
  height: 64px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Fullscreen menu panel */
.menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* top logo, middle links, bottom footer */
  background: var(--bg-0-transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 200;
  padding: 2rem 1rem;
  text-align: center;
}
.menu-logo img {
  max-width: 150px;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

/* Menu panel visible */
.menu-panel[data-open="true"] {
  opacity: 1;
  transform: none;
}

/* Hide when closed */
.menu-panel[hidden] {
  display: none !important;
}

/* Links inside */
/* Links stacked vertically */
.menu-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.menu-list a {
  font-size: 1rem; /* a bit larger */
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.menu-list a:hover {
  color: var(--brand, #5cd2c4);
}

/* Footer copyright */
.menu-footer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2rem;
}

/* Overlay darken background */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 150;
}
.menu-overlay[data-open="true"] {
  opacity: 1;
}
.menu-overlay[hidden] {
  display: none !important;
}

/* Prevent background scroll */
.no-scroll {
  overflow: hidden;
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .menu-overlay,
  .menu-panel {
    transition: none !important;
  }
}

.menu-close {
  position: absolute;
  top: 1.7rem;
  right: 1.3rem;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
  z-index: 210;
}
.menu-close:hover {
  transform: scale(1.2);
  color: var(--brand, #5cd2c4);
}

/* Desktop override */
@media (min-width: 900px) {
  .menu-close {
    top: 2rem; /* push further down */
    right: 2rem; /* push further left */
    font-size: 2rem; /* slightly larger if you like */
  }
}

/* ---------- Badges / Buttons ---------- */
.badge {
  background: linear-gradient(90deg, var(--brand-yellow-light), var(--brand-yellow-warm));
  color: #111; /* dark text for contrast */
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-block;
  margin-bottom: 1.2rem;

  /* Luxury glow */
  box-shadow: 0 2px 8px rgba(252, 211, 77, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(252, 211, 77, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* ---------- HERO: image fills rounded panel with readable text ---------- */
.hero {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  margin: 1rem 0;
  min-height: clamp(360px, 73vh, 800px);
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 20px 40px rgba(0, 0, 0, 0.35);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.2s ease-out;
  transform: scale(1.03);
}
.hero-bg iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0.5rem;
  display: block;
}

/* Glow + readability film */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero::before {
  background: radial-gradient(30% 35% at 70% 40%, rgba(255, 255, 255, 0.1), transparent 60%);
  filter: blur(40px);
}
.hero::after {
  background: linear-gradient(90deg, rgba(10, 14, 20, 0.55) 0%, rgba(10, 14, 20, 0.4) 35%, rgba(10, 14, 20, 0.15) 65%, rgba(10, 14, 20, 0) 100%);
}

.map-hero::before,
.map-hero::after {
  display: none !important;
}

/* Foreground content */
.hero > .content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero h1 {
  color: #f3fbfa;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 14px rgba(251, 191, 36, 0), 0 0 28px rgba(251, 191, 36, 0);
}
.hero p {
  color: #e6f1f0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  .hero > .content {
    text-align: left;
    justify-self: end;
  }
}

/* ---------- Cards / Highlights ---------- */
.grid-3 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.grid-mosaic {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  grid-auto-flow: dense;
  width: 100%;            /* keep inside container */
  box-sizing: border-box; /* prevent overflow */
}

.grid-mosaic .card.wide {
  grid-column: span 1;
  min-width: 0; /* let it shrink if needed */
}

.grid-mosaic .card.tall {
  grid-row: span 1;
  min-height: 100%; /* keep height inside grid */
}

@media (min-width: 900px) {
  .grid-mosaic {
    grid-template-columns: 2fr 1fr; /* left wide, right narrow */
    grid-template-rows: 1fr 1fr;    /* enforce equal row heights */
    align-items: stretch;
  }

  .grid-mosaic .card.wide {
    grid-column: 1;
    grid-row: 1 / span 2;
    height: 100%; /* span full height */
  }

  .grid-mosaic .card.tall:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
    height: 100%; /* match row height */
  }

  .grid-mosaic .card.tall:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
    height: 100%; /* match row height */
  }
}



.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.card.tall {
  grid-row: span 2; /* makes it double height in grid */
}
.card.wide {
  grid-column: span 2; /* makes it double width */
}


/* ---------- Gallery Grid (slick + brand glow) ---------- */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 2rem 0;
}
.gallery-grid a {
  position: relative;
  display: block;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.05) 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-grid a:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55), 0 0 24px rgba(251, 191, 36, 0);
}
.gallery-grid a:hover img {
  transform: scale(1.08);
}
.gallery-grid a:hover::after {
  opacity: 1;
}
.gallery-grid a span.caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
.gallery-grid a:hover span.caption {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- PhotoSwipe (lightbox) theming ---------- */
.pswp__bg {
  background: rgba(8, 12, 18, 0.96);
}
.pswp__counter,
.pswp__button,
.pswp__button--arrow {
  color: #eafbf9;
}
.pswp__dynamic-caption {
  color: #eafbf9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ===== Neutralize default Pico blues (links & forms) ===== */

/* Links: inherit text color, no underline by default */
a,
a:visited {
  color: inherit;
  text-decoration: none;
}

/* Optional subtle hover underline (keeps your palette) */
a:hover {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
  text-decoration-color: currentColor;
}

/* If you ever want a branded/amber link, use .link-brand */
a.link-brand {
  color: var(--brand);
}
a.link-brand:hover {
  text-decoration-color: var(--brand);
}

/* Form controls: remove blue focus ring, keep your dark style */
input,
select,
textarea,
button {
  font-family: inherit;
  color: var(--text);
}

/* Inputs: neutral background/border */
input,
select,
textarea {
  background: rgba(255, 255, 255, 0.04); /* dark theme: soft panel */
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.5rem;
  padding: 0.6rem 0.8rem;
}

/* Focus: no blue glow, just a slightly brighter border */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none; /* kill Pico focus shadow */
}

/* Buttons/links focus: no blue glow */
button:focus,
a:focus {
  outline: none;
  box-shadow: none;
}

/* Checkbox / radio: ensure no system blue; use brand or text */
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--brand); /* or use var(--text) if you want fully neutral */
}

/* Remove any default underline color mismatch under dark theme */
html[data-theme="dark"] a:hover {
  text-decoration-color: currentColor;
}

/* =========================
   Clean Neutral Buttons
   ========================= */
/* Override Pico .contrast buttons */
button.contrast,
a.contrast[role="button"],
input[type="submit"].contrast,
input[type="reset"].contrast,
input[type="button"].contrast {
  background-color: #e5e7eb !important; /* same neutral background */
  color: #36454f !important; /* darker grey text */
  border: none !important;
  text-decoration: none !important;
  box-shadow: none !important; /* kill Pico glow */
  font-weight: 500;
}

/* Hover state */
button.contrast:hover,
a.contrast[role="button"]:hover,
input[type="submit"].contrast:hover,
input[type="reset"].contrast:hover,
input[type="button"].contrast:hover {
  background-color: #d1d5db !important; /* slightly darker grey */
  color: #111 !important; /* strong dark text */
  text-decoration: none !important;
}
/* =========================
   Feature media card
   ========================= */

/* Image always on top, text below */
.feature-item {
  display: flex;
  flex-direction: column; /* stack vertically */
  align-items: stretch;
  gap: 1rem;
  padding: 1rem;
  border-radius: 6px;
  background: var(--surface, rgba(255, 255, 255, 0.04));
  border: 1px solid var(--surface-border, rgba(255, 255, 255, 0.08));
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card.feature-item:hover,
.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.feature-item .media {
  width: 100%;
}

.feature-item .media picture {
  display: block;
  width: 100%;
}

.feature-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* keep nice wide crop */
  object-fit: cover;
  border-radius: 5px;
}

.feature-item .content {
  margin-top: 0.75rem;
  overflow: visible; /* don’t clip text */
  display: block; /* normal flow */
}

/* Typography */
.feature-item .content h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature-item .content p {
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

/* Scroll-reveal for sections/cards */
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
}
.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.in {
    opacity: 1;
    transform: none !important;
    transition: none !important;
  }
}

/* CTA micro-interaction */
.btn-glow {
  box-shadow: 0 6px 22px rgba(251, 191, 36, 0);
  transform: translateY(0) scale(1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-glow:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0);
}

.citation {
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7); /* softer tone */
  margin-top: 0.5rem;
}

.social-buttons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center; /* center horizontally */
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  color: #fff !important; /* always white */
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.social-btn:visited {
  color: #fff !important; /* prevent grey visited state */
}

.social-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
  display: block;
  transform: scale(0.85); /* shrink the drawing */
  transform-origin: center; /* keep centered */
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.1); /* subtle hover bg */
  color: var(--brand); /* amber accent on hover */
  text-decoration: none !important;
}

@media (max-width: 900px) {
  .social-btn {
    width: 48px; /* a bit larger than 44px */
    height: 48px;
    border-radius: 50%;
    justify-content: center;
    padding: 0; /* no text padding */
  }
  .social-btn span {
    display: none;
  }
}

/* === Luxury Upgrades Override Layer === */

/* Hero overlay + zoom */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.hero-bg img {
  transform: scale(1.05);
  transition: transform 1s ease;
}
.hero:hover .hero-bg img {
  transform: scale(1.1);
}

/* Card upgrade */
.card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(252, 211, 77, 0.15);
}
/* .card .content h3 {
  background: linear-gradient(90deg, #fcd34d, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */

/* Gallery hover */
.gallery-grid img {
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.gallery-grid a:hover img {
  transform: scale(1.15);
}
.gallery-grid a span.caption {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-grid a:hover span.caption {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn-glow {
  border: 1px solid var(--brand);
  transition: all 0.3s ease;
}
.btn-glow:hover {
  background: linear-gradient(90deg, var(--brand-yellow-light), var(--brand-yellow-warm));
  color: #111;
  box-shadow: 0 0 20px rgba(252, 211, 77, 0.35);
  transform: translateY(-2px);
}

/* Reveal stagger */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Subtle noise texture with parallax */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("/assets/img/noise-texture.webp");
  background-size: 300px 300px; /* tiling size */
  background-repeat: repeat; /* ensure texture tiles */
  background-position: 0 var(--texture-pos, 0); /* hook for parallax */
  opacity: 0.2; /* keep very subtle, 0.04–0.06 is good */
  pointer-events: none;
  z-index: -1; /* sits behind everything */
  will-change: background-position;
}

/* Give body relative z-index to hold background */
body {
  position: relative;
  z-index: 1;
}

/* Texture sits behind */
body::before {
  z-index: -1;
  will-change: background-position;
}

section.reveal {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
section.reveal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-yellow-warm), transparent);
  opacity: 0.4;
}

