:root {
  --pp-green: #2f5d56;
  --pp-green-dark: #153f39;
  --pp-soft-green: #6e8f88;
  --pp-gold: #d4af37;
  --pp-cream: #f3ede4;
  --pp-beige: #e8dbc3;
  --pp-ink: #27332f;
  --pp-muted: #6f746f;
  --pp-white: #fffaf2;
  --pp-shadow: 0 22px 60px rgba(31, 45, 39, .14);
  --pp-radius: 24px;
  --pp-title: "Playfair Display", Georgia, serif;
  --pp-body: "Montserrat", Arial, sans-serif;
}

@font-face {
  font-family: "Playfair Display";
  src: local("Playfair Display");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: local("Montserrat");
  font-display: swap;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--pp-ink);
  background: var(--pp-cream);
  font-family: var(--pp-body);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 72px 0; }
.section-title {
  margin: 0 0 28px;
  font-family: var(--pp-title);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--pp-green);
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--pp-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--pp-gold); color: var(--pp-green-dark); }
.btn-outline { border-color: rgba(212, 175, 55, .55); color: var(--pp-white); }
.btn-green { background: var(--pp-green); color: var(--pp-white); }
.icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21, 63, 57, .96);
  color: var(--pp-white);
  border-bottom: 1px solid rgba(212, 175, 55, .22);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}
.site-logo img { max-height: 74px; width: auto; }
.primary-menu { display: flex; justify-content: center; gap: 24px; margin: 0; padding: 0; list-style: none; }
.primary-menu a { font-size: 14px; font-weight: 700; opacity: .92; }
.primary-menu a:hover { color: var(--pp-gold); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.social-links { display: flex; gap: 8px; }
.social-links a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, .35);
  border-radius: 50%;
  color: var(--pp-gold);
  font-size: 12px;
}
.social-links svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  padding: 10px;
  background: rgba(212, 175, 55, .12);
  border: 1px solid rgba(212, 175, 55, .38);
  border-radius: 14px;
  color: var(--pp-gold);
}
.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 75% 20%, rgba(212, 175, 55, .18), transparent 30%), var(--pp-green-dark);
  color: var(--pp-white);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -160px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(212, 175, 55, .08);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 56px;
  align-items: center;
  min-height: 650px;
  padding: 78px 0;
}
.hero h1 {
  margin: 16px 0;
  font-family: var(--pp-title);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.03;
}
.hero p { max-width: 520px; color: rgba(255, 250, 242, .82); font-size: 18px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-media {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(212, 175, 55, .25);
  border-radius: 45% 0 45% 45%;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 45% 0 45% 45%;
}

.service-grid,
.gallery-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card,
.post-card,
.contact-card {
  padding: 28px;
  background: rgba(255, 250, 242, .78);
  border: 1px solid rgba(47, 93, 86, .12);
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow);
}
.service-card { text-align: center; }
.service-card .icon {
  display: inline-grid;
  width: 82px;
  height: 82px;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 175, 55, .48);
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 250, 242, .95), transparent 28%),
    linear-gradient(145deg, rgba(212, 175, 55, .24), rgba(47, 93, 86, .08));
  color: var(--pp-green);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 242, .62), 0 14px 28px rgba(47, 93, 86, .12);
}
.service-card .icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 2.6;
}
.service-card h3,
.post-card h3,
.gallery-card h3 {
  margin: 0 0 10px;
  font-family: var(--pp-title);
  color: var(--pp-green);
  font-size: 25px;
}
.service-card p,
.post-card p { color: var(--pp-muted); }
.section-actions { margin-top: 30px; text-align: center; }

.reasons {
  background: var(--pp-green);
  color: var(--pp-white);
}
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.reason-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
}
.reason-item .icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--pp-gold);
  border: 1px solid rgba(212, 175, 55, .4);
  border-radius: 18px;
  background: rgba(255, 250, 242, .06);
}
.reason-item .icon svg { width: 27px; height: 27px; }
.reason-item h3 { margin: 0 0 6px; font-size: 18px; }
.reason-item p { margin: 0; color: rgba(255, 250, 242, .76); font-size: 14px; }

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow);
}
.about-copy h2 {
  margin: 10px 0 18px;
  font-family: var(--pp-title);
  color: var(--pp-green);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}
.about-copy p { color: var(--pp-muted); }
.value-row {
  display: flex;
  gap: 18px;
  margin: 28px 0;
  color: var(--pp-green);
  font-weight: 800;
}
.value-row svg,
.page-hero .icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  vertical-align: -5px;
}

