@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Montserrat:wght@700;800&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ===================== TOKENS ===================== */
:root {
  --background: hsl(84 13% 94%);
  --foreground: hsl(100 10% 18%);
  --primary: hsl(100 14% 22%);
  --accent: hsl(110 46% 42%);
  --border: hsl(84 10% 84%);
  --muted-foreground: hsl(100 5% 42%);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
  --font-logo: 'Montserrat', system-ui, sans-serif;
  --radius: 0.25rem;

  --sand: #F1F2EC;
  --darker-sand: #E7E9E0;
  --muted-sand: #BEC0AB;
  --forest: #1C3E26;
  --muted-green: #4A5240;
  --caption-green: #71735C;
  --sienna: #4F9D3A;
  --hover-sienna: #3F7F2E;
  --border-col: #D3D5C8;
  --deep-tan: #CED0C3;
  --prompt-bg: #142E1D;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--sand);
  color: var(--forest);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .container { padding-left: 2.5rem; padding-right: 2.5rem; }
}

.italic-sienna { color: var(--sienna); }
/* Big titles keep the italic font switch; smaller section sub-titles stay upright */
.hero-h1 .italic-sienna,
.page-hero h1 .italic-sienna,
.cta-h2 .italic-sienna,
.cta-strip h2 .italic-sienna,
.services-content .section-h2 .italic-sienna { font-style: italic; }
.icon { width: 1rem; height: 1rem; stroke-width: 2; flex-shrink: 0; }

/* Lucide-style inline svg sizing helpers */
.svg-3 { width: 0.875rem; height: 0.875rem; }
.svg-35 { width: 0.875rem; height: 0.875rem; }
.svg-4 { width: 1rem; height: 1rem; }
.svg-5 { width: 1.25rem; height: 1.25rem; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  width: 100%;
  background: var(--sand);
  border-bottom: 1px solid var(--border-col);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
}
@media (min-width: 1024px) { .navbar-inner { height: 4rem; } }

.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-img { height: 2.1rem; width: auto; display: block; }
@media (min-width: 1024px) { .logo-img { height: 2.4rem; } }
.logo-mark {
  width: 1.75rem; height: 1.75rem;
  background: var(--sienna);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.logo-mark svg { width: 1.05rem; height: 1.05rem; }
.logo-name {
  font-family: var(--font-logo);
  font-size: 19px;
  font-weight: 800;
  color: #111;
  letter-spacing: 0;
}

.nav-links { display: none; }
@media (min-width: 1024px) {
  .nav-links { display: flex; align-items: center; gap: 0.25rem; }
}
.nav-link {
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: var(--muted-green);
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
.nav-link:hover { color: var(--forest); }
.nav-link.active {
  color: var(--forest);
  font-weight: 600;
  border-bottom: 2px solid var(--forest);
}

.nav-right { display: flex; align-items: center; gap: 0.5rem; }
.btn-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--sienna);
  color: #fff;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.2s;
}
@media (min-width: 640px) { .btn-phone { display: inline-flex; } }
.btn-phone:hover { background: var(--hover-sienna); }

.hamburger {
  display: inline-flex;
  padding: 0.5rem;
  color: var(--forest);
}
@media (min-width: 1024px) { .hamburger { display: none; } }

.mobile-menu {
  background: var(--sand);
  border-top: 1px solid var(--border-col);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}
.mobile-menu.open { max-height: 28rem; opacity: 1; }
.mobile-menu-inner {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-link {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-family: var(--font-heading);
  border-bottom: 1px solid var(--border-col);
  color: var(--forest);
}
.mobile-link.active { color: var(--sienna); }
.mobile-phone {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--sienna);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--forest);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.55; }
.hero-overlay-1 { position: absolute; inset: 0; background: linear-gradient(to right, rgba(28,62,38,0.7), rgba(28,62,38,0.3) 50%, rgba(28,62,38,0.15)); }
.hero-overlay-2 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,62,38,0.6), transparent 50%, transparent); }

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 5rem;
}
.eyebrow { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; }
.eyebrow-line { width: 2rem; height: 1px; background: var(--sienna); }
.eyebrow-line-sm { width: 1.5rem; }
.eyebrow-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sienna);
}
.eyebrow-text-sm { font-size: 10px; }

