/* ============================================================
   MacKenzie Tree — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,300&family=Inter:wght@300;400;500;600&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --dark: #0b1a0d;
  --dark-2: #122014;
  --dark-card: #162a19;
  --green: #3a7d44;
  --green-light: #5db86c;
  --green-glow: #3a7d4433;
  --cream: #f2ece0;
  --cream-2: #e8dfc9;
  --text-light: #dce9dd;
  --text-muted: #8aab8e;
  --gold: #c8923a;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

/* ── Typography ─────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
}

h1 {
  font-size: clamp(2.2rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.1rem;
  color: var(--green-light);
}

p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Utilities ──────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

/* bottom clearance for sticky CTA bar on mobile */
@media (max-width: 768px) {
  body {
    padding-bottom: 72px;
  }
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

.text-green {
  color: var(--green-light);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
}

.section-desc {
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 1.05rem;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--green-glow);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--green-light);
  color: var(--green-light);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: #d9a24d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 146, 58, 0.4);
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(11, 26, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Real logo image (transparent PNG) in nav */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  /* The PNG has transparent bg so it sits cleanly on the dark nav */
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text span:first-child {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cream);
}

.nav-logo-text span:last-child {
  font-size: 0.72rem;
  color: var(--green-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-light);
  background: var(--green-glow);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.nav-phone:hover {
  color: var(--green-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(11, 26, 13, 0.97);
  backdrop-filter: blur(20px);
  padding: 24px;
  z-index: 999;
  border-top: 1px solid rgba(93, 184, 108, 0.15);
  transform: translateY(-20px);
  opacity: 0;
  transition: var(--transition);
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  display: block;
  padding: 14px 20px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.mobile-nav a:hover {
  background: var(--green-glow);
  color: var(--green-light);
}

.mobile-nav .mobile-cta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Sticky CTA Bar ─────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--dark-2);
  border-top: 1px solid rgba(93, 184, 108, 0.2);
  padding: 12px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
  }
}

.sticky-cta-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.sticky-cta-text strong {
  color: var(--cream);
  font-size: 1rem;
  display: block;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero .container {
  display: flex;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.05);
  transition: transform 20s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(11, 26, 13, 0.88) 0%,
      rgba(11, 26, 13, 0.6) 50%,
      rgba(11, 26, 13, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(93, 184, 108, 0.15);
  border: 1px solid rgba(93, 184, 108, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 28px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
}

.hero h1 {
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero h1 em {
  font-style: italic;
  color: var(--green-light);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(220, 233, 221, 0.85);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: bounceY 2s infinite;
}

.hero-scroll i {
  font-size: 1.2rem;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Services ───────────────────────────────────────────── */
.services {
  background: var(--dark-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(93, 184, 108, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(93, 184, 108, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--green-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--green-light);
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--green);
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
}

/* ── About Preview ──────────────────────────────────────── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  /* extra bottom padding so the badge doesn't get clipped */
  padding-bottom: 28px;
}

.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 560px;
}

.about-img-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--green);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(58, 125, 68, 0.4);
}

.about-img-badge .num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.about-img-badge .label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

.about-content {
  padding-right: 20px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
}

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

.credential-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-card);
  border: 1px solid rgba(93, 184, 108, 0.2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
}

.credential-badge i {
  color: var(--green-light);
}

/* ── Trust Bar ──────────────────────────────────────────── */
.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(93, 184, 108, 0.1);
  border-bottom: 1px solid rgba(93, 184, 108, 0.1);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 36px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.trust-item i {
  font-size: 1.1rem;
  color: var(--green-light);
}

.trust-item:hover {
  color: var(--cream);
}

/* ── Testimonials ───────────────────────────────────────── */
.testimonials {
  background: var(--dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid rgba(93, 184, 108, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(93, 184, 108, 0.3);
}

.stars {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-light);
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream);
}

.author-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1a3d1e 0%, #0d1f0f 100%);
  border: 1px solid rgba(93, 184, 108, 0.2);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '🌲';
  position: absolute;
  font-size: 200px;
  opacity: 0.04;
  bottom: -20px;
  right: 20px;
  line-height: 1;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  max-width: 500px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(93, 184, 108, 0.12);
  padding: 64px 0 0;
}

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

.footer-brand p {
  margin-top: 16px;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 280px;
}

