/* ===== GRASS-DAN, Styles v4 (usługi terenowe) ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green-dark: #1a3c28;
  --green-main: #2d6a3f;
  --green-mid: #3d8b53;
  --green-light: #e8f5e9;
  --green-pale: #f4faf5;
  --gold: #b8943e;
  --gold-light: #d4b85a;
  --cream: #faf8f3;
  --cream-dark: #f0ece3;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text-dark); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-block; font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
  position: relative; padding-left: 40px;
}
.section-label::before { content: ''; position: absolute; left: 0; top: 50%; width: 28px; height: 2px; background: var(--gold); }
.section-title { font-size: clamp(2.2rem, 4.5vw, 3.2rem); color: var(--green-dark); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.15rem; color: var(--text-light); max-width: 560px; line-height: 1.8; text-align: center; margin: 0 auto; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 14px 0; transition: var(--transition); background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm); padding: 8px 0;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 80px; transition: var(--transition); }
.navbar.scrolled .nav-logo img { height: 56px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 1.05rem; font-weight: 600; color: var(--white);
  letter-spacing: 0.5px; transition: var(--transition); position: relative;
}
.navbar.scrolled .nav-links a { color: var(--text-dark); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 2px; background: var(--gold); transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--green-main) !important; color: var(--white) !important;
  padding: 12px 28px; border-radius: 50px; font-weight: 700 !important;
  font-size: 1.05rem !important;
}
.nav-cta:hover { background: var(--green-dark) !important; transform: translateY(-1px); }
.navbar.scrolled .nav-cta { color: var(--white) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
.nav-hamburger span { width: 28px; height: 3px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.navbar.scrolled .nav-hamburger span { background: var(--text-dark); }

/* ===========================
   HERO
   =========================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,60,40,0.82) 0%, rgba(26,60,40,0.55) 40%, rgba(26,60,40,0.35) 100%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 60px;
  padding-top: 120px; padding-bottom: 80px;
}
.hero-content { flex: 1; min-width: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 22px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; color: var(--gold-light);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 28px;
  animation: fadeInUp 0.8s ease both;
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--gold-light); border-radius: 50%; }
.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white); margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.15s both;
}
.hero h1 span { color: var(--gold-light); }
.hero-text {
  font-size: 1.3rem; color: rgba(255,255,255,0.8);
  max-width: 560px; line-height: 1.8; margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.45s both; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: 1.05rem;
  font-weight: 600; cursor: pointer; border: none; transition: var(--transition);
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,148,62,0.3); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* Hero logo card */
.hero-logo-card { flex: 0 0 460px; animation: fadeInUp 0.8s ease 0.5s both; }
.hero-logo-card-inner {
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius-lg); padding: 24px 20px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  border: 3px solid rgba(255,255,255,0.4);
}
.hero-logo-card-inner img { width: 100%; margin: 0 auto; }

/* Scroll hint */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: 8px; color: rgba(255,255,255,0.5); font-size: 0.7rem;
  letter-spacing: 2px; text-transform: uppercase;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gold-light); animation: scrollDown 1.8s ease infinite;
}

/* ===========================
   ABOUT
   =========================== */
.about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 400px; object-fit: cover; }
.experience-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--green-dark); color: var(--white);
  padding: 18px 24px; border-radius: var(--radius); text-align: center;
}
.experience-badge .num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.experience-badge .label { font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.about-text p { color: var(--text-mid); margin-bottom: 20px; font-size: 1.05rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.stat { text-align: center; padding: 20px 12px; background: var(--green-pale); border-radius: var(--radius); }
.stat .number { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--green-main); }
.stat .text { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }

/* ===========================
   SERVICES, 2x2 grid for 4 services
   =========================== */
.services { padding: 100px 0; background: var(--cream); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-subtitle { margin: 0 auto; }

/* SERVICES, Premium dark cards on cream bg */
.services-grid--5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.service-card {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 40px 24px 36px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: default;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

/* Top gold accent bar */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtle gold radial glow on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: -60%; right: -40%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(184,148,62,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(26,60,40,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 0.9;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: -3px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.service-card:hover .service-number {
  color: var(--gold-light);
  transform: translateY(-2px);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  flex-grow: 0;
}

.service-divider {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-divider {
  width: 56px;
}

.service-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

/* ===========================
   GALLERY, Before / After
   =========================== */
.gallery { padding: 100px 0; background: var(--white); }
.gallery-header { text-align: center; margin-bottom: 60px; }

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.ba-item {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.ba-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--green-dark);
  position: relative;
}
.ba-pair::after {
  content: '→';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 2;
}

.ba-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.ba-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.ba-item:hover .ba-photo img { transform: scale(1.04); }

.ba-label {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--white);
  z-index: 1;
  backdrop-filter: blur(4px);
}
.ba-label--before { background: rgba(120, 60, 60, 0.85); }
.ba-label--after { background: rgba(45, 106, 63, 0.85); }

/* Placeholder */
.ba-placeholder {
  background: linear-gradient(135deg, var(--cream-dark), var(--green-pale));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-light);
}
.ba-placeholder svg {
  width: 48px; height: 48px;
  opacity: 0.5;
}
.ba-placeholder > span:not(.ba-label) {
  font-size: 0.85rem;
  font-weight: 500;
}

.ba-info {
  padding: 24px 32px;
}
.ba-info h3 {
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.ba-info p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.gallery-cta {
  text-align: center;
  margin-top: 60px;
}

/* Action gallery — extra photos */
.action-gallery {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(26,60,40,0.1);
  text-align: center;
}
.action-gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.action-gallery-sub {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.action-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.action-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.action-photo:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.action-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.action-photo:hover img { transform: scale(1.04); }

.action-photo-caption {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(26,60,40,0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.gallery-cta p {
  color: var(--text-light);
  margin-bottom: 16px;
}
.gallery-cta .btn {
  background: var(--green-main);
  color: var(--white);
}
.gallery-cta .btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* ===========================
   WHY US
   =========================== */
.why-us {
  padding: 100px 0; background: var(--green-dark); color: var(--white);
  position: relative; overflow: hidden;
}
.why-us::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,148,62,0.08), transparent 70%);
  border-radius: 50%;
}
.why-us .section-label { color: var(--gold-light); }
.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto; }
.why-us-header { text-align: center; margin-bottom: 60px; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature {
  text-align: center; padding: 32px 20px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); transition: var(--transition);
}
.feature:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(184,148,62,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--gold-light); fill: none; stroke-width: 2; }
.feature h4 { font-size: 1.05rem; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; font-weight: 700; }
.feature p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ===========================
   CONTACT, clean tiles, no form
   =========================== */
.contact { padding: 100px 0; background: var(--cream); }

.contact-card {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(184,148,62,0.15), transparent 70%);
  border-radius: 50%;
}

.contact-heading {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}
.contact-heading .section-label { color: var(--gold-light); }
.contact-heading h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}
.contact-lead {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.contact-tile {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.contact-tile.contact-tile--primary {
  background: var(--gold);
  border-color: var(--gold-light);
}
.contact-tile.contact-tile--primary .contact-tile-icon { background: rgba(255,255,255,0.2); }
.contact-tile.contact-tile--primary .contact-tile-icon svg { stroke: var(--white); }
.contact-tile.contact-tile--primary .contact-tile-label { color: rgba(255,255,255,0.85); }

a.contact-tile:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}
a.contact-tile.contact-tile--primary:hover {
  background: var(--gold-light);
}

.contact-tile-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(184,148,62,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-tile-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold-light);
  fill: none;
}

