/* =========================================================
   Foret Chojnice — strona firmowa
   Paleta: zdjęcia sosen, liści, kory i świeżej zieleni
   ========================================================= */

:root {
  /* color */
  --forest-900: #0d1d15;   /* głęboki cień pod koroną */
  --forest-800: #17291f;
  --forest-700: #214231;
  --forest-600: #2f5d42;
  --forest-500: #4f7d56;
  --moss-300:   #b9d27a;
  --moss-200:   #d7e7b4;
  --leaf-50:    #f1f7e8;

  --sand-50:    #fbfaf5;   /* tło jasne */
  --sand-100:   #f0eadc;
  --sand-200:   #dfd3bb;
  --sand-300:   #c7b48e;

  --bark-700:   #8b5f3c;
  --bark-500:   #b17846;

  --ink-900:    #121712;
  --ink-700:    #344238;
  --ink-500:    #667366;
  --ink-300:    #a8b1a5;

  --accent:     #b9d27a;   /* świeży liść, akcent CTA */
  --accent-700: #8fb044;

  /* type */
  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* layout */
  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;

  /* motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--sand-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

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

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 245, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--forest-700);
}
.brand-mark { flex: 0 0 auto; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--forest-800);
}
.brand-sub {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--forest-700); }

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}
.beaver-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86em;
  line-height: 1;
  transform: translateY(-0.5px);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: var(--forest-900);
  box-shadow: 0 14px 30px -18px rgba(185,210,122,0.9);
}
.btn-primary:hover { background: var(--moss-200); }
.btn-secondary {
  background: transparent;
  color: var(--leaf-50);
  border-color: rgba(238,242,230,0.55);
}
.btn-secondary:hover {
  background: rgba(238,242,230,0.10);
  border-color: var(--leaf-50);
}
.btn-ghost {
  background: transparent;
  color: var(--forest-800);
  border-color: rgba(47,74,53,0.20);
}
.btn-ghost:hover {
  background: rgba(47,74,53,0.06);
  border-color: rgba(47,74,53,0.35);
}
.btn-block { width: 100%; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--leaf-50);
  padding: clamp(74px, 10vw, 128px) 0 clamp(86px, 12vw, 150px);
  background: var(--forest-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,29,21,0.92) 0%, rgba(13,29,21,0.78) 42%, rgba(13,29,21,0.35) 100%),
    linear-gradient(180deg, rgba(13,29,21,0.22) 0%, rgba(13,29,21,0.92) 100%),
    radial-gradient(60% 60% at 80% 10%, rgba(185,210,122,0.26), transparent 64%);
}
.hero-bg-photo {
  position: absolute;
  inset: -8% 0 -12%;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: 72% 42%;
  filter: saturate(1.02) contrast(1.03) blur(1.5px);
  opacity: 0.74;
  transform: scale(1.05);
  animation: heroDrift 18s var(--ease) infinite alternate;
  will-change: transform;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
}
.hero-copy {
  max-width: 760px;
}
.hero-copy .eyebrow,
.hero-copy .hero-title,
.hero-copy .hero-lead,
.hero-copy .hero-cta,
.hero-copy .hero-meta {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  animation: heroTextRise 1.45s cubic-bezier(.22, 1, .36, 1) forwards;
  will-change: transform, opacity, filter;
}
.hero-copy .eyebrow {
  animation-delay: .10s;
}
.hero-copy .hero-title {
  animation-delay: .22s;
  filter: blur(5px);
}
.hero-copy .hero-lead {
  animation-delay: .40s;
}
.hero-copy .hero-cta {
  animation-delay: .58s;
}
.hero-copy .hero-meta {
  animation-delay: .78s;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss-300);
  margin: 0 0 24px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  transform-origin: left center;
  animation: eyebrowLineGrow 1.55s cubic-bezier(.22, 1, .36, 1) .18s both;
}
.eyebrow-dark { color: var(--forest-600); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--leaf-50);
}
.hero-title .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
  display: inline-block;
  animation: heroAccentGlow 4.6s cubic-bezier(.45, 0, .2, 1) 1.2s infinite alternate;
}

.hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  color: rgba(238,242,230,0.85);
  max-width: 56ch;
  margin: 0 0 36px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  color: rgba(238,242,230,0.75);
}
.hero-meta li { display: inline-flex; align-items: center; gap: 8px; }
.dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--accent);
  display: inline-block;
}
.hero-media {
  position: relative;
  min-height: 500px;
}
.hero-photo {
  margin: 0;
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(241,247,232,0.28);
  background: rgba(241,247,232,0.08);
  box-shadow: 0 26px 80px -42px rgba(0,0,0,0.65);
  will-change: transform;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero-photo-main {
  inset: 0 5% 7% 5%;
  animation: heroFloat 12s var(--ease) infinite alternate;
}
.hero-photo-main img {
  object-position: 54% 40%;
  animation: heroPhotoZoom 18s var(--ease) infinite alternate;
}
.hero-photo-small {
  left: -8%;
  bottom: 2%;
  width: 45%;
  height: 34%;
  border-radius: 22px;
  animation: heroSmallFloat 14s var(--ease) infinite alternate;
}
.hero-photo-small img {
  animation: heroSmallZoom 18s var(--ease) infinite alternate;
}
.hero-stat {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 245px;
  padding: 18px 20px;
  border-radius: 22px;
  color: var(--leaf-50);
  background: rgba(13,29,21,0.78);
  border: 1px solid rgba(241,247,232,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 45px -30px rgba(0,0,0,0.75);
  transform: translate3d(0, var(--stat-y, 0px), 0);
  will-change: transform;
}
.hero-stat span {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.14rem;
  line-height: 1.18;
}

@keyframes heroDrift {
  from { transform: scale(1.05) translate3d(0, var(--scroll-y, 0px), 0); }
  to { transform: scale(1.085) translate3d(-1%, calc(var(--scroll-y, 0px) - 0.8%), 0); }
}
@keyframes heroFloat {
  from { transform: translate3d(0, var(--card-y, 0px), 0); }
  to { transform: translate3d(0, calc(var(--card-y, 0px) - 6px), 0); }
}
@keyframes heroPhotoZoom {
  from { transform: scale(1.01) translate3d(-0.35%, 0, 0); }
  to { transform: scale(1.045) translate3d(0.45%, -0.35%, 0); }
}
@keyframes heroSmallFloat {
  from { transform: translate3d(0, var(--small-y, 0px), 0); }
  to { transform: translate3d(-3px, calc(var(--small-y, 0px) - 5px), 0); }
}
@keyframes heroSmallZoom {
  from { transform: scale(1.01); }
  to { transform: scale(1.035) translate3d(-0.3%, -0.3%, 0); }
}
@keyframes heroTextRise {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    filter: blur(5px);
  }
  45% {
    opacity: 1;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}
@keyframes eyebrowLineGrow {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes heroAccentGlow {
  from {
    text-shadow: 0 0 0 rgba(185,210,122,0);
    transform: translate3d(0, 0, 0);
  }
  to {
    text-shadow: 0 0 18px rgba(185,210,122,0.16);
    transform: translate3d(0, -1px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-photo,
  .hero-photo-main,
  .hero-photo-main img,
  .hero-photo-small,
  .hero-photo-small img,
  .hero-copy .eyebrow,
  .hero-copy .hero-title,
  .hero-copy .hero-lead,
  .hero-copy .hero-cta,
  .hero-copy .hero-meta,
  .hero-title .accent,
  .eyebrow::before {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    text-shadow: none !important;
  }
  .hero-stat {
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   Section base
   ========================================================= */
.section {
  padding: clamp(72px, 9vw, 120px) 0;
}
.section-light { background: var(--sand-50); color: var(--ink-900); }
.section-dark  { background: var(--forest-800); color: var(--leaf-50); }
.section-cta   {
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(185,210,122,0.18), transparent 65%),
    linear-gradient(165deg, #214231 0%, #0d1d15 100%);
  color: var(--leaf-50);
}

.section-head { max-width: 720px; margin: 0 0 48px; }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--forest-800);
  margin: 0 0 16px;
}
.section-title-light { color: var(--leaf-50); }
.section-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0;
  max-width: 60ch;
}
.section-head-center .section-lead { margin-left: auto; margin-right: auto; }
.section-lead-light { color: rgba(238,242,230,0.8); }