/* Real logo in footer */
.footer-logo-wrap {
  display: block;
  margin-bottom: 4px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--dark-card);
  border: 1px solid rgba(93, 184, 108, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.footer-col h4 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--green-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-contact-item i {
  color: var(--green-light);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item a:hover {
  color: var(--green-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-licenses {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.license-chip {
  background: var(--dark-card);
  border: 1px solid rgba(93, 184, 108, 0.15);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

/* ── About Page ─────────────────────────────────────────── */
.about-full-section {
  padding: 96px 0;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-story-text h2 {
  margin-bottom: 24px;
}

.about-story-text p {
  margin-bottom: 16px;
}

.certs-section {
  background: var(--dark-2);
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.cert-card {
  background: var(--dark-card);
  border: 1px solid rgba(93, 184, 108, 0.15);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}

.cert-card:hover {
  border-color: rgba(93, 184, 108, 0.4);
  transform: translateY(-4px);
}

.cert-icon {
  font-size: 2.2rem;
  color: var(--green-light);
  margin-bottom: 16px;
}

.cert-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.cert-card p {
  font-size: 0.85rem;
}

.cert-code {
  display: inline-block;
  margin-top: 16px;
  background: var(--green-glow);
  border: 1px solid rgba(93, 184, 108, 0.2);
  border-radius: 50px;
  padding: 4px 16px;
  font-family: monospace;
  font-size: 0.82rem;
  color: var(--green-light);
}

/* ── Gallery Page ───────────────────────────────────────── */
.gallery-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  background: var(--dark-card);
  border: 1px solid rgba(93, 184, 108, 0.2);
  border-radius: 50px;
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* ── Gallery thumbnail grid ──────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  background: #0b1a0d;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.6);
}

/* Hover expand icon */
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

/* Caption on hover — small, bottom of thumb */
.gallery-caption {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cream);
  text-align: center;
  line-height: 1.3;
  padding: 0 8px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9);
  transform: translateY(4px);
  transition: transform 0.25s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Category badge — hidden on thumbs to keep them clean */
.gallery-cat {
  display: none;
}

.gallery-item.hidden {
  display: none;
}

/* ── Lightbox ────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.94);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 60px;
  gap: 16px;
}

.lightbox.open {
  display: flex;
}

.lightbox-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1;
  min-height: 0;
}

.lightbox img {
  max-width: min(88vw, 1100px);
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.7);
  transition: opacity 0.2s ease;
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2rem;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
  z-index: 1;
}

.lightbox-close:hover {
  color: var(--green-light);
  transform: scale(1.15);
}

/* Prev / Next arrows */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  backdrop-filter: blur(6px);
}

.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.22);
}

/* Caption bar */
.lightbox-caption {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0 80px;
  flex-shrink: 0;
}

/* Counter */
.lightbox-counter {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ── Contact Page ───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--dark-card);
  border: 1px solid rgba(93, 184, 108, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(93, 184, 108, 0.35);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--green-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green-light);
  flex-shrink: 0;
}

.contact-card-text h4 {
  margin-bottom: 4px;
}

.contact-card-text p,
.contact-card-text a {
  font-size: 0.95rem;
  color: var(--text-light);
  transition: var(--transition);
}

.contact-card-text a:hover {
  color: var(--green-light);
}

.contact-form-box {
  background: var(--dark-card);
  border: 1px solid rgba(93, 184, 108, 0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form-box h3 {
  margin-bottom: 8px;
}

.contact-form-box>p {
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(93, 184, 108, 0.2);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--cream);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  background: rgba(93, 184, 108, 0.06);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.form-group select option {
  background: var(--dark-2);
  color: var(--cream);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.map-wrap {
  margin-top: 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(93, 184, 108, 0.15);
}

.map-wrap iframe {
  display: block;
}

/* ── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ── Animations ─────────────────────────────────────────── */
@keyframes bounceY {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.hero-content>* {
  animation: fadeInUp 0.8s ease both;
}

.hero-content>*:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-content>*:nth-child(2) {
  animation-delay: 0.25s;
}

.hero-content>*:nth-child(3) {
  animation-delay: 0.4s;
}

.hero-content>*:nth-child(4) {
  animation-delay: 0.55s;
}

.hero-stats {
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-preview {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-content {
    padding-right: 0;
  }

  .about-img-wrap img {
    height: 420px;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

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

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


  .hero-content {
    max-width: 100%;
  }
}

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

  .section-sm {
    padding: 48px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero: on mobile, reduce height and add vertical padding */
  .hero {
    margin-top: 0;
    min-height: calc(100svh - var(--nav-h));
    align-items: flex-start;
    padding-top: calc(var(--nav-h) + 24px);
  }

  .hero .container {
    padding-bottom: 40px;
  }

  .hero-content {
    padding-bottom: 8px;
  }

  .hero-scroll {
    display: none;
  }


  /* Services / Testimonials */
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  /* About */
  .about-story img {
    height: 280px;
  }

  .about-img-wrap img {
    height: 340px;
  }

  .about-img-wrap {
    padding-bottom: 20px;
  }

  .about-img-badge {
    padding: 14px 18px;
  }

  .about-img-badge .num {
    font-size: 1.8rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* CTA banner */
  .cta-banner {
    padding: 40px 20px;
    margin: 0;
  }

  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 24px 16px;
  }

  /* Footer bottom */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Gallery responsive */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Trust bar */
  .trust-bar-inner {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-h: 60px;
  }

  .section {
    padding: 48px 0;
  }

  .section-sm {
    padding: 36px 0;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
}

/* ============================================================
   Services Page
   ============================================================ */

/* ── Core Services Grid ─────────────────────────────────── */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 64px;
}

.srv-card {
  background: var(--dark-card);
  border: 1px solid rgba(93, 184, 108, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.srv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.srv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(93, 184, 108, 0.35);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45);
}

.srv-card:hover::before {
  transform: scaleX(1);
}

.srv-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.srv-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--green-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--green-light);
  transition: var(--transition);
}

.srv-card:hover .srv-icon-wrap {
  background: var(--green);
  color: var(--white);
}

.srv-badge {
  background: rgba(93, 184, 108, 0.15);
  border: 1px solid rgba(93, 184, 108, 0.3);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
}

.srv-badge-gold {
  background: rgba(200, 146, 58, 0.12);
  border-color: rgba(200, 146, 58, 0.3);
  color: var(--gold);
}

.srv-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.srv-card > p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.srv-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.srv-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.srv-features li i {
  color: var(--green-light);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.srv-pricing {
  background: rgba(11, 26, 13, 0.6);
  border: 1px solid rgba(93, 184, 108, 0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.srv-price-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.srv-price {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
}

.srv-price-note {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.srv-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ── Delivery Cards ─────────────────────────────────────── */
.delivery-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 64px;
}

.delivery-card {
  background: var(--dark-card);
  border: 1px solid rgba(200, 146, 58, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.delivery-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #e8a84d);
}

.delivery-card:hover {
  border-color: rgba(200, 146, 58, 0.4);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.delivery-card-inner {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 40px;
}

.delivery-icon {
  width: 72px;
  height: 72px;
  background: rgba(200, 146, 58, 0.12);
  border: 1px solid rgba(200, 146, 58, 0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  flex-shrink: 0;
}

.delivery-content h3 {
  margin-bottom: 10px;
}

.delivery-content > p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.delivery-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.spec-item i {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.spec-item strong {
  color: var(--text-light);
}

.delivery-price-box {
  text-align: center;
  padding: 28px 32px;
  background: rgba(200, 146, 58, 0.06);
  border-left: 1px solid rgba(200, 146, 58, 0.15);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: -40px -40px -40px 0;
}

.delivery-price {
  font-family: 'Fraunces', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.delivery-price-unit {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.delivery-price-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 16px;
  max-width: 160px;
}

/* ── Service Area ───────────────────────────────────────── */
.srv-area {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
  padding: 48px 0;
}

.srv-area-text h2 {
  margin-bottom: 16px;
}

.srv-area-text > p {
  margin-bottom: 32px;
}

.srv-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.town-chip {
  background: var(--dark-card);
  border: 1px solid rgba(93, 184, 108, 0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
}

.srv-area-creds {
  background: var(--dark-card);
  border: 1px solid rgba(93, 184, 108, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cred-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cred-row > i {
  font-size: 1.2rem;
  color: var(--green-light);
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.cred-row > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cred-row strong {
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 600;
}

.cred-row span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── Services Page Responsive ───────────────────────────── */
@media (max-width: 900px) {
  .delivery-card-inner {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .delivery-price-box {
    grid-column: 1 / -1;
    margin: 0 -40px -40px;
    border-left: none;
    border-top: 1px solid rgba(200, 146, 58, 0.15);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 24px 32px;
    gap: 16px;
  }

  .delivery-price-note {
    max-width: 100%;
    text-align: center;
    margin: 0;
    flex-basis: 100%;
  }

  .srv-area {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

  .delivery-card-inner {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .delivery-price-box {
    margin: 0 -20px -28px;
    padding: 20px;
  }

  .srv-card {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero-stat-num {
    font-size: 2rem;
  }

  .cta-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .service-card {
    padding: 28px 20px;
  }

  .contact-form-box {
    padding: 20px 14px;
  }

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

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .credentials {
    gap: 8px;
  }

  .credential-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
  }
}