/* ==========================================================================
   X-plosive Pyro Events — donker cinematisch thema
   Primair #e94f1b · secundair #f39200 · achtergrond #0c0a0e
   ========================================================================== */

:root {
  --primary: #e94f1b;
  --secondary: #f39200;
  --accent: #f4a311;
  --bg: #0c0a0e;
  --bg-elev: #141018;
  --card: rgba(255, 255, 255, .045);
  --card-border: rgba(255, 255, 255, .09);
  --text: #b6b0bd;
  --heading: #f6f3f8;
  --muted: #8d8794;
  --radius: 14px;
  --glow: 0 0 32px rgba(233, 79, 27, .35);
  --shadow: 0 10px 34px rgba(0, 0, 0, .45);
  --grad: linear-gradient(120deg, var(--primary), var(--secondary));
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.75em;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--secondary); text-decoration: none; transition: color .18s ease; }
a:hover { color: #ffd9a0; }

h1, h2, h3, h4 {
  color: var(--heading);
  font-weight: 800;
  line-height: 1.18em;
  margin-bottom: .55em;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(38px, 6vw, 68px); }
h2 { font-size: clamp(28px, 3.6vw, 42px); }
h3 { font-size: 19px; }

p { margin-bottom: 1.25em; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

::selection { background: var(--primary); color: #fff; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}

#header.scrolled {
  background: rgba(12, 10, 14, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, .07);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

.logo img { width: 150px; height: auto; filter: drop-shadow(0 2px 10px rgba(0,0,0,.5)); }

.main-nav ul { list-style: none; display: flex; align-items: center; gap: 2px; }

.main-nav > ul > li { position: relative; }

.main-nav > ul > li > a {
  display: block;
  padding: 30px 14px;
  color: #e9e4ee;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .5);
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.current > a { color: var(--secondary); }

.main-nav > ul > li.current > a { position: relative; }
.main-nav > ul > li.current > a::before {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 22px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

.main-nav li.has-sub > a::after {
  content: '';
  display: inline-block;
  margin-left: 7px;
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}

.main-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 8px;
  min-width: 230px;
  background: rgba(18, 14, 22, .96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  overflow: hidden;
  flex-direction: column;
  box-shadow: var(--shadow);
  padding: 6px;
}

.main-nav li:hover > .sub-menu,
.main-nav li.open > .sub-menu { display: flex; }

.main-nav .sub-menu li { width: 100%; }

.main-nav .sub-menu a {
  display: block;
  padding: 11px 16px;
  font-size: 14px;
  color: var(--text);
  border-radius: 8px;
}

.main-nav .sub-menu a:hover {
  background: rgba(233, 79, 27, .14);
  color: #ffc37a;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 20;
}

.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  margin: 6px 0;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* --------------------------------------------------------------------------
   Homepage-hero (fullscreen + vuurwerk-canvas)
   -------------------------------------------------------------------------- */

.hero-home {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-size: cover;
  background-position: center 30%;
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 90% 70% at 50% 105%, rgba(233, 79, 27, .32), transparent 60%),
    linear-gradient(180deg, rgba(12, 10, 14, .68) 0%, rgba(12, 10, 14, .45) 45%, var(--bg) 100%);
}

#fireworks-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-content { padding: 140px 28px 100px; max-width: 920px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #ffc37a;
  background: rgba(233, 79, 27, .16);
  border: 1px solid rgba(243, 146, 0, .35);
  border-radius: 999px;
  padding: 9px 22px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}

.hero-content h1 {
  margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .55);
}

.hero-content h1 .grad {
  background: linear-gradient(120deg, #ff8a4d, var(--secondary) 55%, #ffd27a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: #d9d3de;
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 14px;
}

.scroll-hint::after {
  content: '';
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--secondary);
  animation: scrollhint 1.8s ease-in-out infinite;
}

@keyframes scrollhint {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* --------------------------------------------------------------------------
   Paginakop (subpagina's)
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}

.page-hero .hero-bg.lowres { filter: blur(9px) saturate(1.15); transform: scale(1.08); }

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 110%, rgba(233, 79, 27, .28), transparent 60%),
    linear-gradient(180deg, rgba(12, 10, 14, .55) 0%, rgba(12, 10, 14, .35) 50%, var(--bg) 100%);
}

.page-hero .container { padding-top: 150px; padding-bottom: 46px; }

.page-hero .crumb {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffc37a;
  margin-bottom: 10px;
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  margin-bottom: 0;
  text-shadow: 0 4px 26px rgba(0, 0, 0, .6);
}

/* --------------------------------------------------------------------------
   Secties
   -------------------------------------------------------------------------- */

.section { padding: 96px 0; position: relative; }

.section-title { text-align: center; margin-bottom: 12px; }

.section-lead {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
}

.divider {
  width: 64px;
  height: 3px;
  border: 0;
  border-radius: 3px;
  background: var(--grad);
  margin: 18px auto 56px;
  box-shadow: var(--glow);
}

.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

/* Service-kaarten */

.teaser {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}

.teaser::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(243, 146, 0, .12), transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.teaser:hover {
  transform: translateY(-8px);
  border-color: rgba(243, 146, 0, .45);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .5), var(--glow);
}

