:root {
  --bg: #f7f4ed;
  --bg-soft: #fffaf0;
  --card: #ffffff;
  --text: #17201a;
  --muted: #687267;
  --brand: #2f6b4f;
  --brand-dark: #1f4b38;
  --brand-soft: #e2f0e8;
  --accent: #d89a3d;
  --border: rgba(23, 32, 26, 0.12);
  --shadow: 0 24px 80px rgba(22, 35, 26, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

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

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 237, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.top-strip {
  background: var(--brand-dark);
  color: white;
  font-size: 0.88rem;
}

.top-strip-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-strip a {
  font-weight: 900;
}

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: white;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 0 12px 28px rgba(47, 107, 79, 0.25);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links .nav-call {
  background: var(--brand);
  color: white;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 84px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(216, 154, 61, 0.22), transparent 32%),
    radial-gradient(circle at right, rgba(47, 107, 79, 0.18), transparent 36%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.hero-media {
  display: grid;
  gap: 20px;
}

.hero-carousel {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: #122018;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 20, 15, 0.85), rgba(12, 20, 15, 0.18) 45%, rgba(12, 20, 15, 0.04));
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: white;
}

.hero-slide-overlay span,
.service-image-overlay span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-slide-overlay strong,
.service-image-overlay strong {
  display: block;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 1.8rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: 0.2s ease;
}

.hero-control:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-control.prev {
  left: 18px;
}

.hero-control.next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  padding: 0;
  transition: 0.2s ease;
}

.hero-dots button.active {
  width: 30px;
  background: white;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.hero-copy p,
.section-heading p,
.booking-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

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

.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 14px 34px rgba(47, 107, 79, 0.26);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

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

.full {
  width: 100%;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.trust-row div,
.booking-tips div {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}

.trust-row strong,
.trust-row span,
.booking-tips strong,
.booking-tips span,
.booking-tips a {
  display: block;
}

.trust-row span,
.booking-tips span {
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-tips a {
  color: var(--brand);
  font-weight: 900;
}

.hero-card,
.booking-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.quick-book-card {
  margin-top: -64px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(14px);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 0.86rem;
  margin-bottom: 22px;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(47, 107, 79, 0.6);
  animation: pulse 1.7s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(47, 107, 79, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(47, 107, 79, 0);
  }
}

.phone-link {
  display: block;
  text-align: center;
  color: var(--brand);
  font-weight: 900;
  margin-top: 14px;
}

.mini-contact {
  margin-top: 22px;
  padding: 16px;
  border-radius: 18px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.mini-contact span,
.mini-contact strong {
  display: block;
}

.mini-contact span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

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

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

.service-card {
  perspective: 1200px;
  min-height: 300px;
  cursor: pointer;
  outline: none;
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-inner,
.service-card:focus-visible .service-card-inner {
  transform: rotateY(180deg);
}

.service-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.service-front {
  background: var(--card);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover .service-front,
.service-card:focus-visible .service-front {
  box-shadow: var(--shadow);
  border-color: rgba(47, 107, 79, 0.28);
}

.service-back {
  transform: rotateY(180deg);
}

.service-image-card {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.service-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 20, 15, 0.82), rgba(12, 20, 15, 0.18) 52%, rgba(12, 20, 15, 0.05));
}

.service-image-overlay {
  position: relative;
  z-index: 2;
  color: white;
  padding: 24px;
}

.service-image-overlay em {
  display: inline-block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
}

.card-link {
  margin-top: auto;
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 900;
}

.icon {
  font-size: 1.45rem;
  display: inline-block;
  margin-bottom: 20px;
}

.service-card p,
.timeline-item p,
.faq-answer p,
.site-footer p {
  color: var(--muted);
}

.process-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.timeline-item span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--brand);
  color: white;
  font-weight: 900;
  margin-bottom: 18px;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 130px;
}

.booking-tips {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.progress-wrap {
  margin-bottom: 26px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 900;
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.progress-bar {
  height: 10px;
  background: #e7e2d7;
  border-radius: 999px;
  overflow: hidden;
}

#progressFill {
  height: 100%;
  width: 25%;
  background: var(--brand);
  border-radius: inherit;
  transition: width 0.25s ease;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeUp 0.24s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

label {
  display: block;
  font-weight: 900;
  margin: 16px 0 7px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 14px;
  background: #fffdf7;
  color: var(--text);
  outline: none;
  transition: 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(47, 107, 79, 0.12);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.radio-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fffdf7;
  cursor: pointer;
  transition: 0.2s ease;
}

.radio-card:hover {
  border-color: rgba(47, 107, 79, 0.32);
  background: white;
}

.radio-card input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--brand);
}

.radio-card small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

.dynamic-note,
.summary-box {
  background: var(--brand-soft);
  border: 1px solid rgba(47, 107, 79, 0.16);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--brand-dark);
  font-weight: 800;
  margin-top: 18px;
}

.summary-box {
  background: #fffaf0;
  color: var(--text);
}

.summary-box h4 {
  margin: 0 0 10px;
}

.summary-box ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.form-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 24px;
}

#prevBtn,
#submitBtn {
  display: none;
}

.form-disclaimer {
  color: var(--muted);
  font-size: 0.84rem;
  margin: 16px 0 0;
}

.success-message {
  display: none;
  text-align: center;
  padding: 40px 10px;
}

.success-message span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 22px;
  background: var(--brand);
  color: white;
  font-size: 2rem;
  font-weight: 900;
}

.success-message a {
  color: var(--brand);
  font-weight: 900;
}

.contact-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-card span,
.contact-card strong,
.contact-card a {
  display: block;
}

.contact-card span {
  color: var(--muted);
  font-weight: 900;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--brand);
  font-weight: 900;
  font-size: 1.2rem;
}

.contact-card-sub {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-page-section .contact-grid > .section-heading {
  grid-column: 1 / -1;
  max-width: 560px;
}

.contact-booking-card {
  grid-column: 1 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.contact-region-tags {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(20px, 3vw, 28px);
  align-items: center;
}

.contact-quick-actions .btn {
  min-height: 48px;
}

.service-assurance-row strong a {
  color: inherit;
}

@media (max-width: 1020px) {
  .contact-booking-card {
    grid-column: 1 / -1;
  }
}

.faq-section {
  background: var(--bg);
}

.faq-list {
  max-width: 860px;
}

.faq-item {
  margin-top: 10px;
}

.faq-question {
  width: 100%;
  border: 1px solid var(--border);
  background: white;
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
  color: var(--text);
  transition: 0.2s ease;
}

.faq-question:hover {
  border-color: rgba(47, 107, 79, 0.35);
  box-shadow: 0 14px 34px rgba(22, 35, 26, 0.08);
}

.faq-question span {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 900;
}

.faq-answer {
  display: none;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  padding: 18px 20px;
  margin-top: -2px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.faq-item.active .faq-question {
  border-radius: 18px 18px 0 0;
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

.faq-item.active .faq-question span {
  background: white;
  color: var(--brand);
}

.faq-item.active .faq-answer {
  display: block;
}

.site-footer {
  background: #152019;
  color: white;
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  margin-top: 8px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.66);
}

.mobile-call-button {
  display: none;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-carousel {
    min-height: 500px;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 76px;
  }

  .top-strip-inner {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    padding: 7px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 114px;
    left: 16px;
    right: 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .booking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }

  .service-grid,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .quick-book-card {
    margin-top: 0;
  }

  .hero-carousel {
    min-height: 420px;
  }

  .service-card {
    min-height: 270px;
  }

  .service-card-inner {
    min-height: 270px;
  }

  .mobile-call-button {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 999px;
    background: var(--brand);
    color: white;
    font-weight: 900;
    box-shadow: 0 18px 44px rgba(22, 35, 26, 0.28);
  }
}

@media (max-width: 620px) {
  .section {
    padding: 68px 0;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .service-grid,
  .timeline,
  .field-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-carousel {
    min-height: 360px;
    border-radius: 24px;
  }

  .hero-slide-overlay,
  .service-image-overlay {
    padding: 18px;
  }

  .hero-control {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
  }
}


/* Desktop layout fix: prevent hero carousel, overlay text and booking card from overlapping */
@media (min-width: 901px) {
  .hero {
    padding-top: 72px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
    align-items: start;
    gap: 36px;
  }

  .hero-media {
    min-width: 0;
  }

  .hero-carousel {
    min-height: 500px;
  }

  .quick-book-card {
    margin-top: 20px;
  }

  .hero-slide-overlay {
    left: 24px;
    right: 24px;
    bottom: 54px;
    max-width: calc(100% - 48px);
  }

  .hero-dots {
    bottom: 22px;
  }

  .hero-slide-overlay strong {
    max-width: 92%;
  }
}

/* Logo image styling */
.logo-mark {
  background: white;
  overflow: hidden;
  padding: 4px;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/* Custom animation upgrades */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  z-index: 200;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  box-shadow: 0 0 22px rgba(216, 154, 61, 0.55);
  transform-origin: left center;
}

.hero-orbit-svg {
  position: absolute;
  right: -260px;
  top: -210px;
  width: 760px;
  height: 760px;
  opacity: 0.18;
  pointer-events: none;
}

.hero-orbit-path {
  fill: none;
  stroke: var(--brand);
  stroke-width: 2;
  stroke-dasharray: 18 18;
  animation: orbitDash 24s linear infinite;
}

.orbit-two {
  stroke: var(--accent);
  animation-duration: 32s;
  animation-direction: reverse;
}

@keyframes orbitDash {
  to {
    stroke-dashoffset: -720;
  }
}

.hero-copy,
.hero-media {
  transition: transform 0.18s linear;
}

.hero-carousel,
.booking-card,
.contact-card,
.impact-card {
  will-change: transform;
}

.process-infographic {
  margin-top: 30px;
  background:
    radial-gradient(circle at 10% 20%, rgba(216, 154, 61, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.process-map {
  position: relative;
  min-height: 280px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(226, 240, 232, 0.74), rgba(255, 250, 240, 0.9));
  overflow: hidden;
  padding: 18px;
}

.process-svg {
  width: 100%;
  min-height: 210px;
  display: block;
}

.process-route-bg,
.process-route {
  fill: none;
  stroke-linecap: round;
}

.process-route-bg {
  stroke: rgba(47, 107, 79, 0.16);
  stroke-width: 12;
}

.process-route {
  stroke: var(--brand);
  stroke-width: 12;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.7s ease;
}

.process-node {
  fill: white;
  stroke: var(--brand);
  stroke-width: 6;
  cursor: pointer;
  transition: transform 0.25s ease, fill 0.25s ease;
  transform-origin: center;
  transform-box: fill-box;
}

.process-node.active {
  fill: var(--brand);
  transform: scale(1.22);
}

.process-info {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: none;
  max-width: 540px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 42px rgba(22, 35, 26, 0.12);
}

.process-info.active {
  display: block;
  animation: processInfoIn 0.35s ease;
}

@keyframes processInfoIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

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

.process-info span {
  display: inline-flex;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.process-info strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

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

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.impact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(22, 35, 26, 0.1);
}

.impact-card strong {
  display: block;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1;
  color: var(--brand);
  letter-spacing: -0.06em;
}

.impact-card span {
  display: block;
  color: var(--muted);
  font-weight: 900;
  margin-top: 8px;
}

[data-tilt] {
  transform-style: preserve-3d;
}

@media (prefers-reduced-motion: reduce) {
  .hero-orbit-path,
  .pulse {
    animation: none;
  }

  .reveal,
  .hero-slide,
  .service-card-inner,
  .process-route,
  .process-info.active {
    transition: none;
    animation: none;
  }
}

@media (max-width: 900px) {
  .hero-orbit-svg {
    display: none;
  }

  .process-map {
    min-height: 340px;
  }

  .process-info {
    left: 16px;
    right: 16px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .process-infographic {
    padding: 18px;
  }

  .process-svg {
    min-height: 180px;
  }
}


/* Scroll-reactive background animation */
.scroll-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 154, 61, 0.08), transparent 26%),
    radial-gradient(circle at 88% 32%, rgba(47, 107, 79, 0.08), transparent 30%);
}

.scroll-blob {
  position: absolute;
  width: 34vw;
  height: 34vw;
  min-width: 280px;
  min-height: 280px;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.25;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.blob-one {
  top: 8%;
  left: -10%;
  background: rgba(216, 154, 61, 0.52);
}

.blob-two {
  top: 38%;
  right: -14%;
  background: rgba(47, 107, 79, 0.45);
}

.blob-three {
  bottom: -12%;
  left: 28%;
  background: rgba(226, 240, 232, 0.9);
}

.scroll-vine {
  position: absolute;
  top: -8%;
  right: -6%;
  width: 58vw;
  height: 145vh;
  min-width: 520px;
  opacity: 0.17;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.scroll-vine path {
  fill: none;
  stroke: var(--brand);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 18 28;
  animation: vineDash 38s linear infinite;
}

@keyframes vineDash {
  to {
    stroke-dashoffset: -920;
  }
}

/* Keep closing time tidy on one line */
.time-value {
  white-space: nowrap;
  word-break: keep-all;
  letter-spacing: -0.04em;
}

.closing-time-card strong {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .scroll-bg {
    opacity: 0.7;
  }

  .scroll-vine {
    display: none;
  }

  .scroll-blob {
    filter: blur(34px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-vine path {
    animation: none;
  }
}


/* Brand-specific wildlife tracking additions */
.track-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.track-print {
  position: absolute;
  color: rgba(31, 75, 56, 0.13);
  font-size: clamp(1.6rem, 3vw, 3rem);
  transform: rotate(-18deg);
  filter: blur(0.1px);
}

.print-one {
  top: 12%;
  left: 8%;
}

.print-two {
  top: 24%;
  left: 17%;
}

.print-three {
  top: 42%;
  right: 16%;
  transform: rotate(18deg);
}

.print-four {
  top: 56%;
  right: 7%;
  transform: rotate(18deg);
}

.print-five {
  bottom: 20%;
  left: 18%;
}

.print-six {
  bottom: 8%;
  left: 27%;
}

.clue-section {
  position: relative;
  overflow: hidden;
}

.clue-section::before {
  content: "";
  position: absolute;
  inset: 10% auto auto -120px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(216, 154, 61, 0.12);
  filter: blur(22px);
  pointer-events: none;
}

.clue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.clue-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  padding: 20px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.clue-card:hover,
.clue-card.active {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(22, 35, 26, 0.1);
  border-color: rgba(47, 107, 79, 0.34);
  background: white;
}

.clue-card.active {
  background: var(--brand);
  color: white;
}

.clue-card span,
.clue-card strong,
.clue-card small {
  display: block;
}

.clue-card span {
  font-size: 2rem;
  margin-bottom: 16px;
}

.clue-card strong {
  font-size: 1rem;
  line-height: 1.2;
}

.clue-card small {
  color: var(--muted);
  margin-top: 8px;
}

.clue-card.active small {
  color: rgba(255, 255, 255, 0.76);
}

.clue-result {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 26px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 240, 0.9)),
    radial-gradient(circle at top right, rgba(47, 107, 79, 0.08), transparent 28%);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.clue-compass {
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-soft);
  position: relative;
  overflow: hidden;
}

.clue-compass::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 999px;
  border: 1px dashed rgba(31, 75, 56, 0.25);
  animation: compassSpin 18s linear infinite;
}

.clue-compass svg {
  width: 82%;
  position: relative;
  z-index: 2;
}

.compass-ring {
  fill: none;
  stroke: rgba(31, 75, 56, 0.18);
  stroke-width: 10;
}

.compass-path {
  fill: var(--brand);
  transform-origin: center;
  animation: compassPulse 2.8s ease-in-out infinite;
}

.compass-center {
  fill: var(--accent);
}

@keyframes compassSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes compassPulse {
  50% {
    transform: scale(1.06) rotate(4deg);
  }
}

.clue-result h3 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1;
  margin-bottom: 12px;
}

.clue-result p {
  color: var(--muted);
  max-width: 760px;
}

.clue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 20px;
}

.clue-tags span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 900;
  font-size: 0.84rem;
}

@media (max-width: 1000px) {
  .clue-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clue-result {
    grid-template-columns: 1fr;
  }

  .clue-compass {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 620px) {
  .clue-grid {
    grid-template-columns: 1fr;
  }

  .track-print {
    opacity: 0.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clue-compass::after,
  .compass-path {
    animation: none;
  }
}


/* Premium brand tracking redesign */
.track-layer,
.track-print {
  display: none !important;
}

.inspection-ribbon {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.inspection-ribbon span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px 8px 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  color: var(--brand-dark);
  font-weight: 900;
  font-size: 0.84rem;
}

.inspection-ribbon span::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(216, 154, 61, 0.12);
}

.evidence-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.6), rgba(247, 244, 237, 0.95)),
    radial-gradient(circle at 12% 10%, rgba(216, 154, 61, 0.12), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(47, 107, 79, 0.1), transparent 32%);
  border-top: 1px solid var(--border);
}

.evidence-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(31, 75, 56, 0.13) 1.5px, transparent 1.5px);
  background-size: 34px 34px;
  opacity: 0.18;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 75%, transparent);
  pointer-events: none;
}