.hero-h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  max-width: 42rem;
  font-weight: 600;
}
@media (min-width: 640px) { .hero-h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-h1 { font-size: 4.5rem; } }

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.625;
  margin-bottom: 2.25rem;
  max-width: 28rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sienna);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--hover-sienna); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

.hero-statusbar {
  position: relative;
  z-index: 10;
  background: rgba(240,243,237,0.9);
  backdrop-filter: blur(4px);
  border-top: 1px solid var(--border-col);
}
.statusbar-inner {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.status-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-green);
}
.status-item svg { color: var(--sienna); width: 0.875rem; height: 0.875rem; }
.status-item.hide-mobile { display: none; }
@media (min-width: 640px) { .status-item.hide-mobile { display: flex; } }

/* ===================== SERVICES PREVIEW ===================== */
.services-preview {
  background: var(--sand);
  display: grid;
  grid-template-columns: 1fr;
  min-height: 480px;
}
@media (min-width: 1024px) {
  .services-preview { grid-template-columns: 1fr 1fr; }
}
.mosaic {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
@media (min-width: 1024px) { .mosaic { min-height: 480px; } }
.mosaic-inner { position: relative; min-height: 380px; height: 100%; }
.mosaic-left { position: absolute; top: 0; bottom: 0; left: 0; width: 55%; overflow: hidden; }
.mosaic-tr { position: absolute; top: 0; right: 0; width: 42%; height: 48%; overflow: hidden; }
.mosaic-br { position: absolute; bottom: 0; right: 0; width: 42%; height: 48%; overflow: hidden; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; }

.services-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2.5rem;
  background: var(--sand);
}
@media (min-width: 1024px) { .services-content { padding: 4rem 4rem; } }

.section-h2 {
  font-family: var(--font-heading);
  color: var(--forest);
  line-height: 1.15;
  font-weight: 600;
}
.services-content .section-h2 { font-size: 2.25rem; margin-bottom: 2rem; }
@media (min-width: 1024px) { .services-content .section-h2 { font-size: 3rem; } }

.bullet-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-green);
}
.bullet-dot {
  width: 0.375rem; height: 0.375rem;
  border-radius: 9999px;
  background: var(--sienna);
  flex-shrink: 0;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sienna);
  align-self: flex-start;
}
.text-link:hover { text-decoration: underline; }

/* ===================== ABOUT ===================== */
.about {
  background: var(--darker-sand);
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 1024px) { .about { padding-top: 7rem; padding-bottom: 7rem; } }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.about-images { position: relative; }
.about-main { aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius); }
.about-main img { width: 100%; height: 100%; object-fit: cover; }
.about-inset {
  position: absolute;
  bottom: 0; right: 0;
  width: 9rem;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  border: 4px solid var(--darker-sand);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}
@media (min-width: 1024px) { .about-inset { width: 11rem; } }
.about-inset img { width: 100%; height: 100%; object-fit: cover; }

.about-h2 { font-size: 1.875rem; line-height: 1.3; margin-bottom: 1.5rem; }
@media (min-width: 1024px) { .about-h2 { font-size: 2.25rem; } }
.about-body { display: flex; flex-direction: column; gap: 1rem; color: var(--muted-green); line-height: 1.625; font-size: 15px; }
.about-body strong { color: var(--forest); font-weight: 600; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--deep-tan);
}
.stat-num { font-family: var(--font-body); font-size: 1.875rem; font-weight: 700; letter-spacing: -0.02em; color: var(--sienna); }
.stat-label { font-size: 11px; font-family: var(--font-mono); color: var(--caption-green); margin-top: 0.25rem; letter-spacing: 0.05em; text-transform: uppercase; }
.about-link { margin-top: 2rem; }

