:root {
  --ink: #15212a;
  --muted: #60707a;
  --paper: #f8faf8;
  --surface: #ffffff;
  --line: #d9e4e1;
  --teal: #116a69;
  --teal-dark: #0a494b;
  --plum: #7c2450;
  --gold: #c99a41;
  --shadow: 0 22px 60px rgba(21, 33, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(217, 228, 225, 0.8);
  background: rgba(248, 250, 248, 0.93);
  backdrop-filter: blur(18px);
}

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

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

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.lang-toggle {
  min-width: 46px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--surface);
  font-weight: 800;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 76px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 25, 33, 0.86) 0%, rgba(9, 25, 33, 0.62) 44%, rgba(9, 25, 33, 0.22) 100%),
    linear-gradient(0deg, rgba(9, 25, 33, 0.72) 0%, rgba(9, 25, 33, 0.04) 55%);
}

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

.hero-content {
  position: relative;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 13vh, 130px) 0 34px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

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

h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  background: var(--teal);
  color: white;
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  background: var(--surface);
  color: var(--ink);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.button.full {
  width: 100%;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 920px;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.proof-strip div {
  padding: 15px;
  background: rgba(0, 0, 0, 0.16);
}

dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1160px, calc(100% - 36px));
  margin: -24px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--line);
}

.quick-panel div {
  min-width: 0;
  padding: 22px;
  background: var(--surface);
}

.quick-panel span,
.contact-actions span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.quick-panel strong,
.contact-actions strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.2;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0 0;
}

.split,
.location,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.intent-box,
.hours {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

label {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 850;
}

select,
textarea {
  width: 100%;
  margin: 0 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdfc;
  font: inherit;
}

textarea {
  resize: vertical;
}

.fine-print {
  margin: 12px 0 0;
  font-size: 0.84rem;
}

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

.service-grid article,
.people article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-grid img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.service-grid article h3,
.service-grid article p {
  padding-inline: 22px;
}

.service-grid article h3 {
  margin-top: 22px;
}

.service-grid article p {
  margin-bottom: 24px;
}

.band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 6vw, 70px);
  align-items: start;
  width: 100%;
  max-width: none;
  padding: clamp(76px, 10vw, 118px) max(18px, calc((100vw - 1160px) / 2));
  margin-top: clamp(72px, 10vw, 120px);
  background: var(--ink);
  color: white;
}

.band h2,
.band p {
  color: white;
}

.benefits {
  display: grid;
  gap: 14px;
}

.benefits div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.benefits span {
  color: rgba(255, 255, 255, 0.76);
}

.team-visual {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.team-visual img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
}

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

.people article {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: end;
  padding: 24px 24px 0;
}

.people img {
  align-self: end;
  max-height: 260px;
  object-fit: contain;
}

.people h3,
.people p {
  grid-column: 2;
}

.hours ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.hours li:last-child {
  border-bottom: 0;
}

.contact {
  align-items: start;
  padding-bottom: clamp(84px, 11vw, 130px);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions a {
  padding: 19px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.contact-actions a:hover {
  border-color: rgba(17, 106, 105, 0.45);
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
}

.site-footer p {
  max-width: 760px;
  margin: 0;
}

.site-footer a {
  color: var(--teal);
  font-weight: 850;
}

.mobile-bar {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .proof-strip,
  .quick-panel,
  .service-grid,
  .band,
  .people,
  .split,
  .location,
  .contact {
    grid-template-columns: 1fr;
  }

  .benefits div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quick-panel {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }

  .section {
    padding-top: 74px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 66px;
  }

  .site-header {
    min-height: 66px;
    padding-inline: 14px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 0.92rem;
  }

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

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-bottom: 22px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero-actions .button {
    width: 100%;
  }

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

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

  .people article {
    grid-template-columns: 110px 1fr;
    padding: 18px 18px 0;
  }

  .people img {
    max-height: 180px;
  }

  .hours li {
    display: grid;
    gap: 4px;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 16px;
  }

  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 8px;
    background: rgba(21, 33, 42, 0.92);
    backdrop-filter: blur(16px);
  }

  .mobile-bar a {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: 6px;
    background: var(--teal);
    color: white;
    font-weight: 900;
  }
}
