/* ============================================================
   Galnivo — styles.css
   Natural / organic landscape studio theme. Prefix: pv-
   ============================================================ */

:root {
  --pv-green: #2f6b3c;
  --pv-green-600: #4c8a3f;
  --pv-green-400: #6aa84f;
  --pv-green-50: #eaf2e4;
  --pv-sand: #efe7d6;
  --pv-sand-dark: #e3d8c1;
  --pv-cream: #faf6ee;
  --pv-brown: #5c4a36;
  --pv-brown-light: #8a7658;
  --pv-ink: #3a3126;
  --pv-white: #ffffff;
  --pv-shadow: 0 18px 44px rgba(47, 107, 60, 0.16);
  --pv-shadow-sm: 0 8px 22px rgba(60, 48, 30, 0.10);
  --pv-radius: 18px;
  --pv-radius-lg: 28px;
  --pv-radius-sm: 10px;
  --pv-maxw: 1200px;
  --pv-serif: "Georgia", "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  --pv-sans: "Segoe UI", "Helvetica Neue", Arial, system-ui, sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--pv-sans);
  color: var(--pv-ink);
  background: var(--pv-cream);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--pv-green); text-decoration: none; transition: color .2s; }
a:hover { color: var(--pv-green-600); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--pv-serif); color: var(--pv-green); line-height: 1.2; font-weight: 700; }

