:root {
  --teal: #008c8d;
  --teal-dark: #006f70;
  --ink: #35363a;
  --paper: #f8faf9;
  --white: #ffffff;
  --line: rgba(53, 54, 58, 0.14);
  --muted: #74777a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-shell {
  min-height: 100svh;
  padding: clamp(18px, 3vw, 44px) clamp(20px, 5vw, 78px) 22px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  position: relative;
}

.site-header, .site-footer {
  width: min(1420px, 100%);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: block;
  width: clamp(190px, 20vw, 258px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.header-call {
  text-decoration: none;
  text-align: right;
  line-height: 1.35;
}

.header-call span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .17em;
}

.header-call strong { font-size: 15px; letter-spacing: .02em; }

main { display: grid; align-items: center; }

.hero {
  width: min(900px, 100%);
  margin-inline: auto;
  padding: clamp(60px, 10vh, 120px) 0;
  text-align: center;
}

.hero-copy { position: relative; z-index: 1; }

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  justify-content: center;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: var(--teal);
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .91;
}

h1 em { color: var(--teal); font-weight: 400; }

.intro {
  max-width: 610px;
  margin: 30px auto 0;
  color: #5e6164;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.65;
}

.actions { display: flex; justify-content: center; gap: 12px; margin-top: 34px; flex-wrap: wrap; }

.button {
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { border-color: var(--ink); color: var(--white); background: var(--ink); }
.button-primary:hover { border-color: var(--teal); background: var(--teal); }
.button-secondary:hover { color: var(--white); background: var(--ink); }

.services {
  list-style: none;
  margin: 44px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.services li {
  color: #686b6e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.services li::before { content: "/"; color: var(--teal); margin-right: 8px; }

.site-footer {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.site-footer p { margin: 0; }
.site-footer p span { color: var(--teal); }

@media (max-width: 940px) {
  .site-shell { min-height: auto; }
  .hero-copy { padding-top: 12px; }
  h1 { font-size: clamp(58px, 11vw, 94px); }
}

@media (max-width: 600px) {
  .site-shell { padding: 16px 18px 20px; }
  .brand { width: 164px; }
  .header-call span { display: none; }
  .header-call strong { font-size: 12px; }
  .hero { padding: 58px 0 48px; }
  .eyebrow { font-size: 10px; margin-bottom: 18px; }
  h1 { font-size: clamp(48px, 15vw, 70px); line-height: .94; }
  .intro { margin-top: 24px; font-size: 15px; }
  .actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .services { margin-top: 34px; gap: 9px 14px; }
  .services li { font-size: 9px; }
  .site-footer { align-items: flex-end; }
  .site-footer p:last-child { text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition: none !important; }
}