/* =========================================================
   Services grid
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service {
  background: #fff;
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.service:hover {
  transform: translateY(-2px);
  border-color: var(--moss-200);
  box-shadow: 0 12px 30px -18px rgba(30,47,36,0.35);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--leaf-50);
  color: var(--forest-700);
  margin-bottom: 18px;
}
.service h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 0 8px;
  color: var(--forest-800);
  letter-spacing: -0.01em;
}
.service p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.97rem;
  line-height: 1.55;
}
.service-wide { grid-column: span 2; }

/* =========================================================
   Projects / realizations
   ========================================================= */
.section-gallery {
  background:
    radial-gradient(70% 70% at 15% 10%, rgba(185,210,122,0.18), transparent 60%),
    radial-gradient(60% 60% at 90% 0%, rgba(177,120,70,0.12), transparent 70%),
    linear-gradient(180deg, #f0eadc 0%, #fbfaf5 100%);
  color: var(--ink-900);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.project-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--sand-200);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 18px 44px -34px rgba(30,47,36,0.45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.project-card:hover {
  transform: translateY(-3px);
  border-color: var(--moss-200);
  box-shadow: 0 24px 52px -34px rgba(30,47,36,0.55);
}
.project-photo {
  position: relative;
  aspect-ratio: 13 / 8;
  overflow: hidden;
  background: var(--sand-200);
}
.project-photo img,
.project-photo svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s var(--ease), filter .35s var(--ease);
}
.project-photo img {
  filter: saturate(1.02) contrast(1.02);
}
.project-card:hover .project-photo img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}
.project-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30,47,36,0) 50%, rgba(30,47,36,0.28) 100%),
    radial-gradient(70% 60% at 30% 10%, rgba(255,255,255,0.18), transparent 70%);
  pointer-events: none;
}
.project-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(30,47,36,0.78);
  color: var(--leaf-50);
  border: 1px solid rgba(238,242,230,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.project-body {
  padding: 22px 22px 24px;
}
.project-location {
  margin: 0 0 8px;
  color: var(--forest-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.project-body h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
  color: var(--forest-800);
}
.project-body p:last-child {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.55;
}
.gallery-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.05fr 0.88fr 1.05fr 0.82fr 1fr;
  gap: 14px;
}
.gallery-strip img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(23,41,31,0.10);
  box-shadow: 0 18px 44px -34px rgba(13,29,21,0.55);
}
.gallery-strip img:nth-child(2) {
  height: 250px;
  margin-top: 26px;
}
.gallery-strip img:nth-child(4) {
  height: 250px;
  object-position: center top;
}
.gallery-strip img:nth-child(5) {
  height: 220px;
  object-position: center 58%;
}

