:root {
  --navy: #0f172a;
  --navy-soft: #162033;
  --charcoal: #1f2937;
  --gold: #c9a96e;
  --gold-soft: #e8d3ae;
  --beige: #f7f3ec;
  --beige-deep: #efe6d8;
  --white: #ffffff;
  --text: #171717;
  --muted: #6b7280;
  --border: rgba(15, 23, 42, 0.1);
  --shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
  --radius-lg: 26px;
  --radius-md: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 169, 110, 0.08), transparent 26%),
    linear-gradient(180deg, #fcfbf8 0%, #ffffff 35%, #fbfaf7 100%);
  line-height: 1.65;
}
a { transition: all .25s ease; }
.site-shell { overflow: hidden; }
.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}
.topline {
  background: #0a1220;
  color: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topline-wrap {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
}
.topline-left,
.topline-right {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-wrap {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-box,
.footer-logo {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold) 0%, #f6e2bc 100%);
  color: var(--navy);
  font-weight: 800;
  font-size: 26px;
  box-shadow: 0 12px 25px rgba(201,169,110,.22);
}
.brand h1 { margin: 0; font-size: 19px; letter-spacing: .2px; }
.brand p { margin: 2px 0 0; color: rgba(255,255,255,.68); font-size: 12px; }
.nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.nav a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
}
.nav a:hover,
.nav a.active {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.btn-soft,
.btn-primary,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
}
.btn-soft {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.09);
}
.btn-soft:hover { background: rgba(255,255,255,.13); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #e7d0a5 100%);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(201,169,110,.26);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline {
  border: 1px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost {
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  background: rgba(255,255,255,.04);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.light-outline {
  border-color: rgba(255,255,255,.25);
  color: #fff;
}
.light-outline:hover {
  background: #fff;
  color: var(--navy);
}
.hero {
  position: relative;
  color: #fff;
  padding: 88px 0 100px;
  background:
    radial-gradient(circle at 15% 10%, rgba(201,169,110,.22), transparent 25%),
    radial-gradient(circle at 85% 10%, rgba(255,255,255,.08), transparent 18%),
    linear-gradient(135deg, #0b1220 0%, #172033 48%, #0f172a 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.95));
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: center;
}
.hero-copy h2 {
  margin: 14px 0 18px;
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.04;
  letter-spacing: -.8px;
  max-width: 780px;
}
.hero-copy p {
  max-width: 680px;
  color: rgba(255,255,255,.78);
  font-size: 17px;
}
.badge,
.section-kicker,
.panel-label,
.article-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.badge {
  background: rgba(201,169,110,.13);
  color: #f7e8c9;
  border: 1px solid rgba(201,169,110,.28);
  padding: 10px 14px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-metrics {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px;
}
.hero-metrics div {
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.hero-metrics strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}
.hero-metrics span {
  color: rgba(255,255,255,.62);
  font-size: 13px;
}
.hero-panel {
  position: relative;
}
.hero-panel-inner {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 22px 55px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}
.hero-panel h3 {
  margin: 10px 0 22px;
  font-size: 28px;
  line-height: 1.2;
}
.feature-list { display: grid; gap: 18px; }
.feature-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}
.feature-no {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201,169,110,.24), rgba(201,169,110,.1));
  color: #f5e3c1;
  font-weight: 800;
}
.feature-item strong { display: block; margin-bottom: 4px; }
.feature-item p { margin: 0; color: rgba(255,255,255,.68); font-size: 14px; }
.section {
  position: relative;
  padding: 84px 0;
}
.floating-cards { margin-top: -56px; z-index: 3; }
.cards-3,
.cards-2 {
  display: grid;
  gap: 24px;
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.card,
.highlight-box,
.content-box {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.premium-card,
.practice-card,
.article-card {
  position: relative;
  overflow: hidden;
}
.premium-card::before,
.practice-card::before,
.article-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.accent-card {
  background: linear-gradient(180deg, #fffaf2 0%, #fff 100%);
}
.mini-line {
  width: 42px;
  height: 3px;
  display: inline-block;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 16px;
}
.card h3,
.highlight-box h3,
.content-box h3,
.footer h3,
.footer h4 {
  margin-top: 0;
}
.card p { color: #505866; }
.card a,
.head-link {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}
.card a:hover,
.head-link:hover { color: #8b6a31; }
.section-dark {
  background:
    radial-gradient(circle at 15% 10%, rgba(201,169,110,.12), transparent 22%),
    linear-gradient(135deg, #0d1422 0%, #162033 100%);
  color: #fff;
}
.feature-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: center;
}
.section-kicker {
  color: #e6d0a9;
  background: rgba(201,169,110,.12);
  border: 1px solid rgba(201,169,110,.18);
  padding: 8px 12px;
}
.section-dark h2,
.patterned-section h2,
.article-band h2,
.page-hero h2 { font-size: clamp(30px, 4vw, 44px); margin: 12px 0 14px; }
.section-copy { max-width: 700px; color: rgba(255,255,255,.76); }
.dark-box {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
}
.panel-label {
  color: #ecd8b5;
  background: rgba(201,169,110,.12);
  border: 1px solid rgba(201,169,110,.22);
  padding: 8px 12px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255,255,255,.8);
}
.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-soft);
  font-size: 22px;
  line-height: 1;
}
.patterned-section {
  background:
    linear-gradient(180deg, rgba(201,169,110,.05), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}
.premium-head,
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 28px;
}
.premium-head p { margin: 0; color: var(--muted); max-width: 720px; }
.practice-card {
  padding-top: 30px;
}
.practice-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #131e31 0%, #21314e 100%);
  color: #f5e1bd;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 16px 28px rgba(15,23,42,.14);
}
.alt-bg {
  background: linear-gradient(180deg, var(--beige) 0%, #f9f7f3 100%);
}
.article-card { background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%); }
.article-badge {
  color: #8b6a31;
  background: rgba(201,169,110,.12);
  border: 1px solid rgba(201,169,110,.18);
  padding: 7px 10px;
  margin-bottom: 12px;
}
.slider-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.slider-tile {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #fff;
  box-shadow: var(--shadow);
}
.slider-tile small { color: #e7d0a5; text-transform: uppercase; letter-spacing: .6px; }
.slider-tile h3 { margin: 10px 0 14px; font-size: 22px; }
.slider-tile a { color: #f3ddba; text-decoration: none; font-weight: 700; }
.page-hero.small {
  background:
    radial-gradient(circle at 14% 20%, rgba(201,169,110,.16), transparent 24%),
    linear-gradient(135deg, #0d1422 0%, #162033 100%);
  color: #fff;
  padding: 72px 0;
}
.narrow { width: min(820px, 100%); }
.center { text-align: center; }
.contact-grid {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 24px;
}
form input,
form textarea,
form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #d7dbe2;
  margin-bottom: 14px;
  font: inherit;
  background: rgba(255,255,255,.95);
}
form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: rgba(201,169,110,.72);
  box-shadow: 0 0 0 4px rgba(201,169,110,.12);
}
.content-box {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,250,242,.94));
}
.footer {
  background:
    radial-gradient(circle at top left, rgba(201,169,110,.12), transparent 18%),
    linear-gradient(135deg, #0b1220 0%, #131d2e 100%);
  color: #fff;
  padding: 40px 0 48px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr .9fr;
  gap: 28px;
}
.footer p { color: rgba(255,255,255,.72); }
.footer-links {
  display: grid;
  gap: 10px;
}
.footer-links a,
.social-row a {
  color: #fff;
  text-decoration: none;
  opacity: .86;
}
.footer-links a:hover,
.social-row a:hover { opacity: 1; color: #f5deb5; }
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.alert {
  padding: 12px 14px;
  border-radius: 14px;
  margin-bottom: 12px;
}
.alert.success { background: #dcfce7; color: #166534; }
.alert.error { background: #fee2e2; color: #991b1b; }
.mini-tag {
  display: inline-block;
  font-size: 12px;
  background: rgba(201,169,110,.12);
  color: #8b6a31;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.map-box iframe {
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
}
@media (max-width: 1080px) {
  .header-wrap {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 14px 0;
  }
  .nav { justify-content: flex-start; }
  .hero-grid,
  .feature-split,
  .contact-grid,
  .footer-grid,
  .slider-strip,
  .cards-3,
  .cards-2,
  .hero-metrics {
    grid-template-columns: 1fr;
  }
  .footer-top,
  .premium-head,
  .section-head,
  .topline-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .floating-cards { margin-top: 0; }
}
@media (max-width: 760px) {
  .hero { padding: 72px 0 80px; }
  .hero-copy h2 { font-size: 34px; }
  .logo-box, .footer-logo { width: 50px; height: 50px; font-size: 22px; }
  .brand h1 { font-size: 17px; }
  .btn-soft, .btn-primary, .btn-outline, .btn-ghost { width: 100%; }
  .hero-actions { flex-direction: column; }
}
