*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #f7f8f5;
  color: #171a16;
  font-family:
    Manrope,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
textarea {
  font: inherit;
}
:root {
  --green: #4a6b2a;
  --green-dark: #314b18;
  --green-soft: #e8efdf;
  --ink: #171a16;
  --panel: #20231f;
  --muted: #687064;
  --paper: #f7f8f5;
  --white: #fff;
  --line: #dfe5d8;
  --shadow: 0 26px 80px rgba(23, 26, 22, 0.18);
  --radius: 8px;
}
.container {
  margin-inline: auto;
  width: min(1180px, calc(100% - 40px));
}
.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  text-decoration: none;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-dark);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.62);
}
.eyebrow {
  color: var(--green);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.display,
.section-title {
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.display {
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  line-height: 0.9;
}
.section-title {
  font-size: clamp(2.35rem, 4.4vw, 4.35rem);
  line-height: 0.96;
}
.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 660px;
}
.site-nav {
  left: 0;
  padding: 16px 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}
.nav-shell {
  align-items: center;
  background: rgba(247, 248, 245, 0.9);
  border: 1px solid rgba(23, 26, 22, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 16px 52px rgba(23, 26, 22, 0.12);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  transition:
    background 0.2s ease,
    min-height 0.2s ease;
  backdrop-filter: blur(18px);
}
.site-nav.is-scrolled .nav-shell {
  background: rgba(247, 248, 245, 0.97);
  min-height: 60px;
}
.brand {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  text-decoration: none;
}
.brand img {
  height: 42px;
  width: auto;
}
.brand span {
  border-left: 1px solid rgba(23, 26, 22, 0.16);
  color: #596156;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  padding-left: 14px;
  text-transform: uppercase;
}
.nav-links {
  align-items: center;
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
}
.nav-links a {
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 10px 12px;
  text-decoration: none;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}
.nav-links a:hover {
  background: var(--green-soft);
  color: var(--green-dark);
}
.menu-toggle {
  background: var(--green);
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  cursor: pointer;
  display: none;
  font-weight: 800;
  min-height: 44px;
  padding: 0 15px;
}
.hero {
  background: #171a16;
  color: var(--white);
  min-height: 94svh;
  overflow: hidden;
  position: relative;
}
.hero-bg {
  inset: 0;
  position: absolute;
}
.hero-bg img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.hero-bg::after {
  background: linear-gradient(
    90deg,
    rgba(13, 15, 12, 0.94) 0%,
    rgba(13, 15, 12, 0.82) 36%,
    rgba(13, 15, 12, 0.36) 72%,
    rgba(13, 15, 12, 0.16) 100%
  );
  content: "";
  inset: 0;
  position: absolute;
}
.hero-inner {
  display: grid;
  min-height: 94svh;
  padding: 150px 0 58px;
  position: relative;
  z-index: 2;
}
.hero-copy {
  align-self: center;
  max-width: 700px;
}
.hero h1 {
  margin-bottom: 24px;
}
.hero .lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.14rem;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero-bottom {
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  margin-top: 70px;
  padding-top: 22px;
}
.hero-stats {
  display: flex;
  gap: 42px;
}
.hero-stat strong {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 2.1rem;
  line-height: 1;
}
.hero-stat span {
  color: rgba(255, 255, 255, 0.6);
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  margin-top: 6px;
  text-transform: uppercase;
}
.hero-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  max-width: 310px;
}
.marquee {
  background: var(--green);
  color: var(--white);
  display: flex;
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}
.marquee-track {
  animation: marquee 24s linear infinite;
  display: flex;
  min-width: max-content;
}
.marquee-group {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 32px;
  padding-right: 32px;
}
.marquee span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}
section {
  padding: 104px 0;
}
.section-head {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 0.85fr;
  margin-bottom: 48px;
}
.section-head .lead {
  justify-self: end;
}
.services {
  background: var(--paper);
}
.service-cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.service-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  padding: 36px 30px 28px;
  position: relative;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.service-item:hover {
  border-color: rgba(74, 107, 42, 0.4);
  box-shadow: 0 20px 60px rgba(23, 26, 22, 0.09);
  transform: translateY(-5px);
}
.service-item .icon {
  align-items: center;
  background: var(--green-soft);
  border-radius: 12px;
  color: var(--green);
  display: flex;
  font-size: 1.5rem;
  height: 56px;
  justify-content: center;
  margin-bottom: 22px;
  width: 56px;
}
.service-item h3 {
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0 0 12px;
}
.service-item p {
  color: var(--muted);
  flex: 1;
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 0 0 20px;
}
.readmore {
  align-items: center;
  color: var(--green);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 600;
  gap: 6px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}