/* =========================================================
   Reasons (two-col)
   ========================================================= */
.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.reasons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 24px;
}
.reasons li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(168,191,153,0.18);
  border-radius: var(--radius);
  background: rgba(168,191,153,0.04);
}
.reason-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--moss-300);
  letter-spacing: -0.01em;
}
.reasons h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--leaf-50);
}
.reasons p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(238,242,230,0.75);
}

/* =========================================================
   Area / map
   ========================================================= */
.areas {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.area-map {
  background: #fff;
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  padding: 14px;
}
.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.area-list li {
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--sand-200);
  border-left: 3px solid var(--forest-600);
  border-radius: var(--radius-sm);
}
.area-list h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--forest-800);
}
.area-list p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-700);
  line-height: 1.5;
}

/* =========================================================
   Contact / quote form
   ========================================================= */
.two-col-cta {
  align-items: stretch;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(168,191,153,0.18);
  align-items: baseline;
}
.contact-list li:last-child { border-bottom: 1px solid rgba(168,191,153,0.18); }
.contact-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss-300);
  font-weight: 600;
}
.contact-value {
  font-size: 1.05rem;
  color: var(--leaf-50);
  font-weight: 500;
}
a.contact-value { transition: color .2s var(--ease); }
a.contact-value:hover { color: var(--moss-300); }

