:root {
  --sand: #cfbf9c;
  --sand-soft: #e7dcc4;
  --sand-deep: #8e7b58;
  --ink: #0d0f11;
  --ink-soft: #171b1f;
  --steel: #8d9298;
  --fog: #e9ecef;
  --red: #d14f38;
  --red-deep: #8c2d1b;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1240px;
  --topbar-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-height) + 24px);
  overflow-x: hidden;
  overflow-x: clip;
  background-color: #0a0b0d;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sora", sans-serif;
  color: #f6f1e8;
  background:
    radial-gradient(circle at top left, rgba(209, 79, 56, 0.18), transparent 24%),
    radial-gradient(circle at 80% 10%, rgba(207, 191, 156, 0.16), transparent 28%),
    linear-gradient(180deg, #14181b 0%, #0d0f11 34%, #0a0b0d 100%);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3 {
  overflow-wrap: break-word;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 120;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #f6f1e8;
  color: #0d0f11;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ─── NOISE OVERLAY ─── */

.noise,
.noise::before {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.noise {
  opacity: 0.12;
  mix-blend-mode: soft-light;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 120px, 120px 100%;
  z-index: 0;
}

.noise::before {
  content: "";
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12) 0, transparent 35%),
    radial-gradient(circle at 78% 10%, rgba(255, 255, 255, 0.08) 0, transparent 24%),
    radial-gradient(circle at 70% 80%, rgba(209, 79, 56, 0.18) 0, transparent 26%);
}

/* ─── SCROLL PROGRESS ─── */

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: var(--progress, 0%);
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--sand));
  box-shadow: 0 0 24px rgba(209, 79, 56, 0.55);
}

/* ─── TOPBAR ─── */

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 2vw, 2rem);
  min-height: var(--topbar-height);
  overflow: visible;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(8, 9, 11, 0.85), rgba(8, 9, 11, 0.5));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(207, 191, 156, 0.2), rgba(209, 79, 56, 0.22)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-mark--logo {
  width: auto;
  max-width: 160px;
  height: 48px;
  border-radius: 0;
  background: transparent;
  border: none;
  overflow: visible;
}

.brand-mark--logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-copy strong {
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.78);
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--red), var(--sand));
  transition: transform 220ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

/* ─── MOBILE NAV TOGGLE ─── */

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 70;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #f6f1e8;
  border-radius: 2px;
  transition: transform 300ms ease, opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── SECTIONS ─── */

.section {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100vw - 2rem));
  margin: 0 auto;
  scroll-margin-top: calc(var(--topbar-height) + 18px);
}

/* ─── HERO ─── */

.hero {
  width: min(1380px, calc(100vw - 1.5rem));
  min-height: calc(100vh - var(--topbar-height));
  margin-top: 1rem;
  padding: clamp(1.2rem, 2vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(0.92) brightness(0.42);
  transform: scale(1.06);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.86) 0%, rgba(8, 9, 11, 0.62) 38%, rgba(8, 9, 11, 0.34) 100%),
    linear-gradient(180deg, rgba(8, 9, 11, 0.05) 0%, rgba(8, 9, 11, 0.58) 100%);
  z-index: 1;
}

.hero-glow {
  background:
    radial-gradient(circle at 18% 24%, rgba(209, 79, 56, 0.28), transparent 24%),
    radial-gradient(circle at 72% 14%, rgba(207, 191, 156, 0.18), transparent 18%);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: end;
  min-height: calc(100vh - var(--topbar-height) - 3rem);
  padding: clamp(1.5rem, 3vw, 3rem);
}

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

.eyebrow,
.card-kicker,
.label,
.rail-title {
  margin: 0 0 0.8rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--sand);
}

.hero h1,
.section-heading h2,
.contact-copy h2,
.about-copy h2 {
  margin: 0;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(4.4rem, 10vw, 8.8rem);
  max-width: 10ch;
}