.readmore:hover {
  color: var(--ink);
  gap: 10px;
}
.about {
  background: #fff;
}
.about-grid {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: 0.95fr 1.05fr;
}
.image-stack {
  min-height: 600px;
  position: relative;
}
.image-main {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 560px;
  object-fit: cover;
  width: 82%;
}
.image-small {
  border: 10px solid #fff;
  border-radius: var(--radius);
  bottom: 0;
  box-shadow: var(--shadow);
  height: 260px;
  object-fit: cover;
  position: absolute;
  right: 0;
  width: 42%;
}
.about-copy .lead {
  margin-top: 22px;
}
.trust-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
}
.trust-list div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: 180px 1fr;
  padding: 18px 0;
}
.trust-list strong {
  color: var(--ink);
}
.trust-list span {
  color: var(--muted);
}
.projects {
  background: #171a16;
  color: #fff;
  overflow: hidden;
}
.projects .section-head {
  margin-bottom: 32px;
}
.projects .lead {
  color: rgba(255, 255, 255, 0.68);
}
.gallery {
  cursor: grab;
  display: flex;
  gap: 16px;
  margin-inline: calc((100vw - min(1180px, calc(100vw - 40px))) / -2);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px calc((100vw - min(1180px, calc(100vw - 40px))) / 2) 28px;
  scroll-behavior: auto;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  user-select: none;
  will-change: scroll-position;
}
.gallery::-webkit-scrollbar {
  display: none;
}
.gallery.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.gallery-card {
  background: #20231f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
  flex: 0 0 min(360px, 72vw);
  height: 470px;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
}
.gallery.is-dragging .gallery-card {
  pointer-events: none;
}
.gallery-card.is-wide {
  flex-basis: min(520px, 78vw);
}
.gallery-card img {
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 0.45s ease;
  width: 100%;
}
.gallery-card:hover img {
  transform: scale(1.06);
}
.gallery-card::after {
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.78));
  content: "";
  inset: 0;
  position: absolute;
}
.gallery-card span {
  bottom: 0;
  left: 0;
  padding: 24px;
  position: absolute;
  right: 0;
  z-index: 1;
}
.gallery-card small {
  color: var(--green-soft);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.gallery-card strong {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}
.plan {
  background: linear-gradient(180deg, #f7f8f5, #eef3e9);
}
.plan-steps {
  counter-reset: step;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.plan-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 300px;
  padding: 24px;
  position: relative;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.plan-step:hover {
  box-shadow: 0 24px 70px rgba(23, 26, 22, 0.1);
  transform: translateY(-6px);
}
.plan-step span {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  width: 44px;
}
.plan-step h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.75rem;
  line-height: 1;
  margin: 72px 0 14px;
}
.plan-step p {
  color: var(--muted);
  font-size: 0.96rem;
}
.plan-step::after {
  background: var(--line);
  content: "";
  height: 1px;
  left: 74px;
  position: absolute;
  right: -18px;
  top: 46px;
}
.plan-step:last-child::after {
  display: none;
}
.contact {
  background: #20231f;
  color: #fff;
}
.contact-grid {
  display: grid;
  gap: 54px;
  grid-template-columns: 0.85fr 1.15fr;
}
.contact .lead {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 22px;
}
.contact-lines {
  display: grid;
  gap: 15px;
  margin-top: 34px;
}
.contact-lines a,
.contact-lines span {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  font-weight: 800;
  gap: 10px;
  padding-bottom: 14px;
  text-decoration: none;
}
.contact-lines a:hover {
  color: #fff;
}
.contact-form {
  background: #f7f8f5;
  border-radius: var(--radius);
  color: var(--ink);
  padding: 32px;
}
.form-heading {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.5rem;
  margin: 0 0 10px;
  color: var(--ink);
}
.form-intro {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 20px;
}
.quote-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quote-fields .btn {
  width: 100%;
  justify-content: center;
}
.btn-contact-page {
  align-items: center;
  color: rgba(255,255,255,0.7);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 600;
  gap: 7px;
  margin-top: 28px;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-contact-page:hover {
  color: #fff;
}
.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
.field {
  display: grid;
  gap: 7px;
}
.field-wide {
  grid-column: 1/-1;
}
label {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}
input,
textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  min-height: 50px;
  outline: none;
  padding: 12px 13px;
  width: 100%;
}
textarea {
  min-height: 142px;
  resize: vertical;
}
input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(74, 107, 42, 0.14);
}
.form-status {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  min-height: 22px;
}
.form-status.success {
  color: var(--green-dark);
}
.form-status.error {
  color: #9b2f2a;
}
footer {
  background: #111311;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  padding: 56px 0 32px;
}

/* top row: logo + social */
.footer-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
}
.footer-logo {
  height: 48px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  font-size: 1.05rem;
  height: 40px;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  width: 40px;
}
.footer-social a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