.evidence-lab {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.evidence-map,
.evidence-panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.evidence-map {
  min-height: 520px;
  padding: 26px;
  display: grid;
  place-items: center;
}

.house-diagram {
  position: relative;
  width: 100%;
  max-width: 680px;
  aspect-ratio: 1.35 / 1;
  display: grid;
  place-items: center;
}

.house-diagram svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.diagram-shadow {
  stroke: rgba(22, 35, 26, 0.12);
  stroke-width: 18;
  stroke-linecap: round;
}

.diagram-roof {
  fill: url(#roofGrad);
  stroke: rgba(31, 75, 56, 0.35);
  stroke-width: 8;
  stroke-linejoin: round;
}

.diagram-wall {
  fill: url(#wallGrad);
  stroke: rgba(31, 75, 56, 0.18);
  stroke-width: 6;
}

.diagram-attic {
  fill: rgba(255, 255, 255, 0.24);
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 3;
}

.diagram-window {
  fill: rgba(47, 107, 79, 0.14);
  stroke: rgba(47, 107, 79, 0.28);
  stroke-width: 5;
}

.diagram-door {
  fill: rgba(31, 75, 56, 0.22);
  stroke: rgba(31, 75, 56, 0.25);
  stroke-width: 5;
}

.diagram-vent {
  fill: rgba(255, 255, 255, 0.9);
  stroke: rgba(31, 75, 56, 0.3);
  stroke-width: 4;
}

.diagram-foundation {
  stroke: rgba(31, 75, 56, 0.38);
  stroke-width: 8;
  stroke-linecap: round;
}

.diagram-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  border: 3px solid white;
  border-radius: 999px;
  background: var(--accent);
  box-shadow:
    0 0 0 0 rgba(216, 154, 61, 0.5),
    0 12px 34px rgba(22, 35, 26, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  animation: hotspotPulse 2.4s infinite;
}

.diagram-hotspot:hover,
.diagram-hotspot.active {
  transform: translate(-50%, -50%) scale(1.2);
  background: var(--brand);
}

@keyframes hotspotPulse {
  70% {
    box-shadow:
      0 0 0 16px rgba(216, 154, 61, 0),
      0 12px 34px rgba(22, 35, 26, 0.2);
  }
}

.track-trail {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.track-trail span {
  position: absolute;
  width: 34px;
  height: 22px;
  border-radius: 60% 45% 60% 45%;
  border: 2px solid rgba(31, 75, 56, 0.18);
  transform: rotate(-24deg);
  opacity: 0;
  animation: trailFade 5s ease-in-out infinite;
}

.track-trail span:nth-child(1) { left: 17%; top: 72%; animation-delay: 0s; }
.track-trail span:nth-child(2) { left: 24%; top: 65%; animation-delay: 0.35s; }
.track-trail span:nth-child(3) { left: 32%; top: 59%; animation-delay: 0.7s; }
.track-trail span:nth-child(4) { left: 40%; top: 52%; animation-delay: 1.05s; }
.track-trail span:nth-child(5) { left: 48%; top: 45%; animation-delay: 1.4s; }

@keyframes trailFade {
  0%, 15% {
    opacity: 0;
    transform: translateY(10px) rotate(-24deg) scale(0.82);
  }

  28%, 70% {
    opacity: 1;
    transform: translateY(0) rotate(-24deg) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-12px) rotate(-24deg) scale(0.9);
  }
}

.evidence-panel {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.evidence-status {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 900;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.scanner-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(47, 107, 79, 0.45);
  animation: scannerPulse 1.8s infinite;
}

@keyframes scannerPulse {
  70% {
    box-shadow: 0 0 0 10px rgba(47, 107, 79, 0);
  }
}

.evidence-panel h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.evidence-panel p {
  color: var(--muted);
  font-size: 1.02rem;
}

.evidence-output {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 20px 0;
}

.evidence-output div {
  padding: 16px;
  border-radius: 18px;
  background: #fffaf0;
  border: 1px solid var(--border);
}

.evidence-output span,
.evidence-output strong {
  display: block;
}

.evidence-output span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.evidence-output strong {
  color: var(--brand-dark);
  margin-top: 4px;
}

.evidence-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.evidence-choice {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  padding: 10px 13px;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
}

.evidence-choice:hover,
.evidence-choice.active {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}

@media (max-width: 1000px) {
  .evidence-lab {
    grid-template-columns: 1fr;
  }

  .evidence-map {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .evidence-map,
  .evidence-panel {
    border-radius: 24px;
  }

  .evidence-map {
    min-height: 320px;
    padding: 12px;
  }

  .evidence-panel {
    padding: 22px;
  }

  .diagram-hotspot {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .diagram-hotspot,
  .track-trail span,
  .scanner-dot {
    animation: none;
  }
}


/* Deep review improvements: lighter images, valid evidence hotspots, hidden tracking minigame */
.track-game {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(12, 20, 15, 0.72);
  backdrop-filter: blur(12px);
}

.track-game.open {
  display: flex;
}

.track-game-panel {
  position: relative;
  width: min(760px, 100%);
  background:
    radial-gradient(circle at 20% 10%, rgba(216, 154, 61, 0.14), transparent 30%),
    linear-gradient(135deg, #fffaf0, #ffffff);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  padding: 26px;
  color: var(--text);
  overflow: hidden;
  animation: gameIn 0.28s ease;
}

@keyframes gameIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

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

.track-game-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
}

.track-game-head h2 {
  margin-bottom: 8px;
}

.track-game-head p {
  color: var(--muted);
  margin-bottom: 14px;
}

.track-game-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

.track-game-stats span {
  display: inline-flex;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 900;
}

.track-game-board {
  position: relative;
  height: 330px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.2), rgba(216, 154, 61, 0.18)),
    #e2f0e8;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.game-yard-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.42) 0 3px, transparent 4px),
    radial-gradient(circle at 70% 65%, rgba(31, 75, 56, 0.12) 0 3px, transparent 4px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 42px 42px, 54px 54px, 42px 42px, 42px 42px;
  opacity: 0.88;
}

.game-track {
  position: absolute;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    0 0 0 7px rgba(216, 154, 61, 0.24),
    0 16px 34px rgba(22, 35, 26, 0.18);
  display: grid;
  place-items: center;
  animation: trackPop 0.22s ease, trackGlow 1s ease-in-out infinite alternate;
}

.game-track::before,
.game-track::after {
  content: "";
  position: absolute;
  background: var(--brand);
  opacity: 0.82;
}

.game-track::before {
  width: 19px;
  height: 13px;
  border-radius: 60% 45% 60% 45%;
  transform: rotate(-24deg);
}

.game-track::after {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  box-shadow:
    -10px -10px 0 var(--brand),
    0 -13px 0 var(--brand),
    10px -10px 0 var(--brand);
  transform: translateY(4px);
}

@keyframes trackPop {
  from {
    opacity: 0;
    transform: scale(0.55);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes trackGlow {
  to {
    box-shadow:
      0 0 0 12px rgba(216, 154, 61, 0.12),
      0 18px 42px rgba(22, 35, 26, 0.22);
  }
}

.track-game-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.track-game-hint {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 12px 0 0;
}

.brand {
  user-select: none;
}

@media (max-width: 620px) {
  .track-game-panel {
    padding: 20px;
    border-radius: 26px;
  }

  .track-game-board {
    height: 300px;
  }

  .track-game-actions {
    flex-direction: column;
  }
}


/* Bug fixes from deep review */
.house-diagram {
  isolation: isolate;
}

.house-diagram .diagram-hotspot {
  z-index: 5;
}

.evidence-map {
  overflow: visible;
}

.service-card-inner {
  pointer-events: none;
}

.service-card {
  pointer-events: auto;
}

.service-card * {
  pointer-events: none;
}


/* Process infographic clickability fix
   The active info card used to sit over Step 1 and Step 2 on desktop.
   This places the info card below the SVG route so every node remains visible and clickable. */
.process-map {
  min-height: auto;
  display: block;
}

.process-svg {
  position: relative;
  z-index: 2;
  min-height: 250px;
}

.process-info {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 3;
  max-width: none;
  margin: -22px 12px 12px;
  pointer-events: auto;
}

.process-node {
  pointer-events: auto;
}

@media (max-width: 900px) {
  .process-map {
    min-height: auto;
  }

  .process-info {
    margin: -10px 0 6px;
  }
}


/* Mobile animation compatibility fix */
@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
  }

  .scroll-bg {
    opacity: 0.38;
  }

  .scroll-blob {
    width: 240px;
    height: 240px;
    min-width: 240px;
    min-height: 240px;
    filter: blur(42px);
  }

  .blob-one {
    left: -120px;
    top: 120px;
  }

  .blob-two {
    right: -130px;
    top: 42%;
  }

  .blob-three {
    left: 20%;
    bottom: -150px;
  }

  .hero-copy,
  .hero-media,
  .hero-carousel,
  .booking-card,
  .contact-card,
  .impact-card {
    transform: none !important;
  }

  .hero-carousel {
    min-height: 360px;
    touch-action: pan-y;
  }

  .hero-control {
    display: none;
  }

  .hero-slide-overlay {
    left: 16px;
    right: 16px;
    bottom: 48px;
  }

  .hero-slide-overlay strong {
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .service-card,
  .service-card-inner {
    min-height: 260px;
  }

  .service-card:hover .service-card-inner,
  .service-card:focus-visible .service-card-inner {
    transform: none;
  }

  .service-card.is-flipped .service-card-inner {
    transform: rotateY(180deg);
  }

  .process-infographic {
    padding: 18px;
    border-radius: 24px;
  }

  .process-map {
    padding: 12px;
    border-radius: 20px;
    overflow: visible;
  }

  .process-svg {
    min-height: 165px;
    height: 165px;
  }

  .process-route-bg,
  .process-route {
    stroke-width: 9;
  }

  .process-node {
    r: 22;
    stroke-width: 5;
  }

  .process-info {
    margin: 6px 0 0 !important;
    padding: 16px;
    border-radius: 18px;
  }

  .impact-grid {
    gap: 10px;
  }

  .impact-card {
    padding: 16px;
  }

  .impact-card strong {
    font-size: 2.4rem;
  }

  .evidence-lab {
    gap: 16px;
  }

  .evidence-map {
    min-height: auto;
    padding: 12px;
    overflow: hidden;
  }

  .house-diagram {
    max-width: 100%;
    aspect-ratio: 1.1 / 1;
  }

  .diagram-hotspot {
    width: 26px;
    height: 26px;
    animation-duration: 3.4s;
  }

  .track-trail span {
    width: 26px;
    height: 18px;
  }

  .evidence-panel {
    padding: 22px;
  }

  .evidence-panel h3 {
    font-size: 1.7rem;
  }

  .evidence-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .evidence-choice {
    width: 100%;
    text-align: center;
    padding: 11px 10px;
  }

  .clue-compass,
  .hero-orbit-svg,
  .scroll-vine {
    display: none !important;
  }
}

@media (max-width: 520px) {
  .hero-carousel {
    min-height: 300px;
  }

  .hero-slide-overlay span {
    font-size: 0.64rem;
    padding: 6px 9px;
  }

  .hero-slide-overlay strong {
    font-size: 0.98rem;
  }

  .service-card,
  .service-card-inner {
    min-height: 245px;
  }

  .service-front {
    padding: 20px;
  }

  .process-svg {
    min-height: 135px;
    height: 135px;
  }

  .process-info strong {
    font-size: 1.02rem;
  }

  .process-info p {
    font-size: 0.92rem;
  }

  .evidence-actions {
    grid-template-columns: 1fr;
  }

  .evidence-output {
    gap: 8px;
  }

  .track-game-board {
    height: 260px;
  }

  .game-track {
    width: 42px;
    height: 42px;
  }
}


/* Extreme desktop experience, intentionally simplified on mobile */
@media (min-width: 901px) {
  body {
    cursor: default;
  }

  .desktop-fx {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    mix-blend-mode: multiply;
  }

  .cursor-spotlight {
    position: absolute;
    left: 50%;
    top: 35%;
    width: 560px;
    height: 560px;
    border-radius: 999px;
    background:
      radial-gradient(circle, rgba(216, 154, 61, 0.18), rgba(47, 107, 79, 0.08) 34%, transparent 66%);
    filter: blur(8px);
    opacity: 0.9;
    transform: translate(-50%, -50%);
    will-change: transform;
  }

  .scan-grid {
    position: absolute;
    inset: -20%;
    opacity: 0.16;
    background-image:
      linear-gradient(rgba(47, 107, 79, 0.18) 1px, transparent 1px),
      linear-gradient(90deg, rgba(47, 107, 79, 0.18) 1px, transparent 1px);
    background-size: 64px 64px;
    transform: perspective(900px) rotateX(58deg) translateY(120px);
    animation: gridDrift 18s linear infinite;
  }

  @keyframes gridDrift {
    to {
      background-position: 0 128px, 128px 0;
    }
  }

  .radar-sweep {
    position: absolute;
    right: -120px;
    top: 16vh;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    border: 1px solid rgba(47, 107, 79, 0.2);
    background:
      conic-gradient(from 0deg, transparent 0 300deg, rgba(47, 107, 79, 0.16) 340deg, transparent 360deg),
      radial-gradient(circle, transparent 0 35%, rgba(47, 107, 79, 0.08) 36% 37%, transparent 38% 59%, rgba(47, 107, 79, 0.08) 60% 61%, transparent 62%);
    animation: radarSpin 8s linear infinite;
    filter: blur(0.2px);
  }

  @keyframes radarSpin {
    to {
      transform: rotate(360deg);
    }
  }

  .floating-track {
    position: absolute;
    width: 68px;
    height: 46px;
    border: 2px solid rgba(31, 75, 56, 0.14);
    border-radius: 60% 45% 60% 45%;
    transform: rotate(-22deg);
    opacity: 0.55;
    animation: floatTrack 12s ease-in-out infinite;
  }

  .floating-track::before,
  .floating-track::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(31, 75, 56, 0.14);
  }

  .floating-track::before {
    width: 10px;
    height: 10px;
    top: -12px;
    left: 12px;
    box-shadow: 18px -6px 0 rgba(31, 75, 56, 0.14), 36px 0 0 rgba(31, 75, 56, 0.14);
  }

  .track-a {
    left: 9%;
    top: 22%;
  }

  .track-b {
    right: 18%;
    top: 62%;
    animation-delay: -4s;
  }

  .track-c {
    left: 42%;
    bottom: 12%;
    animation-delay: -8s;
  }

  @keyframes floatTrack {
    50% {
      transform: translate3d(18px, -32px, 0) rotate(-12deg) scale(1.1);
      opacity: 0.28;
    }
  }

  .hero {
    min-height: calc(100vh - 114px);
    display: flex;
    align-items: center;
  }

  .hero-grid {
    perspective: 1400px;
  }

  .hero-copy {
    transform-style: preserve-3d;
  }

  .hero-copy h1 {
    text-shadow: 0 26px 70px rgba(22, 35, 26, 0.14);
  }

  .hero-copy h1::after {
    content: "";
    display: block;
    width: min(420px, 65%);
    height: 6px;
    border-radius: 999px;
    margin-top: 22px;
    background: linear-gradient(90deg, var(--accent), var(--brand), transparent);
    box-shadow: 0 12px 30px rgba(216, 154, 61, 0.24);
  }

  .field-scan-panel {
    position: relative;
    display: grid;
    gap: 8px;
    margin-top: 16px;
    width: min(520px, 100%);
    padding: 16px;
    border-radius: 22px;
    background: rgba(21, 32, 25, 0.86);
    color: white;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(22, 35, 26, 0.18);
  }

  .field-scan-panel .scan-line {
    position: absolute;
    left: 0;
    right: 0;
    top: -40%;
    height: 40%;
    background: linear-gradient(to bottom, transparent, rgba(216, 154, 61, 0.22), transparent);
    animation: scanDown 3.2s ease-in-out infinite;
  }

  @keyframes scanDown {
    0% {
      transform: translateY(-100%);
    }
    55%, 100% {
      transform: translateY(420%);
    }
  }

  .field-scan-panel span:not(.scan-line) {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 0.92rem;
  }

  .field-scan-panel span:not(.scan-line)::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(216, 154, 61, 0.14);
  }

  .hero-carousel {
    transform-style: preserve-3d;
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow:
      0 42px 110px rgba(22, 35, 26, 0.26),
      inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  }

  .hero-carousel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background:
      linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.16) 42%, transparent 48%),
      repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 5px);
    transform: translateX(-120%);
    animation: heroGlassSweep 8s ease-in-out infinite;
    mix-blend-mode: screen;
  }

  @keyframes heroGlassSweep {
    0%, 55% {
      transform: translateX(-120%);
    }
    80%, 100% {
      transform: translateX(120%);
    }
  }

  .hero-slide.active img {
    animation: cinematicZoom 9s ease-in-out infinite alternate;
  }

  @keyframes cinematicZoom {
    to {
      transform: scale(1.08) translate3d(-1.5%, -1%, 0);
    }
  }

  .hero-intel-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: -4px;
  }

  .hero-intel-strip div {
    position: relative;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--border);
    box-shadow: 0 18px 42px rgba(22, 35, 26, 0.09);
    overflow: hidden;
  }

  .hero-intel-strip div::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(216, 154, 61, 0.12), transparent);
    transform: translateX(-100%);
    animation: intelSweep 7s ease-in-out infinite;
  }

  .hero-intel-strip span,
  .hero-intel-strip strong {
    position: relative;
    z-index: 2;
    display: block;
  }

  .hero-intel-strip span {
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 900;
  }

  .hero-intel-strip strong {
    color: var(--brand-dark);
    line-height: 1.15;
    margin-top: 4px;
  }

  @keyframes intelSweep {
    0%, 65% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }

  .service-card {
    transition: transform 0.25s ease, filter 0.25s ease;
  }

  .service-grid:hover .service-card:not(:hover) {
    filter: saturate(0.78) opacity(0.72);
    transform: scale(0.985);
  }

  .service-card:hover {
    transform: translateY(-10px) scale(1.02);
  }

  .process-infographic {
    position: relative;
  }

  .process-infographic::before {
    content: "FIELD MAP";
    position: absolute;
    right: 28px;
    top: 22px;
    color: rgba(31, 75, 56, 0.08);
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1;
    font-weight: 1000;
    letter-spacing: -0.08em;
    pointer-events: none;
  }

  .evidence-lab {
    perspective: 1200px;
  }

  .evidence-map,
  .evidence-panel {
    transform-style: preserve-3d;
  }

  .house-diagram svg {
    filter: drop-shadow(0 24px 32px rgba(22, 35, 26, 0.16));
  }

  .diagram-hotspot {
    box-shadow:
      0 0 0 0 rgba(216, 154, 61, 0.55),
      0 0 28px rgba(216, 154, 61, 0.55),
      0 18px 44px rgba(22, 35, 26, 0.24);
  }

  .track-game-panel {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.22),
      0 40px 120px rgba(0, 0, 0, 0.44);
  }
}

