/* ============================================================
   INFINITUM VENTURIS — SHARED STYLESHEET
   Colors: Navy #0F2044 | Gold #B8964E | Off-white #F2F1EE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0F2044;
  --gold:   #B8964E;
  --gold-lt:#c9a55e;
  --off:    #F7F4EC;
  --cream:  #F7F4EC;
  --white:  #ffffff;
  --border: #E5E3DC;
  --text:   #0F2044;
  --muted:  #5B6270;
  --faint:  #9BA3AE;
}

html { scroll-behavior: smooth; }
body { font-family: Arial, sans-serif; background: var(--cream); color: var(--text); -webkit-font-smoothing: antialiased; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; line-height: 1.1; letter-spacing: -0.3px; }
h1 { font-size: clamp(30px, 4vw, 54px); }
h2 { font-size: clamp(24px, 3.2vw, 42px); }
h3 { font-size: clamp(18px, 2vw, 26px); }
em.gold { font-style: italic; color: var(--gold); }
p { line-height: 1.78; }

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 48px; }
.section-white  { padding: 88px 0; background: var(--white); }
.section-off    { padding: 88px 0; background: var(--off); }
.section-navy   { padding: 88px 0; background: var(--navy); position: relative; overflow: hidden; }
.section-navy .grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(184,150,78,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(184,150,78,0.04) 1px, transparent 1px); background-size: 56px 56px; pointer-events: none; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.grid-2c { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-56 { margin-bottom: 56px; }

/* ── SECTION HEADER ── */
.sec-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.sec-eyebrow .line { width: 24px; height: 1px; background: var(--gold); }
.sec-eyebrow span { font-size: 10.5px; font-weight: 700; color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; }
.sec-hdr { margin-bottom: 52px; }
.sec-hdr.center { text-align: center; }
.sec-hdr h2 { color: var(--navy); margin-bottom: 12px; }
.sec-hdr h2.white { color: var(--white); }
.sec-hdr p { font-size: 15px; color: var(--muted); max-width: 600px; }
.sec-hdr.center p { margin: 0 auto; }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 13px 24px; font-family: Arial, sans-serif; font-size: 14px; font-weight: 700; border-radius: 5px; text-decoration: none; cursor: pointer; border: none; transition: background 0.2s, transform 0.1s; }
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-lt); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #1a3060; }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.06); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-outline-navy:hover { border-color: var(--navy); }
.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-block { display: block; text-align: center; width: 100%; }
.btn-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }

/* ── NAVIGATION ── */
.nav { background: var(--navy); height: 76px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 24px rgba(0,0,0,0.28); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { font-family: Georgia, serif; font-size: 20px; font-weight: 400; color: var(--white); text-decoration: none; white-space: nowrap; }
.nav-logo em { font-style: italic; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { font-size: 13.5px; color: rgba(255,255,255,0.75); text-decoration: none; padding: 8px 12px; border-radius: 4px; transition: color 0.2s; white-space: nowrap; }
.nav-link:hover { color: var(--white); }
.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 4px); left: 0; background: var(--navy); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 8px 0; min-width: 230px; box-shadow: 0 8px 32px rgba(0,0,0,0.35); z-index: 200; }
.dropdown-item { display: block; padding: 10px 18px; font-size: 13px; color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.2s; }
.dropdown-item:hover { background: rgba(255,255,255,0.06); color: var(--gold); }
.dropdown-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 4px 0; }
.nav-btns { display: flex; align-items: center; gap: 10px; }
.nav-btn-outline { padding: 8px 16px; border: 1.5px solid rgba(255,255,255,0.3); color: var(--white); font-size: 13px; font-weight: 700; border-radius: 5px; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.nav-btn-outline:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.06); }
.nav-btn-gold { padding: 8px 16px; background: var(--gold); color: var(--navy); font-size: 13px; font-weight: 700; border-radius: 5px; text-decoration: none; transition: background 0.2s; white-space: nowrap; }
.nav-btn-gold:hover { background: var(--gold-lt); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 0; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 32px; font-size: 14px; color: rgba(255,255,255,0.75); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.mobile-menu .mobile-section { padding: 8px 32px 4px; font-size: 10px; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-top: 8px; }
.mobile-menu .mobile-btns { padding: 16px 32px; display: flex; flex-direction: column; gap: 10px; }

/* ── HERO ── */
.hero { position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(15,32,68,0.97) 45%, rgba(15,32,68,0.82) 72%, rgba(15,32,68,0.6) 100%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(184,150,78,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(184,150,78,0.05) 1px, transparent 1px); background-size: 56px 56px; }
.hero-content { position: relative; z-index: 1; padding: 80px 0; width: 100%; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero-eyebrow .hline { width: 28px; height: 1px; background: var(--gold); }
.hero-eyebrow span { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero .sub { font-size: 16px; color: rgba(255,255,255,0.58); line-height: 1.78; margin-bottom: 32px; max-width: 540px; }
.hero-min { min-height: 400px; }
.hero-md  { min-height: 500px; }
.hero-lg  { min-height: 680px; }
.trust-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 24px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,0.4); }
.trust-item svg { width: 14px; height: 14px; stroke: rgba(184,150,78,0.7); fill: none; stroke-width: 1.5; flex-shrink: 0; }

/* ── CARDS ── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 28px; position: relative; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.card:hover { box-shadow: 0 8px 28px rgba(15,32,68,0.09); transform: translateY(-2px); }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.card:hover::before { transform: scaleX(1); }
.card-icon { width: 48px; height: 48px; background: rgba(15,32,68,0.06); border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card-icon svg { width: 24px; height: 24px; stroke: var(--navy); fill: none; stroke-width: 1.5; }
.card h3 { font-size: 17px; color: var(--navy); margin-bottom: 10px; }
.card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.card-tag { display: inline-block; padding: 3px 10px; background: rgba(184,150,78,0.1); border-radius: 3px; font-size: 11px; font-weight: 700; color: var(--gold); margin-top: 12px; }
.dark-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: 10px; padding: 26px; transition: background 0.2s; }
.dark-card:hover { background: rgba(255,255,255,0.08); }
.dark-card h3 { color: var(--white); margin-bottom: 8px; font-size: 16px; }
.dark-card p { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.7; }
.section-white .dark-card, .section-off .dark-card { background: var(--navy); border: 1px solid rgba(15,32,68,0.12); }
.section-white .dark-card:hover, .section-off .dark-card:hover { background: #152a55; }
.section-white .dark-card h3, .section-off .dark-card h3 { color: var(--white); }
.section-white .dark-card p, .section-off .dark-card p { color: rgba(255,255,255,0.68); }

/* ── IMAGE CARDS ── */
.img-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: box-shadow 0.2s; }
.img-card:hover { box-shadow: 0 8px 28px rgba(15,32,68,0.1); }
.img-card .img-wrap { height: 200px; overflow: hidden; position: relative; }
.img-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.img-card:hover .img-wrap img { transform: scale(1.04); }
.img-card .img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,32,68,0.78) 0%, transparent 55%); }
.img-card .img-tag { position: absolute; top: 10px; left: 10px; background: rgba(15,32,68,0.88); color: var(--gold); font-size: 9.5px; font-weight: 700; padding: 3px 8px; border-radius: 3px; letter-spacing: 1px; text-transform: uppercase; }
.img-card .img-name { position: absolute; bottom: 10px; left: 12px; font-family: Georgia, serif; font-size: 17px; color: var(--white); }
.img-card .img-body { padding: 18px; }
.img-card .img-body p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 10px; }
.img-card .spec-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.img-card .spec-tag { padding: 2px 8px; background: var(--off); border-radius: 3px; font-size: 10.5px; color: var(--muted); }

