:root {
  --black: #050505;
  --charcoal: #111315;
  --charcoal-2: #181b1e;
  --steel: #aeb4b8;
  --white: #f7f7f2;
  --muted: #c9c9c2;
  --red: #d0161f;
  --red-dark: #850a10;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-dark {
  position: relative;
  background:
    linear-gradient(135deg, rgba(208, 22, 31, 0.11), transparent 28%),
    linear-gradient(180deg, var(--charcoal), var(--black));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(16px, 4vw, 44px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.45));
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(208, 22, 31, 0.8);
  background: rgba(208, 22, 31, 0.14);
  color: var(--white);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.brand-copy,
.nav,
.header-cta {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.2vw, 28px);
  color: var(--muted);
}

.nav a,
.header-cta {
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav a:hover {
  color: var(--white);
}

.header-cta {
  padding: 11px 18px;
  border: 1px solid rgba(208, 22, 31, 0.8);
  color: var(--white);
}

.header-cta:hover {
  box-shadow: 0 0 24px rgba(208, 22, 31, 0.45);
}

.hero {
  min-height: 100vh;
  overflow: hidden;
  padding: 132px 0 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.78) 36%, rgba(5, 5, 5, 0.24) 68%, rgba(5, 5, 5, 0.48) 100%),
    radial-gradient(circle at 78% 48%, rgba(130, 117, 55, 0.24), transparent 36%),
    url("assets/dead-eye-garden-route-logo.png") right 4vw center / min(56vw, 780px) auto no-repeat,
    linear-gradient(135deg, #050505, #111513 54%, #050505);
  filter: saturate(0.98) contrast(1.04);
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 34% 36%, rgba(208, 22, 31, 0.26), transparent 25%),
    linear-gradient(180deg, transparent 65%, var(--black));
}

.scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 100% 10px;
  opacity: 0.22;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100vh - 220px);
  grid-template-columns: minmax(340px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  font-size: clamp(3.8rem, 6.7vw, 7rem);
}

h2 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.hero-subtitle {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
}

.hero-actions,
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-actions {
  margin-top: 34px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 28px rgba(208, 22, 31, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 0 34px rgba(208, 22, 31, 0.54);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
}

.mission-card {
  align-self: end;
  justify-self: end;
  max-width: 335px;
  position: relative;
  margin-bottom: clamp(24px, 7vh, 78px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 12, 14, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mission-card::before,
.mission-card::after {
  position: absolute;
  width: 42px;
  height: 42px;
  content: "";
}

.mission-card::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}

.mission-card::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(208, 22, 31, 0.9);
}

.mission-kicker {
  display: inline-block;
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mission-card h2 {
  font-size: 2.1rem;
}

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

.mission-card dl {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
}

.mission-card div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.mission-card dt {
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mission-card dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.feature-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.78);
}

.feature-bar span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

section:not(.hero) {
  padding: clamp(78px, 10vw, 130px) 0;
}

.split,
.booking-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 7vw, 86px);
  align-items: start;
}

.about {
  background:
    linear-gradient(90deg, rgba(208, 22, 31, 0.08), transparent 36%),
    var(--black);
}

.about-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.about-copy p:first-child {
  margin-top: 0;
  color: var(--white);
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
}

.centered {
  margin: 0 auto 42px;
  text-align: center;
}

.service-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.quote-card,
.booking-form,
.contact-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.service-card {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.08);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.service-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.12);
}

.service-content {
  padding: 24px;
}

.tag {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-content p:last-child,
.booking-copy p,
.quote-card blockquote,
.faq p,
.contact-list {
  color: var(--muted);
}

.booking {
  background:
    linear-gradient(rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.94)),
    url("https://images.unsplash.com/photo-1553986782-d0163d3653d7?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
}

.booking-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.booking-options span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.whatsapp-strip {
  display: inline-flex;
  padding: 15px 18px;
  border-left: 4px solid var(--red);
  background: rgba(208, 22, 31, 0.12);
  font-weight: 800;
}

.booking-form {
  padding: clamp(22px, 4vw, 34px);
  background: rgba(13, 15, 17, 0.92);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  outline: 0;
  padding: 14px 14px;
}

input:focus,
textarea:focus {
  border-color: rgba(208, 22, 31, 0.9);
  box-shadow: 0 0 0 3px rgba(208, 22, 31, 0.2);
}

textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--steel);
  font-size: 0.86rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(0.86) contrast(1.08);
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-grid .tall {
  grid-row: span 2;
  height: 532px;
}

.testimonials {
  background:
    linear-gradient(180deg, rgba(208, 22, 31, 0.08), transparent 36%),
    var(--black);
}

.quote-card {
  padding: 28px;
}

.quote-card blockquote {
  margin: 0;
  font-size: 1.02rem;
}

.quote-card figcaption {
  margin-top: 22px;
  color: var(--white);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--white);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact {
  background: var(--black);
}

.contact-panel {
  padding: clamp(26px, 4vw, 38px);
}

.contact-list {
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-list span,
.hours strong {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

address {
  font-style: normal;
}

.hours p {
  margin: 6px 0 0;
  color: var(--muted);
}

.map-frame {
  min-height: 520px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 520px;
  border: 0;
  filter: grayscale(0.75) invert(0.9) contrast(0.95);
}

.footer {
  border-top: 1px solid var(--line);
  background: #030303;
  color: var(--steel);
  padding: 24px 0;
  font-size: 0.84rem;
}

.footer-inner {
  justify-content: space-between;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #1faa59;
  color: white;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  .brand-copy,
  .nav {
    display: none;
  }

  .hero-grid,
  .split,
  .booking-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.52) 36%, rgba(5, 5, 5, 0.96) 68%),
      radial-gradient(circle at 50% 18%, rgba(130, 117, 55, 0.22), transparent 38%),
      url("assets/dead-eye-garden-route-logo.png") center 78px / min(92vw, 620px) auto no-repeat,
      linear-gradient(135deg, #050505, #141817 54%, #050505);
  }

  .hero-grid {
    min-height: auto;
    padding-top: min(66vw, 420px);
    padding-bottom: 60px;
  }

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

  .mission-card {
    justify-self: start;
    margin-bottom: 0;
  }

  .feature-bar,
  .service-grid,
  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mission-card {
    max-width: 520px;
  }

  .gallery-grid .wide,
  .gallery-grid .tall {
    grid-column: span 1;
    grid-row: span 1;
    height: 260px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 0.72rem;
  }

  h1 {
    font-size: 4.3rem;
  }

  .hero-actions,
  .form-row,
  .feature-bar,
  .service-grid,
  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .feature-bar span {
    min-height: 58px;
  }

  .service-card img,
  .gallery-grid img,
  .gallery-grid .tall {
    height: 240px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 380px;
    height: 380px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
  }
}
