
:root {
  --navy: #0b2f6d;
  --navy-dark: #072454;
  --gold: #d7a23a;
  --gold-deep: #c58f2f;
  --text: #1d2333;
  --muted: #596174;
  --card: #ffffff;
  --shadow: 0 14px 30px rgba(0,0,0,.12);
  --radius: 15px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.narrow { width: min(900px, calc(100% - 48px)); }
.topbar { background: var(--navy-dark); color: #fff; font-size: .95rem; }
.topbar-inner { min-height: 52px; display: flex; gap: 20px; justify-content: space-between; align-items: center; flex-wrap: wrap; padding: 10px 0; }
.topbar-item { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.icon { color: #f0c15c; }
.site-header { background: #fff; border-bottom: 1px solid rgba(0,0,0,.05); position: sticky; top: 0; z-index: 20; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 0; }
.logo { width: 300px; max-width: 100%; }
.main-nav { display: flex; gap: 28px; font-weight: 700; color: #162b58; }
.main-nav a:hover { color: var(--gold-deep); }
.btn { display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(180deg, #dfae4b, #cd922c); color: #fff; padding: 15px 34px; border-radius: 10px; font-weight: 700; box-shadow: 0 10px 20px rgba(205,146,44,.22); }
.btn:hover { filter: brightness(1.04); }
.btn-small { padding: 14px 22px; white-space: nowrap; }
.btn-full { width: 100%; border: 0; cursor: pointer; font-size: 1rem; }
.hero { position: relative; overflow: hidden; min-height: 680px; background: var(--navy-dark); }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,20,52,.55) 0%, rgba(4,20,52,.40) 44%, rgba(4,20,52,.18) 100%), url('assets/hero-bg.jpg') center/cover no-repeat; }
.hero-content { position: relative; z-index: 1; min-height: 680px; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 28px; }
.hero-text { color: #fff; padding: 28px 0; }
.hero h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(3rem, 5vw, 4.6rem); line-height: 1.04; margin: 0 0 22px; text-shadow: 0 4px 16px rgba(0,0,0,.35); }
.gold { color: #efc25b; }
.hero-sub { font-size: clamp(1.2rem, 2vw, 1.9rem); font-weight: 700; margin: 0 0 28px; text-shadow: 0 4px 16px rgba(0,0,0,.35); }
.hero-image-wrap { display: flex; justify-content: flex-end; align-items: flex-end; padding-top: 36px; }
.hero-image { width: min(530px, 100%); filter: drop-shadow(0 18px 24px rgba(0,0,0,.25)); }
.subhero { position: relative; min-height: 300px; display: flex; align-items: center; overflow: hidden; }
.subhero-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,20,52,.66), rgba(4,20,52,.52)), url('assets/hero-bg.jpg') center/cover no-repeat; }
.subhero-content { position: relative; z-index: 1; color: #fff; text-align: center; padding: 64px 0; }
.subhero h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2.4rem, 4vw, 3.8rem); margin: 0 0 12px; }
.subhero p { margin: 0 auto; max-width: 760px; font-size: 1.18rem; }
.blue-texture { background: radial-gradient(circle at 20% 10%, rgba(255,255,255,.07), transparent 26%), radial-gradient(circle at 80% 25%, rgba(255,255,255,.05), transparent 24%), linear-gradient(180deg, #10367a, #0b2a61); color: #fff; }
.welcome { padding: 50px 0 60px; }
.intro { text-align: center; }
.intro h2, .section-title h2 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); margin: 0 0 8px; }
.intro h3, .section-title h3 { font-size: clamp(1.18rem, 2.2vw, 1.95rem); margin: 0 0 18px; font-weight: 700; }
.intro p { margin: 0 auto; font-size: 1.14rem; max-width: 900px; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 38px; background: #fff; color: var(--text); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.feature-card { padding: 34px 28px 32px; text-align: center; border-right: 1px solid rgba(0,0,0,.08); }
.feature-card:last-child { border-right: none; }
.feature-icon { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 18px; background: var(--navy); color: #f3c15a; display: grid; place-items: center; font-size: 2rem; border: 4px solid rgba(243,193,90,.15); }
.feature-card h4 { margin: 0 0 10px; font-size: 1.8rem; color: #18244b; }
.feature-card p { margin: 0; color: #344161; font-size: 1.08rem; }
.centered-action { text-align: center; margin-top: 30px; }
.offers { padding: 56px 0 72px; }
.section-title { text-align: center; color: #fff; margin-bottom: 24px; }
.section-title.dark { color: var(--navy-dark); }
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.offer-card { background: #fff; color: var(--text); border-radius: 14px; box-shadow: var(--shadow); display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; padding: 28px; min-height: 295px; gap: 18px; }
.offer-copy h4 { margin: 0 0 12px; color: #15244f; font-size: 2rem; }
.offer-copy p { margin: 0; font-size: 1.1rem; color: #33415f; }
.offer-image { display: flex; justify-content: center; align-items: center; }
.offer-image img { max-height: 210px; object-fit: contain; }
.light-section { background: #f7f7f8; padding: 60px 0 70px; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 24px; }
.info-card { background: #fff; border-radius: 14px; padding: 26px; box-shadow: var(--shadow); }
.info-card h4 { margin: 0 0 10px; font-size: 1.6rem; color: #16305d; }
.info-card p { margin: 0; color: #36415f; font-size: 1.05rem; }
.wholesale-steps { margin-top: 28px; display: grid; gap: 16px; }
.step { background: #fff; border-radius: 14px; box-shadow: var(--shadow); display: flex; gap: 18px; align-items: flex-start; padding: 20px 22px; }
.step span { width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: #f2c15c; font-weight: 700; }
.step strong { display: block; color: #16305d; margin-bottom: 4px; }
.step p { margin: 0; color: #36415f; }
.contact-section { background: #f7f7f8; padding: 60px 0 70px; }
.contact-grid { margin-top: 24px; display: grid; grid-template-columns: .92fr 1.08fr; gap: 36px; align-items: start; }
.contact-details { padding: 16px 0 0; }
.contact-item { display: flex; gap: 16px; margin-bottom: 26px; font-size: 1.16rem; color: #243150; }
.contact-icon { width: 42px; height: 42px; display: inline-grid; place-items: center; font-size: 1.5rem; color: var(--gold-deep); }
.form-wrap { border-left: 1px solid rgba(0,0,0,.10); padding-left: 36px; }
.contact-form label { display: block; font-weight: 700; color: #1f2b51; margin-bottom: 18px; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: 8px; border: 1px solid #d2d7e0; border-radius: 8px; padding: 15px 16px; font: inherit; color: #23314e; background: #fff; }
.contact-form textarea { resize: vertical; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.site-footer { background: var(--navy-dark); color: #fff; padding: 18px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
@media (max-width: 1080px) {
  .nav-wrap { flex-wrap: wrap; }
  .main-nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; }
  .hero-content { grid-template-columns: 1fr; padding: 24px 0 28px; }
  .hero-image-wrap { justify-content: center; }
  .hero-text { text-align: center; }
}
@media (max-width: 900px) {
  .features, .offer-grid, .info-grid, .contact-grid, .form-row.two-col { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid rgba(0,0,0,.08); }
  .feature-card:last-child { border-bottom: none; }
  .offer-card { grid-template-columns: 1fr; text-align: center; }
  .form-wrap { border-left: none; padding-left: 0; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .topbar-inner { justify-content: center; }
  .logo { width: 250px; }
  .hero { min-height: auto; }
  .hero-content { min-height: auto; }
  .hero h1 { font-size: 2.35rem; }
  .hero-sub { font-size: 1.15rem; }
  .feature-card h4, .offer-copy h4 { font-size: 1.55rem; }
  .intro p, .offer-copy p, .feature-card p, .contact-item { font-size: 1rem; }
}