.teaser:hover::after { opacity: 1; }

.teaser .teaser-img { display: block; overflow: hidden; }

.teaser .teaser-img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .45s ease;
}

.teaser:hover .teaser-img img { transform: scale(1.07); }

.teaser h3 { margin: 22px 24px 6px; font-size: 21px; }
.teaser h3 a { color: var(--heading); }
.teaser h3 a:hover { color: #ffc37a; }
.teaser p { margin: 0 24px 14px; color: var(--muted); }

.read-more {
  margin: 0 24px 24px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary);
}

.read-more:hover { color: #ffd9a0; }

/* Waarom bij ons — parallax */

.section-why {
  background-image:
    radial-gradient(ellipse 100% 80% at 50% 120%, rgba(233, 79, 27, .28), transparent 55%),
    linear-gradient(rgba(10, 8, 12, .82), rgba(10, 8, 12, .82)),
    url('../img/header-waarom-wij.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.iconboxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 12px;
}

.iconbox {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(8px);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.iconbox:hover {
  transform: translateY(-5px);
  border-color: rgba(243, 146, 0, .4);
  background: rgba(255, 255, 255, .075);
}

.iconbox .icon {
  flex: 0 0 52px;
  height: 52px;
  background: var(--grad);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 18px rgba(233, 79, 27, .4);
}

.iconbox .icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.iconbox h3 { font-size: 16px; margin-bottom: .4em; }
.iconbox p { margin-bottom: 0; font-size: 14.5px; color: var(--muted); }

/* Testimonial */

.testimonial {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 56px 58px 44px;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  font-size: 120px;
  line-height: 1;
  font-family: Georgia, serif;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  height: 60px;
  overflow: hidden;
}

.testimonial .avatar {
  width: 92px; height: 92px;
  border-radius: 50%;
  margin: 0 auto 24px;
  object-fit: cover;
  border: 3px solid rgba(243, 146, 0, .6);
  box-shadow: var(--glow);
}

.testimonial blockquote {
  font-style: italic;
  font-size: 18px;
  line-height: 1.85em;
  margin-bottom: 22px;
  color: #d5cfda;
}

.testimonial .name {
  color: var(--heading);
  font-weight: 800;
  letter-spacing: .5px;
}

.testimonial .name::before {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: var(--grad);
  margin: 0 auto 14px;
}

/* CTA-band */

.cta-band {
  text-align: center;
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(233, 79, 27, .22), transparent 60%),
    var(--bg-elev);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.cta-band h2 { margin-bottom: 10px; }
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 34px; }

/* --------------------------------------------------------------------------
   Contentpagina's
   -------------------------------------------------------------------------- */

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 60px;
  padding: 72px 0 96px;
}

.content h2 { font-size: clamp(24px, 2.6vw, 32px); margin-top: 1.5em; }
.content h2:first-child { margin-top: 0; }

.content .inline-img {
  margin: 12px 0 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.content .inline-img img { width: 100%; }

.content .inline-img.right {
  float: right;
  margin: 6px 0 22px 28px;
  max-width: 340px;
}

.sidebar > div {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px;
  position: sticky;
  top: 108px;
}

.sidebar h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--card-border);
}

.sidebar ul { list-style: none; }

.sidebar li a {
  display: block;
  padding: 11px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  color: var(--text);
  transition: color .15s ease, padding-left .2s ease;
}

.sidebar li:last-child a { border-bottom: none; }

.sidebar li a:hover { color: #ffc37a; padding-left: 10px; }

.sidebar li.current a {
  color: var(--secondary);
  font-weight: 700;
}

/* Knoppen */

.btn {
  display: inline-block;
  background: var(--grad);
  color: #fff;
  padding: 15px 34px;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .4px;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(233, 79, 27, .38);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(233, 79, 27, .5);
  filter: brightness(1.08);
}

.btn:disabled { opacity: .6; cursor: default; transform: none; }

.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  border: 1.5px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .4px;
  backdrop-filter: blur(6px);
  transition: border-color .2s ease, background .2s ease, transform .22s ease;
}

.btn-ghost:hover {
  color: #fff;
  border-color: var(--secondary);
  background: rgba(243, 146, 0, .14);
  transform: translateY(-3px);
}

