:root {
  --green-900: #12261f;
  --green-800: #1a3a2f;
  --green-700: #1f4d3f;
  --green-600: #2c6a54;
  --green-100: #e7efe9;
  --cream: #faf7f0;
  --cream-dark: #f1ece0;
  --ink: #1c1c1c;
  --ink-soft: #4a4a46;
  --orange: #e8871e;
  --orange-dark: #c96f10;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(18, 38, 31, 0.12);
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--green-900);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1em;
}

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

.section {
  padding: 72px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange-dark);
  margin: 0 0 10px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-900);
  color: var(--white);
  padding: 10px 16px;
  z-index: 200;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: 999px;
  padding: 12px 22px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-lg {
  padding: 15px 28px;
  font-size: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(18, 38, 31, 0.08);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--green-900);
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  flex-shrink: 0;
}

.brand-name small {
  font-weight: 500;
  font-size: 0.65em;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--green-700);
}

@media (min-width: 761px) {
  .main-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-800);
  text-decoration: none;
  white-space: nowrap;
}

.header-phone svg {
  width: 20px;
  height: 20px;
  fill: var(--orange);
  flex-shrink: 0;
}

.header-phone:hover {
  color: var(--orange-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 38, 31, 0.75) 0%, rgba(18, 38, 31, 0.55) 45%, rgba(18, 38, 31, 0.85) 100%);
}

.hero-logo {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 48px;
}

.hero-logo img {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 24px;
  padding-bottom: 60px;
}

.hero-content .eyebrow {
  color: #ffd9a3;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

/* Trust strip */
.trust-strip {
  background: var(--white);
  padding: 26px 0;
  border-bottom: 1px solid rgba(18, 38, 31, 0.06);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-head);
  color: var(--green-800);
}

.trust-item strong {
  font-size: 1.6rem;
  line-height: 1;
}

.trust-item span {
  font-size: 0.75rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-strip-inner img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}

.about-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-signature {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(18, 38, 31, 0.12);
}

.owner-name {
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0;
  color: var(--green-900);
}

.owner-title {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Services */
.service-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 40px 0 48px;
}

.service-block {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-block img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-block-copy {
  padding: 24px 26px 28px;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--green-700);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: var(--font-head);
  font-size: 0.95rem;
}

.service-list img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.gallery-item {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Testimonials */
.testimonials {
  background: var(--green-900);
  color: var(--white);
}

.testimonials h2,
.testimonials .eyebrow {
  color: var(--white);
}

.testimonials .eyebrow {
  color: #ffd9a3;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 26px;
  margin: 0;
}

.stars {
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--white);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-details {
  list-style: none;
  margin: 20px 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-details svg {
  width: 20px;
  height: 20px;
  fill: var(--green-700);
  flex-shrink: 0;
}

.contact-details a {
  text-decoration: none;
  font-weight: 600;
  color: var(--green-800);
}

.review-us {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(18, 38, 31, 0.12);
}

.review-us-title {
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: 12px;
}

.review-us-badges {
  display: flex;
  align-items: center;
  gap: 20px;
}

.review-us-badges img {
  transition: transform 0.15s ease;
}

.review-us-badges a:hover img {
  transform: translateY(-2px);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  margin: 14px 0 6px;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(18, 38, 31, 0.18);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--green-600);
  outline-offset: 1px;
}

.contact-form button {
  margin-top: 20px;
  align-self: flex-start;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin-top: 14px;
  color: var(--green-700);
  font-weight: 600;
}

.form-note-error {
  color: #b3261e;
}

/* Footer */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 40px 0 100px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-inner a {
  text-decoration: none;
  color: var(--white);
}

.footer-inner a:hover {
  text-decoration: underline;
}

.footer-legal {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
}

/* Mobile sticky call bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  text-align: center;
  padding: 14px 16px;
  font-family: var(--font-head);
  font-weight: 700;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.15);
}

.mobile-call-bar svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 320px;
    margin: 0 auto;
  }

  .service-blocks {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    padding: 14px 20px;
  }

  .hero-logo {
    padding-top: 32px;
  }

  .hero-logo img {
    width: 100px;
    height: 100px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(18, 38, 31, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .main-nav.open {
    max-height: 320px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 20px;
  }

  .main-nav li {
    border-bottom: 1px solid rgba(18, 38, 31, 0.06);
  }

  .main-nav a {
    display: block;
    padding: 14px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .mobile-call-bar {
    display: flex;
  }

  .site-footer {
    padding-bottom: 110px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-inner {
    gap: 22px;
  }
}