.quote-form {
  background: rgba(238,242,230,0.06);
  border: 1px solid rgba(168,191,153,0.22);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 14px;
  align-self: start;
}
.form-note {
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--moss-300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.quote-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: rgba(238,242,230,0.85);
  font-weight: 500;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  font: inherit;
  font-size: 15px;
  color: var(--leaf-50);
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(168,191,153,0.25);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  width: 100%;
  resize: vertical;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(238,242,230,0.4);
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--moss-300);
  background: rgba(0,0,0,0.35);
}
.quote-form select option { color: var(--ink-900); }
.form-status {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--moss-300);
  min-height: 18px;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--forest-900);
  color: rgba(238,242,230,0.75);
  padding: 48px 0 88px;  /* extra bottom for mobile sticky bar */
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--moss-300);
}
.footer-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--leaf-50);
}
.footer-tag {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(238,242,230,0.6);
}
.footer-meta {
  text-align: right;
  font-size: 14px;
  display: grid;
  gap: 4px;
}
.footer-meta a { color: var(--leaf-50); }
.footer-meta a:hover { color: var(--moss-300); }
.footer-fineprint {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(238,242,230,0.4);
}

/* =========================================================
   Mobile sticky bar
   ========================================================= */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(30, 47, 36, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(168,191,153,0.18);
  z-index: 60;
}
.mobile-bar-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
}
.mobile-bar-call {
  background: var(--moss-300);
  color: var(--forest-900);
}
.mobile-bar-quote {
  background: transparent;
  color: var(--leaf-50);
  border-color: rgba(238,242,230,0.4);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-call { font-size: 12px; padding: 10px 14px; }
  .brand-name { font-size: 19px; }
  .hero {
    padding-top: 72px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero-media {
    min-height: 430px;
    max-width: 620px;
  }

  .two-col,
  .areas {
    grid-template-columns: 1fr;
  }
  .services-grid { grid-template-columns: 1fr; }
  .service-wide { grid-column: auto; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) 1fr;
    align-items: stretch;
  }
  .project-photo { min-height: 100%; aspect-ratio: auto; }
  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-strip img,
  .gallery-strip img:nth-child(2),
  .gallery-strip img:nth-child(4),
  .gallery-strip img:nth-child(5) {
    height: 220px;
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .hero { padding-top: 64px; padding-bottom: 120px; }
  .hero-title {
    font-size: clamp(2.05rem, 12vw, 3.1rem);
  }
  .hero-media {
    min-height: 360px;
  }
  .hero-photo-main {
    inset: 0 0 12% 0;
    border-radius: 22px;
  }
  .hero-photo-small {
    width: 48%;
    height: 30%;
    left: 0;
    bottom: 2%;
    border-radius: 18px;
  }
  .hero-stat {
    max-width: 190px;
    padding: 14px 15px;
    border-radius: 18px;
  }
  .hero-stat strong {
    font-size: 0.98rem;
  }
  .hero-meta { gap: 14px; font-size: 13px; }
  .hero-cta .btn { flex: 1; min-width: 0; }
  .section { padding: 64px 0; }
  .quote-form { padding: 22px; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
  .footer-wrap { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
  .mobile-bar { display: flex; }
  .reasons li { grid-template-columns: 44px 1fr; gap: 12px; padding: 18px; }
  .reason-num { font-size: 1.2rem; }
  .project-card { display: block; }
  .project-photo { aspect-ratio: 13 / 8; }
  .project-body { padding: 20px; }
  .gallery-strip {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }
  .gallery-strip img,
  .gallery-strip img:nth-child(2),
  .gallery-strip img:nth-child(4),
  .gallery-strip img:nth-child(5) {
    flex: 0 0 76%;
    height: 230px;
    scroll-snap-align: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
