:root {
  --ink: #171717;
  --soft-ink: #3e3d39;
  --muted: #6f6a63;
  --paper: #f7f8f6;
  --panel: #ffffff;
  --line: #d8ded8;
  --gold: #b9924f;
  --coral: #b65347;
  --sage: #426b5d;
  --night: #202326;
  --shadow: 0 24px 60px rgba(23, 23, 23, 0.14);
}

* {
  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;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(247, 248, 246, 0.9);
  border-bottom: 1px solid rgba(216, 222, 216, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 4vw, 2.05rem);
  font-weight: 700;
  line-height: 1;
}

.brand-copy {
  color: var(--coral);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: var(--soft-ink);
  font-size: 0.92rem;
  font-weight: 750;
}

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

.nav-links a:hover,
.footer a:hover {
  color: var(--coral);
}

.top-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lang-switch,
.top-call,
.button {
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.lang-switch {
  background: transparent;
  color: var(--ink);
}

.top-call,
.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.secondary,
.button.ghost {
  background: transparent;
  color: var(--ink);
}

.button.dark {
  background: var(--night);
  color: #fff;
  border-color: var(--night);
}

.button:hover,
.lang-switch:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(38px, 7vw, 92px) 0 34px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 9vw, 7.1rem);
  line-height: 0.92;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.18;
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--soft-ink);
  font-size: clamp(1.08rem, 2.4vw, 1.38rem);
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-strip div {
  min-width: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.trust-strip dt {
  font-weight: 950;
}

.trust-strip dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
}

.conversion-band,
.split-section,
.proof-section,
.location-section,
.source-note,
.footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.conversion-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 5vw, 44px);
  background: var(--sage);
  color: #fff;
  border-radius: 8px;
}

.conversion-band .section-kicker,
.conversion-band h2 {
  color: #fff;
}

.conversion-band h2 {
  max-width: 780px;
  font-size: clamp(1.65rem, 3.4vw, 3.3rem);
}

.conversion-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.conversion-actions .button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(56px, 8vw, 96px) 0;
}

.section-heading p {
  max-width: 520px;
  color: var(--muted);
}

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

.service-card {
  min-height: 215px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-index {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--gold);
  font-weight: 950;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-panel,
.proof-list {
  margin: 0;
  padding: clamp(28px, 5vw, 54px);
  background: #fff;
}

.proof-panel p:last-child {
  max-width: 660px;
  color: var(--muted);
}

.proof-list {
  display: grid;
  align-content: center;
  gap: 14px;
  list-style: none;
}

.proof-list li {
  padding-left: 18px;
  border-left: 4px solid var(--coral);
  color: var(--soft-ink);
  font-weight: 750;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(56px, 8vw, 96px) 0;
}

.location-copy p {
  max-width: 600px;
  color: var(--muted);
}

.hours-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hours-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  background: #fff;
}

.hours-table span {
  color: var(--muted);
}

.source-note {
  padding: 20px 0 42px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0 96px;
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
}

.footer p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 850;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 40;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.16);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 16px 36px rgba(23, 23, 23, 0.28);
}

.mobile-cta a {
  min-width: 0;
  padding: 13px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 900;
}

.mobile-cta a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 920px) {
  .topbar {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .top-actions {
    justify-self: end;
  }

  .hero,
  .split-section,
  .proof-section,
  .location-section,
  .conversion-band {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 30px;
  }

  h1 {
    max-width: 9ch;
  }

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

  .conversion-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .topbar {
    padding: 12px 16px;
  }

  .brand-copy,
  .top-call {
    display: none;
  }

  .lang-switch {
    min-width: 48px;
    padding: 10px 12px;
  }

  .hero,
  .conversion-band,
  .split-section,
  .proof-section,
  .location-section,
  .source-note,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.6rem);
  }

  .hero-actions .button,
  .conversion-actions .button {
    width: 100%;
    text-align: center;
  }

  .service-card {
    min-height: 0;
  }

  .hours-table div {
    align-items: baseline;
    padding: 14px;
  }

  .footer {
    display: block;
  }

  .footer-links {
    margin-top: 18px;
  }

  .mobile-cta {
    display: grid;
  }
}
