:root {
  --bg0: #0f1a12;
  --bg1: #1a2f1f;
  --bg2: #f4f1e8;
  --text: #152018;
  --muted: rgba(21, 32, 24, 0.78);
  --line: rgba(21, 32, 24, 0.12);
  --accent: #c9a227;
  --accent2: #2d5a3d;
  --card: #faf7f0;
  --card-elev: #ffffff;
  --bubble: #f0ebe0;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --radius: 20px;
  --max: 1200px;
  --font: "DM Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  /* Match primary CTA gold; solid fallback shows through transparent PNG areas */
  --gold-gradient: linear-gradient(180deg, #c9a227, #a8891e);
  --gold-gradient-warm: linear-gradient(145deg, #d4b43a, #b89420 55%, #a8891e);
  --gold-base: #c9a227;
  --gold-deep: #a8891e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)' opacity='.04'/%3E%3C/svg%3E"),
    radial-gradient(1100px 600px at 5% 8%, rgba(201, 162, 39, 0.14), transparent 58%),
    radial-gradient(900px 500px at 95% 12%, rgba(45, 90, 61, 0.12), transparent 55%),
    radial-gradient(800px 400px at 50% 100%, rgba(201, 162, 39, 0.07), transparent 50%),
    linear-gradient(180deg, #e2e8dd 0%, #e8ede5 24%, #eef1ea 60%, #e5eae3 100%),
    repeating-linear-gradient(
      180deg,
      #dde4d8 0,
      #dde4d8 1px,
      #e4ebe0 1px,
      #e4ebe0 7px
    );
  min-height: 100vh;
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

a {
  color: #1f4a32;
  text-decoration: none;
  text-underline-offset: 3px;
}
a:hover {
  text-decoration: underline;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(201, 162, 39, 0.95);
  outline-offset: 2px;
}

.container {
  width: min(var(--max), calc(100% - 1.5rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.6rem 0.85rem;
  background: #0f1a12;
  color: #f4f1e8;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  z-index: 9999;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 5000;
  background: linear-gradient(180deg, rgba(30, 52, 36, 0.97) 0%, rgba(26, 47, 31, 0.94) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.28);
  box-shadow: 0 4px 24px rgba(10, 18, 12, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 0.6rem;
}

.brand {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.brand:hover {
  text-decoration: none;
}
.logo-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gold-base);
  background-image: var(--gold-gradient);
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(168, 137, 30, 0.55);
  overflow: hidden;
  padding: 2px;
  isolation: isolate;
}
.logo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 45%, rgba(0, 0, 0, 0.08) 100%),
    var(--gold-gradient);
  pointer-events: none;
}
.logo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
}
.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.15;
}
.brand-text strong {
  color: #f4f1e8;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-text span {
  color: rgba(244, 241, 232, 0.78);
  font-size: 0.8rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.nav a {
  color: rgba(244, 241, 232, 0.92);
  text-decoration: none;
  padding: 0.5rem 0.65rem;
  border-radius: 12px;
  font-size: 0.92rem;
}
.nav a[aria-current="page"] {
  background: rgba(201, 162, 39, 0.22);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.nav a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
}

.header-cta {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(21, 32, 24, 0.14);
  background: rgba(255, 255, 255, 0.14);
  color: #152018;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.btn:hover {
  text-decoration: none;
  filter: brightness(1.04);
  transform: translateY(-1px);
}
.btn.primary {
  background: var(--gold-gradient);
  color: #0f1a12;
  border-color: rgba(0, 0, 0, 0.12);
}
.btn.success {
  background: linear-gradient(180deg, #2d5a3d, #234832);
  color: #f4f1e8;
  border-color: rgba(255, 255, 255, 0.1);
}
.btn.ghost {
  background: transparent;
  color: #f4f1e8;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}
.site-header .btn:not(.primary):not(.success) {
  color: #f4f1e8;
}

.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #f4f1e8;
  cursor: pointer;
}
.menu-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* Hero */
.hero {
  position: relative;
  padding: 3.2rem 0 2.2rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #1a2f1f 0%, #0f1a12 50%, #152a1c 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 360px at 20% 20%, rgba(201, 162, 39, 0.22), transparent 60%),
    radial-gradient(600px 300px at 80% 30%, rgba(45, 90, 61, 0.35), transparent 55%),
    repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
  opacity: 0.9;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 26, 18, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(244, 241, 232, 0.92);
  font-size: 0.86rem;
}
.hero h1 {
  margin: 0.1rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.4vw, 2.8rem);
  line-height: 1.1;
  color: #f4f1e8;
  letter-spacing: -0.02em;
}
.lead-hero {
  margin: 0 0 1.2rem;
  color: rgba(244, 241, 232, 0.9);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 52ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.hero-aside {
  background: var(--card-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.05rem;
}
.hero-logo-shield {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-base);
  background-image: var(--gold-gradient-warm);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  padding: 0.65rem 0.5rem 0.85rem;
  margin: 0 0 0.9rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 6px 18px rgba(0, 0, 0, 0.1);
  isolation: isolate;
  overflow: hidden;
}
.hero-logo-shield::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, transparent 50%, rgba(0, 0, 0, 0.06) 100%);
  pointer-events: none;
}
.hero-logo {
  position: relative;
  z-index: 1;
  width: min(220px, 100%);
  height: auto;
  max-height: 200px;
  object-fit: contain;
  display: block;
  background: transparent;
}
.hero-aside .stat {
  background: var(--card);
}
.stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.75rem 0.65rem;
  border-radius: 14px;
  background: rgba(21, 32, 24, 0.04);
  border: 1px solid var(--line);
  margin-bottom: 0.55rem;
}
.stat:last-of-type {
  margin-bottom: 0.15rem;
}
.stat .k {
  color: var(--muted);
  font-size: 0.9rem;
}
.stat .v {
  font-weight: 700;
  text-align: right;
}
.stat .v a {
  font-weight: 800;
  color: #1f4a32;
}

/* Sections */
.section {
  position: relative;
  padding: 2.5rem 0 2.75rem;
}
.section.alt {
  background:
    linear-gradient(180deg, rgba(201, 162, 39, 0.11) 0%, rgba(250, 247, 240, 0.72) 42%, rgba(201, 162, 39, 0.06) 100%),
    var(--card);
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.section h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: #122017;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}
.section .lead,
.lead {
  margin: 0 0 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.02rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}
.card {
  background: var(--card-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.05rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 12px 36px rgba(15, 26, 18, 0.07),
    0 0 0 1px rgba(201, 162, 39, 0.06);
}
.card h3 {
  margin: 0.1rem 0 0.45rem;
  font-size: 1.08rem;
}
.card p,
.card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--bubble);
  border: 1px solid rgba(201, 162, 39, 0.28);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: #1a2f1f;
}
.icon-bubble .icon-inline {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.list {
  margin: 0.3rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.list li {
  margin: 0.35rem 0;
}

/* Equipment with photos */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.equipment-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--card-elev);
}
.equipment-card .equipment-photo {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #0f1a12;
}
.equipment-card .equipment-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.equipment-card .equipment-body {
  padding: 0.85rem 1rem 1rem;
  background: linear-gradient(180deg, var(--bubble) 0%, var(--card-elev) 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}
.equipment-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}
.equipment-card p {
  margin: 0;
  font-size: 0.94rem;
}

/* Gallery */
.gallery-group-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #122017;
  margin: 1.5rem 0 0.65rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid rgba(201, 162, 39, 0.45);
}
.gallery-group-title:first-of-type {
  margin-top: 0.2rem;
}
.gallery-pair-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.gallery-pair-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gallery-item--span {
  grid-column: 1 / -1;
  max-width: 40rem;
  width: 100%;
  margin: 0 auto;
  justify-self: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.7rem;
}
.gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(21, 32, 24, 0.04);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  vertical-align: middle;
}
.services-list li + li {
  margin-top: 0.5rem;
}
.team-photo-wrap {
  margin: 1.2rem 0 0;
  padding: 0;
}
.team-photo-wrap .team-photo {
  width: 100%;
  max-width: min(100%, 28rem);
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid rgba(21, 32, 24, 0.12);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}
.team-photo-wrap figcaption {
  margin-top: 0.55rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}