/* Gallerij-grid */

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin: 34px 0;
}

.gallery-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-grid a:hover img { transform: scale(1.06); }

.gallery-grid .caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(6, 4, 8, .85));
  color: #fff;
  padding: 44px 20px 16px;
  font-weight: 700;
}

/* Placeholder */

.placeholder-img {
  aspect-ratio: 3 / 2;
  background:
    radial-gradient(ellipse 70% 70% at 30% 20%, rgba(255, 255, 255, .16), transparent 55%),
    linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .95);
  font-weight: 700;
  letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  padding: 72px 0 96px;
}

.contact-grid form {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 34px;
}

.form-field { margin-bottom: 20px; }

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  font: inherit;
  color: var(--heading);
  background: rgba(255, 255, 255, .05);
  transition: border-color .15s ease, box-shadow .15s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(243, 146, 0, .22);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-status { margin-top: 16px; font-weight: 700; }
.form-status.success { color: #7ddb8a; }
.form-status.error { color: #ff8a65; }

.contact-info address { font-style: normal; margin-bottom: 1.2em; }
.contact-info strong {
  color: var(--heading);
  display: block;
  margin-bottom: 2px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

#footer {
  background: #08060a;
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 68px 0 56px;
  font-size: 15px;
  position: relative;
}

#footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(233, 79, 27, .6), rgba(243, 146, 0, .6), transparent);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
}

#footer h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

#footer address { font-style: normal; color: var(--muted); }
#footer p { color: var(--muted); }

.fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #1877f2;
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, filter .2s ease;
}

.fb-btn:hover { color: #fff; transform: translateY(-2px); filter: brightness(1.12); }

/* Kalender */

.calendar { width: 100%; border-collapse: collapse; }
.calendar caption { font-weight: 800; color: var(--heading); padding-bottom: 10px; }
.calendar th { font-size: 11px; color: var(--muted); padding: 4px; text-align: center; letter-spacing: 1px; }
.calendar td { text-align: center; padding: 5px 4px; font-size: 13.5px; color: var(--text); }
.calendar td.today {
  background: var(--grad);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(233, 79, 27, .45);
}

/* Zoekveld */

.search-form { display: flex; }

.search-form input {
  flex: 1;
  min-width: 0;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-right: none;
  border-radius: 999px 0 0 999px;
  font: inherit;
  color: var(--heading);
  background: rgba(255, 255, 255, .05);
}

.search-form input:focus { outline: none; border-color: var(--secondary); }

.search-form button {
  background: var(--grad);
  color: #fff;
  border: none;
  padding: 0 20px;
  border-radius: 0 999px 999px 0;
  cursor: pointer;
  font-size: 15px;
}

#socket {
  background: #060409;
  border-top: 1px solid rgba(255, 255, 255, .05);
  font-size: 13px;
  color: var(--muted);
  padding: 18px 0;
}

/* Scroll-naar-boven */

#to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 19px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .2s ease;
  box-shadow: 0 6px 20px rgba(233, 79, 27, .45);
  z-index: 400;
}

#to-top.visible { opacity: 1; pointer-events: auto; }
#to-top:hover { transform: translateY(-3px); }

/* --------------------------------------------------------------------------
   Scroll-reveal animaties
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2, .65, .3, 1), transform .7s cubic-bezier(.2, .65, .3, 1);
}

.reveal.in { opacity: 1; transform: none; }

.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .08s; }
.reveal:nth-child(5) { transition-delay: .16s; }
.reveal:nth-child(6) { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 989px) {
  .nav-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(12, 10, 14, .97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 24px 40px rgba(0, 0, 0, .5);
  }

  #header { background: rgba(12, 10, 14, .82); backdrop-filter: blur(14px); }

  .main-nav.open { display: block; }

  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }

  .main-nav > ul > li > a {
    padding: 15px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }

  .main-nav > ul > li.current > a::before { display: none; }

  .main-nav .sub-menu {
    position: static;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: rgba(255, 255, 255, .04);
    padding: 0;
  }

  .main-nav .sub-menu a { padding: 13px 44px; border-radius: 0; }

  .cols-3, .iconboxes, .footer-cols { grid-template-columns: 1fr; }
  .cols-2, .gallery-grid, .contact-grid { grid-template-columns: 1fr; }

  .page-layout { grid-template-columns: 1fr; }

  .sidebar > div { position: static; }

  .section { padding: 64px 0; }

  .section-why { background-attachment: scroll; }

  .content .inline-img.right { float: none; max-width: 100%; margin: 12px 0 26px; }

  .testimonial { padding: 44px 26px 36px; }

  .page-hero { min-height: 38vh; }
  .page-hero .container { padding-top: 130px; }
}
