:root {
  --bg: #eef3f7;
  --panel: #ffffff;
  --ink: #1c2834;
  --muted: #637384;
  --brand: #475d75;
  --brand-dark: #304258;
  --accent: #b77a38;
  --line: #d9e2ea;
  --shadow: 0 20px 45px rgba(30, 45, 62, 0.12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(183, 122, 56, 0.18), transparent 30rem),
    linear-gradient(135deg, #f8fbfd 0%, var(--bg) 48%, #dfe9f1 100%);
}

a {
  color: inherit;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  background: var(--brand);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.brand img {
  display: block;
  width: min(520px, 52vw);
  max-height: 78px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  text-decoration: none;
  color: var(--brand-dark);
  font-weight: 700;
  padding: 10px 13px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  background: rgba(71, 93, 117, 0.1);
  transform: translateY(-1px);
}

.site-nav .support-link {
  color: #fff;
  background: var(--accent);
}

.site-nav .support-link:hover {
  color: #fff;
  background: #9d642b;
}

.card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero {
  padding: clamp(32px, 6vw, 72px);
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(135deg, rgba(71, 93, 117, 0.96), rgba(48, 66, 88, 0.96)),
    var(--brand);
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -60px -130px auto;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(183, 122, 56, 0.34);
}

.eyebrow {
  margin: 0 0 14px;
  color: #f0c08c;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-copy {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.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 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

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

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.content-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.contact-card,
.main-card,
.service-card {
  padding: 28px;
}

.contact-card h2,
.main-card h2,
.service-card h3 {
  margin: 0 0 12px;
  color: var(--brand-dark);
}

.contact-card p,
.main-card p,
.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-card a {
  display: block;
  margin-top: 12px;
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--accent);
}

.main-card .note {
  padding: 14px 16px;
  border-left: 4px solid var(--accent);
  background: rgba(183, 122, 56, 0.1);
  border-radius: 12px;
  color: var(--brand-dark);
}

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

.service-card {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 55px rgba(30, 45, 62, 0.16);
}

.site-footer {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

@media (max-width: 850px) {
  .site-header,
  .site-nav {
    justify-content: center;
  }

  .site-header {
    flex-direction: column;
  }

  .brand img {
    width: min(520px, 82vw);
  }

  .content-grid,
  .services {
    grid-template-columns: 1fr;
  }
}