.contact-tile-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.contact-tile-value {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

/* ===========================
   MAP SECTION
   =========================== */
.map-section {
  position: relative;
  background: var(--cream);
  height: 500px;
  overflow: hidden;
}

.map-iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(0.15);
  transition: filter 0.4s ease;
}
.map-section:hover .map-iframe { filter: grayscale(0); }

.map-overlay {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  z-index: 5;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  width: 360px;
  box-shadow: 0 20px 50px rgba(26,60,40,0.18);
  border-top: 4px solid var(--gold);
}

.map-overlay-inner h3 {
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 24px;
  margin-top: 8px;
}

.map-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.map-address svg {
  stroke: var(--gold);
  min-width: 20px;
  margin-top: 2px;
}
.map-address > div {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}
.map-address strong {
  color: var(--green-dark);
  font-weight: 700;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--green-main);
  color: var(--white);
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.map-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45,106,63,0.3);
}

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--green-dark); color: rgba(255,255,255,0.6); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 52px; margin-bottom: 16px; filter: brightness(10); }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; max-width: 280px; }
.footer h4 { color: var(--white); font-size: 0.85rem; font-family: 'DM Sans', sans-serif; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links a { display: block; font-size: 0.9rem; padding: 4px 0; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; }
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--gold-light); fill: none; stroke-width: 2; min-width: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--gold-light); }
.footer-nip { color: rgba(255,255,255,0.4); font-family: 'DM Sans', monospace; }

/* Obszar działania - local SEO */
.footer-areas {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-areas h4 {
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-areas p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 16px;
  max-width: 800px;
}
.footer-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.footer-cities span {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  padding: 4px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 50px;
  transition: var(--transition);
}
.footer-cities span:hover {
  background: rgba(184,148,62,0.15);
  color: var(--gold-light);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollDown { 0% { top: -100%; } 100% { top: 100%; } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .services-grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-details { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-logo-card { flex: 0 0 360px; }
}

@media (max-width: 720px) {
  .services-grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 0; right: 0; width: 280px; height: 100vh;
    background: var(--green-dark); padding: 80px 32px 32px;
    gap: 24px; box-shadow: -4px 0 20px rgba(0,0,0,0.2); z-index: 999;
  }
  .nav-links.open a { color: var(--white) !important; font-size: 1.1rem; }
  .nav-links.open .nav-cta { text-align: center; margin-top: 12px; }

  .hero-grid { flex-direction: column; gap: 40px; padding-top: 100px; }
  .hero-logo-card { flex: none; width: 100%; max-width: 340px; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }

  .about-grid { grid-template-columns: 1fr; }
  .services-grid--5 {
    grid-template-columns: 1fr;
  }
  .gallery-grid, .before-after-grid { grid-template-columns: 1fr; }
  .ba-pair { grid-template-columns: 1fr; }
  .ba-pair::after { transform: translate(-50%, -50%) rotate(90deg); }
  .action-gallery-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-card { padding: 48px 28px; }

  /* Map - stack overlay on top of map on mobile, iframe first then card */
  .map-section { height: auto; display: flex; flex-direction: column-reverse; }
  .map-overlay {
    position: static;
    transform: none;
    width: auto;
    margin: -40px 24px 24px;
    padding: 28px 24px;
  }
  .map-iframe { height: 360px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .about-stats { grid-template-columns: 1fr; }
  .nav-logo img { height: 60px; }
}