.hero h1 span,
.section-heading h2 span,
.about-copy h2 span,
.contact-copy h2 span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.lede {
  margin: 1.35rem 0 0;
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

/* ─── BUTTONS ─── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #111;
  background: linear-gradient(135deg, var(--sand-soft), var(--sand));
}

.button-primary:hover {
  box-shadow: 0 8px 30px rgba(207, 191, 156, 0.25);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.button.full {
  width: 100%;
}

/* ─── HERO TAGS ─── */

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── HERO PANEL ─── */

.hero-panel {
  align-self: center;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(18, 21, 25, 0.88), rgba(11, 13, 15, 0.76));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.profile-chip {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: cover;
}

.profile-chip p,
.panel-copy p,
.contact-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.profile-chip strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.stat-card {
  display: grid;
  gap: 0.18rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-grid > *,
.services-grid > *,
.subpage-grid > *,
.policy-grid > *,
.hero-copy,
.subpage-hero,
.service-pill,
.value-card,
.rail-panel {
  min-width: 0;
}

.stat-card strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.stat-meta {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}

.panel-copy {
  margin-top: 1rem;
  font-size: 0.92rem;
}

/* ─── ABOUT SECTION ─── */

.about-section {
  padding: clamp(4rem, 7vw, 6rem) 0 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.about-copy h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  max-width: 14ch;
}

.about-copy p {
  max-width: 56ch;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}

.about-copy em {
  font-style: italic;
  color: var(--sand-soft);
}

.about-values {
  display: grid;
  gap: 1rem;
}

.value-card {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 300ms ease, background 300ms ease;
}

.value-card:hover {
  border-color: rgba(209, 79, 56, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.value-number {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 700;
}

.value-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
}

.value-card p {
  margin: 0.7rem 0 0;
  font-size: 0.92rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.75);
}

/* ─── MARQUEE ─── */

.marquee-band {
  position: relative;
  z-index: 1;
  margin-top: clamp(3rem, 5vw, 4rem);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  padding: 1rem 0;
  font-family: "Teko", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  animation: marquee 28s linear infinite;
}

.marquee-track span::before {
  content: "\2022";
  display: inline-block;
  margin-right: 3rem;
  color: var(--red);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── SECTION HEADINGS ─── */

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  max-width: 13ch;
}

/* ─── CAPABILITY ─── */

.capability-shell {
  padding-top: clamp(4rem, 7vw, 6rem);
}

.capability-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cap-card {
  min-height: clamp(230px, 24vw, 280px);
  padding: 1.45rem;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.75rem;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 400ms ease;
}

.cap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.cap-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 11, 0.08), rgba(8, 9, 11, 0.92));
}

.cap-card > * {
  position: relative;
  z-index: 1;
}

.cap-card.sand {
  background:
    radial-gradient(circle at 10% 20%, rgba(207, 191, 156, 0.3), transparent 24%),
    linear-gradient(135deg, #746548, #1e2226 72%);
}

.cap-card.charcoal {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(135deg, #3e444b, #111316 74%);
}

.cap-card.rust {
  background:
    radial-gradient(circle at 30% 8%, rgba(209, 79, 56, 0.28), transparent 20%),
    linear-gradient(135deg, #6a2c1d, #16181b 74%);
}

.cap-card.steel {
  background:
    radial-gradient(circle at 74% 18%, rgba(143, 154, 166, 0.18), transparent 22%),
    linear-gradient(135deg, #364049, #111316 74%);
}

.cap-card h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
}

.cap-card p:last-child {
  margin: 0;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.82);
}

/* ─── SERVICES ─── */

.services-section {
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.service-pill {
  padding: 1.05rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.88);
  transition: background 250ms ease, border-color 250ms ease, transform 250ms ease;
}

.service-pill:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

/* ─── GALLERY SCROLL ─── */

.gallery-section {
  padding: clamp(4rem, 7vw, 6rem) 0 0;
}

.gallery-scroll {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(207, 191, 156, 0.4) transparent;
  padding: 0.5rem 0 1.5rem;
  cursor: grab;
}

.gallery-scroll:active {
  cursor: grabbing;
}

.gallery-scroll::-webkit-scrollbar {
  height: 6px;
}

.gallery-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background: rgba(207, 191, 156, 0.35);
  border-radius: 3px;
}

.gallery-track {
  display: flex;
  gap: 1.2rem;
  padding: 0 clamp(1rem, 4vw, 3rem);
  width: max-content;
}

.scroll-card {
  flex-shrink: 0;
  margin: 0;
  position: relative;
  width: clamp(300px, 38vw, 460px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 400ms ease;
}

.scroll-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.scroll-card img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.96) brightness(0.9);
  transition: filter 400ms ease;
}

