:root {
  --ink: #243034;
  --muted: #667274;
  --line: #eadfce;
  --paper: #f8f0e4;
  --paper-soft: #fffaf2;
  --white: #ffffff;
  --leaf: #2f7667;
  --leaf-deep: #20584d;
  --clay: #c86f3c;
  --sun: #f2bd55;
  --blue: #527d9a;
  --shadow: 0 22px 60px rgba(36, 48, 52, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(242, 189, 85, 0.18), transparent 34rem),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 42%, #f6efe6 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  font-size: clamp(2.6rem, 5.5vw, 5.45rem);
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.45rem);
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.notice {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 9px 20px;
  background: var(--leaf-deep);
  color: var(--white);
  font-size: 0.88rem;
}

.notice span {
  color: #f9d98c;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid rgba(36, 48, 52, 0.1);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border: 2px solid var(--leaf);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--white) 0 30%, transparent 31%),
    conic-gradient(from 0deg, var(--sun), var(--clay), var(--blue), var(--leaf), var(--sun));
  box-shadow: 0 0 0 3px rgba(47, 118, 103, 0.12);
}

.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a,
.nav-cta {
  text-decoration: none;
}

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

.nav-cta {
  border-radius: 999px;
  padding: 11px 16px;
  background: var(--leaf);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(47, 118, 103, 0.2);
}

.hero {
  padding: 72px 22px 84px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 54px;
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-copy-wrap {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 13px 20px;
  text-decoration: none;
  font-weight: 950;
}

.button.primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(200, 111, 60, 0.24);
}

.button.secondary {
  border: 1px solid rgba(36, 48, 52, 0.2);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  margin: 38px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 36px rgba(36, 48, 52, 0.08);
}

.trust-row div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.trust-row div:last-child {
  border-right: 0;
}

.trust-row dt {
  color: var(--leaf-deep);
  font-size: 1.25rem;
  font-weight: 950;
}

.trust-row dd {
  margin: 2px 0 0;
  color: var(--muted);
}

.hero-card {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3.35;
  border: 10px solid var(--white);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(36, 48, 52, 0.18));
  pointer-events: none;
}

.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.call-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(36, 48, 52, 0.08);
}

.card-label {
  margin: 0 0 12px;
  color: var(--clay);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.call-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.call-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.call-card li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 4px rgba(242, 189, 85, 0.18);
}

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

.section-band {
  background: rgba(255, 255, 255, 0.72);
  border-block: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 70px;
  padding: 78px 0;
}

.split > p,
.coverage p,
.contact p,
.section-heading > p:not(.eyebrow),
.why-list p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.services,
.coverage,
.faq,
.contact {
  padding: 92px 0;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading > p:not(.eyebrow) {
  margin-top: 16px;
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 232px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(36, 48, 52, 0.06);
}

.service-card p,
.expect-grid p,
.faq-list p {
  color: var(--muted);
}

.service-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #e5f2ec;
  color: var(--leaf-deep);
  font-weight: 950;
}

.expect {
  padding: 88px 0;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.expect-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-soft);
}

.expect-grid span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--white);
  font-weight: 950;
}

.coverage-layout,
.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 70px;
  align-items: start;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-list li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 900;
}

.coverage-list li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--leaf);
}

.why {
  padding: 82px 0;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-list p {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.why-list strong {
  color: var(--leaf-deep);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
  background: var(--white);
}

summary {
  cursor: pointer;
  font-weight: 950;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
  padding: 42px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(32, 88, 77, 0.96), rgba(36, 48, 52, 0.98)),
    var(--leaf-deep);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel .eyebrow,
.contact-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-panel .button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

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

.footer span:first-child {
  color: var(--white);
  font-weight: 950;
}

.mobile-call {
  display: none;
}

@media (max-width: 980px) {
  .hero-inner,
  .split,
  .coverage-layout,
  .why-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 620px;
  }

  .service-grid,
  .expect-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .notice,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .notice {
    align-items: center;
    gap: 5px;
    padding: 7px 15px;
    font-size: 0.78rem;
    line-height: 1.2;
    text-align: center;
  }

  .nav {
    gap: 12px;
    padding: 10px 15px;
  }

  .brand {
    min-width: 0;
    white-space: normal;
  }

  .brand span:last-child {
    font-size: 0.98rem;
    line-height: 1.05;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    flex: 0 0 auto;
    padding: 9px 10px;
    font-size: 0.92rem;
  }

  .hero {
    padding: 44px 15px 58px;
  }

  .trust-row,
  .service-grid,
  .expect-grid,
  .coverage-list {
    grid-template-columns: 1fr;
  }

  .trust-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-row div:last-child {
    border-bottom: 0;
  }

  .split,
  .services,
  .coverage,
  .faq,
  .contact,
  .expect,
  .why {
    padding: 64px 0;
  }

  .contact-panel {
    padding: 30px;
  }
}

@media (max-width: 560px) {
  .section-inner {
    width: min(calc(100% - 30px), 1180px);
  }

  .notice strong {
    display: none;
  }

  .brand-mark {
    width: 18px;
    height: 18px;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: clamp(2.05rem, 9.3vw, 2.55rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.72rem, 8vw, 2.15rem);
    line-height: 1.1;
  }

  h3 {
    font-size: 1.03rem;
  }

  .eyebrow {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    max-width: 100%;
    width: 100%;
  }

  .photo-frame {
    border-width: 7px;
  }

  .mobile-call {
    display: none;
  }
}

@media (max-width: 410px) {
  .notice {
    padding-right: 10px;
    padding-left: 10px;
  }

  .nav {
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand span:last-child {
    font-size: 0.92rem;
  }

  h1 {
    font-size: clamp(1.92rem, 9vw, 2.28rem);
  }

  .button {
    min-height: 48px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .service-card,
  .expect-grid article,
  .call-card,
  .why-list p {
    padding: 22px;
  }
}
