:root {
  --green: #19705a;
  --green-dark: #0f4f40;
  --navy: #172a3a;
  --ink: #1d2730;
  --muted: #66737f;
  --line: #dce5e2;
  --soft: #f4f8f6;
  --white: #ffffff;
  --accent: #f2b84b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner,
.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-weight: 800;
  color: var(--green-dark);
  font-size: 1.15rem;
}

.brand-note {
  color: var(--muted);
  font-size: 0.75rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
}

.phone-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.phone-link {
  padding: 10px 14px;
  background: var(--green);
  color: var(--white);
}

.button {
  padding: 13px 18px;
  border: 1px solid transparent;
}

.button-primary {
  background: var(--green);
  color: var(--white);
}

.button-secondary {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--line);
}

.hero {
  min-height: 640px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(244, 248, 246, 0.98) 0%, rgba(244, 248, 246, 0.9) 42%, rgba(244, 248, 246, 0.15) 72%),
    url("hero-home-service.png") center / cover no-repeat;
}

.hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 84px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: #334552;
  font-size: 1.12rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.phone-strong {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
}

.phone-strong span {
  font-size: 0.78rem;
  font-weight: 700;
}

.phone-strong b {
  font-size: 1.35rem;
  line-height: 1.1;
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: var(--soft);
}

.section-title {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-title h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.24;
  margin-bottom: 10px;
}

.section-title p {
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card h3 {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 1.2rem;
}

.card p,
.card li {
  color: var(--muted);
}

.check-list {
  padding-left: 1.1rem;
  margin: 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.info-table th,
.info-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  width: 32%;
  color: var(--green-dark);
  background: #f8fbfa;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}

.cta {
  background: var(--green-dark);
  color: var(--white);
}

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

.cta h2 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.25;
}

.cta p {
  margin-bottom: 0;
  color: #d8e9e4;
}

.contact-panel {
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-number {
  display: block;
  margin: 8px 0 12px;
  color: var(--green-dark);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
}

.notice {
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  background: #fff8e8;
  color: #5c4a20;
}

.site-footer {
  padding: 28px 0;
  background: var(--navy);
  color: #d7e1e7;
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .header-inner {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .phone-link {
    width: 100%;
  }

  .hero {
    min-height: 560px;
    background:
      linear-gradient(180deg, rgba(244, 248, 246, 0.98) 0%, rgba(244, 248, 246, 0.92) 58%, rgba(244, 248, 246, 0.22) 100%),
      url("hero-home-service.png") center / cover no-repeat;
  }

  .hero-content {
    padding: 44px 0 190px;
  }

  .grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .cta .section-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-actions .button,
  .cta-actions .phone-strong,
  .hero-actions .button,
  .hero-actions .phone-strong {
    width: 100%;
  }

  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table th {
    border-bottom: 0;
    padding-bottom: 6px;
  }

  .info-table td {
    padding-top: 6px;
  }
}
