:root {
  --bg: #ffffff;
  --text: #161616;
  --muted: #57534e;
  --line: #e7e0d2;
  --soft: #faf8f3;
  --primary: #0f2747;
  --primary-dark: #09182c;
  --gold: #b28a3c;
  --gold-soft: #f3ead6;
  --accent: #efe4c8;
  --shadow: 0 18px 45px rgba(15, 39, 71, 0.10);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(178,138,60,0.18);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #102b50, #b28a3c);
  color: #fff;
  font-size: 24px;
  box-shadow: var(--shadow);
}
.brand-top {
  margin: 0 0 2px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.brand h1 {
  margin: 0;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.1;
  color: var(--primary);
}
.hero {
  padding: 54px 0 36px;
  background:
    radial-gradient(circle at top left, rgba(178,138,60,0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(15,39,71,0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fcfaf6 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 28px;
  align-items: stretch;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
}
.badge-soft {
  background: var(--gold-soft);
  color: var(--primary);
}
.hero h2 {
  margin: 16px 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  color: var(--primary-dark);
}
.hero-text {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 720px;
}
.hero-ribbons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.ribbon {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(178,138,60,0.28);
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #173b69);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.btn:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.btn-light {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-outline {
  background: #fff;
  color: var(--primary);
  border: 1px solid rgba(178,138,60,0.35);
  box-shadow: none;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.chips span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(178,138,60,0.18);
  color: var(--muted);
  font-size: 14px;
}
.hero-panel {
  display: grid;
  gap: 18px;
}
.panel-card,
.panel-list,
.card,
.service-card,
.statement-box,
.contact-card {
  background: #fff;
  border: 1px solid rgba(178,138,60,0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.panel-card,
.panel-list {
  padding: 24px;
}
.formal-panel {
  background: linear-gradient(180deg, #fffdf9 0%, #f8f1e4 100%);
}
.panel-title {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.formal-title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
}
.phone {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
}
.panel-note { margin: 12px 0 0; color: var(--muted); }
.panel-list ul,
.service-card ul { margin: 0; padding-left: 20px; }
.section { padding: 34px 0; }
.alt { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: 18px; }
.section-head h3 {
  margin: 14px 0 0;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1;
  color: var(--primary-dark);
}
.grid {
  display: grid;
  gap: 20px;
}
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.card,
.service-card { padding: 24px; }
.emoji {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #102b50, #c7a255);
  color: #fff;
  font-size: 24px;
  margin-bottom: 16px;
}
.card h4,
.service-title {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--primary);
}
.card p { margin: 0; color: var(--muted); }
.statement-box {
  padding: 34px;
  text-align: center;
  background: linear-gradient(135deg, #0f2747, #1d406d);
  color: #fff;
}
.statement-quote {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
}
.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
}
.contact-card h3 {
  margin: 14px 0 8px;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--primary-dark);
}
.contact-number {
  margin: 0;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--gold);
}
.floating-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8d6a2c);
  color: #fff;
  font-size: 24px;
  box-shadow: 0 16px 32px rgba(178,138,60,.35);
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 960px) {
  .hero-grid,
  .cards-4,
  .cards-2,
  .contact-card {
    grid-template-columns: 1fr;
    display: grid;
  }
  .contact-card { justify-content: unset; }
}
@media (max-width: 640px) {
  .nav { align-items: flex-start; flex-direction: column; }
  .hero { padding-top: 34px; }
  .panel-card, .panel-list, .card, .service-card, .statement-box, .contact-card { padding: 20px; }
  .floating-btn { width: 54px; height: 54px; }
}
