:root {
  --ink: #172126;
  --muted: #627178;
  --line: #d8e2e1;
  --paper: #fbfcfa;
  --soft: #eef6f3;
  --teal: #0f766e;
  --teal-dark: #0d4f4c;
  --copper: #b86b3d;
  --blue: #233d63;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(23, 33, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  background: rgba(251, 252, 250, 0.92);
  border-bottom: 1px solid rgba(216, 226, 225, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--teal-dark);
  color: var(--white);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.8rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 2rem);
  color: var(--muted);
  font-size: 0.95rem;
}

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

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--teal-dark);
}

.header-actions,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.language-toggle,
.call-button,
.primary-action,
.secondary-action,
.inquiry-tool button,
.mobile-cta a {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.75rem 1rem;
  text-decoration: none;
  font-weight: 750;
  cursor: pointer;
}

.language-toggle {
  background: var(--white);
  border-color: var(--line);
  color: var(--teal-dark);
}

.call-button,
.primary-action,
.inquiry-tool button {
  background: var(--teal);
  color: var(--white);
}

.secondary-action {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.78fr);
  gap: clamp(2rem, 5vw, 5rem);
  min-height: calc(100svh - 75px);
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem) 2.5rem;
  align-items: center;
  background:
    radial-gradient(circle at 18% 15%, rgba(15, 118, 110, 0.14), transparent 30%),
    linear-gradient(135deg, #fbfcfa 0%, #eef6f3 58%, #f8f2ed 100%);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 9vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 680px;
  margin: 1.3rem 0 1.6rem;
  color: #34464d;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 2rem 0 0;
}

.trust-strip div {
  padding: 1rem;
  border: 1px solid rgba(216, 226, 225, 0.9);
  background: rgba(255, 255, 255, 0.7);
}

.trust-strip dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.trust-strip dd {
  margin: 0.25rem 0 0;
  font-weight: 800;
}

.hero-visual {
  margin: 0;
  background: #10252a;
  color: var(--white);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.hero-visual figcaption {
  padding: 0.9rem 1rem 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: -1rem clamp(1rem, 5vw, 5rem) 0;
  background: var(--line);
  box-shadow: 0 14px 35px rgba(23, 33, 38, 0.08);
}

.quick-panel div {
  background: var(--white);
  padding: 1.2rem;
}

.quick-panel span,
.quick-panel strong {
  display: block;
}

.quick-panel span {
  color: var(--muted);
  font-size: 0.82rem;
}

.quick-panel strong {
  margin-top: 0.25rem;
}

.section {
  padding: clamp(3.8rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.section-intro h2,
.contact-copy h2 {
  margin: 0;
  max-width: 11ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-intro p:not(.eyebrow),
.contact-copy p {
  color: var(--muted);
  max-width: 46rem;
  font-size: 1.05rem;
}

.service-grid,
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-grid article,
.comparison-grid article,
.inquiry-tool {
  border: 1px solid var(--line);
  background: var(--white);
  padding: clamp(1.1rem, 3vw, 1.6rem);
}

.service-icon {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 850;
}

.service-grid h3,
.comparison-grid h3,
.inquiry-tool h3 {
  margin: 0.8rem 0 0.45rem;
  font-size: 1.12rem;
}

.service-grid p,
.comparison-grid p {
  margin: 0;
  color: var(--muted);
}

.hours-section {
  background: var(--ink);
  color: var(--white);
}

.hours-section .eyebrow {
  color: #f0b083;
}

.hours-section .section-intro p {
  color: rgba(255, 255, 255, 0.74);
}

.hours-table {
  max-width: 780px;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hours-table div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hours-table span {
  color: rgba(255, 255, 255, 0.76);
}

.source-note {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.contact-section {
  background: #f5f8f7;
}

.contact-copy {
  max-width: 620px;
}

.inquiry-tool {
  display: grid;
  gap: 0.95rem;
  box-shadow: var(--shadow);
}

.inquiry-tool h3 {
  margin-top: 0;
}

.inquiry-tool label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.inquiry-tool input,
.inquiry-tool select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 0.75rem 0.85rem;
}

.prepared-message {
  min-height: 3rem;
  color: var(--teal-dark);
  font-weight: 700;
  white-space: pre-wrap;
}

.comparison-section {
  padding-bottom: 6rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 5rem) 6rem;
  color: rgba(255, 255, 255, 0.78);
  background: #10191d;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.mobile-cta {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 14;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 0.55rem;
  background: rgba(251, 252, 250, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 14px 45px rgba(23, 33, 38, 0.18);
  backdrop-filter: blur(16px);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  background: var(--teal);
  color: var(--white);
}

.mobile-cta a + a {
  background: var(--blue);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2.5rem;
  }

  h1 {
    max-width: 10ch;
  }

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

  .quick-panel,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .quick-panel {
    margin-top: 0;
  }

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

@media (max-width: 620px) {
  body {
    padding-bottom: 4.8rem;
  }

  .site-header {
    padding: 0.75rem 1rem;
  }

  .brand small {
    display: none;
  }

  .call-button {
    display: none;
  }

  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.2rem);
  }

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

  .primary-action,
  .secondary-action {
    display: grid;
    place-items: center;
    width: 100%;
  }

  .section-intro h2,
  .contact-copy h2 {
    max-width: 9ch;
  }

  .hours-table div,
  .site-footer {
    flex-direction: column;
  }

  .mobile-cta {
    display: grid;
  }
}