/* divider */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 0 36px;
}

/* three-column info row */
.footer-mid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.4fr 1fr 1fr;
  margin-bottom: 36px;
}
.footer-col h4 {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.footer-col p {
  line-height: 1.85;
  margin: 0;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #fff;
}

/* bottom bar */
.footer-bottom {
  align-items: center;
  display: flex;
  font-size: 0.78rem;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: #fff;
}
.footer-reg {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}
.whatsapp-btn {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  bottom: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  color: #fff;
  display: flex;
  font-size: 1.6rem;
  height: 56px;
  justify-content: center;
  position: fixed;
  right: 28px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 56px;
  z-index: 999;
}
.whatsapp-btn:hover {
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  transform: scale(1.1);
}
.lightbox {
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 28px;
  position: fixed;
  z-index: 100;
}
.lightbox.is-open {
  display: flex;
}
.lightbox img {
  border-radius: var(--radius);
  max-height: 86vh;
  object-fit: contain;
  width: min(1100px, 100%);
}
.lightbox button {
  background: var(--green);
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  height: 44px;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 44px;
}
.lightbox-prev,
.lightbox-next {
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 50% !important;
  font-size: 2rem;
  font-weight: 400 !important;
  height: 48px !important;
  top: 50% !important;
  transform: translateY(-50%);
  transition: background 0.2s;
  width: 48px !important;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3) !important;
}
.lightbox-prev {
  left: 16px;
  right: auto !important;
}
.lightbox-next {
  right: 16px !important;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.hero .reveal {
  opacity: 1;
  transform: none;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    align-items: center;
    display: inline-flex;
  }
  .nav-shell.is-open .nav-links {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    gap: 4px;
    left: 20px;
    padding: 12px;
    position: absolute;
    right: 20px;
    top: 86px;
  }
  .nav-shell.is-open .nav-links a {
    display: block;
    padding: 13px 14px;
  }
  .hero-bg::after {
    background: rgba(13, 15, 12, 0.78);
  }
  .hero-bottom,
  .section-head,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .section-head .lead {
    justify-self: start;
  }
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .image-main {
    width: 88%;
  }
  .plan-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .plan-step::after {
    display: none;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .brand span {
    display: none;
  }
  .brand img {
    height: 42px;
  }
  .display {
    font-size: 3.15rem;
    line-height: 0.94;
  }
  .section-title {
    font-size: 2.38rem;
  }
  .hero-inner {
    min-height: 90svh;
    padding: 128px 0 42px;
  }
  .hero .lead {
    font-size: 1rem;
  }
  .hero-bottom {
    margin-top: 42px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 22px;
  }
  .hero-stat strong {
    font-size: 1.7rem;
  }
  section {
    padding: 74px 0;
  }
  .service-cards,
  .plan-steps,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .image-stack {
    min-height: 470px;
  }
  .image-main {
    height: 420px;
    width: 100%;
  }
  .image-small {
    display: none;
  }
  .trust-list div {
    grid-template-columns: 1fr;
  }
  .gallery {
    gap: 12px;
    margin-inline: -14px;
    padding-inline: 14px;
    scroll-padding-inline: 14px;
  }
  .gallery-card,
  .gallery-card.is-wide {
    flex-basis: 82vw;
    height: 390px;
  }
  .gallery.is-dragging .gallery-card {
    pointer-events: none;
  }
  .gallery-card:hover {
    flex-basis: 86vw;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-mid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ── Reviews ─────────────────────────────────────────────── */
.reviews {
  background: var(--paper);
}
.reviews-slider-wrap {
  margin-top: 48px;
  overflow: hidden;
  position: relative;
}
.reviews-slider {
  display: flex;
  gap: 24px;
  touch-action: pan-y;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.review-card {
  flex: 0 0 calc(50% - 12px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.review-card:hover {
  box-shadow: 0 16px 50px rgba(23, 26, 22, 0.08);
  transform: translateY(-4px);
}
.review-top {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
.reviewer-info {
  align-items: center;
  display: flex;
  gap: 12px;
}
.reviewer-avatar {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  letter-spacing: 0.03em;
  width: 42px;
}
.reviewer-info strong {
  color: var(--ink);
  display: block;
  font-size: 0.95rem;
}
.google-logo {
  flex-shrink: 0;
  height: 22px;
  width: 22px;
}
.review-stars {
  color: #f5c518;
  font-size: 1rem;
  letter-spacing: 2px;
}
.review-text {
  color: var(--muted);
  font-size: 0.93rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 767px) {
  .review-card {
    flex: 0 0 100%;
  }
}
.reviews-cta {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 52px;
  text-align: center;
}
.reviews-cta p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}
.btn-review {
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(23, 26, 22, 0.07);
  color: var(--ink);
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 700;
  gap: 10px;
  padding: 14px 28px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn-review svg {
  height: 20px;
  width: 20px;
}
.btn-review:hover {
  border-color: #4285F4;
  box-shadow: 0 4px 20px rgba(66, 133, 244, 0.18);
  transform: translateY(-2px);
}

/* ── Contact page (contact.html) ─────────────────────────── */
.contact-page-hero {
  background: #20231f;
  color: #fff;
  padding: 100px 0 70px;
}
.contact-page-hero h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin: 12px 0 18px;
}
.contact-page-hero .lead {
  color: rgba(255,255,255,0.65);
  max-width: 520px;
}
.contact-details-section {
  background: var(--paper);
  padding: 72px 0;
}
.contact-details-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1.4fr;
  align-items: start;
}
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  align-items: flex-start;
}
.info-card .info-icon {
  align-items: center;
  background: var(--green-soft);
  border-radius: 10px;
  color: var(--green);
  display: flex;
  flex-shrink: 0;
  font-size: 1.2rem;
  height: 46px;
  justify-content: center;
  width: 46px;
}
.info-card h4 {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin: 0 0 5px;
  text-transform: uppercase;
}
.info-card p,
.info-card a {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0;
  text-decoration: none;
}
.info-card a:hover {
  color: var(--green);
}
.contact-map {
  align-self: stretch;
  display: flex;
}
.contact-map iframe {
  border-radius: var(--radius);
  display: block;
  flex: 1;
  height: 100%;
  min-height: 300px;
  width: 100%;
}
.contact-form-section {
  background: #fff;
  padding: 72px 0;
}
.contact-form-wrap {
  display: grid;
  gap: 54px;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
}
.contact-form-text h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
  margin: 10px 0 16px;
}
.contact-form-text p {
  color: var(--muted);
  line-height: 1.7;
}
@media (max-width: 860px) {
  .contact-details-grid,
  .contact-form-wrap {
    grid-template-columns: 1fr;
  }
  .contact-map iframe {
    height: 300px;
  }
}