.scroll-card:hover img {
  filter: saturate(1.1) brightness(1);
}

.scroll-card figcaption {
  padding: 1rem 1.1rem;
  background: rgba(14, 16, 19, 0.95);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-cta {
  margin-top: 2rem;
  text-align: center;
}

.gallery-cta p {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.gallery-cta-actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
}

.service-guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.service-guide-card {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  min-height: 100%;
  padding: 1.4rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: inherit;
  text-decoration: none;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.service-guide-card:hover,
.service-guide-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(210, 189, 151, 0.42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.service-guide-card h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  letter-spacing: 0.03em;
  line-height: 1.02;
  text-transform: uppercase;
}

.service-guide-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.68;
}

.service-guide-card .card-kicker {
  color: var(--sand);
}

.service-guide-card span:last-child {
  margin-top: auto;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-soft);
}

.service-area-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(200, 177, 135, 0.1), rgba(255, 255, 255, 0.03) 42%, rgba(93, 102, 84, 0.06)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.service-area-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 20ch;
}

.service-area-copy p:last-child {
  margin: 1rem 0 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
}

.service-area-pills {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.7rem;
}

.service-area-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-guides-section .service-area-shell {
  margin-top: 1rem;
}

.service-guides-section .service-area-shell {
  margin-top: 1rem;
}

/* ─── QUOTE / TESTIMONIAL ─── */

.quote-section {
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.quote-wrap {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(209, 79, 56, 0.18), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.025);
  text-align: center;
}

