:root {
  color-scheme: dark;
  --bg: #111316;
  --panel: #191d20;
  --panel-soft: #20262a;
  --text: #f4f1ea;
  --muted: #b8c0bd;
  --line: rgba(244, 241, 234, 0.15);
  --teal: #55d6c2;
  --amber: #e5b760;
  --coral: #df7b62;
  --shadow: rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(85, 214, 194, 0.15), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(223, 123, 98, 0.12), transparent 24rem),
    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;
}

.page-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  min-height: 88vh;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0 56px;
}

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

.hero-media {
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #14181b;
  box-shadow: 0 32px 70px var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

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

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: 4.8rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.24rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 18px;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  border-color: transparent;
  background: var(--teal);
  color: #07110f;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

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

.panel {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel), var(--panel-soft));
  padding: 24px;
}

.panel h3 {
  margin: 0 0 14px;
  font-size: 1.12rem;
}

.panel p {
  margin: 0;
  color: var(--muted);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 0 64px;
  border-top: 1px solid var(--line);
}

.contact-band h2 {
  color: var(--amber);
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 32px;
  }

  .hero-media {
    order: -1;
    min-height: 320px;
  }

  .hero-media img {
    min-height: 320px;
  }

  h1 {
    font-size: 3rem;
  }

  .section-heading,
  .grid {
    grid-template-columns: 1fr;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(100% - 28px, 1120px);
  }

  .hero-media {
    min-height: 240px;
  }

  .hero-media img {
    min-height: 240px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.86rem;
  }

  .lead {
    font-size: 1.06rem;
  }

  .button {
    width: 100%;
  }
}
