:root {
  color-scheme: dark;
  --bg: #0f1115;
  --panel: #171a20;
  --ink: #f3eee5;
  --muted: #b9b3a8;
  --line: rgba(243, 238, 229, 0.16);
  --accent: #d8af63;
  --accent-strong: #efc978;
  --deep: #131924;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 175, 99, 0.12), transparent 34%),
    linear-gradient(135deg, var(--bg) 0%, var(--deep) 48%, #090a0d 100%);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(34px, 7vw, 80px) 24px 42px;
}

.hero__media {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
}

.hero__logo {
  width: min(92%, 520px);
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.38));
}

.hero__content {
  max-width: 640px;
}

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 6vw, 5.85rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lede {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

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

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

.button--primary {
  background: var(--accent);
  color: #121212;
  border-color: var(--accent);
}

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

.band,
.contact {
  border-top: 1px solid var(--line);
  padding: clamp(44px, 7vw, 78px) 24px;
}

.band {
  background: rgba(255, 255, 255, 0.025);
}

.section-heading,
.service-grid,
.contact {
  max-width: 1180px;
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 28px;
}

h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-grid article {
  min-height: 190px;
  padding: 28px;
  background: var(--panel);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.service-grid p,
.contact p {
  color: var(--muted);
  line-height: 1.6;
}

.contact a {
  display: inline-block;
  margin-top: 22px;
  color: var(--accent-strong);
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
}

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

  .hero__media {
    min-height: 230px;
  }

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