/* ===================== FLEET PREVIEW ===================== */
.fleet {
  background: var(--sand);
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 1024px) { .fleet { padding-top: 7rem; padding-bottom: 7rem; } }
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .fleet-grid { grid-template-columns: repeat(5, 1fr); gap: 4rem; } }
.fleet-left { }
@media (min-width: 1024px) { .fleet-left { grid-column: span 2; } }
.fleet-right { }
@media (min-width: 1024px) { .fleet-right { grid-column: span 3; } }
.fleet-h2 { font-size: 1.875rem; line-height: 1.3; margin-bottom: 1.5rem; }
@media (min-width: 1024px) { .fleet-h2 { font-size: 2.25rem; } }
.fleet-body { color: var(--muted-green); line-height: 1.625; margin-bottom: 2rem; font-size: 15px; }
.fleet-list { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 2rem; }
.fleet-media { position: relative; padding-bottom: 2rem; padding-right: 2rem; }
.fleet-image { aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--radius); }
.fleet-image img { width: 100%; height: 100%; object-fit: cover; }
.fleet-inset {
  position: absolute;
  bottom: 0; right: 0;
  width: 7.5rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  border: 4px solid var(--sand);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}
@media (min-width: 1024px) { .fleet-inset { width: 13rem; } }
.fleet-inset img { width: 100%; height: 100%; object-fit: cover; }
.fleet-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.caption-mono { font-family: var(--font-mono); font-size: 10px; color: var(--caption-green); letter-spacing: 0.1em; text-transform: uppercase; }

/* ===================== TERRAIN / BEFORE-AFTER ===================== */
.terrain-list { display: flex; flex-direction: column; gap: 0.625rem; margin: 1.75rem 0 0; }

.ba {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  box-shadow: 0 10px 30px -12px rgba(28,62,38,0.35);
}
.ba-img { display: block; width: 100%; height: 100%; object-fit: cover; pointer-events: none; -webkit-user-drag: none; user-select: none; }
/* base layer (after) sets the box height */
.ba > .ba-base { position: relative; z-index: 1; }
/* overlay layer (before) clipped from the right */
.ba-top {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.ba-top .ba-img { position: absolute; inset: 0; }
/* draggable divider */
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background: #F1F2EC;
  z-index: 3;
  pointer-events: none;
}
.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--sienna);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.ba-knob svg { width: 1.1rem; height: 1.1rem; }
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
}
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 3rem; height: 100%; cursor: ew-resize; }
.ba-range::-moz-range-thumb { width: 3rem; height: 100%; border: 0; background: transparent; cursor: ew-resize; }
.ba-label {
  position: absolute;
  top: 0.75rem;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(28,62,38,0.7);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius);
  pointer-events: none;
}
.ba-label-before { left: 0.75rem; }
.ba-label-after { right: 0.75rem; }
.ba-hint { text-align: center; margin-top: 0.75rem; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--caption-green); }

/* ===================== CTA SECTION ===================== */
.cta {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 7rem;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 1024px) { .cta { padding-top: 10rem; padding-bottom: 10rem; } }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: rgba(28,62,38,0.82); }
.cta-content { position: relative; z-index: 10; max-width: 42rem; margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }
.cta-h2 { font-family: var(--font-heading); font-size: 2.25rem; color: #fff; line-height: 1.15; margin-bottom: 1rem; font-weight: 600; }
@media (min-width: 1024px) { .cta-h2 { font-size: 3rem; } }
.cta-body { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 28rem; margin: 0 auto 2.5rem; }
.cta-buttons { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }
.btn-primary-lg { padding: 0.875rem 1.75rem; }
.btn-secondary-lg { padding: 0.875rem 1.75rem; border-color: rgba(255,255,255,0.35); }

/* ===================== FOOTER ===================== */
.footer { background: var(--forest); color: var(--sand); }
.footer-trust {
  border-bottom: 1px solid rgba(240,243,237,0.1);
}
.footer-trust-inner {
  padding-top: 1rem; padding-bottom: 1rem;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 1rem;
}
.footer-trust-left { font-family: var(--font-heading); font-size: 1rem; font-style: italic; color: rgba(240,243,237,0.8); }
.footer-trust-right { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.75rem; color: rgba(240,243,237,0.5); letter-spacing: 0.15em; text-transform: uppercase; }
.dot-live { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: #4ade80; animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.footer-grid {
  padding-top: 3.5rem; padding-bottom: 3.5rem;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; padding-top: 4rem; padding-bottom: 4rem; } }

