:root {
  --navy: #0d1b2a;
  --navy-2: #132a3f;
  --gold: #d4a12a;
  --gold-2: #b8860b;
  --cream: #f8f6f1;
  --text: #22303c;
  --muted: #5a6b7a;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(13, 27, 42, .08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-2); text-decoration: none; }
a:hover { color: var(--gold-2); }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }

/* Header */
.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { font-size: 1.6rem; font-weight: 800; color: #fff; letter-spacing: .5px; }
.brand span { color: var(--gold); }
.nav { display: flex; gap: 26px; }
.nav a { color: #d8e2ec; font-size: .95rem; font-weight: 600; padding: 6px 2px; border-bottom: 2px solid transparent; }
.nav a:hover { color: var(--gold); border-color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #0d1b2a 0%, #14304c 55%, #1b3a5c 100%);
  color: #fff;
  text-align: center;
  padding: 96px 20px 88px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 78% 20%, rgba(212,161,42,.18), transparent 45%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow {
  color: var(--gold); text-transform: uppercase; letter-spacing: 3px;
  font-size: .85rem; font-weight: 700; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(1.8rem, 4.5vw, 3.2rem); max-width: 820px; margin: 0 auto 18px; line-height: 1.25; }
.hero-sub { font-size: 1.15rem; color: #c8d6e4; max-width: 620px; margin: 0 auto 30px; }

/* Buttons */
.btn {
  display: inline-block; padding: 13px 32px; border-radius: 999px;
  font-weight: 700; font-size: .95rem; cursor: pointer; border: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #fff; box-shadow: 0 8px 20px rgba(212,161,42,.35); }
.btn-gold:hover { color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--navy-2); color: var(--navy-2); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-sm { padding: 8px 20px; font-size: .85rem; }

/* Sections */
.section { padding: 84px 0; }
.section:nth-child(even) { background: var(--cream); }
.eyebrow { color: var(--gold-2); text-transform: uppercase; letter-spacing: 2.5px; font-size: .8rem; font-weight: 800; margin-bottom: 10px; }
.lead { font-size: 1.12rem; color: var(--muted); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--navy); line-height: 1.3; margin-bottom: 16px; }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.sec-head h2 { margin-bottom: 0; }

/* Feature / service cards */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; }
.feature-card {
  background: #fff; border: 1px solid #e6e2d8; border-radius: var(--radius);
  padding: 32px 26px; box-shadow: var(--shadow); transition: transform .2s ease;
}
.feature-card:hover { transform: translateY(-5px); }
.feature-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.12rem; }
.feature-card p { color: var(--muted); font-size: .95rem; }
.f-icon { font-size: 2rem; display: inline-block; margin-bottom: 14px; }
.f-num { font-size: 1.4rem; font-weight: 800; color: var(--gold); display: block; margin-bottom: 10px; }
.three { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* About strip */
.about-strip { background: var(--navy) !important; color: #e6edf4; }
.about-strip h2 { color: #fff; }
.about-strip .lead { color: var(--gold); font-weight: 600; }
.about-strip p { color: #c3d2e0; }
.about-strip .btn-outline { border-color: var(--gold); color: var(--gold); }
.about-strip .btn-outline:hover { background: var(--gold); color: var(--navy); }
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.stats-grid.four { grid-template-columns: repeat(4, 1fr); margin-top: 56px; text-align: center; }
.stat {
  background: rgba(255,255,255,.06); border: 1px solid rgba(212,161,42,.35);
  border-radius: var(--radius); padding: 22px 14px; text-align: center;
}
.stat-num { display: block; font-size: 2.3rem; font-weight: 800; color: var(--gold); line-height: 1.1; }
.stat-num span { font-size: 1.4rem; }
.stat-label { color: #c3d2e0; font-size: .85rem; }
.stats-grid.four .stat { background: #fff; border-color: #e6e2d8; box-shadow: var(--shadow); }
.stats-grid.four .stat-num { color: var(--navy); }
.stats-grid.four .stat-label { color: var(--muted); }

/* CTA */
.cta {
  background: linear-gradient(135deg, #132a3f, #0d1b2a);
  color: #fff; text-align: center; padding: 76px 20px;
}
.cta-inner { max-width: 700px; }
.cta h2 { color: #fff; }
.cta p { color: #c3d2e0; }
.cta-phone { margin: 18px 0; }
.cta-phone a { font-size: 1.5rem; font-weight: 800; color: var(--gold); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.team-card {
  background: #fff; border-radius: var(--radius); padding: 26px 18px; text-align: center;
  border: 1px solid #e6e2d8; box-shadow: var(--shadow);
}
.team-avatar {
  width: 76px; height: 76px; margin: 0 auto 14px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  color: var(--gold); font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
}
.team-card h3 { font-size: 1rem; color: var(--navy); }
.team-card p { color: var(--muted); font-size: .85rem; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testi-card {
  background: #fff; border-radius: var(--radius); padding: 28px 24px;
  border: 1px solid #e6e2d8; box-shadow: var(--shadow); position: relative;
}
.testi-card p { color: var(--muted); font-size: .95rem; margin-bottom: 16px; font-style: italic; }
.testi-card h4 { color: var(--navy); font-size: 1rem; }
.testi-card span { color: var(--gold-2); font-size: .82rem; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.price-card {
  background: #fff; border: 1px solid #e6e2d8; border-radius: var(--radius);
  padding: 36px 30px; text-align: center; box-shadow: var(--shadow);
}
.price-card.featured { border: 2px solid var(--gold); transform: scale(1.03); position: relative; }
.price-card h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 12px; }
.price { font-size: 2.6rem; font-weight: 800; color: var(--navy); margin-bottom: 18px; }
.price span { display: block; font-size: .85rem; font-weight: 500; color: var(--muted); }
.price-card ul { list-style: none; margin-bottom: 26px; }
.price-card li { padding: 8px 0; border-bottom: 1px dashed #e6e2d8; color: var(--muted); font-size: .95rem; }

/* Portfolio */
.port-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.port-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid #e6e2d8; box-shadow: var(--shadow); }
.port-card img { width: 100%; height: 200px; object-fit: cover; }
.port-card h3 { padding: 18px 22px 4px; color: var(--navy); }
.port-card p { padding: 0 22px 22px; color: var(--muted); font-size: .92rem; }
.port-ph {
  height: 200px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-2), var(--navy)); font-size: 3rem; color: var(--gold);
}

/* Blog */
.blog-list { display: flex; flex-direction: column; gap: 28px; max-width: 780px; }
.blog-card {
  display: flex; gap: 26px; background: #fff; border-radius: var(--radius);
  border: 1px solid #e6e2d8; box-shadow: var(--shadow); padding: 22px; align-items: flex-start;
}
.blog-card img { width: 240px; height: 160px; object-fit: cover; border-radius: 10px; }
.blog-info h3 { margin-bottom: 8px; }
.blog-info h3 a { color: var(--navy); }
.blog-info h3 a:hover { color: var(--gold-2); }
.blog-info p { color: var(--muted); font-size: .95rem; margin-bottom: 14px; }
.blog-date { color: var(--gold-2); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; }
.blog-single { max-width: 760px; }
.blog-single h1 { color: var(--navy); font-size: 2rem; margin: 8px 0 22px; }
.blog-single p { color: var(--muted); margin-bottom: 16px; }

/* Contact */
.contact-wrap { align-items: flex-start; }
.contact-info h2 { margin-top: 4px; }
.contact-info p { color: var(--muted); margin-bottom: 10px; }
.contact-form { background: #fff; border: 1px solid #e6e2d8; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 13px 16px; border: 1px solid #d8d4c8; border-radius: 10px;
  font-family: inherit; font-size: .95rem; margin-bottom: 14px; background: #fbfaf7;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.form-note { margin-top: 12px; font-weight: 600; }

/* Footer */
.site-footer { background: #091220; color: #a9bccd; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 40px; }
.footer-grid h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; }
.footer-grid a { display: block; color: #a9bccd; margin-bottom: 9px; font-size: .92rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-grid p { font-size: .92rem; margin-bottom: 14px; }
.socials { display: flex; gap: 14px; }
.socials a { display: inline-block; font-size: .82rem; border: 1px solid #2c4257; border-radius: 999px; padding: 5px 14px; }
.subscribe { display: flex; gap: 8px; }
.subscribe input {
  flex: 1; padding: 11px 14px; border-radius: 10px; border: 1px solid #2c4257;
  background: #0f1d2f; color: #fff; font-family: inherit;
}
.subscribe button { background: var(--gold); border: none; color: #fff; font-weight: 700; padding: 11px 18px; border-radius: 10px; cursor: pointer; }
.footer-bottom { border-top: 1px solid #1b2c40; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .88rem; }
.footer-bottom a { color: var(--gold); }

/* Responsive */
@media (max-width: 900px) {
  .two-col, .footer-grid { grid-template-columns: 1fr; }
  .stats-grid.four { grid-template-columns: repeat(2, 1fr); }
  .blog-card { flex-direction: column; }
  .blog-card img { width: 100%; height: 200px; }
  .nav {
    display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--navy); padding: 20px; gap: 14px; box-shadow: 0 8px 20px rgba(0,0,0,.3);
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
}
