:root {
  --bg: #07111f;
  --bg-soft: #0f1b2e;
  --panel: rgba(255,255,255,0.08);
  --panel-strong: rgba(255,255,255,0.12);
  --text: #e7edf6;
  --muted: #b7c3d6;
  --dark: #0b1320;
  --dark-2: #111c2f;
  --light: #f8fafc;
  --light-2: #eef2f7;
  --gold: #d7b26d;
  --gold-soft: #f1dfb5;
  --border: rgba(255,255,255,0.14);
  --shadow: 0 25px 80px rgba(3, 9, 20, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--light);
  color: #182232;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(7, 17, 31, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: white;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f1dfb5, #c9983e);
  color: #09111c;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text strong { font-size: 1rem; }
.brand-text small { color: rgba(255,255,255,0.72); margin-top: 4px; }
.nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.nav a {
  color: rgba(255,255,255,0.86);
  font-size: 0.96rem;
}
.nav a:hover { color: var(--gold-soft); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(215,178,109,0.22), transparent 28%),
    radial-gradient(circle at right center, rgba(75,101,141,0.28), transparent 24%),
    linear-gradient(135deg, #07111f 0%, #0a1527 45%, #13233b 100%);
  color: white;
}
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
}
.hero-bg::before {
  width: 320px;
  height: 320px;
  background: rgba(215,178,109,0.17);
  top: -100px;
  right: -40px;
}
.hero-bg::after {
  width: 280px;
  height: 280px;
  background: rgba(82, 139, 255, 0.12);
  bottom: 40px;
  left: -80px;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: 88px 0 72px;
}
.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow.dark {
  background: rgba(215,178,109,0.1);
  border-color: rgba(215,178,109,0.25);
  color: #8d6828;
}
.hero h1,
.section h2 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.02em;
}
.hero h1 {
  margin: 22px 0 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
  font-weight: 700;
}
.lead {
  max-width: 720px;
  margin-top: 24px;
  font-size: 1.16rem;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(135deg, #f1dfb5, #c9983e);
  color: #09111c;
  box-shadow: 0 16px 34px rgba(201, 152, 62, 0.25);
}
.btn-glass {
  color: white;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
}
.btn-dark {
  width: 100%;
  margin-top: 26px;
  background: linear-gradient(135deg, #0c1522, #17263d);
  color: white;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}
.hero-stats article,
.hero-card-inner,
.contact-card,
.service-card,
.strip-grid > div,
.premium-grid article {
  box-shadow: var(--shadow);
}
.hero-stats article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-stats strong {
  display: block;
  color: white;
  font-size: 1rem;
}
.hero-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}
.hero-card-inner {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(18px);
}
.card-label {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}
.mini-service {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.mini-service + .mini-service { margin-top: 14px; }
.mini-service span {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(241,223,181,0.95), rgba(201,152,62,0.88));
  color: #0a1220;
  font-weight: 800;
}
.mini-service strong { display: block; font-size: 1.05rem; }
.mini-service small { color: var(--muted); }

.intro-strip {
  background: #0c1422;
  color: white;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 28px 0;
}
.strip-grid > div {
  border-radius: 22px;
  padding: 20px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
}
.strip-grid span {
  display: block;
  color: rgba(255,255,255,0.62);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.strip-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.02rem;
  font-weight: 600;
}

.section {
  padding: 104px 0;
}
.section-head {
  max-width: 820px;
}
.section-head h2,
.about h2,
.contact h2 {
  margin: 16px 0 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.98;
  color: #111a29;
}
.section-head p,
.about p,
.contact p {
  margin-top: 18px;
  color: #536174;
  font-size: 1.06rem;
}
.service-list {
  display: grid;
  gap: 24px;
  margin-top: 42px;
}
.service-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 26px;
  padding: 30px;
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  border: 1px solid #e7edf3;
  border-radius: var(--radius-xl);
}
.service-index {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #142033, #0b1220);
  color: var(--gold-soft);
  font-weight: 800;
  font-size: 1.5rem;
}
.service-top {
  margin-bottom: 10px;
}
.service-brand {
  margin: 0;
  color: #9a7739;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}
.service-body h3 {
  margin: 8px 0 0;
  font-size: 2rem;
  color: #111a29;
}
.service-body p {
  margin: 14px 0 0;
  color: #536174;
}
.service-body ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #243042;
}
.service-body li + li { margin-top: 8px; }
.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: #8d6828;
  font-weight: 700;
}

.about {
  background: linear-gradient(180deg, #f8fafc, #eef3f8);
}
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.premium-band {
  background: linear-gradient(135deg, #081120 0%, #101b2d 100%);
  color: white;
}
.premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.premium-grid article {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.premium-grid strong {
  font-size: 1.15rem;
  color: var(--gold-soft);
}
.premium-grid p {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.74);
}

.contact {
  background: #ffffff;
}
.contact-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid #e6ebf2;
}
.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #ebf0f5;
}
.contact-row span {
  color: #738195;
}
.contact-row strong {
  text-align: right;
  color: #111a29;
}
.site-footer {
  background: #09111c;
  color: rgba(255,255,255,0.72);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px 0;
}
.footer-wrap p { margin: 0; }

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .strip-grid,
  .premium-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 0;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .section { padding: 80px 0; }
  .hero-grid { padding: 68px 0 52px; }
  .service-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .service-index {
    width: 72px;
    height: 72px;
    font-size: 1.15rem;
    border-radius: 18px;
  }
  .service-body h3 { font-size: 1.65rem; }
  .contact-row {
    flex-direction: column;
  }
  .contact-row strong { text-align: left; }
}