.footer-logo { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 1rem; }
.footer-logo .logo-name { color: var(--sand); font-size: 1.125rem; }
.footer-brand-text { font-size: 0.875rem; color: rgba(240,243,237,0.6); line-height: 1.625; }
.footer-head { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(240,243,237,0.4); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a, .footer-contact a, .footer-contact div { font-size: 0.875rem; color: rgba(240,243,237,0.7); transition: color 0.2s; }
.footer-links a:hover { color: var(--sienna); }
.footer-contact { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact a, .footer-contact .fc-item { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-contact svg { color: var(--sienna); width: 1rem; height: 1rem; flex-shrink: 0; }
.footer-contact a:hover { color: var(--sienna); }
.footer-contact span { white-space: pre-line; }

.footer-bottom { border-top: 1px solid rgba(240,243,237,0.1); }
.footer-bottom-inner {
  padding-top: 1rem; padding-bottom: 1rem;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 1rem;
}
.footer-bottom-left { font-size: 0.75rem; color: rgba(240,243,237,0.4); }
.footer-bottom-right { font-size: 0.75rem; font-family: var(--font-mono); color: rgba(240,243,237,0.4); letter-spacing: 0.05em; }

.footer-prompt { border-top: 1px solid rgba(240,243,237,0.05); background: var(--prompt-bg); }
.footer-prompt-inner { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.footer-prompt-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(240,243,237,0.3); margin-bottom: 1rem; }
.footer-prompt pre { font-size: 11px; color: rgba(240,243,237,0.4); font-family: var(--font-mono); line-height: 1.625; white-space: pre-wrap; word-break: break-word; }

/* ===================== PAGE HERO BANNER (subpages) ===================== */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  padding-top: 8rem;
  padding-bottom: 4rem;
}
@media (min-width: 1024px) { .page-hero { padding-top: 9rem; padding-bottom: 5rem; } }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,62,38,0.7), rgba(28,62,38,0.3));
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .eyebrow-text { color: var(--sienna); }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #fff;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) { .page-hero h1 { font-size: 4rem; } }
.page-hero p { color: rgba(240,243,237,0.6); font-size: 1.0625rem; max-width: 34rem; }
.page-hero .italic-sienna { display: block; }

/* ===================== SERVICE CARDS (sluzby) ===================== */
.section-pad { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 1024px) { .section-pad { padding-top: 7rem; padding-bottom: 7rem; } }
.bg-sand { background: var(--sand); }
.bg-darker { background: var(--darker-sand); }

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--sand);
  border: 1px solid var(--border-col);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bg-darker .service-card { background: #fff; background: var(--sand); }
.card-media { aspect-ratio: 16 / 10; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 2rem 2rem 2.25rem; display: flex; flex-direction: column; flex: 1; }
.card-icon {
  width: 3rem; height: 3rem;
  background: rgba(79,157,58,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--sienna);
  margin-bottom: 1.5rem;
}
.card-icon svg { width: 1.5rem; height: 1.5rem; }
.card-title { font-family: var(--font-heading); font-size: 1.5rem; color: var(--forest); margin-bottom: 0.75rem; font-weight: 600; }
.card-desc { font-size: 0.9375rem; color: var(--muted-green); line-height: 1.6; margin-bottom: 1.5rem; }
.card-list { display: flex; flex-direction: column; gap: 0.625rem; }

.section-head-center { text-align: center; max-width: 40rem; margin: 0 auto; }
.section-head-center .eyebrow { justify-content: center; }
.section-head-lead { color: var(--muted-green); font-size: 15px; line-height: 1.625; margin-top: 1rem; }

/* ===================== EQUIPMENT GRID (technika) ===================== */
.equip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .equip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .equip-grid { grid-template-columns: repeat(3, 1fr); } }
.equip-card {
  background: var(--sand);
  border: 1px solid var(--border-col);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bg-darker .equip-card { background: #fff; }
.equip-image { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.equip-image img { width: 100%; height: 100%; object-fit: cover; }
.brand-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--sienna);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius);
}
.equip-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.equip-cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--caption-green); margin-bottom: 0.5rem; }
.equip-name { font-family: var(--font-body); font-size: 1.25rem; color: var(--forest); margin-bottom: 1rem; font-weight: 600; letter-spacing: -0.01em; }
.equip-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
.equip-tag {
  font-size: 0.75rem;
  background: rgba(79,157,58,0.1);
  color: var(--sienna);
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}

