:root {
  color-scheme: light;
  --bg: #f4f8f7;
  --panel: #ffffff;
  --panel-2: #eaf3f1;
  --text: #071011;
  --muted: #526466;
  --teal: #08c7c9;
  --teal-deep: #07979a;
  --ink: #050707;
  --line: rgba(7, 16, 17, 0.13);
  --shadow: 0 24px 70px rgba(7, 16, 17, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 0%, rgba(8, 199, 201, 0.18), transparent 27rem),
    linear-gradient(180deg, #f8fcfb 0%, var(--bg) 38rem);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 16, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 16, 17, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 7, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(10rem, 17vw, 15rem);
  height: auto;
  max-height: 3.2rem;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  color: #b6c7c8;
  font-size: 0.95rem;
}

.nav a:hover {
  color: #ffffff;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  flex: 0 0 2.15rem;
  color: var(--teal);
  border: 1px solid rgba(8, 199, 201, 0.42);
  border-radius: 50%;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-icon .social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.social-icon:hover,
.social-icon:focus-visible {
  color: #031011;
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-1px);
}

.nav-cta {
  color: #031011 !important;
  background: var(--teal);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-weight: 800;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(1.5rem, 4vw, 3.75rem);
  align-items: center;
  padding: clamp(2.25rem, 6vw, 5.5rem) 0 clamp(2.25rem, 6vw, 5.5rem) clamp(1rem, 4vw, 4rem);
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #eef8f6 100%);
  border-bottom: 1px solid var(--line);
}

.hero-media {
  order: 2;
  position: relative;
  justify-self: stretch;
  min-height: clamp(24rem, 44vw, 39rem);
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 7, 7, 0.12));
  pointer-events: none;
}

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

.hero-copy {
  order: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.65rem, 5.8vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 10.5ch;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.1;
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.showcase-copy p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions,
.cta-band {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #031011;
  background: var(--teal);
  box-shadow: 0 18px 40px rgba(8, 199, 201, 0.25);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 620px;
  margin: 2.4rem 0 0;
}

.quick-stats div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.78);
}

.quick-stats dt {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-stats dd {
  margin: 0.25rem 0 0;
  color: var(--text);
  font-weight: 800;
}

.section,
.showcase,
.cta-band,
.footer {
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.75fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1rem;
}

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

.service-card {
  min-height: 16rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  display: grid;
  grid-template-columns: minmax(12rem, 0.95fr) minmax(0, 1fr);
  grid-template-areas:
    "image top"
    "image title"
    "image copy";
  column-gap: 1.15rem;
  row-gap: 0.65rem;
  align-content: start;
  align-items: start;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  background: #f4fbfa;
}

.service-top {
  grid-area: top;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(8, 199, 201, 0.42);
  border-radius: 8px;
  background: rgba(8, 199, 201, 0.1);
}

.service-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-number {
  color: var(--teal);
  font-weight: 900;
}

.service-thumb {
  grid-area: image;
  align-self: stretch;
  min-height: 13.25rem;
  height: 100%;
  margin-bottom: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #eef5f4;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.35rem;
}

.service-thumb.contain img {
  object-fit: contain;
  padding: 0.7rem;
}

.service-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.95fr);
  grid-template-areas:
    "top image"
    "title image"
    "copy image";
}

.service-card h3 {
  grid-area: title;
  margin-bottom: 0;
}

.service-card p {
  grid-area: copy;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.service-card.featured {
  background: linear-gradient(145deg, rgba(8, 199, 201, 0.14), #ffffff 72%);
}

.more-services {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(7, 16, 17, 0.08);
}

.more-services-copy h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 2.7vw, 2.25rem);
}

.more-services-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.service-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #f8fcfb;
}