@media (max-width: 900px) {
  .desktop-fx,
  .hero-intel-strip,
  .field-scan-panel {
    display: none !important;
  }
}


/* Advanced desktop parallax background depth */
@media (min-width: 901px) {
  .desktop-fx {
    perspective: 1200px;
  }

  .depth-field {
    position: absolute;
    inset: -18%;
    opacity: 0.18;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    pointer-events: none;
  }

  .depth-one {
    background:
      radial-gradient(circle at 18% 24%, rgba(216, 154, 61, 0.26) 0 2px, transparent 3px),
      radial-gradient(circle at 72% 38%, rgba(47, 107, 79, 0.22) 0 2px, transparent 3px),
      radial-gradient(circle at 38% 72%, rgba(31, 75, 56, 0.16) 0 1px, transparent 2px);
    background-size: 110px 110px, 160px 160px, 72px 72px;
  }

  .depth-two {
    opacity: 0.11;
    background:
      linear-gradient(115deg, transparent 0 46%, rgba(47, 107, 79, 0.28) 47%, transparent 49%),
      linear-gradient(35deg, transparent 0 48%, rgba(216, 154, 61, 0.22) 49%, transparent 51%);
    background-size: 280px 280px;
  }

  .depth-three {
    inset: -35%;
    opacity: 0.12;
    background:
      conic-gradient(from 120deg at 50% 50%, transparent 0 20%, rgba(47, 107, 79, 0.18) 21%, transparent 24% 100%);
    filter: blur(1px);
  }

  .topographic-lines {
    position: absolute;
    left: -8%;
    top: 8%;
    width: 116%;
    height: 92%;
    opacity: 0.16;
    pointer-events: none;
    will-change: transform;
    transform: translate3d(0, 0, 0);
  }

  .topographic-lines path {
    fill: none;
    stroke: var(--brand-dark);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 10 16;
    animation: topoDash 28s linear infinite;
  }

  .topographic-lines path:nth-child(2) {
    animation-duration: 36s;
    stroke: var(--brand);
  }

  .topographic-lines path:nth-child(3) {
    animation-duration: 42s;
    animation-direction: reverse;
  }

  .topographic-lines path:nth-child(4) {
    animation-duration: 48s;
    stroke: var(--accent);
  }

  @keyframes topoDash {
    to {
      stroke-dashoffset: -520;
    }
  }

  .scroll-bg {
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }

  .scroll-blob {
    transition: opacity 0.25s ease;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
      linear-gradient(120deg, rgba(47, 107, 79, 0.03), transparent 28%, rgba(216, 154, 61, 0.04) 65%, transparent),
      radial-gradient(circle at var(--parallax-x, 50%) var(--parallax-y, 30%), rgba(216, 154, 61, 0.1), transparent 34%);
  }
}

@media (max-width: 900px) {
  .depth-field,
  .topographic-lines {
    display: none !important;
  }
}


/* Wildlife micro-details: paw prints, claw scratches and tracking accents */
.scratch-btn {
  position: relative;
  overflow: hidden;
}

.scratch-btn::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 30px;
  height: 24px;
  opacity: 0;
  transform: translateY(-50%) translateX(10px) rotate(-12deg);
  transition: opacity 0.2s ease, transform 0.2s ease;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255,255,255,0.62) 39% 44%, transparent 45%),
    linear-gradient(115deg, transparent 0 50%, rgba(255,255,255,0.48) 51% 56%, transparent 57%),
    linear-gradient(115deg, transparent 0 62%, rgba(255,255,255,0.36) 63% 68%, transparent 69%);
  pointer-events: none;
}

.btn-secondary.scratch-btn::before {
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(47,107,79,0.42) 39% 44%, transparent 45%),
    linear-gradient(115deg, transparent 0 50%, rgba(47,107,79,0.32) 51% 56%, transparent 57%),
    linear-gradient(115deg, transparent 0 62%, rgba(47,107,79,0.24) 63% 68%, transparent 69%);
}

.scratch-btn:hover::before,
.scratch-btn:focus-visible::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0) rotate(-12deg);
}

.brand::after {
  content: "";
  width: 34px;
  height: 18px;
  margin-left: 4px;
  opacity: 0.28;
  background:
    radial-gradient(circle at 15% 65%, var(--brand) 0 3px, transparent 4px),
    radial-gradient(circle at 35% 35%, var(--brand) 0 3px, transparent 4px),
    radial-gradient(circle at 55% 35%, var(--brand) 0 3px, transparent 4px),
    radial-gradient(circle at 75% 65%, var(--brand) 0 3px, transparent 4px),
    radial-gradient(ellipse at 50% 82%, var(--brand) 0 8px, transparent 9px);
  transform: rotate(-12deg);
}

.footer-brand::after {
  filter: invert(1);
  opacity: 0.18;
}

.section-heading .eyebrow::before {
  content: "";
  width: 22px;
  height: 14px;
  display: inline-block;
  background:
    radial-gradient(circle at 18% 56%, currentColor 0 2px, transparent 3px),
    radial-gradient(circle at 38% 26%, currentColor 0 2px, transparent 3px),
    radial-gradient(circle at 58% 26%, currentColor 0 2px, transparent 3px),
    radial-gradient(circle at 78% 56%, currentColor 0 2px, transparent 3px),
    radial-gradient(ellipse at 50% 82%, currentColor 0 5px, transparent 6px);
  opacity: 0.72;
  transform: rotate(-12deg);
}

.service-card {
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 4;
  width: 42px;
  height: 28px;
  opacity: 0.11;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 36%, var(--brand-dark) 37% 42%, transparent 43%),
    linear-gradient(115deg, transparent 0 50%, var(--brand-dark) 51% 56%, transparent 57%),
    linear-gradient(115deg, transparent 0 64%, var(--brand-dark) 65% 70%, transparent 71%);
  transform: rotate(-18deg);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-card:hover::before {
  opacity: 0.28;
  transform: rotate(-18deg) translateX(-4px);
}

.animal-mark {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 2;
}

.animal-mark::before,
.animal-mark::after {
  content: "";
  position: absolute;
}

.attic-mark::before,
.trap-mark::before,
.inspect-mark::before {
  inset: 7px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 34%, var(--brand-dark) 0 4px, transparent 5px),
    radial-gradient(circle at 39% 16%, var(--brand-dark) 0 4px, transparent 5px),
    radial-gradient(circle at 61% 16%, var(--brand-dark) 0 4px, transparent 5px),
    radial-gradient(circle at 80% 34%, var(--brand-dark) 0 4px, transparent 5px),
    radial-gradient(ellipse at 50% 72%, var(--brand-dark) 0 13px, transparent 14px);
  transform: rotate(-18deg);
}

.exclusion-mark::before,
.prevent-mark::before {
  left: 7px;
  top: 12px;
  width: 34px;
  height: 24px;
  border: 5px solid var(--brand-dark);
  border-radius: 8px;
}

.exclusion-mark::after,
.prevent-mark::after {
  left: 14px;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 5px solid var(--brand-dark);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

.repair-mark::before {
  left: 6px;
  top: 22px;
  width: 38px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand-dark);
  transform: rotate(-34deg);
}

.repair-mark::after {
  left: 10px;
  top: 11px;
  width: 15px;
  height: 15px;
  border: 5px solid var(--brand-dark);
  border-right: 0;
  border-bottom: 0;
  transform: rotate(-34deg);
}

.form-step h3,
.booking-card h3,
.evidence-panel h3,
.hero-card h2 {
  position: relative;
}

.form-step h3::after,
.booking-card h3::after,
.evidence-panel h3::after,
.hero-card h2::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 18px;
  margin-left: 10px;
  opacity: 0.18;
  background:
    linear-gradient(115deg, transparent 0 35%, var(--brand-dark) 36% 42%, transparent 43%),
    linear-gradient(115deg, transparent 0 50%, var(--brand-dark) 51% 57%, transparent 58%),
    linear-gradient(115deg, transparent 0 65%, var(--brand-dark) 66% 72%, transparent 73%);
  transform: rotate(-14deg);
}

.radio-card {
  position: relative;
  overflow: hidden;
}

.radio-card::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 24px;
  height: 17px;
  opacity: 0.09;
  background:
    radial-gradient(circle at 18% 58%, var(--brand) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 28%, var(--brand) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 28%, var(--brand) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 58%, var(--brand) 0 2px, transparent 3px),
    radial-gradient(ellipse at 50% 82%, var(--brand) 0 5px, transparent 6px);
  transform: rotate(-14deg);
}

.contact-card,
.impact-card,
.faq-question {
  position: relative;
  overflow: hidden;
}

.contact-card::after,
.impact-card::after,
.faq-question::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 58px;
  height: 42px;
  opacity: 0.07;
  background:
    radial-gradient(circle at 18% 58%, var(--brand-dark) 0 5px, transparent 6px),
    radial-gradient(circle at 38% 28%, var(--brand-dark) 0 5px, transparent 6px),
    radial-gradient(circle at 58% 28%, var(--brand-dark) 0 5px, transparent 6px),
    radial-gradient(circle at 78% 58%, var(--brand-dark) 0 5px, transparent 6px),
    radial-gradient(ellipse at 50% 82%, var(--brand-dark) 0 13px, transparent 14px);
  transform: rotate(-16deg);
  pointer-events: none;
}

.faq-item.active .faq-question::after {
  filter: invert(1);
  opacity: 0.12;
}

.hero-slide-overlay::before {
  content: "";
  display: block;
  width: 48px;
  height: 30px;
  margin-bottom: 10px;
  opacity: 0.75;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(255,255,255,0.85) 37% 42%, transparent 43%),
    linear-gradient(115deg, transparent 0 50%, rgba(255,255,255,0.65) 51% 56%, transparent 57%),
    linear-gradient(115deg, transparent 0 64%, rgba(255,255,255,0.5) 65% 70%, transparent 71%);
  transform: rotate(-16deg);
}

.timeline-item {
  position: relative;
  overflow: hidden;
}

.timeline-item::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 36px;
  height: 24px;
  opacity: 0.09;
  background:
    linear-gradient(115deg, transparent 0 35%, var(--brand-dark) 36% 42%, transparent 43%),
    linear-gradient(115deg, transparent 0 50%, var(--brand-dark) 51% 57%, transparent 58%),
    linear-gradient(115deg, transparent 0 65%, var(--brand-dark) 66% 72%, transparent 73%);
  transform: rotate(-18deg);
}

@media (min-width: 901px) {
  .scratch-btn:hover {
    padding-right: 46px;
  }

  .service-front:hover .animal-mark,
  .service-card:hover .animal-mark {
    opacity: 0.18;
    transform: translateY(-4px) rotate(-4deg);
    transition: 0.25s ease;
  }

  .diagram-hotspot::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 34px;
    height: 22px;
    transform: translate(18px, -26px) rotate(-16deg);
    opacity: 0.55;
    background:
      linear-gradient(115deg, transparent 0 35%, white 36% 42%, transparent 43%),
      linear-gradient(115deg, transparent 0 50%, white 51% 57%, transparent 58%),
      linear-gradient(115deg, transparent 0 65%, white 66% 72%, transparent 73%);
    pointer-events: none;
  }
}

@media (max-width: 900px) {
  .brand::after,
  .hero-slide-overlay::before,
  .field-scan-panel,
  .service-card::before {
    display: none;
  }

  .animal-mark {
    opacity: 0.06;
  }

  .scratch-btn::before {
    display: none;
  }
}

.scratch-clicked {
  animation: scratchButtonTap 0.26s ease;
}

@keyframes scratchButtonTap {
  50% {
    transform: translateY(-2px) scale(0.985);
    filter: brightness(1.05);
  }
}


/* Motion rebalance: calmer desktop, more life on mobile */
@media (min-width: 901px) {
  .desktop-fx {
    opacity: 0.58;
  }

  .cursor-spotlight {
    width: 420px;
    height: 420px;
    opacity: 0.55;
    filter: blur(18px);
  }

  .scan-grid {
    opacity: 0.08;
    animation-duration: 34s;
  }

  .radar-sweep {
    width: 420px;
    height: 420px;
    opacity: 0.42;
    animation-duration: 18s;
  }

  .floating-track {
    opacity: 0.22;
    animation-duration: 22s;
  }

  .depth-field {
    opacity: 0.08;
  }

  .depth-one {
    opacity: 0.1;
  }

  .depth-two {
    opacity: 0.055;
  }

  .depth-three {
    opacity: 0.055;
  }

  .topographic-lines {
    opacity: 0.07;
  }

  .topographic-lines path {
    animation-duration: 58s;
  }

  .hero-carousel::before {
    opacity: 0.45;
    animation-duration: 14s;
  }

  .hero-slide.active img {
    animation-duration: 16s;
  }

  .field-scan-panel .scan-line {
    opacity: 0.45;
    animation-duration: 5.8s;
  }

  .hero-orbit-svg {
    opacity: 0.1;
  }
}

/* Mobile gets its own softer motion instead of the heavy desktop effects */
.mobile-motion-bg {
  display: none;
}

@media (max-width: 900px) {
  .mobile-motion-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: block;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.9;
  }

  .mobile-drift {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.22;
    will-change: transform;
  }

  .mobile-drift-one {
    left: -120px;
    top: 18vh;
    background: rgba(216, 154, 61, 0.68);
  }

  .mobile-drift-two {
    right: -130px;
    top: 58vh;
    background: rgba(47, 107, 79, 0.58);
  }

  .mobile-track {
    position: absolute;
    width: 36px;
    height: 24px;
    opacity: 0.08;
    transform: rotate(-18deg);
    background:
      radial-gradient(circle at 18% 58%, var(--brand-dark) 0 3px, transparent 4px),
      radial-gradient(circle at 38% 28%, var(--brand-dark) 0 3px, transparent 4px),
      radial-gradient(circle at 58% 28%, var(--brand-dark) 0 3px, transparent 4px),
      radial-gradient(circle at 78% 58%, var(--brand-dark) 0 3px, transparent 4px),
      radial-gradient(ellipse at 50% 82%, var(--brand-dark) 0 8px, transparent 9px);
    will-change: transform;
  }

  .mobile-track-one {
    top: 28vh;
    left: 12vw;
  }

  .mobile-track-two {
    top: 66vh;
    right: 14vw;
  }

  .mobile-track-three {
    top: 104vh;
    left: 42vw;
  }

  .scroll-bg {
    opacity: 0.25;
  }

  .scroll-blob {
    opacity: 0.14;
  }
}

@media (max-width: 520px) {
  .mobile-drift {
    width: 220px;
    height: 220px;
    filter: blur(44px);
  }

  .mobile-track {
    opacity: 0.07;
  }
}


/* Realistic process-card wildlife damage details */
.timeline-item::after {
  display: none;
}

.claw-damaged-card,
.bite-damaged-card {
  position: relative;
  overflow: hidden;
}

/* Card 2: realistic diagonal claw scratches */
.claw-damaged-card::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 34px;
  width: 96px;
  height: 86px;
  opacity: 0.46;
  pointer-events: none;
  z-index: 2;
  transform: rotate(-12deg);
  background:
    linear-gradient(108deg, transparent 0 39%, rgba(70, 52, 34, 0.42) 40%, rgba(70, 52, 34, 0.18) 42%, transparent 44%),
    linear-gradient(108deg, transparent 0 49%, rgba(70, 52, 34, 0.5) 50%, rgba(70, 52, 34, 0.2) 52%, transparent 54%),
    linear-gradient(108deg, transparent 0 59%, rgba(70, 52, 34, 0.38) 60%, rgba(70, 52, 34, 0.15) 62%, transparent 64%);
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.38));
  mask-image: radial-gradient(ellipse at center, black 0 58%, transparent 72%);
}

