:root {
  --green-1: #3f8d41;
  --green-2: #28451f;
  --blue-1: #89d5ee;
  --blue-2: #008caa;
  --gray-1: #888888;
  --gray-2: #2a2a2a;
  --gray-3: #1a1a1a;
  --surface: #242424;
  --text: #e8e8e8;
  --text-muted: #999;
  --border: rgba(255, 255, 255, 0.07);
  --header-height: 68px;
  --glow-green: 0 0 50px rgba(63, 141, 65, 0.45), 0 0 100px rgba(63, 141, 65, 0.15);
  --glow-teal:  0 0 50px rgba(0, 140, 170, 0.4),  0 0 100px rgba(0, 140, 170, 0.12);
  --glow-card:  0 0 0 1.5px rgba(63, 141, 65, 0.55), 0 8px 40px rgba(63, 141, 65, 0.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background-color: var(--gray-3);
  overflow-x: hidden;
}

body {
  color: var(--text);
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-color: var(--gray-3);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(63, 141, 65, 0.35), rgba(63, 141, 65, 0) 70%),
    radial-gradient(ellipse 70% 55% at 80% 80%, rgba(0, 140, 170, 0.28), rgba(0, 140, 170, 0) 70%),
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(40, 69, 31, 0.22), rgba(40, 69, 31, 0) 75%),
    radial-gradient(ellipse 50% 40% at 75% 10%, rgba(137, 213, 238, 0.12), rgba(137, 213, 238, 0) 70%);
  background-size: 200% 200%, 220% 220%, 180% 180%, 240% 240%;
  background-attachment: fixed;
  animation: bg-drift 12s ease-in-out infinite alternate;
}

@keyframes bg-drift {
  0%   { background-position:   0%   0%, 100% 100%,  50%  50%,  80%  10%; }
  25%  { background-position:  20%  15%,  78%  88%,  58%  42%,  58%  22%; }
  50%  { background-position:  38%  28%,  62%  72%,  42%  58%,  38%  38%; }
  75%  { background-position:  18%  38%,  82%  62%,  54%  46%,  68%  28%; }
  100% { background-position:   5%  95%,  95%   5%,  46%  54%,  88%   2%; }
}

@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
}

a   { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

h1, h2, h3 {
  font-family: 'Syne', 'Gill Sans MT', Calibri, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Header ─────────────────────────────────────────── */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: var(--header-height);
  background-color: rgba(22, 22, 22, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(63, 141, 65, 0.6) 20%,
    rgba(0, 140, 170, 0.85) 50%,
    rgba(63, 141, 65, 0.6) 80%,
    transparent 100%
  );
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.nav-links li { position: relative; }

.nav-links li + li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 14px; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--green-1), var(--blue-2), transparent);
  opacity: 0.55;
}

.nav-links li a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-family: 'Syne', 'Gill Sans MT', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active { color: var(--text); }

.nav-main-site {
  display: block;
  padding: 0.38rem 1rem;
  font-family: 'Syne', 'Gill Sans MT', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 1px solid rgba(63, 141, 65, 0.45);
  border-radius: 100px;
  color: var(--green-1);
  flex-shrink: 0;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.nav-main-site:hover {
  background-color: var(--green-1);
  border-color: var(--green-1);
  color: #fff;
  box-shadow: 0 0 18px rgba(63, 141, 65, 0.45);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px 4px;
  background: none;
  border: none;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background-color: var(--text);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background-color: rgba(18, 18, 18, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
}

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

.mobile-nav a {
  display: block;
  padding: 0.95rem 2rem;
  font-family: 'Syne', 'Gill Sans MT', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background-color 0.15s;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--text); background-color: rgba(255,255,255,0.03); }

@media (max-width: 768px) {
  .nav-links, .nav-main-site { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 400px) {
  header { padding: 0 1.25rem; }
}

/* ─── Footer ─────────────────────────────────────────── */

footer {
  margin-top: 6rem;
  padding: 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

footer a { color: var(--green-1); transition: color 0.2s; }
footer a:hover { color: var(--blue-1); }

/* ─── Buttons ────────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.22s;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-1), var(--blue-2));
  color: #fff;
  box-shadow: 0 4px 20px rgba(63, 141, 65, 0.35);
}

.btn-primary:hover {
  box-shadow: var(--glow-green);
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(137, 213, 238, 0.45);
}

.btn-outline:hover {
  border-color: var(--blue-1);
  box-shadow: var(--glow-teal);
  transform: translateY(-2px);
}

/* ─── Section labels ─────────────────────────────────── */

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: 0.6rem;
}

/* ─── Hero ───────────────────────────────────────────── */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(5rem, 14vw, 10rem) 2rem clamp(4rem, 10vw, 8rem);
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #fff 0%, var(--blue-1) 45%, var(--green-1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.2rem;
}

.hero p {
  max-width: 520px;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 2.4rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── Section wrapper ────────────────────────────────── */

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2.5rem);
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #fff 0%, var(--blue-1) 60%, var(--green-1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Gallery cards ──────────────────────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  border: 1.5px solid var(--border);
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  cursor: pointer;
}

.gallery-card:hover {
  box-shadow: var(--glow-card);
  border-color: rgba(63, 141, 65, 0.55);
  transform: translateY(-4px);
}

.gallery-card-cover {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--green-2) 0%, #0d2a33 100%);
  position: relative;
  overflow: hidden;
}

.gallery-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-card:hover .gallery-card-cover img {
  transform: scale(1.04);
}

.gallery-card-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.gallery-card-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.22rem 0.65rem;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-available {
  background: rgba(63, 141, 65, 0.85);
  color: #fff;
}

.badge-coming-soon {
  background: rgba(0,0,0,0.6);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.gallery-card-body {
  padding: 1.1rem 1.25rem 1.4rem;
}

.gallery-card-body h3 {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
  color: var(--text);
  text-transform: uppercase;
}

.gallery-card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.gallery-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery-card-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-1);
}

/* ─── Pricing ────────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
}

.pricing-card {
  border-radius: 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.pricing-card.featured {
  border-color: rgba(63, 141, 65, 0.5);
  background: linear-gradient(180deg, rgba(63,141,65,0.06) 0%, var(--surface) 100%);
  box-shadow: 0 0 0 1px rgba(63,141,65,0.2), 0 8px 40px rgba(63,141,65,0.12);
}

.pricing-card:hover {
  box-shadow: var(--glow-card);
  border-color: rgba(63, 141, 65, 0.55);
}

.pricing-card-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-2);
}

.pricing-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.pricing-card-price .amount {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-1);
  line-height: 1;
}

.pricing-card-price .per {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.pricing-card-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.pricing-card-features li::before {
  content: '✓';
  color: var(--green-1);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.pricing-note {
  max-width: 900px;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  background: rgba(0, 140, 170, 0.07);
  border: 1px solid rgba(0, 140, 170, 0.2);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 2rem;
}

.pricing-note strong { color: var(--blue-1); font-weight: 600; }

/* ─── Feature strip (index page) ────────────────────── */

.feature-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.feature-item {
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  text-align: center;
}

.feature-item-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: block;
}

.feature-item h3 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.feature-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  text-transform: none;
}

/* ─── Empty state ────────────────────────────────────── */

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

.empty-state p {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