/* ---------- Layout helpers ---------- */
.pv-container {
  width: 100%;
  max-width: var(--pv-maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.pv-section { padding: 84px 0; }
.pv-section--sand { background: var(--pv-sand); }
.pv-section--green { background: var(--pv-green); }
.pv-section-head { max-width: 700px; margin: 0 auto 48px; text-align: center; }
.pv-section-head--left { margin-left: 0; text-align: left; }
.pv-eyebrow {
  display: inline-block;
  font-family: var(--pv-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pv-green-600);
  margin-bottom: 14px;
  position: relative;
  padding-left: 26px;
}
.pv-eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  background: var(--pv-green-400);
  border-radius: 0 50% 50% 50%;
  opacity: 0.7;
}
.pv-section h2 { font-size: 2.3rem; margin-bottom: 14px; }
.pv-section-head p { color: var(--pv-brown-light); font-size: 1.08rem; }
.pv-section--green h2, .pv-section--green .pv-eyebrow { color: #fff; }
.pv-section--green p { color: #d8e6d0; }

/* ---------- Buttons ---------- */
.pv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--pv-sans);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 40px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .12s, box-shadow .2s;
  white-space: nowrap;
}
.pv-btn:active { transform: translateY(1px); }
.pv-btn--primary { background: var(--pv-green); color: #fff; box-shadow: 0 8px 20px rgba(47,107,60,0.25); }
.pv-btn--primary:hover { background: var(--pv-green-600); color: #fff; box-shadow: 0 10px 26px rgba(47,107,60,0.32); }
.pv-btn--ghost { background: transparent; color: var(--pv-green); border-color: var(--pv-green); }
.pv-btn--ghost:hover { background: var(--pv-green); color: #fff; }
.pv-btn--light { background: #fff; color: var(--pv-green); }
.pv-btn--light:hover { background: var(--pv-cream); color: var(--pv-green); }
.pv-btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.pv-btn--outline-light:hover { background: rgba(255,255,255,0.14); color: #fff; }
.pv-btn--block { width: 100%; }

/* ---------- Header ---------- */
.pv-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--pv-sand-dark);
}
.pv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.pv-brand {
  font-family: var(--pv-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pv-green);
  letter-spacing: -0.01em;
}
.pv-brand span { color: var(--pv-green-400); }
.pv-brand:hover { color: var(--pv-green); }
.pv-nav__list { display: flex; align-items: center; gap: 4px; }
.pv-nav__link {
  color: var(--pv-ink);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 9px 16px;
  border-radius: 40px;
  transition: background .2s, color .2s;
}
.pv-nav__link:hover { background: var(--pv-green-50); color: var(--pv-green); }
.pv-nav__link--active { color: var(--pv-green); font-weight: 700; }
.pv-header__actions { display: flex; align-items: center; gap: 12px; }
.pv-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid var(--pv-sand-dark);
  border-radius: 12px;
  cursor: pointer;
}
.pv-burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--pv-green);
  transition: transform .25s, opacity .25s;
}
.pv-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pv-burger.is-open span:nth-child(2) { opacity: 0; }
.pv-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.pv-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(30, 58, 30, 0.78) 0%, rgba(47, 107, 60, 0.45) 55%, rgba(47,107,60,0.15) 100%),
    url("images/galnivo-hero.jpg") center/cover no-repeat;
}
.pv-hero__inner { max-width: 640px; padding: 90px 0; }
.pv-hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #d8e6d0;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.24);
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 22px;
}
.pv-hero__title {
  color: #fff;
  font-size: 3.4rem;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.pv-hero__lead {
  font-size: 1.2rem;
  color: #eef4ea;
  margin-bottom: 32px;
  max-width: 540px;
}
.pv-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.pv-hero__badges {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pv-hero__badge { display: flex; flex-direction: column; }
.pv-hero__badge strong { font-family: var(--pv-serif); font-size: 1.8rem; color: #fff; }
.pv-hero__badge span { font-size: 0.85rem; color: #d8e6d0; }

/* ---------- Intro / philosophy ---------- */
.pv-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.pv-intro__media { position: relative; }
.pv-intro__img {
  border-radius: var(--pv-radius-lg);
  box-shadow: var(--pv-shadow);
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.pv-intro__leaf {
  position: absolute;
  width: 120px; height: 120px;
  background: var(--pv-green-400);
  border-radius: 0 60% 60% 60%;
  opacity: 0.16;
  top: -26px; left: -26px;
  z-index: -1;
}
.pv-intro__badge {
  position: absolute;
  bottom: 24px; right: -18px;
  background: #fff;
  border-radius: var(--pv-radius);
  box-shadow: var(--pv-shadow-sm);
  padding: 18px 24px;
  text-align: center;
}
.pv-intro__badge strong { display: block; font-family: var(--pv-serif); font-size: 2rem; color: var(--pv-green); }
.pv-intro__badge span { font-size: 0.82rem; color: var(--pv-brown-light); }
.pv-intro h2 { font-size: 2.3rem; margin-bottom: 16px; }
.pv-intro p { color: var(--pv-brown); margin-bottom: 16px; }
.pv-intro__list { margin-top: 20px; }
.pv-intro__list li {
  position: relative;
  padding: 8px 0 8px 32px;
  color: var(--pv-ink);
  font-weight: 500;
}
.pv-intro__list li::before {
  content: "🌿";
  position: absolute; left: 0;
}

/* ---------- Services cards ---------- */
.pv-serv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.pv-serv {
  background: #fff;
  border-radius: var(--pv-radius);
  overflow: hidden;
  box-shadow: var(--pv-shadow-sm);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.pv-serv:hover { transform: translateY(-6px); box-shadow: var(--pv-shadow); }
.pv-serv__media { position: relative; height: 200px; overflow: hidden; }
.pv-serv__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.pv-serv:hover .pv-serv__media img { transform: scale(1.06); }
.pv-serv__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.pv-serv h3 { font-size: 1.28rem; margin-bottom: 10px; }
.pv-serv p { color: var(--pv-brown-light); font-size: 0.95rem; margin-bottom: 18px; flex: 1; }
.pv-serv__price {
  font-family: var(--pv-sans);
  font-weight: 600;
  color: var(--pv-brown);
  padding-top: 14px;
  border-top: 1px dashed var(--pv-sand-dark);
}
.pv-serv__price strong { color: var(--pv-green); font-size: 1.1rem; }

/* services list (services.html detail) */
.pv-serv-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}
.pv-serv-detail:nth-child(even) .pv-serv-detail__media { order: 2; }
.pv-serv-detail__media img {
  width: 100%; height: 360px; object-fit: cover;
  border-radius: var(--pv-radius-lg);
  box-shadow: var(--pv-shadow-sm);
}
.pv-serv-detail h3 { font-size: 1.6rem; margin-bottom: 12px; }
.pv-serv-detail p { color: var(--pv-brown); margin-bottom: 14px; }
.pv-serv-detail__price {
  display: inline-block;
  background: var(--pv-green-50);
  color: var(--pv-green);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 40px;
}
.pv-serv-detail__list li {
  position: relative;
  padding: 6px 0 6px 26px;
  color: var(--pv-ink);
}
.pv-serv-detail__list li::before { content: "✓"; position: absolute; left: 0; color: var(--pv-green-400); font-weight: 800; }

/* ---------- Portfolio (filterable) ---------- */
.pv-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.pv-filter {
  font-family: var(--pv-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--pv-brown);
  background: #fff;
  border: 1px solid var(--pv-sand-dark);
  padding: 10px 22px;
  border-radius: 40px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.pv-filter:hover { border-color: var(--pv-green-400); color: var(--pv-green); }
.pv-filter.is-active { background: var(--pv-green); color: #fff; border-color: var(--pv-green); }
.pv-portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pv-project {
  border-radius: var(--pv-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--pv-shadow-sm);
  transition: transform .3s, opacity .3s, box-shadow .3s;
}
.pv-project.is-hidden { display: none; }
.pv-project:hover { transform: translateY(-5px); box-shadow: var(--pv-shadow); }
/* before/after */
.pv-project__ba { position: relative; height: 240px; overflow: hidden; }
.pv-project__ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pv-project__after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path .5s ease;
}
.pv-project:hover .pv-project__after { clip-path: inset(0 0 0 0); }
.pv-project__tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  background: rgba(47,107,60,0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 40px;
  letter-spacing: 0.04em;
}
.pv-project__labels {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.pv-project__labels span {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: rgba(0,0,0,0.45);
  padding: 4px 10px;
  border-radius: 40px;
}
.pv-project__body { padding: 20px 22px; }
.pv-project__body h3 { font-size: 1.18rem; margin-bottom: 4px; }
.pv-project__body p { color: var(--pv-brown-light); font-size: 0.9rem; }
.pv-portfolio__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--pv-brown-light);
  padding: 40px;
  display: none;
}
.pv-portfolio__empty.is-visible { display: block; }
.pv-portfolio__hint { text-align: center; color: var(--pv-brown-light); font-size: 0.88rem; margin-top: 22px; }

/* ---------- Steps ---------- */
.pv-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pv-step {
  background: var(--pv-cream);
  border: 1px solid var(--pv-sand-dark);
  border-radius: var(--pv-radius);
  padding: 32px 28px;
  position: relative;
  text-align: center;
}
.pv-section--sand .pv-step { background: #fff; border-color: transparent; }
.pv-step__num {
  width: 62px; height: 62px;
  margin: 0 auto 18px;
  border-radius: 0 50% 50% 50%;
  background: var(--pv-green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--pv-serif);
  font-size: 1.5rem;
  font-weight: 700;
}
.pv-step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.pv-step p { color: var(--pv-brown-light); font-size: 0.95rem; }

/* ---------- Why us ---------- */
.pv-why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pv-feature {
  text-align: center;
  padding: 28px 20px;
}
.pv-feature__icon {
  width: 68px; height: 68px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--pv-green-50);
  color: var(--pv-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}
.pv-section--green .pv-feature__icon { background: rgba(255,255,255,0.14); }
.pv-feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.pv-feature p { color: var(--pv-brown-light); font-size: 0.92rem; }
.pv-section--green .pv-feature h3 { color: #fff; }
.pv-section--green .pv-feature p { color: #d8e6d0; }

/* ---------- Reviews ---------- */
.pv-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pv-review {
  background: #fff;
  border-radius: var(--pv-radius);
  padding: 30px 26px;
  box-shadow: var(--pv-shadow-sm);
}
.pv-review__stars { color: #e0a92e; letter-spacing: 2px; margin-bottom: 14px; }
.pv-review__text { color: var(--pv-ink); font-size: 1rem; margin-bottom: 20px; font-style: italic; }
.pv-review__author { display: flex; align-items: center; gap: 14px; }
.pv-review__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.pv-review__name { font-family: var(--pv-serif); font-weight: 700; color: var(--pv-green); font-size: 1rem; }
.pv-review__role { color: var(--pv-brown-light); font-size: 0.84rem; }

/* ---------- CTA ---------- */
.pv-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--pv-radius-lg);
  padding: 64px 52px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(30,58,30,0.88), rgba(47,107,60,0.72)),
    url("images/galnivo-cta.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.pv-cta h2 { color: #fff; font-size: 2.2rem; margin-bottom: 10px; }
.pv-cta p { color: #eef4ea; max-width: 540px; }
.pv-cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.pv-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.pv-form {
  background: #fff;
  border-radius: var(--pv-radius);
  box-shadow: var(--pv-shadow-sm);
  padding: 36px;
}
.pv-field { margin-bottom: 20px; }
.pv-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pv-green);
  margin-bottom: 7px;
}
.pv-field input, .pv-field textarea, .pv-field select {
  width: 100%;
  font-family: var(--pv-sans);
  font-size: 0.98rem;
  padding: 13px 16px;
  border: 1px solid var(--pv-sand-dark);
  border-radius: var(--pv-radius-sm);
  background: var(--pv-cream);
  color: var(--pv-ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.pv-field textarea { min-height: 130px; resize: vertical; }
.pv-field input:focus, .pv-field textarea:focus, .pv-field select:focus {
  outline: none;
  border-color: var(--pv-green-400);
  box-shadow: 0 0 0 3px var(--pv-green-50);
  background: #fff;
}
.pv-form__error {
  display: none;
  color: #b5462f;
  font-size: 0.82rem;
  margin-top: 5px;
}
.pv-field.is-invalid input,
.pv-field.is-invalid textarea { border-color: #b5462f; background: #fbefec; }
.pv-field.is-invalid .pv-form__error { display: block; }
.pv-form__success {
  display: none;
  background: var(--pv-green-50);
  color: var(--pv-green);
  border: 1px solid var(--pv-green-400);
  border-radius: var(--pv-radius-sm);
  padding: 15px 18px;
  margin-bottom: 22px;
  font-weight: 600;
}
.pv-form__success.is-visible { display: block; }

.pv-info-card {
  background: var(--pv-green);
  color: #fff;
  border-radius: var(--pv-radius);
  padding: 34px;
}
.pv-info-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.pv-info-card > p { color: #d8e6d0; margin-bottom: 20px; }
.pv-info-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.pv-info-list li:last-child { border-bottom: none; }
.pv-info-list__k { font-weight: 700; min-width: 88px; color: #fff; }
.pv-info-list__v { color: #e6efe0; }
.pv-info-list__v a { color: #fff; text-decoration: underline; }
.pv-map {
  height: 240px;
  border-radius: var(--pv-radius);
  margin-top: 22px;
  background:
    linear-gradient(135deg, rgba(47,107,60,0.16), rgba(106,168,79,0.28)),
    repeating-linear-gradient(0deg, #ded3bd 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, #ded3bd 0 1px, transparent 1px 44px),
    var(--pv-sand);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--pv-sand-dark);
}
.pv-map span { background: #fff; color: var(--pv-green); font-weight: 700; padding: 10px 18px; border-radius: 40px; box-shadow: var(--pv-shadow-sm); }

/* ---------- Page hero (subpages) ---------- */
.pv-page-hero {
  position: relative;
  color: #fff;
  padding: 96px 0 80px;
  background:
    linear-gradient(120deg, rgba(30,58,30,0.82), rgba(47,107,60,0.55)),
    url("images/galnivo-banner.jpg") center/cover no-repeat;
}
.pv-page-hero h1 { color: #fff; font-size: 2.8rem; margin-bottom: 12px; }
.pv-page-hero p { color: #eef4ea; font-size: 1.1rem; max-width: 640px; }
.pv-breadcrumb { font-size: 0.85rem; color: #d8e6d0; margin-bottom: 16px; }
.pv-breadcrumb a { color: #fff; }

/* ---------- Prose (about/privacy) ---------- */
.pv-prose { max-width: 820px; }
.pv-prose h2 { font-size: 1.7rem; margin: 38px 0 14px; }
.pv-prose h3 { font-size: 1.25rem; margin: 26px 0 10px; }
.pv-prose p { color: var(--pv-ink); margin-bottom: 15px; }
.pv-prose ul { margin: 0 0 18px 0; }
.pv-prose ul li {
  position: relative;
  padding: 6px 0 6px 26px;
  color: var(--pv-ink);
}
.pv-prose ul li::before { content: "🌱"; position: absolute; left: 0; font-size: 0.85rem; }
.pv-prose strong { color: var(--pv-green); }
.pv-updated { color: var(--pv-brown-light); font-style: italic; font-size: 0.9rem; }

/* about: values + team */
.pv-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.pv-about-grid img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--pv-radius-lg); box-shadow: var(--pv-shadow); }
.pv-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pv-value {
  background: #fff;
  border-radius: var(--pv-radius);
  padding: 30px 26px;
  box-shadow: var(--pv-shadow-sm);
}
.pv-value__icon {
  width: 56px; height: 56px;
  border-radius: 0 50% 50% 50%;
  background: var(--pv-green-50);
  color: var(--pv-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.pv-value h3 { font-size: 1.2rem; margin-bottom: 8px; }
.pv-value p { color: var(--pv-brown-light); font-size: 0.94rem; }
.pv-team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pv-member {
  background: #fff;
  border-radius: var(--pv-radius);
  overflow: hidden;
  box-shadow: var(--pv-shadow-sm);
  text-align: center;
}
.pv-member img { width: 100%; height: 280px; object-fit: cover; }
.pv-member__body { padding: 22px; }
.pv-member__body h3 { font-size: 1.2rem; }
.pv-member__role { color: var(--pv-green-600); font-weight: 600; font-size: 0.88rem; margin-bottom: 8px; }
.pv-member__body p { color: var(--pv-brown-light); font-size: 0.88rem; }

/* stats band */
.pv-statband {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.pv-statband__num { font-family: var(--pv-serif); font-size: 2.6rem; color: #fff; line-height: 1; }
.pv-statband__label { color: #d8e6d0; font-size: 0.9rem; margin-top: 8px; }

/* ---------- Footer ---------- */
.pv-footer {
  background: #23331f;
  color: #cdd8c4;
  padding: 64px 0 26px;
}
.pv-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 40px;
}
.pv-footer__brand { font-family: var(--pv-serif); font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.pv-footer__brand span { color: var(--pv-green-400); }
.pv-footer p { font-size: 0.92rem; line-height: 1.8; }
.pv-footer h4 { color: #fff; font-family: var(--pv-serif); font-size: 1.1rem; margin-bottom: 16px; }
.pv-footer__links li { margin-bottom: 10px; }
.pv-footer__links a { color: #cdd8c4; font-size: 0.92rem; }
.pv-footer__links a:hover { color: #fff; }
.pv-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.pv-footer__bottom a { color: #cdd8c4; }
.pv-footer__bottom a:hover { color: #fff; }

/* ---------- Cookie banner ---------- */
.pv-cookie {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 200;
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--pv-sand-dark);
  border-radius: var(--pv-radius);
  box-shadow: 0 16px 48px rgba(35,51,31,0.28);
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(160%);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.pv-cookie.is-visible { transform: translateY(0); }
.pv-cookie__text { flex: 1; min-width: 260px; font-size: 0.9rem; color: var(--pv-brown); }
.pv-cookie__text strong { color: var(--pv-green); }
.pv-cookie__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Utilities ---------- */
.pv-center { text-align: center; }
.pv-mt-40 { margin-top: 40px; }
.pv-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .pv-hero__title { font-size: 2.8rem; }
  .pv-serv-grid, .pv-portfolio, .pv-reviews, .pv-team, .pv-values { grid-template-columns: repeat(2, 1fr); }
  .pv-steps { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .pv-why { grid-template-columns: repeat(2, 1fr); }
  .pv-statband { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .pv-intro { gap: 40px; }
}

@media (max-width: 768px) {
  .pv-section { padding: 64px 0; }
  .pv-nav {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--pv-cream);
    border-bottom: 1px solid var(--pv-sand-dark);
    box-shadow: var(--pv-shadow);
    transform: translateY(-150%);
    transition: transform .3s ease;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .pv-nav.is-open { transform: translateY(0); }
  .pv-nav__list { flex-direction: column; align-items: stretch; padding: 14px; gap: 2px; }
  .pv-nav__link { padding: 14px 16px; }
  .pv-burger { display: flex; }
  .pv-header__cta { display: none; }
  .pv-hero { min-height: 540px; }
  .pv-hero__title { font-size: 2.3rem; }
  .pv-intro, .pv-contact-grid, .pv-about-grid { grid-template-columns: 1fr; gap: 36px; }
  .pv-serv-detail { grid-template-columns: 1fr; gap: 24px; }
  .pv-serv-detail:nth-child(even) .pv-serv-detail__media { order: 0; }
  .pv-cta { padding: 44px 30px; text-align: center; justify-content: center; }
  .pv-cta__actions { justify-content: center; }
  .pv-footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .pv-section h2, .pv-intro h2 { font-size: 1.9rem; }
  .pv-page-hero h1 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .pv-container { padding: 0 16px; }
  .pv-section { padding: 52px 0; }
  .pv-hero__title { font-size: 1.95rem; }
  .pv-hero__lead { font-size: 1.05rem; }
  .pv-hero__cta { flex-direction: column; }
  .pv-hero__cta .pv-btn { width: 100%; }
  .pv-hero__badges { gap: 20px; }
  .pv-serv-grid, .pv-portfolio, .pv-reviews, .pv-team, .pv-values, .pv-why, .pv-statband { grid-template-columns: 1fr; }
  .pv-form, .pv-info-card { padding: 24px; }
  .pv-cta { padding: 36px 22px; }
  .pv-cta h2 { font-size: 1.7rem; }
  .pv-footer__grid { grid-template-columns: 1fr; }
  .pv-cookie { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
  .pv-cookie__actions { width: 100%; }
  .pv-cookie__actions .pv-btn { flex: 1; }
  .pv-page-hero h1 { font-size: 1.85rem; }
}