.claw-damaged-card .scratch-depth {
  display: none;
}

/* Add subtle torn fibres beside the scratches */
.claw-damaged-card::after {
  content: "";
  position: absolute;
  right: 36px;
  top: 51px;
  width: 58px;
  height: 48px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
  transform: rotate(-12deg);
  background:
    radial-gradient(ellipse at 20% 30%, rgba(91, 73, 51, 0.34) 0 2px, transparent 3px),
    radial-gradient(ellipse at 40% 50%, rgba(91, 73, 51, 0.28) 0 2px, transparent 3px),
    radial-gradient(ellipse at 58% 38%, rgba(91, 73, 51, 0.28) 0 2px, transparent 3px),
    radial-gradient(ellipse at 76% 64%, rgba(91, 73, 51, 0.24) 0 2px, transparent 3px);
}

/* Card 4: bite/chipped corner */
.bite-damaged-card {
  clip-path: polygon(
    0 0,
    calc(100% - 72px) 0,
    calc(100% - 60px) 10px,
    calc(100% - 42px) 4px,
    calc(100% - 30px) 18px,
    calc(100% - 14px) 13px,
    100% 28px,
    100% 100%,
    0 100%
  );
}

.bite-damaged-card::before {
  content: "";
  position: absolute;
  right: -6px;
  top: -8px;
  width: 96px;
  height: 76px;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 18px 20px, var(--bg) 0 17px, transparent 18px),
    radial-gradient(circle at 43px 12px, var(--bg) 0 15px, transparent 16px),
    radial-gradient(circle at 67px 21px, var(--bg) 0 18px, transparent 19px),
    radial-gradient(circle at 82px 44px, var(--bg) 0 14px, transparent 15px);
}

.bite-damaged-card::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 15px;
  width: 74px;
  height: 52px;
  opacity: 0.2;
  z-index: 2;
  pointer-events: none;
  border-top: 2px solid rgba(70, 52, 34, 0.25);
  border-right: 2px solid rgba(70, 52, 34, 0.18);
  border-radius: 0 22px 0 0;
  transform: rotate(8deg);
}

@media (min-width: 901px) {
  .claw-damaged-card:hover::before {
    opacity: 0.62;
    transform: rotate(-12deg) translateX(-4px);
    transition: 0.22s ease;
  }

  .bite-damaged-card:hover::before {
    transform: translate(-2px, 2px);
    transition: 0.22s ease;
  }
}

@media (max-width: 900px) {
  .claw-damaged-card::before {
    width: 72px;
    height: 64px;
    right: 16px;
    top: 36px;
    opacity: 0.32;
  }

  .bite-damaged-card {
    clip-path: polygon(
      0 0,
      calc(100% - 46px) 0,
      calc(100% - 32px) 10px,
      calc(100% - 14px) 6px,
      100% 18px,
      100% 100%,
      0 100%
    );
  }

  .bite-damaged-card::before {
    width: 70px;
    height: 56px;
  }
}


/* High-end wildlife detail pass
   Reduces repetitive animal prints and keeps only a few realistic, premium details. */

/* Remove the overused micro marks */
.brand::after,
.section-heading .eyebrow::before,
.service-card::before,
.animal-mark,
.form-step h3::after,
.booking-card h3::after,
.evidence-panel h3::after,
.hero-card h2::after,
.radio-card::after,
.contact-card::after,
.impact-card::after,
.faq-question::after,
.hero-slide-overlay::before,
.timeline-item::after,
.diagram-hotspot::after,
.floating-track,
.mobile-track {
  display: none !important;
}

/* Keep buttons clean, with only a very subtle edge polish */
.scratch-btn::before {
  display: none !important;
}

.scratch-btn {
  position: relative;
}

.scratch-btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,0.28), transparent 28%, transparent 70%, rgba(255,255,255,0.12));
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.scratch-btn:hover::after {
  opacity: 1;
}

/* One premium paw watermark, used only in the evidence panel */
.premium-paw-watermark {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 86px;
  height: 64px;
  opacity: 0.055;
  pointer-events: none;
  transform: rotate(-14deg);
  background:
    radial-gradient(circle at 18% 58%, var(--brand-dark) 0 7px, transparent 8px),
    radial-gradient(circle at 38% 26%, var(--brand-dark) 0 7px, transparent 8px),
    radial-gradient(circle at 60% 24%, var(--brand-dark) 0 7px, transparent 8px),
    radial-gradient(circle at 80% 56%, var(--brand-dark) 0 7px, transparent 8px),
    radial-gradient(ellipse at 50% 80%, var(--brand-dark) 0 20px, transparent 21px);
}

/* Single glossy trail mark in hero, like a subtle slug/snail trail on glass */
.premium-trail-mark {
  position: absolute;
  left: -8px;
  top: -24px;
  width: 180px;
  height: 64px;
  opacity: 0.18;
  pointer-events: none;
  border-radius: 999px;
  transform: rotate(-10deg);
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,0.5), rgba(216,154,61,0.16), transparent);
  filter: blur(1.6px);
  mask-image: radial-gradient(ellipse at 50% 50%, black 0 58%, transparent 70%);
}

.hero-copy {
  position: relative;
}

/* One refined realistic claw scratch on the process card, smaller and more premium */
.claw-damaged-card::before {
  display: block !important;
  right: 22px;
  top: 30px;
  width: 74px;
  height: 58px;
  opacity: 0.28;
  transform: rotate(-17deg);
  background:
    linear-gradient(110deg, transparent 0 38%, rgba(73, 57, 39, 0.48) 39%, rgba(255,255,255,0.42) 40%, rgba(73, 57, 39, 0.16) 43%, transparent 45%),
    linear-gradient(110deg, transparent 0 51%, rgba(73, 57, 39, 0.54) 52%, rgba(255,255,255,0.45) 53%, rgba(73, 57, 39, 0.18) 56%, transparent 58%),
    linear-gradient(110deg, transparent 0 64%, rgba(73, 57, 39, 0.38) 65%, rgba(255,255,255,0.34) 66%, rgba(73, 57, 39, 0.13) 69%, transparent 71%);
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.42));
  mask-image: radial-gradient(ellipse at center, black 0 56%, transparent 74%);
}

.claw-damaged-card::after {
  display: none !important;
}

/* Subtle, classy bite/chipped corner, less cartoon-like */
.bite-damaged-card {
  clip-path: polygon(
    0 0,
    calc(100% - 48px) 0,
    calc(100% - 39px) 7px,
    calc(100% - 27px) 3px,
    calc(100% - 16px) 12px,
    100% 10px,
    100% 100%,
    0 100%
  );
}

.bite-damaged-card::before {
  display: block !important;
  right: -10px;
  top: -12px;
  width: 70px;
  height: 56px;
  opacity: 1;
  background:
    radial-gradient(circle at 16px 18px, var(--bg) 0 12px, transparent 13px),
    radial-gradient(circle at 34px 10px, var(--bg) 0 10px, transparent 11px),
    radial-gradient(circle at 53px 18px, var(--bg) 0 12px, transparent 13px);
}

.bite-damaged-card::after {
  display: block !important;
  right: 14px;
  top: 11px;
  width: 48px;
  height: 36px;
  opacity: 0.12;
  border-top: 1px solid rgba(73,57,39,0.28);
  border-right: 1px solid rgba(73,57,39,0.2);
  border-radius: 0 18px 0 0;
}

/* Make evidence hotspots feel luxury, not game-like */
.diagram-hotspot {
  width: 24px;
  height: 24px;
  background: radial-gradient(circle at 35% 30%, #fff, var(--accent) 38%, #b87824);
  border: 2px solid rgba(255,255,255,0.92);
  box-shadow:
    0 0 0 6px rgba(216,154,61,0.12),
    0 14px 34px rgba(22,35,26,0.18);
  animation-duration: 4.4s;
}

.diagram-hotspot:hover,
.diagram-hotspot.active {
  background: radial-gradient(circle at 35% 30%, #fff, var(--brand) 40%, var(--brand-dark));
}

/* Give cards a more premium finish */
.service-face,
.timeline-item,
.contact-card,
.faq-question,
.impact-card,
.evidence-map,
.evidence-panel,
.booking-card,
.hero-card {
  box-shadow:
    0 18px 60px rgba(22,35,26,0.08),
    inset 0 1px 0 rgba(255,255,255,0.55);
}

.service-card:hover {
  transform: translateY(-6px) scale(1.01);
}

.service-grid:hover .service-card:not(:hover) {
  filter: saturate(0.9) opacity(0.86);
  transform: scale(0.992);
}

/* Reduce busy background marks further */
.desktop-fx {
  opacity: 0.42;
}

.topographic-lines {
  opacity: 0.045 !important;
}

.depth-field {
  opacity: 0.045 !important;
}

.radar-sweep {
  opacity: 0.28 !important;
}

.scan-grid {
  opacity: 0.055 !important;
}

/* Mobile stays cleaner, with only the high-end movement retained */
@media (max-width: 900px) {
  .premium-paw-watermark {
    width: 64px;
    height: 48px;
    right: 18px;
    top: 18px;
    opacity: 0.04;
  }

  .premium-trail-mark {
    display: none;
  }

  .claw-damaged-card::before {
    width: 58px;
    height: 46px;
    opacity: 0.18;
  }

  .bite-damaged-card::before {
    width: 58px;
    height: 46px;
  }
}


/* Keep click feedback refined */
.scratch-clicked {
  animation: refinedButtonTap 0.18s ease !important;
}

@keyframes refinedButtonTap {
  50% {
    transform: translateY(-1px) scale(0.995);
  }
}


/* Fortune 500 detail pass
   Understated branded texture, no novelty animal icons. */

/* Remove previous literal animal gimmicks */
.premium-paw-watermark,
.premium-trail-mark,
.claw-damaged-card::before,
.claw-damaged-card::after,
.bite-damaged-card::before,
.bite-damaged-card::after,
.track-trail,
.mobile-track,
.floating-track,
.animal-mark,
.service-card::before,
.timeline-item::after,
.hero-slide-overlay::before,
.radio-card::after,
.contact-card::after,
.impact-card::after,
.faq-question::after,
.form-step h3::after,
.booking-card h3::after,
.evidence-panel h3::after,
.hero-card h2::after,
.brand::after,
.section-heading .eyebrow::before,
.diagram-hotspot::after {
  display: none !important;
}

/* Replace cartoon scratches with premium etched material marks */
.brand-material-mark {
  position: absolute;
  right: 8%;
  top: -20px;
  width: 240px;
  height: 150px;
  opacity: 0.13;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 47%, rgba(31,75,56,0.38) 48%, rgba(255,255,255,0.55) 49%, transparent 50%),
    linear-gradient(112deg, transparent 0 54%, rgba(31,75,56,0.22) 55%, rgba(255,255,255,0.38) 56%, transparent 57%),
    linear-gradient(112deg, transparent 0 61%, rgba(31,75,56,0.16) 62%, rgba(255,255,255,0.28) 63%, transparent 64%);
  filter: blur(0.15px);
  transform: rotate(-8deg);
  mask-image: linear-gradient(90deg, transparent, black 18%, black 70%, transparent);
}

.hero-copy {
  position: relative;
}

/* Refined field seal, more like a premium watermark than a paw icon */
.premium-field-seal {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 122px;
  height: 122px;
  border-radius: 999px;
  opacity: 0.075;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 0 35%, var(--brand-dark) 36% 37%, transparent 38% 100%),
    conic-gradient(from 12deg, transparent 0 8%, var(--brand-dark) 9% 10%, transparent 11% 18%, var(--brand-dark) 19% 20%, transparent 21% 100%);
  -webkit-mask:
    radial-gradient(circle at center, transparent 0 28%, black 29% 100%);
  mask:
    radial-gradient(circle at center, transparent 0 28%, black 29% 100%);
}

.premium-field-seal::before {
  content: "";
  position: absolute;
  inset: 32px;
  border-radius: 999px;
  border: 2px solid var(--brand-dark);
  opacity: 0.8;
}

/* Replace bite/chip with an executive-level subtle corner irregularity */
.bite-damaged-card {
  clip-path: polygon(
    0 0,
    calc(100% - 34px) 0,
    calc(100% - 26px) 5px,
    calc(100% - 17px) 2px,
    100% 9px,
    100% 100%,
    0 100%
  );
}

.bite-damaged-card {
  box-shadow:
    0 18px 60px rgba(22,35,26,0.08),
    inset -1px 1px 0 rgba(73,57,39,0.08),
    inset 0 1px 0 rgba(255,255,255,0.65);
}

/* Replace obvious claw with one small etched detail */
.claw-damaged-card {
  position: relative;
}

.claw-damaged-card .timeline-item-inner {
  position: relative;
}

.claw-damaged-card {
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, rgba(47,107,79,0.12), rgba(216,154,61,0.16)) border-box;
}

.claw-damaged-card > h3::after {
  content: "";
  display: inline-block;
  width: 48px;
  height: 20px;
  margin-left: 12px;
  opacity: 0.26;
  vertical-align: middle;
  background:
    linear-gradient(110deg, transparent 0 40%, rgba(73,57,39,0.48) 41%, rgba(255,255,255,0.48) 42%, transparent 44%),
    linear-gradient(110deg, transparent 0 54%, rgba(73,57,39,0.32) 55%, rgba(255,255,255,0.36) 56%, transparent 58%);
  transform: rotate(-12deg) translateY(-2px);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 82%, transparent);
}

/* Ultra-subtle branded card texture */
.service-face,
.timeline-item,
.contact-card,
.faq-question,
.impact-card,
.evidence-map,
.evidence-panel,
.booking-card,
.hero-card,
.process-infographic {
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.45), rgba(255,255,255,0) 38%),
    radial-gradient(circle at 88% 12%, rgba(47,107,79,0.025), transparent 28%);
  box-shadow:
    0 20px 70px rgba(22,35,26,0.075),
    inset 0 1px 0 rgba(255,255,255,0.62);
}

/* More corporate hover styling */
.service-card:hover {
  transform: translateY(-4px) scale(1.005);
}

.service-grid:hover .service-card:not(:hover) {
  filter: saturate(0.95) opacity(0.92);
  transform: scale(0.996);
}

/* Buttons become premium, less novelty */
.scratch-btn::after {
  background:
    linear-gradient(120deg, rgba(255,255,255,0.28), transparent 24%, transparent 74%, rgba(255,255,255,0.14));
}

.scratch-clicked {
  animation: corporatePress 0.16s ease !important;
}

@keyframes corporatePress {
  50% {
    transform: translateY(-1px) scale(0.997);
  }
}

