/* --- Variables --- */
:root {
  --bg: #faf9f6;
  --bg-card: #fff;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --accent: #0d5c4a;
  --accent-light: #e8f2ef;
  --warm: #c47d4a;
  --border: #e8e6e1;
  --radius: 8px;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-serif: 'Literata', Georgia, serif;
  --space: 1.25rem;
  --container: min(90vw, 1100px);
}

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

.container { width: var(--container); margin: 0 auto; padding: 0 var(--space); }

/* --- Typography --- */
.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 1.5rem;
  color: var(--text);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: #0a4a3b; box-shadow: 0 4px 14px rgba(13, 92, 74, 0.25); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent-light); }
.btn-full { width: 100%; }

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: var(--space);
}
.logo {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
}
.logo span { color: var(--accent); }
.nav {
  display: none;
  gap: 2rem;
}
.nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
}
.nav a:hover { color: var(--accent); }
.header .btn-primary { display: none; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: var(--space);
  gap: 0.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.5rem 0;
  font-weight: 500;
  color: var(--text);
}
.nav-mobile a:hover { color: var(--accent); }

@media (min-width: 768px) {
  .nav { display: flex; }
  .header .btn-primary { display: inline-flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 1; }
.hero-tag {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--text);
}
.hero-desc {
  max-width: 32ch;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  max-width: 380px;
  height: 70%;
  max-height: 400px;
  background: linear-gradient(135deg, var(--accent-light) 0%, rgba(13, 92, 74, 0.08) 100%);
  border-radius: 24px;
  pointer-events: none;
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .hero-visual { display: none; }
  .hero { padding: 3rem 0 4rem; }
}

/* --- Sections --- */
.section {
  padding: 4rem 0;
}
.section:nth-child(even) { background: var(--bg-card); }

/* --- Services --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}
.service-card {
  padding: 1.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.section:nth-child(even) .service-card { background: var(--bg); }
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(13, 92, 74, 0.08);
}
.service-icon {
  display: block;
  color: var(--accent);
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}
.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* --- About --- */
.about-inner {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-inner { grid-template-columns: 1fr 1fr; align-items: center; }
}
.about-text {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  max-width: 42ch;
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.about-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: var(--text);
}
.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.about-visual {
  min-height: 240px;
  background: linear-gradient(145deg, var(--accent-light) 0%, rgba(196, 125, 74, 0.08) 100%);
  border-radius: 16px;
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: normal;
}
@media (max-width: 767px) {
  .about-visual { min-height: 180px; }
}

/* --- Why us --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
.why-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 640px) {
  .why-item { border-bottom: none; border-left: 2px solid var(--accent); padding-left: 1.5rem; }
}
.why-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.why-item h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}
.why-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial {
  padding: 1.5rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 0;
}
.section:nth-child(even) .testimonial { background: var(--bg); }
.testimonial p {
  font-size: 0.9375rem;
  color: var(--text);
  margin: 0 0 0.75rem;
  font-style: italic;
}
.testimonial cite {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: normal;
}

/* --- Google Reviews --- */
.google-reviews {
  background: var(--bg-card);
}
.reviews-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .reviews-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.reviews-rating {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .reviews-rating {
    align-items: flex-end;
    text-align: right;
  }
}
.rating-stars {
  display: flex;
  gap: 2px;
  font-size: 1.5rem;
  line-height: 1;
}
.star {
  color: #ddd;
  display: inline-block;
}
.star.filled {
  color: #fbbc04;
}
.rating-text {
  font-size: 1.125rem;
  margin: 0;
  color: var(--text);
}
.rating-text strong {
  font-size: 1.5rem;
  color: var(--accent);
}
.reviews-link {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: 0.25rem;
}
.reviews-link:hover {
  text-decoration: underline;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(13, 92, 74, 0.08);
}
.review-header {
  margin-bottom: 1rem;
}
.review-author {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.review-stars {
  display: flex;
  gap: 2px;
  font-size: 0.875rem;
  line-height: 1;
}
.review-text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 0.75rem;
}
.review-date {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}
.reviews-cta {
  margin-top: 2rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.map-container {
  margin-top: 2rem;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}
.google-map {
  display: block;
  width: 100%;
  min-height: 450px;
}
@media (max-width: 767px) {
  .google-map {
    min-height: 350px;
  }
}

/* --- Socials --- */
.socials {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.socials-inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media (min-width: 768px) {
  .socials-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.socials-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.social-pill {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.8125rem;
  min-width: 180px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.social-pill-label {
  font-weight: 600;
  color: var(--accent);
}
.social-pill-handle {
  color: var(--text-muted);
}
.social-pill:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 16px rgba(13, 92, 74, 0.12);
  transform: translateY(-1px);
}

/* --- Contact --- */
.contact-inner {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .contact-inner { grid-template-columns: 1fr 1fr; align-items: start; }
}
.contact-desc {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.contact-link {
  font-weight: 600;
  color: var(--accent);
}
.contact-link:hover { text-decoration: underline; }
.contact-address {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.contact-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #999; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

/* --- Footer --- */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
  order: 3;
  width: 100%;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-copy { order: 0; width: auto; text-align: left; }
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
}
.footer-nav a {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.footer-nav a:hover { color: var(--accent); }
.footer-nav .social-link {
  font-weight: 600;
}
