/* ── Reset & base ── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Tokens ── */

:root {
  --green: #1A6B4A;
  --green-light: #EBF9F2;
  --green-mid: #2d8a61;
  --navy: #1a1a2e;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

/* ── Layout ── */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,107,74,0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.65);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* ── Nav ── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.nav-brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  padding: 9px 20px;
  background: var(--green);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.15s, transform 0.15s !important;
}

.nav-cta:hover {
  background: var(--green-mid) !important;
  transform: translateY(-1px);
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,20,40,0.72) 0%, rgba(10,20,40,0.45) 55%, rgba(10,20,40,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4ADE80;
  margin-bottom: 16px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 16px 24px;
  width: fit-content;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-num {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.trust-label {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  white-space: nowrap;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

/* ── Announcement banner ── */

.banner {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 500;
}

.banner a {
  color: #fff;
  font-weight: 700;
  margin-left: 8px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.banner a:hover {
  opacity: 0.85;
}

/* ── Services ── */

.services {
  background: var(--gray-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}

/* ── About ── */

.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--green);
  color: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(26,107,74,0.35);
}

.badge-num {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 12px;
  opacity: 0.88;
  margin-top: 4px;
  white-space: nowrap;
}

.about-copy .section-title {
  text-align: left;
}

.about-bio {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 32px;
}

.about-credentials li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
}

.about-credentials svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Testimonials ── */

.testimonials {
  background: var(--green);
}

.testimonials .section-eyebrow {
  color: #4ADE80;
}

.testimonials .section-title {
  color: #fff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars {
  color: #FCD34D;
  font-size: 16px;
  letter-spacing: 2px;
}

.review-text {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.review-date {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* ── Hours & Contact ── */

.info {
  background: var(--gray-light);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.info-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.hours-table td {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.hours-table td:first-child {
  color: var(--navy);
  font-weight: 500;
  padding-right: 24px;
}

.hours-table td:last-child {
  color: var(--green);
  font-weight: 600;
  text-align: right;
}

.closed-row td {
  color: var(--gray) !important;
}

.hours-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--navy);
}

.contact-list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-list a {
  color: var(--green);
  font-weight: 500;
  transition: color 0.15s;
}

.contact-list a:hover {
  color: var(--green-mid);
  text-decoration: underline;
}

.map-placeholder {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 180px;
  box-shadow: var(--shadow);
}

.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.map-pin svg {
  width: 36px;
  height: 36px;
}

/* ── CTA strip ── */

.cta-strip {
  background: var(--navy);
  padding: 64px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.cta-sub {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
}

/* ── Footer ── */

.footer {
  background: #111827;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-addr {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  margin-top: 8px;
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .section {
    padding: 72px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img {
    height: 380px;
  }

  .about-copy .section-title {
    text-align: center;
  }

  .about-copy .section-eyebrow {
    display: block;
    text-align: center;
  }

  .about-copy .btn {
    display: block;
    text-align: center;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-menu-btn {
    display: flex;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-trust {
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-around;
    gap: 16px;
  }

  .trust-divider {
    display: none;
  }

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

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 56px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

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