/* High-end inspection hotspots */
.diagram-hotspot {
  width: 22px;
  height: 22px;
  background:
    radial-gradient(circle at 38% 30%, #ffffff 0 14%, var(--accent) 15% 46%, #9f681f 47% 100%);
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow:
    0 0 0 5px rgba(216,154,61,0.1),
    0 12px 30px rgba(22,35,26,0.16);
  animation: executivePulse 4.8s ease-in-out infinite;
}

.diagram-hotspot.active,
.diagram-hotspot:hover {
  background:
    radial-gradient(circle at 38% 30%, #ffffff 0 14%, var(--brand) 15% 48%, var(--brand-dark) 49% 100%);
  box-shadow:
    0 0 0 7px rgba(47,107,79,0.1),
    0 12px 30px rgba(22,35,26,0.2);
}

@keyframes executivePulse {
  0%, 100% {
    box-shadow:
      0 0 0 5px rgba(216,154,61,0.1),
      0 12px 30px rgba(22,35,26,0.16);
  }

  50% {
    box-shadow:
      0 0 0 10px rgba(216,154,61,0.04),
      0 12px 30px rgba(22,35,26,0.16);
  }
}

/* Replace background animal clutter with faint surveying lines */
.desktop-fx {
  opacity: 0.32;
}

.depth-field,
.topographic-lines {
  opacity: 0.035 !important;
}

.radar-sweep {
  opacity: 0.22 !important;
}

.scan-grid {
  opacity: 0.04 !important;
}

/* Keep mobile especially restrained */
@media (max-width: 900px) {
  .brand-material-mark,
  .premium-field-seal,
  .claw-damaged-card > h3::after {
    display: none !important;
  }

  .bite-damaged-card {
    clip-path: none;
  }

  .diagram-hotspot {
    width: 24px;
    height: 24px;
  }
}


/* Interactive booking redesign: replaces dropdowns with guided choices */
.interactive-booking-form .step-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.step-helper {
  color: var(--muted);
  margin-bottom: 18px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.choice-card,
.animal-chip,
.area-choice,
.urgency-option,
.segment {
  border: 1px solid var(--border);
  background: rgba(255, 253, 247, 0.88);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.choice-card {
  min-height: 132px;
  border-radius: 22px;
  padding: 16px;
  text-align: left;
}

.choice-card:hover,
.choice-card.selected,
.animal-chip:hover,
.animal-chip.selected,
.area-choice:hover,
.area-choice.selected,
.urgency-option:hover,
.urgency-option.selected,
.segment:hover,
.segment.selected {
  border-color: rgba(47, 107, 79, 0.38);
  background: white;
  box-shadow: 0 14px 34px rgba(22, 35, 26, 0.08);
  transform: translateY(-2px);
}

.choice-card.selected,
.animal-chip.selected,
.area-choice.selected,
.urgency-option.selected,
.segment.selected {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

.choice-card small,
.urgency-option small {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}

.choice-card.selected small,
.urgency-option.selected small {
  color: rgba(255, 255, 255, 0.74);
}

.choice-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: var(--brand-soft);
  margin-bottom: 12px;
}

.choice-card.selected .choice-icon {
  background: rgba(255, 255, 255, 0.16);
}

.animal-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.animal-chip {
  min-height: 46px;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
}

.area-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 20%, rgba(47, 107, 79, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.76), rgba(255,250,240,0.78));
}

.area-map::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px dashed rgba(47, 107, 79, 0.14);
  pointer-events: none;
}

.area-choice {
  position: relative;
  z-index: 2;
  min-height: 78px;
  border-radius: 18px;
  font-weight: 900;
}

.urgency-scale {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.urgency-option {
  min-height: 132px;
  border-radius: 22px;
  padding: 18px;
  text-align: left;
}

.urgency-dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 7px rgba(47, 107, 79, 0.1);
  margin-bottom: 18px;
}

.urgency-option.urgent .urgency-dot {
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(216, 154, 61, 0.13);
}

.urgency-option.selected .urgency-dot {
  background: white;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.16);
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.segmented-control.vertical {
  grid-template-columns: 1fr;
}

.segment {
  min-height: 46px;
  border-radius: 999px;
  font-weight: 900;
}

.choice-error {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(216, 154, 61, 0.14);
  color: #81520f;
  font-weight: 900;
  display: none;
}

.choice-error.show {
  display: block;
}

@media (max-width: 900px) {
  .choice-grid,
  .urgency-scale {
    grid-template-columns: 1fr;
  }

  .area-map {
    grid-template-columns: repeat(2, 1fr);
  }

  .segmented-control {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .area-map {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .choice-card,
  .urgency-option {
    min-height: auto;
  }

  .animal-chip {
    flex: 1 1 auto;
  }
}


/* Full review fixes and premium improvements */
.booking-live-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(47, 107, 79, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(226, 240, 232, 0.8), rgba(255, 250, 240, 0.82));
}

.booking-live-summary span,
.booking-live-summary strong {
  display: block;
}

.booking-live-summary span {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 1000;
}

.booking-live-summary strong {
  color: var(--brand-dark);
  text-align: right;
  font-size: 0.94rem;
}

.summary-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.summary-head h4 {
  margin: 0;
}

.summary-head button {
  border: 1px solid rgba(47, 107, 79, 0.18);
  background: white;
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 8px 11px;
  font-weight: 900;
  cursor: pointer;
}

.summary-head button:hover {
  background: var(--brand);
  color: white;
}

.copy-status {
  margin: 8px 0 0;
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 900;
}

.service-assurance-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 4px;
}

.service-assurance-row div {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 18px 60px rgba(22,35,26,0.07),
    inset 0 1px 0 rgba(255,255,255,0.62);
}

.service-assurance-row span,
.service-assurance-row strong {
  display: block;
}

.service-assurance-row span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 1000;
  margin-bottom: 6px;
}

.service-assurance-row strong {
  color: var(--brand-dark);
}

.easter-egg-hint {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.78rem;
}

.interactive-booking-form .form-step {
  min-height: 430px;
}

.choice-card,
.animal-chip,
.area-choice,
.urgency-option,
.segment {
  -webkit-tap-highlight-color: transparent;
}

.choice-card:focus-visible,
.animal-chip:focus-visible,
.area-choice:focus-visible,
.urgency-option:focus-visible,
.segment:focus-visible,
.summary-head button:focus-visible {
  outline: 3px solid rgba(216, 154, 61, 0.45);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .booking-live-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-live-summary strong {
    text-align: left;
  }

  .service-assurance-row {
    grid-template-columns: 1fr;
  }

  .interactive-booking-form .form-step {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .summary-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .summary-head button {
    width: 100%;
  }
}


/* Real work, reviews and backend-ready form additions */
.work-section {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
}

.work-section--showcase {
  background:
    linear-gradient(178deg, rgba(18, 28, 22, 0.045) 0%, transparent 32%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.58), rgba(247, 244, 237, 0.98)),
    radial-gradient(ellipse 70% 55% at 8% -5%, rgba(216, 154, 61, 0.12), transparent 52%),
    radial-gradient(circle at 94% 88%, rgba(47, 107, 79, 0.08), transparent 42%);
  overflow: hidden;
}

.work-section--showcase::before {
  content: "";
  position: absolute;
  width: clamp(260px, 42vw, 440px);
  height: clamp(260px, 42vw, 440px);
  right: clamp(-150px, -14vw, -50px);
  top: clamp(48px, 11vw, 110px);
  border-radius: 50%;
  border: 1px solid rgba(47, 107, 79, 0.065);
  pointer-events: none;
  opacity: 0.85;
}

.work-showcase {
  position: relative;
}

.work-showcase-watermark {
  position: absolute;
  top: 0;
  right: max(0px, calc(50% - 580px));
  margin: 0;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(47, 107, 79, 0.17);
}

@media (max-width: 800px) {
  .work-showcase-watermark {
    display: none;
  }
}

.work-showcase-head {
  max-width: 600px;
}

.work-showcase-board {
  position: relative;
  padding: clamp(18px, 3vw, 26px);
  border-radius: clamp(22px, 3.4vw, 32px);
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid rgba(47, 107, 79, 0.11);
  box-shadow:
    0 26px 80px rgba(22, 35, 26, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.work-showcase-board .work-filters {
  margin: 0 0 22px;
  justify-content: flex-start;
}

.work-cta.work-cta--showcase {
  margin-top: clamp(34px, 5vw, 48px);
}

.job-gallery {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.job-card {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--border);
  box-shadow:
    0 20px 70px rgba(22,35,26,0.08),
    inset 0 1px 0 rgba(255,255,255,0.62);
}

.job-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.featured-job img {
  height: 320px;
}

.job-card div {
  padding: 22px;
}

.job-card span,
.review-card span {
  display: inline-flex;
  color: var(--brand);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 1000;
  margin-bottom: 8px;
}

.job-card p,
.review-card p {
  color: var(--muted);
}

.job-note {
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(47,107,79,0.16);
  border-radius: 20px;
  background: rgba(226,240,232,0.72);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.job-note strong {
  color: var(--brand-dark);
}

.job-note span {
  color: var(--muted);
}

.reviews-section {
  background: var(--bg);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.05fr;
  gap: 18px;
}

.review-card {
  min-height: 260px;
  padding: 26px;
  border-radius: 30px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--border);
  box-shadow:
    0 20px 70px rgba(22,35,26,0.08),
    inset 0 1px 0 rgba(255,255,255,0.62);
}

.review-card p {
  font-size: 1.08rem;
}

.stars {
  color: var(--accent);
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.review-placeholder {
  opacity: 0.78;
}

.review-cta {
  background:
    radial-gradient(circle at top right, rgba(216,154,61,0.16), transparent 34%),
    var(--brand-dark);
  color: white;
}

.review-cta p,
.review-cta span {
  color: rgba(255,255,255,0.72);
}

.review-cta .eyebrow {
  color: rgba(255,255,255,0.74);
}

.noscript-submit-note {
  color: var(--brand-dark);
  font-weight: 900;
}

@media (max-width: 900px) {
  .job-gallery,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .job-card img,
  .featured-job img {
    height: 230px;
  }
}


/* Final cleanup and layout stabilization */
.desktop-fx,
.scroll-bg,
.mobile-motion-bg,
.hero-orbit-svg,
.field-scan-panel,
.hero-intel-strip,
.track-game,
.depth-field,
.topographic-lines,
.radar-sweep,
.scan-grid,
.floating-track,
.cursor-spotlight,
.scroll-vine,
.scroll-blob,
.mobile-drift,
.mobile-track {
  display: none !important;
}

.lite-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  transform: translate3d(var(--amb-x, 0px), var(--amb-y, 0px), 0);
  will-change: transform;
  background:
    radial-gradient(circle at 12% 16%, rgba(216,154,61,0.07), transparent 28%),
    radial-gradient(circle at 88% 40%, rgba(47,107,79,0.065), transparent 30%),
    linear-gradient(180deg, rgba(247,244,237,0.98), rgba(255,250,240,0.78));
}

/* Stop leftover transform bugs from old parallax without breaking normal layout */
.hero-copy,
.hero-media,
.hero-carousel,
.booking-card,
.contact-card,
.impact-card,
.evidence-map,
.evidence-panel {
  transform: none !important;
  will-change: auto !important;
}

.hero-carousel::before,
.hero-slide.active img {
  animation: none !important;
  transform: none !important;
}

/* Rebuild process section so it is clean, clickable and understandable */
.timeline {
  align-items: stretch;
}

.timeline-item {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,250,240,0.84));
}

.timeline-item > span {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--brand);
  color: white;
  box-shadow: 0 12px 28px rgba(47,107,79,0.22);
}

.timeline-item:nth-child(1)::before,
.timeline-item:nth-child(2)::before,
.timeline-item:nth-child(3)::before,
.timeline-item:nth-child(4)::before {
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 2.15rem;
  opacity: 0.11;
  filter: grayscale(1);
  pointer-events: none;
}

.timeline-item:nth-child(1)::before { content: "🔎"; }
.timeline-item:nth-child(2)::before { content: "📅"; }
.timeline-item:nth-child(3)::before { content: "🦝"; }
.timeline-item:nth-child(4)::before { content: "🛡️"; }

.process-infographic {
  margin-top: 26px;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,250,240,0.82));
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(22,35,26,0.08);
}

.process-map {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: auto !important;
  padding: 16px;
  overflow: visible;
  border-radius: 22px;
}

.process-svg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 220px;
  min-height: 220px;
  display: block;
}

.process-route-bg,
.process-route {
  fill: none;
  stroke-linecap: round;
}

.process-route-bg {
  stroke: rgba(47,107,79,0.14);
  stroke-width: 10;
}

.process-route {
  stroke: var(--brand);
  stroke-width: 10;
  transition: stroke-dashoffset 0.35s ease;
}

.process-node {
  fill: white;
  stroke: var(--brand);
  stroke-width: 6;
  cursor: pointer;
  pointer-events: auto;
  transform-origin: center;
  transform-box: fill-box;
  transition: transform 0.18s ease, fill 0.18s ease;
}

.process-node.active {
  fill: var(--brand);
  transform: scale(1.16);
}

.process-info {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 3;
  max-width: none;
  display: none;
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(22,35,26,0.07);
}

.process-info.active {
  display: block;
  animation: none;
}

.impact-grid {
  margin-top: 14px;
}

/* Fix booking so it sits naturally and does not feel misplaced */
.booking-grid {
  align-items: start;
}

.booking-card {
  position: relative;
  overflow: hidden;
}

.booking-live-summary {
  position: relative;
  z-index: 2;
}

.progress-wrap {
  position: relative;
  z-index: 2;
}

/* Make interactive form spacing consistent */
.interactive-booking-form .form-step {
  min-height: 0 !important;
}

.choice-grid,
.animal-picker,
.area-map,
.urgency-scale,
.segmented-control {
  margin-top: 12px;
}

.choice-card,
.animal-chip,
.area-choice,
.urgency-option,
.segment {
  touch-action: manipulation;
}

.choice-card.selected,
.animal-chip.selected,
.area-choice.selected,
.urgency-option.selected,
.segment.selected {
  box-shadow: 0 14px 34px rgba(47,107,79,0.13);
}

/* Gallery and review layout stability */
.work-section,
.reviews-section,
.contact-section,
.faq-section {
  position: relative;
  z-index: 1;
}

.job-gallery,
.review-grid,
.contact-grid {
  align-items: stretch;
}

/* Remove old novelty marks that caused visual confusion */
.brand-material-mark,
.premium-field-seal,
.claw-damaged-card > h3::after,
.claw-damaged-card::before,
.claw-damaged-card::after,
.bite-damaged-card::before,
.bite-damaged-card::after,
.track-trail,
.animal-mark,
.service-card::before,
.diagram-hotspot::after,
.hero-slide-overlay::before,
.form-step h3::after,
.booking-card h3::after,
.evidence-panel h3::after,
.hero-card h2::after,
.radio-card::after,
.contact-card::after,
.impact-card::after,
.faq-question::after {
  display: none !important;
}

.bite-damaged-card {
  clip-path: none !important;
}

/* Mobile stabilization */
@media (max-width: 900px) {
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .process-infographic {
    padding: 18px;
  }

  .process-map {
    padding: 12px;
  }

  .process-svg {
    height: 150px;
    min-height: 150px;
  }

  .process-route-bg,
  .process-route {
    stroke-width: 8;
  }

  .process-node {
    stroke-width: 5;
  }

  .job-gallery,
  .review-grid,
  .contact-grid,
  .service-assurance-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .timeline {
    grid-template-columns: 1fr;
  }

  .process-svg {
    height: 120px;
    min-height: 120px;
  }

  .timeline-item {
    min-height: auto;
  }
}

/* Keep reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}


/* Final launch cleanup implementation */

/* Simplify process section: premium four-step cards, no interactive route */
.process-infographic {
  display: none !important;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline-item {
  min-height: 240px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,250,240,0.82));
  border: 1px solid var(--border);
  box-shadow:
    0 18px 50px rgba(22,35,26,0.08),
    inset 0 1px 0 rgba(255,255,255,0.62);
}

.timeline-item > span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin-bottom: 20px;
  background: var(--brand);
  color: white;
  box-shadow: 0 12px 28px rgba(47,107,79,0.22);
}

.timeline-item h3 {
  font-size: 1.35rem;
}

.timeline-item p {
  margin-bottom: 0;
}

/* Honest reviews coming soon */
.review-coming-soon {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 26px;
  padding: 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(216,154,61,0.14), transparent 30%),
    rgba(255,255,255,0.86);
  border: 1px solid var(--border);
  box-shadow:
    0 20px 70px rgba(22,35,26,0.08),
    inset 0 1px 0 rgba(255,255,255,0.62);
}

.review-coming-soon p {
  color: var(--muted);
  max-width: 720px;
}

.review-coming-soon .area-keywords {
  margin: 0;
  width: 100%;
}

.review-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 1000;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Privacy and trust */
.privacy-note {
  margin: 16px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(47,107,79,0.14);
  border-radius: 16px;
  background: rgba(226,240,232,0.66);
  color: var(--brand-dark);
  font-weight: 900;
  font-size: 0.9rem;
}

/* Desktop sticky call panel */
.desktop-call-panel {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: 260px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(216,154,61,0.2), transparent 36%),
    rgba(21,32,25,0.92);
  color: white;
  box-shadow: 0 22px 60px rgba(22,35,26,0.22);
  backdrop-filter: blur(14px);
}

.desktop-call-panel span,
.desktop-call-panel strong,
.desktop-call-panel a {
  display: block;
}