/* ===================== GALÉRIA ===================== */
.gallery-intro { text-align: center; max-width: 38rem; margin: 0 auto; }
.gallery-intro .eyebrow { justify-content: center; }
.gallery-intro p { color: var(--muted-green); font-size: 15px; line-height: 1.625; margin-top: 1rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-tile {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--darker-sand);
}
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px dashed var(--border-col);
  border-radius: var(--radius);
  color: var(--caption-green);
}
.gallery-placeholder svg { width: 1.75rem; height: 1.75rem; opacity: 0.7; }
.gallery-placeholder span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===================== CTA STRIP ===================== */
.cta-strip {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}
.cta-strip .cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-strip .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-strip .cta-overlay { position: absolute; inset: 0; z-index: 1; background: rgba(28,62,38,0.82); }
.cta-strip .container { position: relative; z-index: 2; }
.cta-strip h2 { font-family: var(--font-heading); font-size: 2rem; color: #fff; margin-bottom: 1rem; font-weight: 600; }
@media (min-width: 1024px) { .cta-strip h2 { font-size: 2.5rem; } }
.cta-strip p { color: rgba(240,243,237,0.6); max-width: 32rem; margin: 0 auto 2rem; }

/* ===================== KONTAKT ===================== */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .kontakt-grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; } }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.contact-detail-icon {
  width: 2.75rem; height: 2.75rem;
  background: rgba(79,157,58,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--sienna);
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 1.25rem; height: 1.25rem; }
.contact-detail-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--caption-green); margin-bottom: 0.25rem; }
.contact-detail-value { font-size: 1rem; color: var(--forest); font-weight: 500; white-space: pre-line; }
.contact-detail-value:hover { color: var(--sienna); }

/* Contact info card grid */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-cards { grid-template-columns: repeat(4, 1fr); } }
.contact-card {
  background: var(--sand);
  border: 1px solid var(--border-col);
  border-radius: var(--radius);
  padding: 2.25rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.2s, transform 0.2s;
}
a.contact-card:hover { border-color: var(--sienna); transform: translateY(-3px); }
.contact-card .contact-detail-icon {
  width: 3rem; height: 3rem;
  margin-bottom: 1.25rem;
}
.contact-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--caption-green);
  margin-bottom: 0.5rem;
}
.contact-card-value {
  font-size: 0.95rem;
  color: var(--forest);
  font-weight: 500;
  white-space: pre-line;
  line-height: 1.5;
}

#ponuka { scroll-margin-top: 5rem; }
.contact-card-num { display: block; }
.contact-card-num:hover { color: var(--sienna); }
.contact-card-num + .contact-card-num { margin-top: 0.35rem; }
.contact-form-wrap { max-width: 42rem; margin: 3rem auto 0; }
.contact-form {
  background: var(--sand);
  border: 1px solid var(--border-col);
  border-radius: var(--radius);
  padding: 2rem;
}
@media (min-width: 1024px) { .contact-form { padding: 2.5rem; } }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--forest); margin-bottom: 0.5rem; }
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--forest);
  background: #fff;
  border: 1px solid var(--border-col);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.form-control:focus { outline: none; border-color: var(--sienna); }
textarea.form-control { resize: vertical; min-height: 7rem; }
/* Match select box exactly to the text inputs and add a custom arrow */
select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1.5;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2372735E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--sienna);
  color: #fff;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.form-submit:hover { background: var(--hover-sienna); }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
}
.form-success.show { display: flex; }
.success-check {
  width: 4rem; height: 4rem;
  background: rgba(74,222,128,0.15);
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  color: #16a34a;
  margin-bottom: 1.5rem;
}
.success-check svg { width: 2rem; height: 2rem; }
.form-success h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--forest); margin-bottom: 0.5rem; }
.form-success p { color: var(--muted-green); font-size: 0.9375rem; }

/* ===================== SCROLL ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-x {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-x.in-view { opacity: 1; transform: translateX(0); }
.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.reveal-fade.in-view { opacity: 1; }

/* Hero entrance animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.anim { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.anim-fade { opacity: 0; animation: fadeIn 0.7s ease forwards; }
.d-15 { animation-delay: 0.15s; }
.d-30 { animation-delay: 0.30s; }
.d-50 { animation-delay: 0.50s; }
.d-65 { animation-delay: 0.65s; }
.d-90 { animation-delay: 0.90s; }