.gallery-item figcaption {
  padding: 0.45rem 0.55rem 0.55rem;
  font-size: 0.84rem;
  color: var(--muted);
  background: var(--bubble);
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  line-height: 1.35;
}
.gallery-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* Forms */
form {
  display: grid;
  gap: 0.7rem;
}
label {
  font-weight: 700;
  font-size: 0.92rem;
}
.hint,
.help {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.hint {
  margin: 0.1rem 0 0.25rem;
}
.fineprint {
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(21, 32, 24, 0.68);
  margin: 0;
}
input,
select,
textarea {
  width: 100%;
  padding: 0.68rem 0.75rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font: inherit;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
input[type="file"] {
  padding: 0.5rem;
  background: rgba(21, 32, 24, 0.03);
}
.file-preview {
  font-size: 0.86rem;
  color: var(--muted);
  min-height: 1.1em;
}
[hidden] {
  display: none !important;
}

/* Sticky mobile CTA */
.mobile-cta {
  position: fixed;
  z-index: 40;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  gap: 0.45rem;
  padding: 0.6rem 0.7rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
  background: rgba(15, 26, 18, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
}
.mobile-cta .btn {
  flex: 1 1 0;
  min-width: 0;
  font-size: 0.82rem;
  padding: 0.6rem 0.45rem;
}
@media (min-width: 821px) {
  body {
    padding-bottom: 0;
  }
  .mobile-cta {
    display: none !important;
  }
}
@media (max-width: 820px) {
  .mobile-cta {
    display: flex;
  }
}

/* Footer */
.site-footer {
  margin-top: 1rem;
  padding: 1.6rem 0 2rem;
  background: #121f16;
  color: rgba(244, 241, 232, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer a {
  color: rgba(244, 241, 232, 0.9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.9fr;
  gap: 1rem;
  margin-bottom: 0.2rem;
}
.footer-grid h3 {
  font-size: 0.95rem;
  margin: 0.2rem 0 0.4rem;
  color: #f4f1e8;
  font-weight: 700;
}
.footer-grid p,
.footer-grid li {
  margin: 0.25rem 0;
  color: rgba(244, 241, 232, 0.72);
  line-height: 1.5;
  font-size: 0.92rem;
}
.subfooter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(244, 241, 232, 0.5);
  font-size: 0.86rem;
}

/* Map (iframe fallback or Leaflet) */
.map-embed {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  background: rgba(21, 32, 24, 0.06);
}
.map-service-area {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0.75rem 1.05rem 0;
  padding: 0 0.1rem 0.75rem;
  border-bottom: 1px solid var(--line);
}
.map-embed-wrap {
  position: relative;
  background: #dfe8dc;
  line-height: 0;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}
.map-embed-wrap .map-embed {
  position: relative;
  z-index: 0;
  vertical-align: top;
}
.leaflet-map {
  width: 100%;
  min-height: 320px;
  height: 360px;
  z-index: 0;
  border-radius: 0 0 18px 18px;
  background: #c8d4c2;
}
.leaflet-container {
  font-family: var(--font);
}
.map-radius-hint {
  position: absolute;
  bottom: 0.4rem;
  right: 0.45rem;
  z-index: 3;
  max-width: min(12rem, 40%);
  padding: 0.3rem 0.45rem;
  font-size: 0.68rem;
  line-height: 1.2;
  color: #152018;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  text-align: right;
}

/* Inner page header — same green treatment as home .hero */
.page-hero {
  position: relative;
  padding: 2.85rem 0 1.45rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, #1a2f1f 0%, #0f1a12 50%, #152a1c 100%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 360px at 20% 20%, rgba(201, 162, 39, 0.22), transparent 60%),
    radial-gradient(600px 300px at 80% 30%, rgba(45, 90, 61, 0.35), transparent 55%),
    repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
  opacity: 0.9;
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: var(--font-display);
  margin: 0.2rem 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #f4f1e8;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}
.page-hero .crumbs {
  font-size: 0.92rem;
  color: rgba(244, 241, 232, 0.72);
  margin-bottom: 0.45rem;
}
.page-hero .crumbs a {
  color: rgba(244, 241, 232, 0.92);
  font-weight: 650;
  text-decoration: none;
}
.page-hero .crumbs a:hover {
  color: #fff;
  text-decoration: underline;
}
.page-hero .lead {
  max-width: 60ch;
  color: rgba(244, 241, 232, 0.9);
  line-height: 1.6;
  margin: 0 0 0.2rem;
}
.page-hero .help {
  color: rgba(244, 241, 232, 0.78);
}
.page-hero .help a {
  color: #e8d78a;
  font-weight: 650;
}
.page-hero .help a:hover {
  color: #f4f1e8;
}
/* Tertiary / neutral buttons on dark page-hero (e.g. thank-you) */
.page-hero .btn:not(.primary):not(.success) {
  background: rgba(255, 255, 255, 0.1);
  color: #f4f1e8;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}
.page-hero .btn:not(.primary):not(.success):hover {
  background: rgba(255, 255, 255, 0.16);
  filter: none;
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0.35rem 1.05rem 0.65rem;
  padding: 0 0.1rem 0.65rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}
.map-legend-label {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  flex: 1 1 100%;
}
.map-legend-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}
.map-legend .map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.7rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #0f1a12;
  text-decoration: none;
  background: var(--gold-gradient);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}
.map-legend .map-link:hover {
  text-decoration: none;
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.map-legend .map-link--secondary {
  font-weight: 650;
  color: #1a2f1f;
  background: rgba(21, 32, 24, 0.06);
  border: 1px solid var(--line);
  box-shadow: none;
}
.map-legend .map-link--secondary:hover {
  background: rgba(21, 32, 24, 0.1);
  filter: none;
}
.subfooter .subfooter-dim {
  color: rgba(244, 241, 232, 0.55);
}
.nav-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 0.9rem;
  min-width: 0;
}
.nav-links-grid a.nav-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  text-align: left;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  overflow: visible;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
.nav-links-grid a.nav-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.nav-links-grid a.nav-card h3 {
  color: #122017;
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
}
.nav-links-grid a.nav-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.nav-links-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(201, 162, 39, 0.95);
  font-weight: 800;
  margin: 0 0 0.2rem;
}

/* Responsive */
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .equipment-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  .gallery-pair-grid {
    grid-template-columns: 1fr;
  }
  .gallery-pair-grid--three {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 780px) {
  .header-inner {
    position: relative;
    flex-wrap: wrap;
    row-gap: 0.5rem;
    padding-left: max(0px, env(safe-area-inset-left, 0px));
    padding-right: max(0px, env(safe-area-inset-right, 0px));
  }
  .brand {
    order: 1;
    flex: 1 1 0;
    min-width: 0;
    max-width: calc(100% - 58px);
  }
  .menu-btn {
    display: inline-flex;
    order: 2;
    margin-left: auto;
  }
  .header-cta {
    order: 3;
    width: 100%;
    flex-basis: 100%;
  }
  .header-cta .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    font-size: 0.78rem;
  }
  .nav {
    position: absolute;
    z-index: 60;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.4rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(15, 26, 18, 0.98);
    box-shadow: var(--shadow);
  }
  .nav a {
    justify-content: flex-start;
  }
  .nav.open {
    display: flex;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 420px) {
  .brand-text strong {
    font-size: 1.02rem;
  }
  .brand-text span {
    font-size: 0.72rem;
  }
}