.desktop-call-panel span {
  color: rgba(255,255,255,0.66);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.desktop-call-panel strong {
  margin-top: 4px;
  line-height: 1.15;
}

.desktop-call-panel a {
  margin-top: 10px;
  color: white;
  font-size: 1.12rem;
  font-weight: 1000;
}

/* Service area SEO section */
.service-area-section {
  background:
    linear-gradient(135deg, rgba(255,250,240,0.72), rgba(247,244,237,0.96)),
    radial-gradient(circle at 85% 16%, rgba(47,107,79,0.08), transparent 30%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-area-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.area-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-keywords span {
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
  color: var(--brand-dark);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(22,35,26,0.06);
}

/* Work section wording is now clearly placeholder/category based */
.job-card span {
  color: var(--brand-dark);
}

/* Form CTA wording adjusted, keep layout tight */
.booking-card {
  scroll-margin-top: 140px;
}

/* Remove review placeholder card styles from final launch */
.review-grid,
.review-card,
.review-placeholder,
.review-cta {
  /* legacy review card classes kept harmless in case reused later */
}

/* Responsive final launch */
@media (max-width: 1060px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .desktop-call-panel {
    display: none;
  }
}

@media (max-width: 900px) {
  .review-coming-soon {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-area-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    min-height: auto;
  }
}


/* Desktop layout correction
   Fixes hero spacing, carousel alignment, trust-card overflow and header Call Now button sizing. */

/* Header/nav */
@media (min-width: 901px) {
  .nav {
    gap: 28px;
  }

  .brand {
    min-width: 280px;
    flex-shrink: 0;
  }

  .nav-links {
    flex: 1;
    justify-content: flex-end;
    gap: 6px;
  }

  .nav-links a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 13px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .nav-links .nav-call {
    min-width: auto;
    height: auto;
    border-radius: 999px;
    padding: 11px 18px;
    background: var(--brand);
    color: white;
    box-shadow: 0 12px 28px rgba(47, 107, 79, 0.18);
  }

  .nav-links .nav-call:hover {
    transform: translateY(-1px);
    background: var(--brand-dark);
  }
}

/* Hero layout */
@media (min-width: 901px) {
  .hero {
    min-height: auto;
    padding: 72px 0 86px;
    display: block;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
    gap: clamp(28px, 4vw, 58px);
    align-items: center;
  }

  .hero-copy {
    min-width: 0;
    max-width: 640px;
  }

  .hero-copy h1 {
    font-size: clamp(3.4rem, 5.2vw, 5.8rem);
    line-height: 0.95;
    max-width: 620px;
  }

  .hero-copy p {
    max-width: 560px;
  }

  .hero-media {
    min-width: 0;
    width: 100%;
    max-width: 760px;
    justify-self: end;
  }

  .hero-carousel {
    width: 100%;
    min-height: 420px;
    max-height: 500px;
    aspect-ratio: 1.62 / 1;
  }

  .quick-book-card {
    width: 100%;
    margin-top: 20px;
  }

  .trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 560px;
  }

  .trust-row div {
    min-width: 0;
    padding: 15px 16px;
  }

  .trust-row strong,
  .trust-row span {
    overflow-wrap: anywhere;
  }
}

/* Better intermediate desktop/tablet handling */
@media (min-width: 901px) and (max-width: 1180px) {
  .nav {
    width: min(1180px, calc(100% - 24px));
  }

  .brand {
    min-width: 245px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .nav-links a {
    padding: 9px 10px;
    font-size: 0.86rem;
  }

  .nav-links .nav-call {
    padding: 10px 14px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 26px;
  }

  .hero-copy h1 {
    font-size: clamp(3.1rem, 5vw, 4.6rem);
  }

  .hero-carousel {
    min-height: 360px;
  }

  .trust-row {
    max-width: 520px;
  }
}

@media (min-width: 901px) and (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-copy p,
  .trust-row {
    max-width: 760px;
  }

  .hero-media {
    justify-self: stretch;
    max-width: 100%;
  }

  .hero-carousel {
    min-height: 420px;
  }
}

/* Remove any accidental oversized nav call styling inherited from mobile/floating buttons */
.site-header .nav-call {
  aspect-ratio: auto !important;
  width: auto !important;
}

/* Make desktop sticky call panel not cover content too aggressively */
@media (min-width: 1061px) {
  .desktop-call-panel {
    right: 20px;
    bottom: 20px;
    width: 250px;
  }
}

@media (max-width: 1060px) {
  .desktop-call-panel {
    display: none !important;
  }
}


/* FINAL HERO + HEADER REBUILD
   This is the authoritative desktop/mobile layout layer. It fixes previous broken hero markup and conflicting overrides. */

.site-header {
  z-index: 100;
}

.site-header .nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  gap: 24px;
  position: relative;
}

.site-header .brand {
  flex: 0 0 auto;
}

.site-header .nav-links {
  margin-left: auto;
}

.site-header .nav-links a {
  line-height: 1.1;
}

.site-header .nav-links .nav-call {
  width: auto !important;
  height: auto !important;
  aspect-ratio: auto !important;
  border-radius: 999px !important;
  padding: 11px 18px !important;
  background: var(--brand) !important;
  color: white !important;
  box-shadow: 0 12px 28px rgba(47, 107, 79, 0.18);
}

.hero.section {
  position: relative;
  overflow: hidden;
  padding: 82px 0 88px;
}

.hero.section .hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr) !important;
  gap: clamp(34px, 4.5vw, 68px) !important;
  align-items: center !important;
}

.hero.section .hero-copy {
  min-width: 0;
  max-width: 620px;
  transform: none !important;
}

.hero.section .hero-copy h1 {
  max-width: 620px;
  font-size: clamp(3.45rem, 5.15vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.hero.section .hero-copy p {
  max-width: 560px;
}

.hero.section .hero-media {
  min-width: 0;
  width: 100%;
  max-width: 760px;
  justify-self: end;
  display: grid;
  gap: 22px;
  transform: none !important;
}

.hero.section .hero-carousel {
  width: 100%;
  min-height: 420px;
  height: auto;
  aspect-ratio: 1.62 / 1;
  max-height: 500px;
  transform: none !important;
}

.hero.section .quick-book-card {
  width: 100%;
  margin-top: 0 !important;
  transform: none !important;
}

.hero.section .trust-row {
  width: 100%;
  max-width: 560px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.hero.section .trust-row div {
  min-width: 0;
  padding: 15px 16px;
}

.hero.section .trust-row strong,
.hero.section .trust-row span {
  overflow-wrap: normal;
  word-break: normal;
}

.hero.section .hero-actions {
  margin-bottom: 0;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .site-header .nav {
    width: min(1180px, calc(100% - 24px));
    gap: 14px;
  }

  .site-header .brand small {
    max-width: 180px;
  }

  .site-header .nav-links {
    gap: 4px;
  }

  .site-header .nav-links a {
    padding: 9px 9px;
    font-size: 0.84rem;
  }

  .site-header .nav-links .nav-call {
    padding: 10px 13px !important;
  }

  .hero.section .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr) !important;
    gap: 30px !important;
  }

  .hero.section .hero-copy h1 {
    font-size: clamp(3.05rem, 4.7vw, 4.65rem);
  }

  .hero.section .hero-carousel {
    min-height: 360px;
  }
}

@media (max-width: 980px) {
  .hero.section {
    padding: 68px 0 72px;
  }

  .hero.section .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .hero.section .hero-copy,
  .hero.section .hero-copy h1,
  .hero.section .hero-copy p,
  .hero.section .trust-row,
  .hero.section .hero-media {
    max-width: 100%;
  }

  .hero.section .hero-media {
    justify-self: stretch;
  }

  .hero.section .hero-carousel {
    min-height: 380px;
    max-height: none;
  }
}

@media (max-width: 900px) {
  .site-header .nav {
    width: min(1160px, calc(100% - 32px));
  }

  .site-header .nav-links {
    top: 114px;
  }
}

@media (max-width: 620px) {
  .hero.section {
    padding: 52px 0 58px;
  }

  .hero.section .hero-copy h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .hero.section .trust-row {
    grid-template-columns: 1fr;
  }

  .hero.section .hero-carousel {
    min-height: 300px;
  }
}

/* ---------- Homepage scroll-linked full-bleed hero ---------- */

.hero.section.hero-banner {
  min-height: min(92vh, 920px);
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.hero-banner-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.85s ease;
  pointer-events: none;
}

.hero-banner-slide.active {
  opacity: 1;
}

.hero-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(9, 16, 12, 0.91) 0%,
    rgba(9, 16, 12, 0.65) 44%,
    rgba(9, 16, 12, 0.25) 64%,
    rgba(9, 16, 12, 0.52) 100%
  );
}

.hero-banner .hero-banner-content.hero-grid {
  position: relative;
  z-index: 2;
  flex: 1;
  align-items: center !important;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(104px, 13vh, 148px) 0 clamp(64px, 8vh, 100px);
  max-width: none;
}

.hero-banner .hero-copy {
  color: rgba(255, 250, 240, 0.95);
}

.hero-banner .hero-copy .eyebrow {
  color: rgba(247, 210, 150, 0.95);
}

.hero-banner .hero-copy h1 {
  color: #fffefb;
  text-wrap: balance;
}

.hero-banner .hero-copy p {
  color: rgba(255, 250, 240, 0.76);
}

.hero-banner .trust-row div {
  background: rgba(255, 250, 240, 0.06);
  border: 1px solid rgba(255, 250, 240, 0.16);
}

.hero-banner .trust-row strong {
  color: rgba(255, 250, 240, 0.96);
}

.hero-banner .trust-row span {
  color: rgba(255, 250, 240, 0.68);
}

.hero.section.hero-banner .hero-carousel.hero-banner-controls {
  position: relative !important;
  inset: auto !important;
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: auto !important;
  max-height: none !important;
  width: 100%;
  max-width: 480px;
  margin-top: 28px !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  overflow: visible !important;
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 10px 16px;
  align-items: center;
}

.hero.section.hero-banner .hero-banner-controls-label {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 250, 240, 0.52);
}

.hero.section.hero-banner .hero-carousel.hero-banner-controls .hero-control {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  margin: 0 !important;
}

.hero.section.hero-banner .hero-carousel.hero-banner-controls .hero-control.prev {
  grid-column: 1;
  grid-row: 2;
}

.hero.section.hero-banner .hero-carousel.hero-banner-controls .hero-dots {
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
  justify-content: center;
  grid-column: 2;
  grid-row: 2;
}

.hero.section.hero-banner .hero-carousel.hero-banner-controls .hero-control.next {
  grid-column: 3;
  grid-row: 2;
}

.hero-banner .hero-banner-card {
  box-shadow: 0 28px 80px rgba(5, 10, 8, 0.45);
}

@media (max-width: 900px) {
  .hero.section.hero-banner {
    min-height: min(92svh, 800px);
    justify-content: flex-start;
  }

  .hero-banner .hero-banner-content.hero-grid {
    align-items: start !important;
    align-content: start;
    width: min(1160px, calc(100% - 24px));
    margin-left: auto;
    margin-right: auto;
    padding-top: calc(env(safe-area-inset-top, 0px) + 88px);
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 96px);
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
    gap: 24px !important;
  }

  .hero-banner-slide img {
    object-position: center 30%;
  }

  .hero-banner-scrim {
    background: linear-gradient(
      180deg,
      rgba(9, 16, 12, 0.95) 0%,
      rgba(9, 16, 12, 0.8) 40%,
      rgba(9, 16, 12, 0.62) 72%,
      rgba(9, 16, 12, 0.9) 100%
    );
  }

  .hero.section.hero-banner .trust-row {
    grid-template-columns: 1fr;
    max-width: none;
    margin-top: 20px;
    gap: 10px;
  }

  .hero.section.hero-banner .trust-row div {
    padding: 12px 14px;
  }

  .hero-banner .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin: 18px 0 0;
    width: 100%;
    max-width: 420px;
  }

  .hero-banner .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  .hero.section.hero-banner .hero-carousel.hero-banner-controls {
    max-width: 100%;
    min-height: 0 !important;
    max-height: none !important;
    margin-top: 18px !important;
  }

  .hero-banner .hero-media {
    width: 100%;
  }

  .hero-banner .hero-banner-card {
    border-radius: 22px;
  }
}

@media (max-width: 620px) {
  .hero.section.hero-banner {
    min-height: min(90svh, 720px);
  }

  .hero-banner .hero-banner-content.hero-grid {
    padding-top: calc(env(safe-area-inset-top, 0px) + 80px);
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 108px);
  }

  .hero.section.hero-banner .hero-copy h1 {
    font-size: clamp(1.75rem, 6.8vw, 2.35rem);
    line-height: 1.07;
    margin-bottom: 12px;
  }

  .hero.section.hero-banner .hero-copy p {
    font-size: 0.94rem;
    line-height: 1.52;
    max-width: 36rem;
  }

  .hero.section.hero-banner .hero-carousel.hero-banner-controls .hero-dots {
    flex-wrap: wrap;
  }

  .hero.section.hero-banner .hero-banner-controls-label {
    font-size: 0.64rem;
    letter-spacing: 0.07em;
    line-height: 1.35;
  }

  .hero.section.hero-banner .hero-carousel.hero-banner-controls .hero-control {
    min-width: 48px;
    min-height: 48px;
  }
}

/* =========================================================================
   PREMIUM UPGRADE LAYER
   - Impact stats strip
   - Why Solace trust grid
   - Wildlife Spotter mini-game
   - Work grid + filters + lightbox
   - Hidden tracks / easter eggs
   - Subpage shared layout
   ========================================================================= */

/* ---------- Impact strip ---------- */
.impact-strip {
  padding: 56px 0;
  background:
    linear-gradient(180deg, rgba(247, 244, 237, 0) 0%, rgba(226, 240, 232, 0.55) 100%);
  border-bottom: 1px solid rgba(47, 107, 79, 0.08);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.impact-card {
  position: relative;
  padding: 28px 26px 30px;
  border-radius: 22px;
  background:
    linear-gradient(155deg, rgba(255,255,255,0.95), rgba(255,250,240,0.92));
  border: 1px solid var(--border);
  box-shadow:
    0 14px 40px rgba(22, 35, 26, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.7);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s ease;
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 60px rgba(22, 35, 26, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.impact-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(47, 107, 79, 0.1);
  color: var(--brand-dark);
  margin-bottom: 14px;
}

.impact-icon svg {
  width: 22px;
  height: 22px;
}

.impact-number {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--brand-dark);
  font-weight: 900;
}

.impact-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 24ch;
}

.impact-card small.impact-note--wide {
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}

.impact-stat-text {
  display: block;
  font-size: clamp(1.5rem, 3.6vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--brand-dark);
  font-weight: 900;
}

.impact-foot {
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 70px;
  height: 70px;
  background:
    radial-gradient(circle at 25% 35%, rgba(47,107,79,0.16) 0 8px, transparent 9px),
    radial-gradient(circle at 60% 25%, rgba(47,107,79,0.16) 0 6px, transparent 7px),
    radial-gradient(circle at 80% 50%, rgba(47,107,79,0.16) 0 6px, transparent 7px),
    radial-gradient(circle at 50% 70%, rgba(47,107,79,0.2) 0 14px, transparent 15px);
  opacity: 0.7;
  filter: blur(0.2px);
  transform: rotate(-12deg);
  pointer-events: none;
}

@media (max-width: 900px) {
  .impact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .impact-grid { grid-template-columns: 1fr; }
}

/* ---------- Why Solace ---------- */
.why-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(216,154,61,0.07), transparent 36%),
    radial-gradient(circle at 96% 100%, rgba(47,107,79,0.07), transparent 38%),
    var(--bg);
}

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

.why-card {
  position: relative;
  padding: 30px 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  box-shadow:
    0 18px 50px rgba(22, 35, 26, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.6);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.45s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 30px 60px rgba(22, 35, 26, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(155deg, rgba(47,107,79,0.12), rgba(216,154,61,0.12));
  color: var(--brand-dark);
  margin-bottom: 14px;
}

.why-icon svg {
  width: 18px;
  height: 18px;
}

.why-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}

.why-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.55;
}

.why-track {
  position: absolute;
  pointer-events: none;
  right: -10px;
  bottom: -10px;
  width: 60px;
  height: 36px;
  background:
    radial-gradient(circle at 18% 70%, rgba(47,107,79,0.14) 0 4px, transparent 5px),
    radial-gradient(circle at 38% 40%, rgba(47,107,79,0.14) 0 4px, transparent 5px),
    radial-gradient(circle at 58% 70%, rgba(47,107,79,0.16) 0 5px, transparent 6px),
    radial-gradient(circle at 80% 40%, rgba(47,107,79,0.14) 0 4px, transparent 5px);
  opacity: 0;
  transform: translate(8px, 4px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.2,.8,.2,1);
}

.why-card:hover .why-track {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 580px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Wildlife Spotter mini-game ---------- */
.minigame-section {
  background:
    linear-gradient(180deg, rgba(255,250,240,0.45), rgba(247,244,237,0.96)),
    radial-gradient(circle at 90% 6%, rgba(216,154,61,0.10), transparent 32%);
  position: relative;
}

.minigame-sronly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.minigame-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  width: 100%;
  max-width: 100%;
}

.minigame-shell > .minigame-stage,
.minigame-shell > .minigame-panel {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}


.minigame-section > .container {
  position: relative;
}

#minigameAnnouncer {
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 1;
}

.minigame-stage {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 30px 80px rgba(22,35,26,0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
  background: #15201a;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  aspect-ratio: 800 / 460;
  isolation: isolate;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.minigame-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  user-select: none;
}

.minigame-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(15,26,20,0.82), rgba(15,26,20,0.94));
  z-index: 5;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  padding: clamp(16px, 4vw, 24px);
}

.minigame-stage[data-state="playing"] .minigame-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.minigame-stage[data-state="ended"] .minigame-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.minigame-overlay-card {
  text-align: center;
  max-width: 400px;
  color: white;
  display: grid;
  gap: clamp(10px, 2vw, 14px);
  background: rgba(20, 32, 24, 0.72);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  padding: clamp(20px, 4vw, 28px);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.minigame-overlay-card .mg-card-title {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  letter-spacing: -0.02em;
  margin: 0;
}

.minigame-overlay-card strong:not(.mg-card-title) {
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}

.minigame-overlay-card p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 0.96rem;
  line-height: 1.55;
}

.minigame-device-hint {
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  background: rgba(0,0,0,0.2);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,0.12);
}

.minigame-hint-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(216,154,61,0.9);
  margin-bottom: 6px;
}

.minigame-overlay-card small {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}

.minigame-end-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.minigame-end-actions .btn {
  width: 100%;
  justify-content: center;
}

.mg-end-note {
  margin: 0;
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
  color: rgba(255,255,255,0.66) !important;
}

.minigame-target {
  position: absolute;
  left: var(--mx);
  top: var(--my);
  transform: translate(-50%, -50%) scale(0.72);
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(216,154,61,0);
  color: rgba(255,250,240,0);
  display: grid;
  place-items: center;
  cursor: crosshair;
  z-index: 4;
  transition:
    transform 0.35s cubic-bezier(.2,.8,.2,1),
    background 0.3s ease,
    color 0.3s ease,
    opacity 0.45s ease,
    filter 0.35s ease,
    box-shadow 0.35s ease;
  opacity: 0;
  pointer-events: none;
}