.service-table th,
.service-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.service-table th {
  background: #071011;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-table td {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}

.service-table td:nth-child(2) {
  color: var(--text);
  font-weight: 900;
}

.service-table tr:last-child td {
  border-bottom: 0;
}

.service-table a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  background: rgba(8, 199, 201, 0.14);
  color: var(--teal-deep);
  font-weight: 900;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  background: #ffffff;
}

.order-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #ffffff;
  padding: clamp(1rem, 3vw, 1.6rem);
}

.order-panel a {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 5.2rem;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 900;
}

.order-panel a:last-child {
  border-bottom: 0;
}

.order-panel span {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 8px;
  background: rgba(8, 199, 201, 0.14);
  color: var(--teal-deep);
  font-size: 0.82rem;
}

.visual-guide {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem);
  background: #eaf3f1;
}

.guide-copy p:not(.eyebrow) {
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.guide-links {
  display: grid;
  gap: 0.8rem;
}

.guide-links a {
  display: grid;
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.15rem;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(7, 16, 17, 0.08);
}

.guide-links strong {
  font-size: 1.08rem;
}

.guide-links span {
  color: var(--muted);
  line-height: 1.45;
}

.resource-preview {
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem);
  background: #ffffff;
}

.resource-preview > .button {
  margin-top: 1.25rem;
}

.blog-hero {
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem);
  background: linear-gradient(135deg, #ffffff 0%, #eef8f6 100%);
  border-bottom: 1px solid var(--line);
}

.blog-hero h1 {
  max-width: 12ch;
}

.blog-hero p:not(.eyebrow) {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem);
  background: var(--bg);
}

.blog-grid.compact {
  padding: 0;
  background: transparent;
}

.blog-card {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  min-height: 15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.15rem;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(7, 16, 17, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 199, 201, 0.55);
}

.blog-card span {
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card strong {
  color: var(--text);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.05;
}

.blog-card p {
  color: var(--muted);
  line-height: 1.55;
}

.article-page {
  background: var(--bg);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumb a:hover {
  color: var(--teal-deep);
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 4vw, 4rem) clamp(3rem, 6vw, 6rem);
  background: linear-gradient(135deg, #ffffff 0%, #eef8f6 100%);
  border-bottom: 1px solid var(--line);
}

.article-hero h1 {
  max-width: 12ch;
}

.article-hero p:not(.eyebrow) {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.article-hero img {
  width: 100%;
  max-height: 28rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.area-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
}

.article-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem);
}

.article-main,
.article-sidebar {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.article-main {
  padding: clamp(1.25rem, 4vw, 2.4rem);
}

.article-main h2 {
  margin-top: 2rem;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.article-main h2:first-child {
  margin-top: 0;
}

.article-main p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.article-option-grid > div {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  min-height: 4.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.9rem;
  background: #f7fbfa;
}

.article-option-grid span {
  color: var(--teal-deep);
  font-weight: 900;
}

.article-benefit {
  margin: 2.25rem 0;
  border-left: 5px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 1.4rem 1.5rem;
  background: linear-gradient(135deg, #eaf8f6 0%, #f7fbfa 100%);
}

.article-benefit h2 {
  margin-top: 0.4rem;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.4rem 0 2rem;
}

.fact-grid > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.1rem;
  background: #f7fbfa;
}

.fact-grid strong {
  color: var(--teal-deep);
  font-size: 1.02rem;
}

.fact-grid p {
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.6;
}

.use-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 2rem;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.55;
}

.expert-note {
  margin: 2rem 0;
  border: 1px solid rgba(8, 199, 201, 0.45);
  border-radius: 8px;
  padding: 1.2rem 1.3rem;
  background: #071011;
  color: #ffffff;
}

.expert-note strong {
  color: var(--teal);
  font-size: 1.05rem;
}

.expert-note p {
  margin-bottom: 0;
  color: #d9e8e6;
}

.article-feature-image {
  margin: 2rem 0;
}

.article-feature-image img {
  width: 100%;
  aspect-ratio: 16 / 8;
  border-radius: 8px;
  object-fit: cover;
}

.article-feature-image figcaption {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.article-steps {
  display: grid;
  gap: 0;
  margin: 1.25rem 0 2rem;
  padding: 0;
  list-style: none;
  counter-reset: article-step;
}

.article-steps li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.2rem 0.8rem;
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  counter-increment: article-step;
}

.article-steps li::before {
  grid-row: 1 / 3;
  content: counter(article-step);
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: #041011;
  background: var(--teal);
  font-weight: 900;
}

.article-steps span {
  color: var(--muted);
  line-height: 1.55;
}

.article-faq details {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

.article-faq summary {
  cursor: pointer;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 900;
}

.article-faq details p {
  margin-bottom: 0;
}

.article-sidebar {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
}

.article-sidebar h2 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.article-sidebar ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.5;
}

.article-sidebar a:not(.button) {
  color: var(--text);
  font-weight: 900;
}

.article-areas {
  margin-top: 1rem;
}

.process-section {
  background: var(--bg);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  min-height: 12rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.2rem;
  background: var(--panel);
}

.process-list li::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 2.5rem;
  color: var(--teal);
  font-weight: 900;
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list strong {
  margin-bottom: 0.55rem;
  font-size: 1.1rem;
}

.process-list span {
  color: var(--muted);
  line-height: 1.55;
}

.cta-band {
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(8, 199, 201, 0.18), transparent 46%),
    var(--panel-2);
}

.cta-band h2 {
  max-width: 15ch;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: var(--muted);
}

.footer strong {
  color: var(--text);
}

.footer-links {
  display: grid;
  gap: 0.5rem;
  justify-items: end;
}

.footer a:hover {
  color: var(--teal);
}

.footer-social-icon {
  margin-top: 0.15rem;
}

.not-found {
  min-height: 58vh;
  display: grid;
  align-content: center;
  max-width: 820px;
}

.not-found h1 {
  max-width: 680px;
}

.not-found p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem);
  background: linear-gradient(135deg, #ffffff 0%, #eef8f6 100%);
  border-bottom: 1px solid var(--line);
}