/* ── CHECKLIST ── */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--navy); line-height: 1.55; }
.check-item.white { color: rgba(255,255,255,0.75); }
.check-box { width: 18px; height: 18px; background: rgba(184,150,78,0.13); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.check-box svg { width: 10px; height: 10px; stroke: var(--gold); fill: none; stroke-width: 2; }

/* ── STAT GRID ── */
.stat-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: 10px; padding: 20px; }
.stat-num { font-family: Georgia, serif; font-size: 36px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 12.5px; color: rgba(255,255,255,0.42); line-height: 1.5; }
.stat-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 28px 0; }
.stat-bar-item { text-align: center; border-right: 1px solid var(--border); padding: 0 24px; }
.stat-bar-item:last-child { border-right: none; }
.stat-bar-num { font-family: Georgia, serif; font-size: 38px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.stat-bar-label { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── FORMS ── */
.form-wrap { background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(15,32,68,0.07); }
.form-header { background: var(--navy); padding: 22px 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.form-header-title { font-family: Georgia, serif; font-size: 19px; color: var(--white); }
.form-header-title em { font-style: italic; color: var(--gold); }
.form-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(184,150,78,0.12); border: 1px solid rgba(184,150,78,0.22); border-radius: 20px; padding: 5px 14px; }
.form-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.form-badge span { font-size: 11px; font-weight: 700; color: var(--gold); }
.form-body { padding: 36px 32px; }
.form-section-title { font-size: 11px; font-weight: 700; color: var(--faint); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--off); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row.full { grid-template-columns: 1fr; }
.form-divider { border: none; border-top: 1px solid var(--off); margin: 4px 0 28px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12.5px; font-weight: 700; color: var(--navy); }
.field label .req { color: var(--gold); margin-left: 2px; }
.field input, .field select, .field textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 5px; font-family: Arial, sans-serif; font-size: 13.5px; color: var(--navy); background: var(--white); outline: none; transition: border-color 0.2s; appearance: none; -webkit-appearance: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,150,78,0.08); }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); font-size: 13px; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235B6270' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.checkbox-group { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.checkbox-item { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.checkbox-item input[type="checkbox"] { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; accent-color: var(--gold); cursor: pointer; }
.checkbox-item span { font-size: 13.5px; color: var(--navy); line-height: 1.55; }
.consent-box { background: var(--off); border: 1px solid var(--border); border-radius: 7px; padding: 16px 18px; }
.consent-box label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.consent-box input[type="checkbox"] { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; accent-color: var(--gold); cursor: pointer; }
.consent-box p { font-size: 12.5px; color: var(--muted); line-height: 1.65; }
.consent-box a { color: var(--gold); text-decoration: none; font-weight: 700; }
.submit-btn { width: 100%; padding: 15px; background: var(--gold); color: var(--navy); font-family: Arial, sans-serif; font-size: 15px; font-weight: 700; border: none; border-radius: 5px; cursor: pointer; transition: background 0.2s; margin-top: 24px; }
.submit-btn:hover { background: var(--gold-lt); }
.submit-btn:disabled { background: var(--border); color: var(--faint); cursor: not-allowed; }
.form-note { font-size: 11.5px; color: var(--faint); text-align: center; margin-top: 12px; line-height: 1.6; }
.success-msg { display: none; background: var(--navy); padding: 56px 32px; text-align: center; }
.success-check { width: 68px; height: 68px; background: rgba(184,150,78,0.12); border: 1.5px solid rgba(184,150,78,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.success-check svg { width: 30px; height: 30px; stroke: var(--gold); fill: none; stroke-width: 2; }
.success-msg h2 { color: var(--white); margin-bottom: 12px; font-size: 28px; }
.success-msg h2 em { font-style: italic; color: var(--gold); }
.success-msg p { font-size: 14.5px; color: rgba(255,255,255,0.48); line-height: 1.75; max-width: 480px; margin: 0 auto 24px; }

/* ── TIMELINE ── */
.timeline { display: flex; flex-direction: column; }
.tl-item { display: flex; gap: 18px; }
.tl-left { display: flex; flex-direction: column; align-items: center; }
.tl-dot { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; }
.tl-dot svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.tl-line { width: 1px; flex: 1; background: var(--border); margin: 3px 0; }
.tl-item:last-child .tl-line { display: none; }
.tl-body { padding: 4px 0 24px; }
.tl-item:last-child .tl-body { padding-bottom: 0; }
.tl-period { font-size: 10.5px; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.tl-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.tl-text { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── PULL QUOTE ── */
.pull-quote { border-left: 3px solid var(--gold); padding: 18px 22px; background: var(--off); border-radius: 0 8px 8px 0; margin: 24px 0; }
.pull-quote p { font-family: Georgia, serif; font-size: 17px; font-style: italic; color: var(--navy); line-height: 1.65; margin-bottom: 6px; }
.pull-quote cite { font-size: 12px; color: var(--faint); font-style: normal; }

/* ── CTA BOX ── */
.cta-box { background: var(--navy); border-radius: 14px; padding: 52px; position: relative; overflow: hidden; }
.cta-box .grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(184,150,78,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(184,150,78,0.04) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.cta-box h2 { color: var(--white); position: relative; }
.cta-box p { color: rgba(255,255,255,0.48); position: relative; }
.cta-box .btn-row { position: relative; }

/* ── INFO ROW ── */
.info-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--muted); line-height: 1.55; }
.info-item .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.info-item strong { color: var(--navy); font-weight: 700; min-width: 80px; flex-shrink: 0; }

/* ── FOOTER ── */
.footer { background: var(--cream); color: var(--navy); padding: 64px 0 0; position: relative; overflow: hidden; border-top: 1px solid rgba(15,32,68,0.10); }
.footer-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(15,32,68,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(15,32,68,0.025) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.footer-inner { max-width: 1140px; margin: 0 auto; padding: 0 48px; position: relative; }
.footer-top { display: grid; grid-template-columns: 280px 1fr; gap: 72px; padding-bottom: 48px; border-bottom: 1px solid rgba(15,32,68,0.12); position: relative; }
.footer-brand-name { font-family: Georgia, serif; font-size: 20px; font-weight: 400; color: var(--navy); margin-bottom: 6px; }
.footer-brand-name em { font-style: italic; color: var(--gold); }
.footer-brand-tag { font-size: 12px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.footer-brand-desc { font-size: 13px; color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
.footer-email { font-size: 13px; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 7px; transition: color 0.2s; }
.footer-email:hover { color: #8f7337; }
.footer-email svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-col-title { font-size: 10.5px; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col-links { display: flex; flex-direction: column; gap: 9px; }
.footer-col-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; line-height: 1.4; }
.footer-col-links a:hover { color: var(--navy); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; flex-wrap: wrap; gap: 12px; position: relative; }
.footer-copy { font-size: 12px; color: var(--muted); line-height: 1.6; }
.footer-legal { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--navy); }
.footer-legal span { color: rgba(15,32,68,0.22); }
.mousa-bar { background: rgba(255,255,255,0.66); border-top: 1px solid rgba(15,32,68,0.10); padding: 14px 48px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; position: relative; }
.mousa-bar p { font-size: 12px; color: var(--muted); line-height: 1.5; }
.mousa-bar strong { color: var(--gold); }
.mousa-bar a { font-size: 12px; color: var(--gold); text-decoration: none; font-weight: 700; white-space: nowrap; transition: color 0.2s; }
.mousa-bar a:hover { color: #8f7337; }

/* ── LEGAL PAGES ── */
.legal-wrap { max-width: 820px; }
.legal-header { border-bottom: 2px solid var(--navy); padding-bottom: 28px; margin-bottom: 40px; }
.legal-eyebrow { font-size: 10.5px; font-weight: 700; color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px; }
.legal-meta { font-size: 13px; color: var(--faint); }
.legal-intro { background: var(--off); border-left: 3px solid var(--gold); padding: 20px 24px; border-radius: 0 8px 8px 0; margin-bottom: 40px; }
.legal-intro p { font-size: 14px; color: var(--muted); line-height: 1.75; }
.legal-section { margin-top: 36px; }
.legal-section h3 { font-family: Georgia, serif; font-size: 20px; font-weight: 400; color: var(--navy); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.legal-section p { font-size: 15px; color: var(--muted); line-height: 1.85; }
.legal-contact { background: var(--navy); border-radius: 10px; padding: 24px; margin-top: 20px; }
.legal-contact h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.legal-contact p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; }
.legal-contact a { color: var(--gold); text-decoration: none; }


/* ── GLOBAL READABILITY + SECTION RHYTHM ── */
.section-white, .section-off, .section-navy { scroll-margin-top: 76px; }
.section-off { background: var(--cream); }
.section-navy .sec-hdr h2,
.section-navy .sec-hdr h2.white,
.section-navy > .container > h2,
.section-navy h2 { color: var(--white); }
.section-navy .sec-hdr p,
.section-navy .lead,
.section-navy > .container > p { color: rgba(255,255,255,0.68); }
.section-navy .sec-eyebrow span { color: var(--gold); }
.section-navy .card { background: var(--white); }
.section-navy .card h3 { color: var(--navy); }
.section-navy .card p { color: var(--muted); }
.section-navy .cta-box { background: rgba(255,255,255,0.055) !important; border: 1px solid rgba(255,255,255,0.10); box-shadow: 0 14px 44px rgba(0,0,0,0.12); }
.section-navy .btn-outline-navy { color: var(--white); border-color: rgba(255,255,255,0.35); }
.section-navy .btn-outline-navy:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.06); }
.sec-hdr.center, .text-center { text-align: center; }
.sec-hdr.center p, .text-center p { margin-left: auto; margin-right: auto; }
.card, .dark-card, .form-wrap, .cta-box { height: auto; }
.grid-3 .card, .grid-4 .card, .grid-5 .card { text-align: left; }
.cta-box [style*="text-align:center"] p { margin-left: auto; margin-right: auto; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container, .footer-inner { padding: 0 32px; }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .grid-2, .grid-2c { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .cta-box { padding: 36px 28px; }
  .hero-lg { min-height: 560px; }
  .hero-md { min-height: 420px; }
  .mousa-bar { padding: 14px 28px; }
}
@media (max-width: 768px) {
  .container, .footer-inner { padding: 0 20px; }
  .section-white, .section-off, .section-navy { padding: 64px 0; }
  .nav-links, .nav-btns { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .form-body { padding: 24px 20px; }
  .stat-bar .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-bar-item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 0; }
  .stat-bar-item:last-child { border-bottom: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-lg, .hero-md, .hero-min { min-height: 380px; }
  .grid-5 { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
}


/* ============================================================
   FOOTER + GLOBAL SECTION POLISH OVERRIDES
   Purpose: enforce a uniform soft-cream footer and readable text
   across every page, including pages that use older footer class names.
   ============================================================ */
:root {
  --footer-cream: #F7F4EC;
  --footer-text: #0F2044;
  --footer-muted: #5B6270;
}

.footer,
footer.footer {
  background: var(--footer-cream) !important;
  color: var(--footer-text) !important;
  border-top: 1px solid rgba(15,32,68,0.12) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.70) !important;
}

.footer *,
footer.footer * {
  box-sizing: border-box;
}

.footer-bg {
  background: none !important;
  background-image: none !important;
  opacity: 0 !important;
}

.footer-inner,
.footer > .container {
  max-width: 1140px !important;
  margin: 0 auto !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
  position: relative !important;
}

.footer-top {
  display: grid !important;
  grid-template-columns: 280px 1fr !important;
  gap: 72px !important;
  padding-bottom: 48px !important;
  border-bottom: 1px solid rgba(15,32,68,0.12) !important;
  align-items: start !important;
}

.footer-brand-name,
.brand-name {
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  color: var(--footer-text) !important;
  margin-bottom: 6px !important;
  line-height: 1.2 !important;
}

.footer-brand-name em,
.brand-name em {
  font-style: italic !important;
  color: var(--gold) !important;
}

.footer-brand-tag,
.brand-tag {
  font-size: 12px !important;
  color: var(--footer-muted) !important;
  margin-bottom: 16px !important;
  line-height: 1.6 !important;
}

.footer-brand-desc,
.brand-desc {
  font-size: 13px !important;
  color: var(--footer-muted) !important;
  line-height: 1.75 !important;
  margin-bottom: 18px !important;
}

.footer-email,
.brand-email {
  font-size: 13px !important;
  color: var(--gold) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  line-height: 1.4 !important;
}

.footer-email svg,
.brand-email svg {
  width: 14px !important;
  height: 14px !important;
  stroke: var(--gold) !important;
  fill: none !important;
  stroke-width: 1.5 !important;
  flex: 0 0 auto !important;
}

.footer-cols,
.footer-links {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 32px !important;
  width: 100% !important;
}

.footer-col-title,
.lg-title {
  font-size: 10.5px !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
  line-height: 1.3 !important;
}

.footer-col-links,
.lg-links {
  display: flex !important;
  flex-direction: column !important;
  gap: 9px !important;
}

.footer-col-links a,
.lg-links a {
  font-size: 13px !important;
  color: var(--footer-muted) !important;
  text-decoration: none !important;
  line-height: 1.45 !important;
}

.footer-col-links a:hover,
.lg-links a:hover,
.footer-legal a:hover,
.legal-links a:hover {
  color: var(--footer-text) !important;
}

.footer-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 20px 0 !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  position: relative !important;
}

.footer-copy,
.copyright {
  font-size: 12px !important;
  color: var(--footer-muted) !important;
  line-height: 1.6 !important;
}

.footer-legal,
.legal-links {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
}

.footer-legal a,
.legal-links a {
  font-size: 12px !important;
  color: var(--footer-muted) !important;
  text-decoration: none !important;
  line-height: 1.5 !important;
}

.footer-legal span,
.legal-links span {
  color: rgba(15,32,68,0.25) !important;
}

.mousa-bar {
  background: var(--footer-cream) !important;
  color: var(--footer-text) !important;
  border-top: 1px solid rgba(15,32,68,0.10) !important;
  padding: 14px 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  position: relative !important;
}

.mousa-bar p,
.mousa-bar .mb-text,
.mb-text {
  font-size: 12px !important;
  color: var(--footer-muted) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.mousa-bar strong,
.mb-text strong {
  color: var(--gold) !important;
}

.mousa-bar a,
.mb-link {
  font-size: 12px !important;
  color: var(--gold) !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}

/* Readability and alignment safeguards */
.section-white,
.section-off {
  color: var(--navy) !important;
}

.section-white p,
.section-off p,
.card p,
.feature-card p,
.value-card p {
  color: var(--muted) !important;
}

.section-navy p,
.section-navy .sec-hdr p,
.section-navy .lead {
  color: rgba(255,255,255,0.76) !important;
}

.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: var(--white) !important;
}

.sec-hdr.center,
.text-center {
  text-align: center !important;
}

.sec-hdr.center p,
.text-center p {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 1020px) {
  .footer-inner,
  .footer > .container {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .footer-cols,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .mousa-bar {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
}

@media (max-width: 640px) {
  .footer-inner,
  .footer > .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .footer-cols,
  .footer-links {
    grid-template-columns: 1fr !important;
  }
  .footer-bottom,
  .footer-legal,
  .legal-links,
  .mousa-bar {
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  .mousa-bar {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}


/* ============================================================
   VISUAL RHYTHM + PREMIUM TEXT DEPTH PATCH
   Purpose: no cream-on-cream section transitions before the footer,
   stronger readability, and subtle 3D/premium depth on key text.
   ============================================================ */

/* Final contrast sections: prevents a cream/off-white content block from
   running directly into the soft-cream footer. */
.section-final-contrast {
  background: linear-gradient(135deg, #0F2044 0%, #142A58 52%, #0B1833 100%) !important;
  color: var(--white) !important;
  position: relative !important;
  overflow: hidden !important;
}

.section-final-contrast::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(184,150,78,0.12), transparent 30%),
              radial-gradient(circle at 88% 88%, rgba(255,255,255,0.08), transparent 28%);
  pointer-events: none;
}

.section-final-contrast > .container {
  position: relative !important;
  z-index: 1 !important;
}

.section-final-contrast .cta-box {
  background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  box-shadow: 0 26px 70px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.08) !important;
}

/* Readability fixes for cards and image cards inside dark/navy sections. */
.section-navy .card h3,
.section-final-contrast .card h3 {
  color: var(--navy) !important;
}

.section-navy .card p,
.section-final-contrast .card p,
.section-navy .img-card .img-body p,
.section-final-contrast .img-card .img-body p {
  color: var(--muted) !important;
}

.section-navy .img-card,
.section-final-contrast .img-card,
.section-navy .card,
.section-final-contrast .card {
  background: var(--white) !important;
}

.section-navy .dark-card h3,
.section-final-contrast .dark-card h3 {
  color: var(--white) !important;
}

.section-navy .dark-card p,
.section-final-contrast .dark-card p {
  color: rgba(255,255,255,0.74) !important;
}

.section-navy .check-item,
.section-final-contrast .check-item {
  color: rgba(255,255,255,0.78) !important;
}

/* Consistent section header alignment. */
.sec-hdr,
.legal-header {
  max-width: 760px;
}

.sec-hdr.center,
.legal-header {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.sec-hdr.center p,
.legal-header p {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Subtle 3D / depth effect. Applied to headings, not paragraphs, so readability stays high. */
.hero h1,
.section-navy .sec-hdr h2,
.section-final-contrast h2,
.section-final-contrast h3,
.cta-box h2 {
  text-shadow:
    0 1px 0 rgba(255,255,255,0.06),
    0 3px 0 rgba(0,0,0,0.12),
    0 16px 34px rgba(0,0,0,0.32) !important;
}

.section-white .sec-hdr h2,
.section-off .sec-hdr h2,
.legal-header h1,
.card h3,
.stat-bar-num {
  text-shadow:
    0 1px 0 rgba(255,255,255,0.92),
    0 10px 20px rgba(15,32,68,0.10) !important;
}

.nav-logo,
.brand-name,
.footer-brand-name {
  text-shadow: 0 1px 0 rgba(255,255,255,0.35), 0 8px 14px rgba(15,32,68,0.08) !important;
}

.hero .sub,
.sec-hdr p,
.card p,
.img-card .img-body p,
.footer p,
.footer a {
  text-shadow: none !important;
}

/* Premium depth on CTA/buttons without sacrificing legibility. */
.btn,
.submit-btn {
  box-shadow: 0 8px 18px rgba(15,32,68,0.12);
}

.section-navy .btn-gold,
.section-final-contrast .btn-gold,
.hero .btn-gold {
  box-shadow: 0 12px 26px rgba(184,150,78,0.22), 0 2px 0 rgba(0,0,0,0.12);
}

/* Extra spacing guard so section colour changes feel intentional and not cramped. */
section + section {
  border-top: 1px solid rgba(15,32,68,0.045);
}

.section-navy + .footer,
.section-final-contrast + .footer {
  border-top: 4px solid rgba(184,150,78,0.34) !important;
}

/* ── FORM CHECKBOX FIX ── */
.checkbox-group { position: relative; z-index: 10; }
.checkbox-item { position: relative; z-index: 10; pointer-events: all; }
.checkbox-item input[type="checkbox"] {
  position: relative;
  z-index: 10;
  pointer-events: all;
  cursor: pointer;
  -webkit-appearance: checkbox;
  appearance: checkbox;
  opacity: 1 !important;
  visibility: visible !important;
}
.consent-box input[type="checkbox"] {
  position: relative;
  z-index: 10;
  pointer-events: all;
  cursor: pointer;
  -webkit-appearance: checkbox;
  appearance: checkbox;
}
.form-body { position: relative; z-index: 5; }
#inquiry-form { position: relative; z-index: 5; }