.minigame-target::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: transparent;
}

.minigame-target svg {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.minigame-stage[data-state="playing"] .minigame-target:not(.is-found) {
  opacity: 0.62;
  pointer-events: auto;
  animation: mgTargetIdle 4.2s ease-in-out infinite;
}

@media (hover: none), (pointer: coarse) {
  .minigame-stage[data-state="playing"] .minigame-target:not(.is-found) {
    opacity: 0.82;
    filter: drop-shadow(0 0 12px rgba(216,154,61,0.42));
  }
}

.minigame-stage[data-state="playing"] .minigame-target:not(.is-found):active {
  transform: translate(-50%, -50%) scale(0.95);
}

@keyframes mgTargetIdle {
  0%, 100% { transform: translate(-50%, -50%) scale(0.72); opacity: 0.58; }
  50% { transform: translate(-50%, -50%) scale(0.88); opacity: 0.88; }
}

.minigame-stage[data-state="playing"] .minigame-target:not(.is-found):hover {
  background: rgba(216,154,61,0.2);
  color: rgba(255,250,240,0.95);
  transform: translate(-50%, -50%) scale(1);
  box-shadow:
    0 0 0 5px rgba(216,154,61,0.14),
    0 0 28px rgba(216,154,61,0.32);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}

.minigame-stage[data-state="playing"] .minigame-target:focus-visible {
  outline: 3px solid rgba(216,154,61,0.95);
  outline-offset: 6px;
}

.minigame-target.is-found {
  background: rgba(47,107,79,0.95) !important;
  color: white !important;
  opacity: 1 !important;
  pointer-events: none;
  animation: mgFound 0.55s ease forwards;
  filter: none !important;
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.2),
    0 0 28px rgba(47,107,79,0.45);
}

@keyframes mgFound {
  0% { transform: translate(-50%, -50%) scale(1.14); }
  60% { transform: translate(-50%, -50%) scale(0.86); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

.minigame-stage[data-state="ended"] .minigame-target:not(.is-found) {
  opacity: 0;
  pointer-events: none;
  animation: none;
}

.minigame-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  box-shadow: 0 24px 70px rgba(22,35,26,0.1);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.minigame-panel[data-urgency="low"] {
  border-color: rgba(216,154,61,0.35);
  box-shadow:
    0 24px 70px rgba(22,35,26,0.1),
    inset 0 0 0 1px rgba(216,154,61,0.12);
}

.minigame-panel[data-urgency="low"] .minigame-panel-head > div:first-child {
  animation: mgTimePulse 1s ease-in-out infinite alternate;
}

@keyframes mgTimePulse {
  from {
    box-shadow: 0 0 0 0 rgba(216,154,61,0);
  }
  to {
    box-shadow: 0 0 0 3px rgba(216,154,61,0.18);
  }
}

.minigame-panel-head {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.minigame-panel-head > div {
  background: rgba(226,240,232,0.55);
  border: 1px solid rgba(47,107,79,0.14);
  border-radius: 14px;
  padding: 10px 12px;
  display: grid;
  gap: 2px;
}

.minigame-panel-head span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.minigame-panel-head strong {
  font-size: 1.15rem;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
}

.minigame-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(47, 107, 79, 0.12);
  overflow: hidden;
}

.minigame-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform-origin: left;
  transition: width 0.12s linear, opacity 0.25s ease;
  border-radius: inherit;
}

.minigame-panel[data-round="idle"] .minigame-progress-fill {
  opacity: 0;
}

.minigame-panel:not([data-round="idle"]) .minigame-progress-fill {
  opacity: 1;
}

.minigame-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.minigame-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 10px;
  transition: 0.28s ease;
}

.minigame-checklist li.is-done {
  color: var(--brand-dark);
  font-weight: 700;
  background: rgba(226,240,232,0.6);
}

.mg-tick {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(47,107,79,0.35);
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  transition: 0.3s ease;
}

.minigame-checklist li.is-done .mg-tick {
  background: var(--brand);
  border-color: var(--brand);
}

.minigame-checklist li.is-done .mg-tick::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: white;
  clip-path: polygon(15% 50%, 38% 75%, 88% 18%, 88% 35%, 38% 92%, 15% 65%);
}

.minigame-fact {
  background: linear-gradient(155deg, rgba(216,154,61,0.08), rgba(47,107,79,0.06));
  border: 1px dashed rgba(47,107,79,0.25);
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 0.92rem;
}

.minigame-fact span {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.minigame-fact p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

.minigame-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.minigame-actions .btn { flex: 1 1 auto; min-width: 0; justify-content: center; }

@media (max-width: 980px) {
  .minigame-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .minigame-stage {
    aspect-ratio: 16 / 11;
    min-height: min(56vw, 420px);
  }
}

@media (max-width: 520px) {
  .minigame-stage {
    aspect-ratio: 1 / 1;
    min-height: min(92vw, 380px);
    border-radius: 22px;
  }
  .minigame-panel-head {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .minigame-panel-head > div {
    padding: 8px 8px;
  }
  .minigame-panel-head strong {
    font-size: 1.02rem;
  }
  .minigame-target {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
  }
  .minigame-target svg {
    width: 26px;
    height: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .minigame-overlay {
    transition: none;
  }
  .minigame-stage[data-state="playing"] .minigame-target:not(.is-found) {
    animation: none;
    opacity: 0.78;
  }
  .minigame-target.is-found {
    animation: none;
  }
  .minigame-panel[data-urgency="low"] .minigame-panel-head > div:first-child {
    animation: none;
  }
  .minigame-progress-fill {
    transition: none;
  }
}

/* ---------- Work grid (homepage — showcase mosaic) ---------- */
.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 0 26px;
}

.work-chip,
.gallery-chip {
  border: 1px solid rgba(47,107,79,0.18);
  background: rgba(255,255,255,0.86);
  color: var(--muted);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: 0.25s ease;
  letter-spacing: -0.01em;
}

.work-chip:hover,
.gallery-chip:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
  transform: translateY(-1px);
}

.work-chip.is-active,
.gallery-chip.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
  box-shadow: 0 8px 22px rgba(47,107,79,0.22);
}

.work-grid.work-grid--showcase {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(13px, 1.75vw, 19px);
  grid-auto-flow: dense;
  align-items: stretch;
}

.work-section--showcase .work-tile {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  min-height: 0;
  cursor: pointer;
  border-radius: clamp(18px, 2.4vw, 25px);
  overflow: hidden;
  background: #121a14;
  border: 1px solid rgba(47, 107, 79, 0.14);
  box-shadow:
    0 16px 46px rgba(12, 20, 16, 0.11),
    inset 0 1px 0 rgba(255, 252, 246, 0.12);
  transition:
    transform 0.48s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.48s ease,
    border-color 0.35s ease;
  isolation: isolate;
}

.work-section--showcase .work-tile.feature-tile {
  grid-row: span 2;
}

.work-tile-visual {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  background: #0f1712;
}

.work-section--showcase .work-tile:not(.feature-tile) .work-tile-visual {
  aspect-ratio: 5 / 4;
}

.work-section--showcase .work-tile.feature-tile .work-tile-visual {
  flex: 1 1 auto;
  aspect-ratio: 4 / 5;
  min-height: clamp(210px, 28vw, 320px);
}

.work-tile-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.72s cubic-bezier(.2,.8,.2,1);
}

.work-section--showcase .work-tile:hover .work-tile-visual img,
.work-section--showcase .work-tile:focus-visible .work-tile-visual img {
  transform: scale(1.052);
}

.work-tile-visual::after {
  content: "Preview";
  position: absolute;
  top: 11px;
  right: 11px;
  z-index: 2;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.95);
  color: var(--brand-dark);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-4px);
  transition: 0.34s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.work-section--showcase .work-tile:hover .work-tile-visual::after,
.work-section--showcase .work-tile:focus-visible .work-tile-visual::after {
  opacity: 1;
  transform: translateY(0);
}

.work-section--showcase .work-tile-meta {
  position: relative;
  flex: 0 0 auto;
  padding: 14px 16px 17px;
  background: linear-gradient(180deg, #fffefb 0%, #e9e6dd 100%);
  border-top: 1px solid rgba(47, 107, 79, 0.1);
  color: var(--text);
}

.work-section--showcase .work-tile-meta span {
  display: inline-flex;
  margin-bottom: 6px;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-dark);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(47, 107, 79, 0.1);
  border: 1px solid rgba(47, 107, 79, 0.15);
}

.work-section--showcase .work-tile-meta h3 {
  margin: 2px 0 4px;
  font-size: clamp(1rem, 2.05vw, 1.1rem);
  letter-spacing: -0.026em;
  line-height: 1.22;
}

.work-section--showcase .work-tile-meta small {
  font-size: 0.8rem;
  color: var(--muted);
}

.work-section--showcase .work-tile:is(:hover, :focus-visible) {
  transform: translateY(-5px);
  box-shadow:
    0 28px 72px rgba(12, 20, 16, 0.17),
    0 0 0 1px rgba(216, 154, 61, 0.12) inset;
  border-color: rgba(216, 154, 61, 0.26);
}

.work-section--showcase .work-tile:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.work-tile.is-hidden {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  visibility: hidden;
}

.work-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(216,154,61,0.16), transparent 36%),
    var(--brand-dark);
  color: white;
  flex-wrap: wrap;
}

.work-cta strong {
  display: block;
  font-size: 1.06rem;
  letter-spacing: -0.015em;
}

.work-cta span {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.93rem;
  margin-top: 2px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .work-grid.work-grid--showcase {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .work-section--showcase .work-tile {
    grid-column: span 2;
  }

  .work-section--showcase .work-tile.feature-tile {
    grid-column: span 4;
    grid-row: span 1;
  }

  .work-section--showcase .work-tile.feature-tile .work-tile-visual {
    aspect-ratio: 16 / 9;
    max-height: 300px;
    min-height: 200px;
  }
}

@media (max-width: 600px) {
  .work-grid.work-grid--showcase {
    grid-template-columns: 1fr;
  }

  .work-section--showcase .work-tile,
  .work-section--showcase .work-tile.feature-tile {
    grid-column: span 1;
    grid-row: span 1;
  }

  .work-section--showcase .work-tile-visual,
  .work-section--showcase .work-tile.feature-tile .work-tile-visual {
    aspect-ratio: 16 / 10;
    max-height: none;
  }
}

/* ---------- Lightbox ---------- */
.work-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 11, 0.9);
  backdrop-filter: blur(16px) saturate(1.15);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.work-lightbox[hidden] { display: none; }

.work-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.work-lightbox-stage {
  width: min(1040px, 100%);
  max-height: 92vh;
  border-radius: clamp(22px, 4vw, 32px);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(216,154,61,0.08), transparent 38%),
    var(--card);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 252, 246, 0.08);
  display: grid;
  grid-template-columns: 1.22fr 1fr;
  transform: scale(0.96);
  transition: transform 0.48s cubic-bezier(.2,.8,.2,1);
}

.work-lightbox.is-open .work-lightbox-stage {
  transform: scale(1);
}

.work-lightbox figure {
  margin: 0;
  display: contents;
}

.work-lightbox img {
  width: 100%;
  height: 100%;
  max-height: min(88vh, 900px);
  object-fit: cover;
  transform: scale(1.01);
}

.work-lightbox figcaption {
  padding: clamp(26px, 4vw, 36px);
  display: grid;
  align-content: center;
  gap: 14px;
  background:
    linear-gradient(180deg, rgba(247,244,237,0.5) 0%, rgba(255,252,246,1) 18%);
}

.work-lightbox-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}

.work-lightbox figcaption h3 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3.8vw, 2rem);
  letter-spacing: -0.038em;
  line-height: 1.06;
}

.work-lightbox-species {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1.35;
}

.work-lightbox-scope {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.45;
}

.work-lightbox-highlights {
  margin: 0 0 16px;
  padding-left: 1.2em;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.55;
}

.work-lightbox-highlights:empty {
  display: none;
}

.work-lightbox-highlights[hidden] {
  display: none;
}

.work-lightbox-summary {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.62;
}

.work-lightbox figcaption .btn.scratch-btn {
  justify-self: start;
  margin-top: 4px;
  min-height: 50px;
  padding-inline: 22px;
}

.work-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,250,240,0.94);
  color: var(--brand-dark);
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 210;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  transition: 0.25s ease;
}

.work-lightbox-close:hover {
  transform: rotate(90deg);
  background: white;
}

@media (max-width: 800px) {
  .work-lightbox-stage { grid-template-columns: 1fr; }
  .work-lightbox img {
    max-height: min(52vh, 420px);
    min-height: 220px;
  }
}

/* ---------- TRACK easter egg overlay ---------- */
.track-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
}

.track-overlay.is-active {
  opacity: 1;
}

.track-overlay .paw {
  position: absolute;
  width: 36px;
  height: 36px;
  background:
    radial-gradient(circle at 28% 32%, rgba(47,107,79,0.85) 0 5px, transparent 6px),
    radial-gradient(circle at 60% 22%, rgba(47,107,79,0.85) 0 5px, transparent 6px),
    radial-gradient(circle at 78% 50%, rgba(47,107,79,0.85) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 70%, rgba(47,107,79,0.95) 0 12px, transparent 13px);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
  opacity: 0;
  transform: scale(0.6) rotate(var(--tilt, 0deg));
  animation: trackPaw 1.6s ease forwards;
}

@keyframes trackPaw {
  0% { opacity: 0; transform: scale(0.4) rotate(var(--tilt, 0deg)); }
  20% { opacity: 1; transform: scale(1) rotate(var(--tilt, 0deg)); }
  80% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.05) rotate(var(--tilt, 0deg)); }
}

/* easter-egg-hint refresh */
.easter-egg-hint {
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hint-line em {
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(216,154,61,0.85);
  font-weight: 800;
  font-size: 0.7rem;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(216,154,61,0.08);
}

.hint-trail {
  display: flex;
  gap: 18px;
  opacity: 0.45;
}

.hint-trail span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 32%, rgba(255,255,255,0.55) 0 1.6px, transparent 2px),
    radial-gradient(circle at 60% 22%, rgba(255,255,255,0.55) 0 1.6px, transparent 2px),
    radial-gradient(circle at 78% 50%, rgba(255,255,255,0.55) 0 1.6px, transparent 2px),
    radial-gradient(circle at 50% 70%, rgba(255,255,255,0.7) 0 4.5px, transparent 5px);
  transform: rotate(-12deg);
}

.hint-trail span:nth-child(2) { transform: rotate(8deg) translateY(-2px); opacity: 0.7; }
.hint-trail span:nth-child(3) { transform: rotate(-6deg) translateY(1px); opacity: 0.85; }
.hint-trail span:nth-child(4) { transform: rotate(14deg) translateY(-3px); opacity: 0.65; }
.hint-trail span:nth-child(5) { transform: rotate(-10deg) translateY(2px); opacity: 0.45; }

/* ---------- Subpage shared layout ---------- */
.subpage-hero {
  position: relative;
  padding: 88px 0 56px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(216,154,61,0.18), transparent 36%),
    radial-gradient(circle at 90% 100%, rgba(47,107,79,0.20), transparent 38%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.subpage-hero .subpage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.subpage-hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 14px 0 16px;
}

.subpage-hero p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 56ch;
}

.subpage-hero .breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.subpage-hero .breadcrumbs a {
  color: var(--brand-dark);
  font-weight: 700;
  border-bottom: 1px dashed transparent;
  transition: 0.2s ease;
}

.subpage-hero .breadcrumbs a:hover {
  border-bottom-color: var(--brand);
}

.subpage-hero .hero-side {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.subpage-hero .hero-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage-hero .hero-side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(15,26,20,0) 30%, rgba(15,26,20,0.5) 100%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .subpage-hero { padding: 52px 0 36px; }
  .subpage-hero .subpage-grid { grid-template-columns: 1fr; gap: 24px; }
  .subpage-hero .hero-side { aspect-ratio: 16 / 10; }
}

/* ---------- Gallery page (editorial bento + premium chrome) ---------- */
.page-gallery .subpage-hero {
  padding: clamp(72px, 12vw, 112px) 0 clamp(48px, 8vw, 72px);
  background:
    radial-gradient(ellipse 80% 60% at 10% -10%, rgba(216,154,61,0.22), transparent 52%),
    radial-gradient(circle at 94% 88%, rgba(47,107,79,0.18), transparent 42%),
    linear-gradient(180deg, rgba(255,252,246,1) 0%, var(--bg) 88%);
}

.page-gallery .subpage-hero .hero-side {
  border-radius: clamp(22px, 3vw, 32px);
  box-shadow:
    0 32px 90px rgba(22,35,26,0.14),
    0 0 0 1px rgba(255,255,255,0.5) inset;
  aspect-ratio: 5 / 4;
}

.section--gallery-showcase {
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(88px, 14vw, 120px);
}

.gallery-showcase-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}

.gallery-showcase-head .eyebrow {
  letter-spacing: 0.14em;
}

.gallery-showcase-head h2 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.gallery-showcase-head p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
}