.contact-copy h1 {
  max-width: 11ch;
}

.contact-copy > p:not(.eyebrow),
.service-area-copy p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.3rem;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.contact-list div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.contact-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-list dt {
  color: var(--teal-deep);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0.25rem 0 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.45;
}

.contact-map-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem);
  background: #ffffff;
}

.map-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.google-map {
  display: block;
  width: 100%;
  min-height: clamp(22rem, 44vw, 34rem);
  border: 0;
}

.map-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.map-actions strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.35;
}

.area-section {
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem);
  background: var(--bg);
}

.area-section h2 {
  max-width: 13ch;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: #ffffff;
  color: var(--text);
  font-weight: 900;
}

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

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-right: clamp(1rem, 4vw, 4rem);
  }

  .hero-media {
    order: 1;
    min-height: 20rem;
    border-radius: 8px;
  }

  .hero-copy {
    order: 2;
  }

  .section-heading,
  .showcase,
  .visual-guide,
  .blog-grid,
  .article-hero,
  .article-content,
  .contact-hero,
  .contact-map-section,
  .process-list,
  .more-services {
    grid-template-columns: 1fr;
  }

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

  .article-option-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: relative;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero-copy {
    padding-top: 0;
  }

  h1 {
    font-size: clamp(2.45rem, 16vw, 4rem);
  }

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

  .brand-logo {
    width: 11.5rem;
  }

  .service-card {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "top"
      "title"
      "copy";
  }

  .service-card:nth-child(even) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "top"
      "title"
      "copy";
  }

  .service-thumb {
    min-height: 12rem;
  }
}

/* Audited text contrast */
.service-card:not(.featured) .service-number,.more-services .eyebrow,.order-panel a span,.visual-guide .eyebrow,.blog-card span{color:#006b6c;}
.service-table td a{color:#005f60;}
