:root {
  --bg: #061520;
  --surface: #ffffff;
  --surface-soft: #eef6ff;
  --text: #101820;
  --muted: #5a6670;
  --line: #dce3e8;
  --accent: #0274d7;
  --accent-dark: #014f96;
  --navy: #061520;
  --radius: 8px;
  --shadow: 0 18px 44px rgba(8, 28, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 60px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(6, 21, 32, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.brand-text {
  color: white;
  font-size: 15px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

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

.site-nav a:hover {
  color: white;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  align-items: start;
  padding: 42px 0 40px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.section > .section-heading .section-kicker {
  color: rgba(255, 255, 255, 0.8);
}

.section > .section-heading h2 {
  color: white;
}

.section.two-column .section-kicker,
.contact-section .section-kicker {
  color: var(--accent);
}

.section.two-column h2,
.contact-section h2 {
  color: var(--text);
}

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

h1,
.hero-lead {
  color: white;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(44px, 5.6vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 740px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

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

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

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: var(--surface);
  color: var(--text);
}

.hero-card {
  width: 300px;
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.profile-meta {
  padding: 18px;
}

.profile-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.profile-meta .profile-name {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.metrics div {
  min-height: 126px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.two-column {
  padding-top: 48px;
  padding-bottom: 48px;
  padding-right: 32px;
  padding-left: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
}

.section-text p,
.dz-panel p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.section-text p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.split-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
  padding: 48px;
  border: 0;
  border-radius: var(--radius);
  background: #061520;
  color: white;
}

.split-band .section-kicker {
  color: #7dc0ff;
}

.expertise-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expertise-list li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.dz-panel {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.dz-panel p {
  max-width: 760px;
  margin-bottom: 0;
}

.trust-section .section-heading {
  margin-bottom: 24px;
}

.trust-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.trust-panel > p {
  max-width: 860px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

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

.trust-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--text);
  text-decoration: none;
}

.trust-link:hover {
  border-color: var(--accent);
}

.trust-link strong {
  font-size: 20px;
  line-height: 1.2;
}

.trust-link span:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.trust-link-muted {
  opacity: 0.72;
}

.trust-link-muted:hover {
  border-color: var(--line);
}

.trust-logo {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.trust-logo-google {
  background: #ffffff;
  color: #1a73e8;
}

.trust-logo-tripadvisor {
  background: #ffffff;
  color: #00aa6c;
}

.text-link {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.media-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.media-list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 172px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  text-decoration: none;
}

.media-list a:hover {
  border-color: var(--accent);
}

.media-list img {
  width: min(180px, 100%);
  height: 52px;
  object-fit: contain;
}

.media-list span {
  display: block;
  max-width: 220px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 56px 0;
  padding: 40px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-section h2 {
  max-width: 720px;
}

.contact-section p {
  max-width: 760px;
  margin: 18px 0 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.site-footer p {
  margin-bottom: 0;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 20px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  main,
  .site-footer {
    width: min(100% - 24px, 720px);
  }

  .hero,
  .two-column,
  .split-band {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    padding: 42px 0 34px;
  }

  .hero-card {
    width: min(100%, 360px);
    justify-self: start;
  }

  .hero-card img {
    height: 360px;
  }

  .metrics,
  .card-grid,
  .media-list,
  .trust-links {
    grid-template-columns: 1fr 1fr;
  }

  .split-band {
    padding: 28px;
  }

  .two-column {
    gap: 28px;
    padding: 30px 24px;
  }

  .dz-panel,
  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand-text {
    font-size: 14px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-lead,
  .section-text p,
  .dz-panel p,
  .contact-section p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-card img {
    height: 320px;
  }

  .button {
    width: 100%;
  }

  .metrics,
  .card-grid,
  .media-list,
  .trust-links {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 46px 0;
  }

  .two-column,
  .split-band,
  .dz-panel,
  .trust-panel,
  .contact-section {
    padding: 24px 18px;
  }

  .metrics div,
  .card,
  .media-list a,
  .trust-link {
    padding: 20px 18px;
  }

  .contact-section {
    margin: 42px 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
