* {
  box-sizing: border-box;
}

:root {
  --bg: #07111f;
  --bg-soft: #0c1b2f;
  --gold: #d7aa4f;
  --gold-light: #f1d38a;
  --text: #f7f3e8;
  --muted: #b9c3d1;
  --border: rgba(255, 255, 255, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 170, 79, 0.13), transparent 32%),
    linear-gradient(145deg, var(--bg) 0%, #091827 50%, var(--bg-soft) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 42px 42px;
}

.page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 40px clamp(24px, 6vw, 96px) 28px;
  display: flex;
  flex-direction: column;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.24;
  pointer-events: none;
}

.glow-one {
  width: 360px;
  height: 360px;
  background: #c79534;
  top: -150px;
  right: -70px;
}

.glow-two {
  width: 300px;
  height: 300px;
  background: #1f6fa5;
  bottom: -120px;
  left: -100px;
}

.brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(241, 211, 138, 0.55);
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  background: rgba(215, 170, 79, 0.08);
  font-family: "Playfair Display", serif;
  font-size: 28px;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-tagline {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: auto 0;
  padding: 70px 0 55px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.intro {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.notice {
  width: fit-content;
  margin-top: 30px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #e8ecf2;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(10px);
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(215,170,79,.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(215,170,79,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(215,170,79,0);
  }
}

.services {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
}

.service-card {
  min-height: 180px;
  padding: 28px 28px 24px 0;
  border-right: 1px solid var(--border);
}

.service-card:not(:first-child) {
  padding-left: 28px;
}

.service-card:last-child {
  border-right: 0;
}

.service-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.service-card h2 {
  margin: 16px 0 10px;
  font-size: 18px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

footer {
  position: relative;
  z-index: 1;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  color: #8f9bac;
  font-size: 12px;
}

@media (max-width: 800px) {
  .page {
    padding-top: 26px;
  }

  .hero {
    padding-top: 70px;
  }

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

  .service-card,
  .service-card:not(:first-child) {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  footer {
    flex-direction: column;
  }
}