.quote-wrap blockquote {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.quote-sub {
  max-width: 52ch;
  margin: 1.2rem auto 1.8rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

/* ─── CONTACT ─── */

.contact-section {
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: 1.2rem;
  align-items: start;
}

.contact-copy p {
  max-width: 62ch;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.contact-card {
  min-width: 0;
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  transition: border-color 250ms ease;
}

.contact-card--wide {
  grid-column: 1 / -1;
}

.contact-card-combo {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: 1.1rem 1.25rem;
}

.contact-card-channel {
  min-width: 0;
}

.contact-card-channel + .contact-card-channel {
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card-tag {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.contact-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-card strong,
.contact-card a {
  font-size: 1.06rem;
}

.contact-card strong {
  display: block;
  min-width: 0;
  line-height: 1.2;
}

.contact-card a {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.2;
}

.contact-card a[href^="mailto:"] {
  font-size: clamp(0.94rem, 1.4vw, 1.06rem);
  white-space: nowrap;
}

.contact-card a[href^="tel:"],
.contact-card a[href^="mailto:"] {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-block: 0.35rem;
}

.contact-card a:hover {
  color: var(--sand-soft);
}

.contact-card span:last-child {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.contact-rail {
  display: grid;
  gap: 1rem;
}

.booking-shell {
  padding: 1.35rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(18, 21, 25, 0.92), rgba(11, 13, 15, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.booking-head {
  display: grid;
  gap: 0.5rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.booking-field {
  display: grid;
  gap: 0.45rem;
}

.booking-field--full {
  grid-column: 1 / -1;
}

.booking-field span,
.booking-consent span {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #f6f1e8;
  font: inherit;
  outline: none;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.booking-field select {
  appearance: none;
}

.booking-field textarea {
  resize: vertical;
  min-height: 140px;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: rgba(207, 191, 156, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(207, 191, 156, 0.08);
}

.booking-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.booking-consent input {
  margin-top: 0.15rem;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.booking-note,
.booking-status {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.booking-note a {
  color: var(--sand-soft);
}

.booking-status[data-state="loading"] {
  color: rgba(255, 255, 255, 0.82);
}

.booking-status[data-state="success"] {
  color: #d4eac6;
}

.booking-status[data-state="error"] {
  color: #ffb8a8;
}

.booking-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.rail-panel {
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.rail-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.trust-panel {
  background:
    linear-gradient(135deg, rgba(209, 79, 56, 0.12), rgba(255, 255, 255, 0.04));
}

.trust-list {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 2;
  font-size: 0.92rem;
}

.trust-list li::marker {
  color: var(--red);
}

.contact-note {
  font-size: 0.84rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.contact-support {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto minmax(0, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  align-items: stretch;
}

/* ─── FOOTER ─── */

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max-width), calc(100vw - 2rem));
  margin: 4rem auto 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

/* ─── ANIMATIONS ─── */

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

[data-parallax] {
  transform: translate3d(0, calc(var(--parallax-shift, 0px) * 1px), 0) scale(1.06);
  will-change: transform;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 1100px) {
  .hero-grid,
  .contact-grid,
  .about-grid,
  .contact-support {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .scroll-card {
    width: clamp(280px, 50vw, 380px);
  }

  .contact-card-combo {
    grid-template-columns: 1fr;
  }

  .contact-card-channel + .contact-card-channel {
    padding-left: 0;
    padding-top: 0.9rem;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 760px) {
  .nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0.5rem;
    right: 0.5rem;
    z-index: 65;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.45rem;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    font-size: 1rem;
    background: rgba(8, 9, 11, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
    max-height: min(72dvh, calc(100vh - var(--topbar-height) - 1.5rem));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms step-end;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 0s;
  }

  .nav a {
    display: block;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .nav a::after {
    display: none;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: #f6f1e8;
  }

  .nav a[href="#contact"],
  .nav a[href="/#contact"] {
    background: linear-gradient(135deg, var(--sand-soft), var(--sand));
    border-color: transparent;
    color: #0d0f11;
    font-weight: 700;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    width: calc(100vw - 1rem);
    border-radius: 24px;
  }

  .hero-grid {
    min-height: auto;
    padding: 1rem 0.4rem 0.6rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 20vw, 5.4rem);
  }

  .hero-stats,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-card a[href^="mailto:"] {
    white-space: normal;
  }

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

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-track {
    grid-template-columns: 1fr;
  }

  .cap-card {
    min-height: 220px;
  }

  .scroll-card {
    width: clamp(260px, 72vw, 340px);
  }

  .booking-actions {
    flex-direction: column;
  }

  .booking-actions .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .topbar {
    gap: 0.75rem;
    padding-inline: 0.9rem;
  }

  .brand-copy {
    display: none;
  }

  .brand-mark--logo {
    max-width: 126px;
    height: 38px;
  }
}

/* ─── PREMIUM OVERRIDES & NEW PAGES ─── */

:root {
  --sand: #c8b187;
  --sand-soft: #ead9b8;
  --sand-deep: #8c7550;
  --bronze: #6b5639;
  --moss: #7c8571;
  --ink: #0a0d0f;
  --ink-soft: #12171a;
  --steel: #96a0a6;
  --red: #cb553f;
  --red-deep: #8d3527;
  --glow: rgba(200, 177, 135, 0.22);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --section-space: clamp(2.8rem, 5vw, 4.75rem);
  --section-shell-padding: clamp(1.4rem, 3vw, 2.3rem);
  --section-shell-border: rgba(255, 255, 255, 0.08);
  --section-shell-bg: linear-gradient(180deg, rgba(15, 18, 21, 0.9), rgba(8, 10, 12, 0.78));
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(200, 177, 135, 0.18), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(124, 133, 113, 0.14), transparent 22%),
    radial-gradient(circle at 50% 0%, rgba(203, 85, 63, 0.08), transparent 22%),
    linear-gradient(180deg, #121618 0%, #0b0e10 30%, #07090a 100%);
}

body::before,
body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(200, 177, 135, 0.09), transparent 30%),
    radial-gradient(circle at 78% 82%, rgba(124, 133, 113, 0.08), transparent 28%);
}

body::after {
  opacity: 0.22;
  background-image:
    repeating-linear-gradient(
      115deg,
      transparent 0,
      transparent 22px,
      rgba(255, 255, 255, 0.018) 22px,
      rgba(255, 255, 255, 0.018) 23px
    );
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 85%);
}

main {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.topbar {
  background: linear-gradient(180deg, rgba(7, 9, 10, 0.88), rgba(7, 9, 10, 0.56));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.brand-copy strong {
  letter-spacing: 0.1em;
}

.about-section,
.capability-shell,
.services-section,
.service-guides-section,
.gallery-section,
.contact-section {
  margin-top: var(--section-space);
  padding: var(--section-shell-padding);
  border: 1px solid var(--section-shell-border);
  border-radius: 32px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  background: var(--section-shell-bg);
}

.about-section {
  margin-top: calc(var(--section-space) * 0.95);
  background:
    radial-gradient(circle at 88% 14%, rgba(200, 177, 135, 0.08), transparent 22%),
    var(--section-shell-bg);
}

.capability-shell {
  background:
    radial-gradient(circle at 12% 18%, rgba(203, 85, 63, 0.08), transparent 18%),
    var(--section-shell-bg);
}

.service-guides-section {
  background:
    radial-gradient(circle at 82% 22%, rgba(124, 133, 113, 0.08), transparent 22%),
    var(--section-shell-bg);
}

.gallery-section {
  background:
    radial-gradient(circle at 20% 12%, rgba(200, 177, 135, 0.07), transparent 22%),
    var(--section-shell-bg);
}

.contact-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(203, 85, 63, 0.08), transparent 18%),
    var(--section-shell-bg);
}

.service-area-section,
.reviews-section {
  margin-top: var(--section-space);
}

.hero h1,
.section-heading h2,
.contact-copy h2,
.about-copy h2,
.subpage-hero h1,
.policy-content h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
}

.hero h1 span {
  color: inherit;
  opacity: 1;
  text-shadow: none;
  filter: none;
}

.hero,
.subpage-hero,
.reviews-shell,
.policy-card,
.policy-content,
.faq-item,
.subpage-side .rail-panel {
  background: rgba(255, 255, 255, 0.02);
}

.hero {
  border-color: rgba(255, 255, 255, 0.07);
}

.hero-media img {
  filter: saturate(1.04) contrast(0.96) brightness(0.4);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(6, 8, 9, 0.92) 0%, rgba(6, 8, 9, 0.68) 38%, rgba(6, 8, 9, 0.24) 100%),
    linear-gradient(180deg, rgba(8, 9, 11, 0.05) 0%, rgba(8, 9, 11, 0.58) 100%);
}

.hero-glow {
  background:
    radial-gradient(circle at 18% 24%, rgba(203, 85, 63, 0.24), transparent 24%),
    radial-gradient(circle at 72% 14%, rgba(200, 177, 135, 0.18), transparent 18%),
    radial-gradient(circle at 78% 78%, rgba(124, 133, 113, 0.12), transparent 16%);
}

.lede,
.subpage-lede,
.reviews-copy {
  line-height: 1.82;
}

.section-intro {
  max-width: 54ch;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.section-heading {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading h2,
.contact-copy h2,
.about-copy h2 {
  font-size: clamp(2.35rem, 4vw, 3.55rem);
  max-width: 15ch;
  line-height: 0.95;
}

.about-copy h2 {
  max-width: 14ch;
}

.contact-copy h2 {
  font-size: clamp(1.95rem, 3.1vw, 2.85rem);
  max-width: 12ch;
}

.capability-shell .section-heading h2 {
  max-width: 17ch;
  font-size: clamp(2.1rem, 3.2vw, 3rem);
}

.services-section .section-heading h2 {
  max-width: 20ch;
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.gallery-section .section-heading h2,
.service-guides-section > .section-heading h2 {
  max-width: 18ch;
  font-size: clamp(1.95rem, 3vw, 2.7rem);
}

.button-primary {
  background: linear-gradient(135deg, var(--sand-soft), #d2bd97 56%, var(--sand));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 10px 36px rgba(200, 177, 135, 0.18);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.hero-tags li,
.stat-card,
.value-card,
.service-pill,
.service-guide-card,
.contact-card,
.rail-panel,
.booking-shell {
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.hero-tags li,
.stat-card,
.value-card,
.service-pill,
.service-guide-card,
.contact-card,
.rail-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
}

.hero-panel {
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 70px rgba(0, 0, 0, 0.35);
}

.profile-avatar {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.stat-card strong {
  letter-spacing: 0.08em;
}

.marquee-track {
  font-family: "Bebas Neue", sans-serif;
}

.marquee-band {
  width: min(var(--max-width), calc(100vw - 2rem));
  margin: calc(var(--section-space) * 0.55) auto 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
}

.marquee-track {
  padding: 0.9rem 1.35rem;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  letter-spacing: 0.12em;
}

.marquee-track span::before {
  margin-right: 2.2rem;
}

.cap-card,
.scroll-card {
  border-color: rgba(255, 255, 255, 0.09);
}

.gallery-cta,
.reviews-summary,
.subpage-hero,
.policy-content {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.gallery-cta {
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(200, 177, 135, 0.08), rgba(255, 255, 255, 0.03));
}

.quote-section {
  display: none;
}

.reviews-section {
  padding: 0;
}

.reviews-shell {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: visible;
  background:
    radial-gradient(circle at top right, rgba(200, 177, 135, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(14, 17, 20, 0.92), rgba(8, 10, 12, 0.88));
}

.reviews-intro {
  max-width: 62ch;
}

.reviews-intro h2 {
  font-size: clamp(1.95rem, 3vw, 2.7rem);
  max-width: 14ch;
}

.reviews-copy {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.reviews-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1.3rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.summary-score {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.summary-score-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 0.9;
  color: var(--sand-soft);
}

.summary-score p,
.summary-score strong {
  margin: 0;
}

.summary-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.summary-score strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.summary-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.summary-pillars span {
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.about-grid,
.contact-grid {
  gap: 1.5rem;
}

.capability-track,
.services-grid,
.service-guides-grid {
  gap: 1rem;
}

.service-guides-grid {
  margin-top: 0;
}

.service-area-section {
  margin-top: calc(var(--section-space) * 0.82);
}

.service-area-shell {
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.24);
}

.gallery-scroll {
  width: 100%;
  margin-left: 0;
  padding: 0.15rem 0 1rem;
}

.gallery-track {
  padding: 0 0.2rem 0.2rem;
}

.gallery-cta {
  margin-top: 1.5rem;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.35rem;
  padding: 1.15rem 1.25rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
}

.section-cta p {
  margin: 0;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.reviews-cta {
  margin-top: 1.5rem;
}

.contact-support {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.drag-scroll {
  cursor: grab;
}

.drag-scroll:active {
  cursor: grabbing;
}

.reviews-rail {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 1.5rem;
  margin-left: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.2rem 0 0.8rem;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 0.2rem;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 177, 135, 0.38) transparent;
}

.reviews-rail::before,
.reviews-rail::after {
  display: none;
}

.reviews-rail::-webkit-scrollbar {
  height: 6px;
}

.reviews-rail::-webkit-scrollbar-thumb {
  background: rgba(200, 177, 135, 0.38);
  border-radius: 999px;
}

.reviews-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  width: auto;
  min-width: 0;
  align-items: stretch;
  padding: 0 0.2rem 0.2rem;
}

.review-card {
  flex: 0 0 clamp(320px, 32vw, 390px);
  width: auto;
  padding: 1.25rem;
  border-radius: 26px;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.review-card-header {
  margin-bottom: 1rem;
}

.review-card-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(200, 177, 135, 0.22), rgba(203, 85, 63, 0.18));
  color: #101214;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.review-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-card-author strong,
.review-card-author span,
.review-card-copy {
  margin: 0;
}

.review-card-author strong {
  display: block;
  font-size: 0.98rem;
}

.review-card-author span {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.review-card-rating {
  color: var(--sand-soft);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
}

.review-card-copy {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.78;
  display: block;
  overflow: visible;
}

.booking-consent a,
.booking-links a,
.footer-links a {
  color: var(--sand-soft);
}

.booking-links a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-block: 0.55rem;
}

.contact-support {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.support-panel {
  display: grid;
  gap: 1rem;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.map-panel {
  display: grid;
  gap: 1rem;
}

.map-frame {
  overflow: hidden;
  border-radius: 20px;
  min-height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-frame iframe {
  width: 100%;
  min-height: 240px;
  border: 0;
  filter: grayscale(0.24) saturate(0.86) contrast(1.02);
}

.footer-copy {
  display: grid;
  gap: 0.35rem;
}

.footer-copy p,
.footer-copy span {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a:hover {
  color: var(--sand-soft);
}

.subpage-body .footer {
  margin-top: 3rem;
}

.subpage-main {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100vw - 2rem));
  margin: 0 auto;
  padding-top: clamp(2rem, 5vw, 4rem);
}

.subpage-main > * {
  scroll-margin-top: calc(var(--topbar-height) + 18px);
}

.subpage-hero {
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.subpage-hero h1 {
  font-size: clamp(3.6rem, 8vw, 6.4rem);
  max-width: 10ch;
}

.subpage-lede {
  max-width: 60ch;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.subpage-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 1.2rem;
  padding-top: 1.2rem;
}

.subpage-side {
  display: grid;
  align-self: start;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1.25rem 3.6rem 1.25rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--sand-soft);
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.faq-answer p {
  margin: 0 0 0.8rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a,
.policy-content a {
  color: var(--sand-soft);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1.2rem;
}

.policy-card {
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.policy-card p:last-child {
  margin: 0;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.policy-body {
  padding-top: 1.2rem;
}

.policy-content {
  padding: clamp(1.5rem, 4vw, 2.2rem);
}

.policy-content h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin-top: 0;
}

.policy-content p {
  margin: 0 0 1.1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
}

.service-checklist {
  display: grid;
  gap: 0.8rem;
  margin: 1.6rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.service-checklist li {
  position: relative;
  padding: 0.95rem 1rem 0.95rem 3rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.service-checklist li::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 1.15rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sand-soft), var(--sand));
  box-shadow: 0 0 0 6px rgba(200, 177, 135, 0.08);
}

.policy-meta {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1100px) {
  .reviews-summary,
  .subpage-grid,
  .policy-grid,
  .contact-support,
  .service-guides-grid,
  .service-area-shell {
    grid-template-columns: 1fr;
  }

  .summary-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .about-section,
  .capability-shell,
  .services-section,
  .service-guides-section,
  .gallery-section,
  .contact-section,
  .service-area-shell,
  .reviews-shell,
  .subpage-hero,
  .policy-content {
    border-radius: 24px;
  }

  .about-section,
  .capability-shell,
  .services-section,
  .service-guides-section,
  .gallery-section,
  .contact-section {
    padding: 1.2rem;
  }

  .marquee-band {
    width: calc(100vw - 1rem);
    margin-top: 1.25rem;
  }

  .section-heading {
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2,
  .reviews-intro h2 {
    max-width: none;
  }

  .reviews-shell,
  .subpage-hero,
  .policy-content {
    border-radius: 24px;
  }

  .service-guide-card,
  .service-area-shell {
    border-radius: 24px;
  }

  .reviews-summary {
    padding: 1rem;
  }

  .summary-score {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .summary-score-value {
    font-size: 4.4rem;
  }

  .summary-actions,
  .support-actions,
  .subpage-actions,
  .footer-links,
  .booking-links,
  .service-area-pills {
    flex-direction: column;
  }

  .summary-actions .button,
  .support-actions .button,
  .subpage-actions .button {
    width: 100%;
  }

  .review-card {
    flex-basis: min(84vw, 340px);
  }

  .subpage-main {
    padding-top: 1.5rem;
  }

  .subpage-hero h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

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

  .service-area-copy h2 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .service-area-pills span {
    width: 100%;
    justify-content: center;
  }

  .contact-support {
    margin-top: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