.gallery-card {
  overflow: hidden;
  background: var(--pp-white);
  border-radius: 22px;
  box-shadow: var(--pp-shadow);
}
.gallery-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-before-after {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: inherit;
  background: var(--pp-cream);
}
.gallery-before-after img,
.gallery-card .gallery-before-after img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  display: block;
}
.gallery-before-after::before {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  z-index: 2;
  width: 1px;
  background: rgba(255, 255, 255, 0.55);
  transform: translateX(-50%);
}
.gallery-card-body { padding: 18px; }
.gallery-card p { margin: 0; color: var(--pp-muted); }
.gallery-single {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 38px;
  align-items: start;
}
.gallery-single-media {
  overflow: hidden;
  border-radius: var(--pp-radius);
}
.gallery-single-media > img {
  width: 100%;
  display: block;
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow);
  height: auto;
}
.gallery-single-media .gallery-before-after {
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow);
}
.gallery-single-media .gallery-before-after img {
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
}
.gallery-single-content {
  padding: 30px;
  background: var(--pp-white);
  border: 1px solid rgba(47, 93, 86, .12);
  border-radius: var(--pp-radius);
}
.gallery-single-content h2 {
  margin: 0 0 16px;
  font-family: var(--pp-title);
  color: var(--pp-green);
  font-size: clamp(30px, 4vw, 46px);
}
.gallery-single-meta {
  margin: 0 0 22px;
  color: var(--pp-muted);
}

.stats {
  padding: 34px 0;
  background: var(--pp-white);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(47, 93, 86, .12);
  border-radius: 20px;
}
.stat-item .icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--pp-gold);
  border-radius: 18px;
  background: rgba(212, 175, 55, .12);
}
.stat-item .icon svg { width: 28px; height: 28px; }
.stat-number { display: block; color: var(--pp-green); font-size: 30px; font-weight: 900; }
.stat-label { color: var(--pp-muted); font-size: 13px; }

.cta {
  padding: 42px 0;
  background: var(--pp-green);
  color: var(--pp-white);
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta h2 { margin: 0; font-family: var(--pp-title); font-size: clamp(30px, 4vw, 48px); }

.page-hero {
  padding: 82px 0 52px;
  background: var(--pp-green-dark);
  color: var(--pp-white);
  text-align: center;
}
.page-hero h1 { margin: 0; font-family: var(--pp-title); font-size: clamp(42px, 6vw, 68px); }
.content-wrap { padding: 64px 0; }
.content-wrap .entry-content { max-width: 860px; margin: 0 auto; }
.section--with-gallery-intro { padding-top: 0; }
.gallery-intro-wrap {
  padding: 48px 0;
}
.gallery-intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  color: var(--pp-muted);
}
.gallery-intro > :first-child { margin-top: 0; }
.gallery-intro > :last-child { margin-bottom: 0; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; align-items: stretch; }
.contact-list { margin: 0; padding: 0; list-style: none; }
.contact-list li { margin-bottom: 14px; color: var(--pp-muted); }
.map-embed { display: flex; }
.map-embed iframe { width: 100%; min-height: 380px; height: 100%; border: 0; border-radius: var(--pp-radius); flex: 1; }

.site-footer {
  padding: 58px 0 24px;
  background: var(--pp-green-dark);
  color: rgba(255, 250, 242, .78);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 34px;
}
.footer-logo img { max-width: 170px; margin-bottom: 16px; }
.footer-title { color: var(--pp-gold); font-size: 14px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.footer-menu { margin: 0; padding: 0; list-style: none; }
.footer-menu li { margin-bottom: 8px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact-icon {
  flex: 0 0 18px;
  width: 18px;
  margin-top: 2px;
  color: var(--pp-gold);
}
.footer-contact-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}
.footer-contact-text {
  flex: 1;
  min-width: 0;
}
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(212, 175, 55, .18); text-align: center; font-size: 13px; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  background: #25d366;
  color: #063b1d;
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .24);
  font-weight: 900;
}
.floating-whatsapp svg { width: 22px; height: 22px; fill: currentColor; }

@media (min-width: 981px) {
  .gallery-single-media {
    position: sticky;
    top: 110px;
  }
}

@media (max-width: 980px) {
  .header-inner { grid-template-columns: 150px 1fr auto; }
  .menu-toggle { display: inline-grid; }
  .primary-menu {
    position: absolute;
    inset: 100% 16px auto;
    display: none;
    flex-direction: column;
    padding: 18px;
    background: var(--pp-green-dark);
    border: 1px solid rgba(212, 175, 55, .22);
    border-radius: 18px;
  }
  .primary-menu.is-open { display: flex; }
  .hero-inner,
  .about-grid,
  .contact-grid,
  .gallery-single { grid-template-columns: 1fr; }
  .hero-inner { min-height: auto; }
  .service-grid,
  .post-grid,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reason-grid,
  .stat-grid,
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .gallery-intro-wrap { padding: 36px 0; }
  .header-actions .btn { display: none; }
  .hero-buttons,
  .cta-inner,
  .value-row { align-items: stretch; flex-direction: column; }
  .service-grid,
  .post-grid,
  .gallery-grid,
  .reason-grid,
  .stat-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-width: 54px;
    min-height: 54px;
    padding: 14px;
    border: 3px solid rgba(255, 250, 242, .85);
  }
  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .floating-whatsapp svg { width: 28px; height: 28px; }
}