.gallery-toolbar {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.gallery-toolbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-radius: 999px;
  background:
    rgba(255,252,246,0.72);
  border: 1px solid rgba(47,107,79,0.1);
  box-shadow: 0 18px 50px rgba(22,35,26,0.06);
  backdrop-filter: blur(14px);
}

.gallery-filter-chips.work-filters {
  margin: 0;
  justify-content: flex-start;
  flex: 1 1 auto;
  min-width: 0;
  gap: 10px;
}

.gallery-filter-chips .gallery-chip {
  padding: 11px 20px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.gallery-result-meta {
  margin: 0;
  flex: 0 0 auto;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.gallery-result-meta strong {
  color: var(--brand-dark);
  font-weight: 900;
  font-size: 1.05rem;
  margin-right: 2px;
}

.gallery-result-label {
  font-weight: 600;
  color: var(--muted);
}

.gallery-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.98fr);
  gap: clamp(26px, 4.5vw, 44px);
  align-items: start;
  margin-bottom: clamp(32px, 5vw, 52px);
  padding: clamp(26px, 4vw, 38px);
  border-radius: clamp(22px, 3vw, 30px);
  background:
    linear-gradient(152deg, rgba(255, 253, 248, 0.98) 0%, rgba(226, 240, 232, 0.42) 100%);
  border: 1px solid rgba(47, 107, 79, 0.12);
  box-shadow: 0 24px 64px rgba(22, 35, 26, 0.08);
}

.gallery-editorial-title {
  margin: 0 0 12px;
  font-size: clamp(1.42rem, 3.1vw, 1.82rem);
  letter-spacing: -0.032em;
  line-height: 1.12;
  color: var(--brand-dark);
}

.gallery-editorial-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.gallery-editorial-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.gallery-editorial-list li {
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--text);
}

.gallery-editorial-list strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 6px;
}

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

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 22px);
  grid-auto-flow: dense;
  align-items: stretch;
}

.gallery-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  grid-column: span 4;
  min-height: 0;
  border-radius: clamp(22px, 2.8vw, 30px);
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(47, 107, 79, 0.12);
  box-shadow:
    0 22px 60px rgba(22, 35, 26, 0.1),
    0 0 0 1px rgba(255, 252, 246, 0.5) inset;
  cursor: pointer;
  isolation: isolate;
  transition:
    transform 0.5s cubic-bezier(.2, .8, .2, 1),
    box-shadow 0.5s ease,
    border-color 0.35s ease;
}

.gallery-tile.is-tall {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-tile.is-wide {
  grid-column: span 8;
}

@media (min-width: 721px) {
  .gallery-tile.is-wide {
    flex-direction: row;
    align-items: stretch;
    min-height: clamp(288px, 30vw, 360px);
  }

  .gallery-tile.is-wide .gallery-case-media {
    flex: 1 1 52%;
    min-height: min(340px, 36vw);
  }

  .gallery-tile.is-wide .gallery-case-panel {
    flex: 1 1 48%;
    border-top: none;
    border-left: 1px solid rgba(47, 107, 79, 0.1);
    justify-content: center;
    min-height: 100%;
  }
}

.gallery-case-media {
  position: relative;
  flex: 1 1 42%;
  min-height: clamp(148px, 22vw, 220px);
  background: #0f1712;
  overflow: hidden;
}

.gallery-tile.is-tall .gallery-case-media {
  flex: 1 1 54%;
  min-height: clamp(200px, 28vw, 280px);
}

.gallery-case-media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  box-shadow:
    inset 0 0 0 1px rgba(255, 252, 246, 0.06),
    inset 0 -50px 60px rgba(15, 26, 20, 0.35);
}

.gallery-case-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1s cubic-bezier(.2, .8, .2, 1),
    filter 0.6s ease;
  filter: saturate(1.03) contrast(1.02);
}

.gallery-tile:is(:hover, :focus-visible) .gallery-case-media img {
  transform: scale(1.052);
}

.gallery-case-media::after {
  content: "View";
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.96);
  color: var(--brand-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-4px);
  transition: 0.35s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.gallery-tile:is(:hover, :focus-visible) .gallery-case-media::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-case-panel {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 18px 20px 20px;
  background: linear-gradient(180deg, #fffdf8 0%, #eff1ec 100%);
  border-top: 1px solid rgba(47, 107, 79, 0.08);
  position: relative;
  z-index: 2;
}

.gallery-case-cat {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-dark);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(47, 107, 79, 0.1);
  border: 1px solid rgba(47, 107, 79, 0.14);
  margin-bottom: 6px;
}

.gallery-case-title {
  margin: 0;
  font-size: clamp(1.02rem, 2.2vw, 1.22rem);
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--text);
}

.gallery-case-loc {
  margin: 0 0 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.35;
}

.gallery-case-list {
  margin: 0;
  padding: 0 0 0 1.1em;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text);
}

.gallery-case-list li {
  margin: 0 0 4px;
}

.gallery-case-list li::marker {
  color: var(--brand);
}

.gallery-case-foot {
  margin-top: 12px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.gallery-tile:is(:hover, :focus-visible) {
  transform: translateY(-5px);
  box-shadow:
    0 32px 80px rgba(22, 35, 26, 0.14),
    0 0 0 1px rgba(216, 154, 61, 0.14) inset;
  border-color: rgba(216, 154, 61, 0.22);
}

.gallery-tile:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.gallery-tile.is-hidden {
  display: none;
}

.gallery-page-cta.work-cta {
  margin-top: clamp(44px, 7vw, 64px);
  border-radius: clamp(22px, 3vw, 28px);
  padding: clamp(22px, 4vw, 28px) clamp(24px, 4vw, 32px);
  box-shadow:
    0 24px 60px rgba(22,35,26,0.15),
    0 0 0 1px rgba(255,255,255,0.06) inset;
}

@media (max-width: 1100px) {
  .gallery-page-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .gallery-tile {
    grid-column: span 3;
  }

  .gallery-tile.is-wide {
    grid-column: span 6;
  }

  .gallery-tile.is-tall {
    grid-row: span 2;
  }

  .gallery-tile.is-wide .gallery-case-media {
    min-height: min(280px, 48vw);
  }
}

@media (max-width: 720px) {
  .gallery-toolbar-row {
    flex-direction: column;
    align-items: stretch;
    border-radius: clamp(22px, 6vw, 28px);
    padding: 16px;
  }

  .gallery-filter-chips.work-filters {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin: 0 -4px -4px;
    padding-right: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 40px), transparent);
    mask-image: linear-gradient(to right, #000 calc(100% - 40px), transparent);
  }

  .gallery-result-meta {
    text-align: center;
    padding-top: 8px;
  }

  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gallery-tile.is-wide {
    flex-direction: column;
    grid-column: span 2;
  }

  .gallery-tile.is-wide .gallery-case-panel {
    border-left: none;
    border-top: 1px solid rgba(47, 107, 79, 0.08);
    justify-content: flex-start;
  }

  .gallery-tile.is-wide .gallery-case-media {
    min-height: 200px;
  }

  .gallery-tile,
  .gallery-tile.is-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-tile.is-tall .gallery-case-media {
    min-height: 160px;
  }

  .gallery-case-media::after {
    content: "+";
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    font-size: 1.25rem;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 900;
    top: auto;
    bottom: 11px;
    right: 11px;
  }
}

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

  .gallery-tile.is-wide {
    grid-column: span 1;
  }

  .gallery-case-title {
    font-size: 1.05rem;
  }

  .gallery-case-panel {
    padding: 16px 16px 18px;
  }
}

/* ---------- Wildlife guide page ---------- */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.guide-card {
  position: relative;
  border-radius: 28px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(22,35,26,0.07);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.45s ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(22,35,26,0.12);
}

.guide-art {
  position: relative;
  background:
    radial-gradient(circle at 30% 30%, rgba(216,154,61,0.18), transparent 40%),
    linear-gradient(155deg, var(--brand-dark), #122018);
  display: grid;
  place-items: center;
  padding: 22px;
  color: rgba(255,255,255,0.92);
  overflow: hidden;
}

.guide-art svg {
  width: 100%;
  max-width: 140px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}

.guide-card .guide-art:has(img) {
  padding: 0;
  min-height: 0;
}

.guide-card .guide-art img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

.guide-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 80%, rgba(255,250,240,0.04) 0 14px, transparent 16px),
    radial-gradient(circle at 70% 18%, rgba(255,250,240,0.04) 0 12px, transparent 14px),
    radial-gradient(circle at 88% 70%, rgba(255,250,240,0.04) 0 10px, transparent 12px);
  opacity: 0.7;
  pointer-events: none;
}

.guide-body {
  padding: 24px 26px 22px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.guide-body h3 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.guide-body .guide-tag {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(47,107,79,0.1);
  padding: 4px 10px;
  border-radius: 999px;
  width: fit-content;
}

.guide-body p { margin: 0; color: var(--muted); }

.guide-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.guide-stats div {
  background: rgba(226,240,232,0.55);
  border-radius: 10px;
  padding: 8px 10px;
}

.guide-stats span {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.guide-stats strong {
  display: block;
  font-size: 0.92rem;
  color: var(--brand-dark);
}

.guide-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  color: var(--brand-dark);
  font-size: 0.9rem;
  margin-top: 8px;
}

.guide-cta::after {
  content: "→";
  transition: transform 0.3s ease;
}

.guide-card:hover .guide-cta::after { transform: translateX(4px); }

@media (max-width: 760px) {
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card { grid-template-columns: 1fr; }
  .guide-art { aspect-ratio: 16 / 9; }
}

/* ---------- About page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.about-stack { display: grid; gap: 26px; }

.value-card {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(22,35,26,0.06);
}

.value-card .value-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(47,107,79,0.12);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
}

.value-card .value-icon svg { width: 18px; height: 18px; }

.value-card h3 { margin: 0 0 4px; font-size: 1.06rem; }
.value-card p  { margin: 0; color: var(--muted); }

.about-cred {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(216,154,61,0.1), transparent 30%),
    var(--brand-dark);
  color: white;
}

.about-cred h3 { margin: 0; font-size: 1.2rem; }
.about-cred p { margin: 0; color: rgba(255,255,255,0.78); }

.about-cred ul { margin: 0; padding-left: 18px; color: rgba(255,255,255,0.85); }
.about-cred ul li { margin: 4px 0; }

.about-team {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.team-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(22,35,26,0.07);
  text-align: center;
}

.team-portrait {
  width: 88px;
  height: 88px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(216,154,61,0.45), transparent 50%),
    linear-gradient(155deg, var(--brand-dark), var(--brand));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  border: 3px solid white;
  box-shadow: 0 12px 30px rgba(22,35,26,0.18);
}

.team-card strong { display: block; font-size: 1.05rem; }
.team-card span { display: block; color: var(--muted); font-size: 0.86rem; margin-top: 2px; }
.team-card p { margin: 12px 0 0; color: var(--muted); font-size: 0.94rem; line-height: 1.5; }

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

/* ---------- Hidden subtle marks across pages ---------- */
.hidden-paw {
  position: absolute;
  width: 22px;
  height: 22px;
  background:
    radial-gradient(circle at 28% 32%, rgba(47,107,79,0.18) 0 3px, transparent 4px),
    radial-gradient(circle at 60% 22%, rgba(47,107,79,0.18) 0 3px, transparent 4px),
    radial-gradient(circle at 78% 50%, rgba(47,107,79,0.18) 0 3px, transparent 4px),
    radial-gradient(circle at 50% 70%, rgba(47,107,79,0.22) 0 7px, transparent 8px);
  opacity: 0;
  transform: rotate(var(--rot, -10deg)) scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
  z-index: 0;
}

section:hover > .hidden-paw,
.section:hover > .hidden-paw {
  opacity: 1;
  transform: rotate(var(--rot, -10deg)) scale(1);
}

/* logo click reveal */
.brand.logo-poke .brand-mark {
  animation: brandPoke 0.6s ease;
}

@keyframes brandPoke {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-8deg) scale(1.05); }
  60% { transform: rotate(6deg) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .impact-card,
  .why-card,
  .work-tile,
  .gallery-tile,
  .guide-card,
  .minigame-target,
  .work-tile-visual img,
  .gallery-case-media img {
    transition: none !important;
    animation: none !important;
  }
}

/* Active subpage link state */
.site-header .nav-links a.is-current {
  background: rgba(47, 107, 79, 0.12);
  color: var(--brand-dark);
  position: relative;
}
.site-header .nav-links a.is-current::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  opacity: 0.7;
}
.site-header .nav-links a.is-current:hover {
  background: var(--brand);
  color: white;
}

/* Subtle hidden tracks across subpages on hover of section corners */
.subpage main section { position: relative; }
.subpage main section::after {
  content: "";
  position: absolute;
  width: 28px; height: 28px;
  background:
    radial-gradient(circle at 28% 32%, rgba(47,107,79,0.13) 0 4px, transparent 5px),
    radial-gradient(circle at 60% 22%, rgba(47,107,79,0.13) 0 4px, transparent 5px),
    radial-gradient(circle at 78% 50%, rgba(47,107,79,0.13) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 70%, rgba(47,107,79,0.16) 0 8px, transparent 9px);
  right: 18px; bottom: 14px;
  opacity: 0;
  transform: rotate(-12deg) scale(0.8);
  transition: opacity 1s ease 0.4s, transform 1s cubic-bezier(.2,.8,.2,1) 0.4s;
  pointer-events: none;
}
.subpage main section:hover::after {
  opacity: 0.55;
  transform: rotate(-12deg) scale(1);
}

/* ---------- Global booking modal, FAB & nav book buttons ---------- */
html.booking-modal-open,
body.booking-modal-open {
  overflow: hidden;
}

.site-header .nav-links .nav-links-book {
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  font-size: 0.9rem;
  background: var(--brand);
  color: white;
  transition: 0.2s ease;
  text-align: center;
  box-shadow: 0 10px 24px rgba(47, 107, 79, 0.22);
}

.site-header .nav-links .nav-links-book:hover {
  background: var(--brand-dark);
  color: white;
}

.footer-link-book {
  display: block;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: rgba(255, 255, 255, 0.76);
}

.footer-link-book:hover {
  color: white;
  text-decoration: underline;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.booking-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 20, 16, 0.62);
  backdrop-filter: blur(10px);
}

.booking-modal-panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  background: rgba(255, 252, 244, 0.98);
  border-radius: 26px;
  border: 1px solid rgba(47, 107, 79, 0.12);
  box-shadow: 0 40px 100px rgba(12, 24, 18, 0.35);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.booking-modal.is-open .booking-modal-panel {
  transform: translateY(0) scale(1);
}

.booking-modal-header {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 12px;
  border-bottom: 1px solid var(--border);
}

.booking-modal-header h2 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.booking-modal-sub {
  margin: 0;
  font-size: 0.93rem;
  color: var(--muted);
}

.booking-modal-x {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(47, 107, 79, 0.1);
  color: var(--brand-dark);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
}

.booking-modal-x:hover {
  background: var(--brand);
  color: white;
}

.booking-modal-scroll {
  flex: 1;
  overflow: auto;
  padding: 0 16px 20px;
  -webkit-overflow-scrolling: touch;
}

.booking-modal-mount {
  padding-top: 12px;
}

.booking-modal-mount .booking-card--modal {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 0 8px;
  border-radius: 0;
}

.booking-modal-mount .interactive-booking-form {
  box-shadow: none;
  border: none;
  background: transparent;
}

.booking-modal-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 220px;
  padding: 32px 16px;
  color: var(--muted);
  font-weight: 600;
}

.booking-modal-loading.is-error {
  color: #8b2c2c;
}

.booking-modal-spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid rgba(47, 107, 79, 0.15);
  border-top-color: var(--brand);
  animation: bookingSpin 0.75s linear infinite;
}

@keyframes bookingSpin {
  to {
    transform: rotate(360deg);
  }
}

.floating-book-fab {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 130;
  min-width: 56px;
  min-height: 56px;
  padding: 0 18px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(145deg, var(--brand), var(--brand-dark));
  box-shadow: 0 18px 44px rgba(47, 107, 79, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-book-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(47, 107, 79, 0.45);
}

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 96px;
  z-index: 270;
  max-width: min(420px, calc(100% - 32px));
  transform: translateX(-50%) translateY(18px);
  padding: 14px 20px;
  border-radius: 16px;
  background: rgba(21, 32, 25, 0.94);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.site-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.booking-teaser-layout {
  max-width: 720px;
  margin: 0 auto;
}

.booking-teaser-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.booking-teaser-or {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

@media (max-width: 900px) {
  .floating-book-fab {
    bottom: 84px;
  }

  .site-header .nav-links .nav-links-book {
    width: 100%;
  }

  .site-toast {
    bottom: 160px;
  }

  .booking-modal-panel {
    max-height: 94vh;
  }

  .booking-modal-header {
    padding: 18px 16px 10px;
  }

  .booking-modal-scroll {
    padding: 0 12px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-modal,
  .booking-modal-panel,
  .site-toast,
  .floating-book-fab,
  .booking-modal-spinner {
    transition: none !important;
    animation: none !important;
  }

  .lite-bg {
    transform: none !important;
  }
}
