@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");
/* ── KESS VIRTUAL SOLUTIONS — SHARED STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --blue: #1a3a6b;
  --blue-mid: #2a5298;
  --blue-light: #4a7fd4;
  --blue-pale: #e8f0fb;
  --white: #ffffff;
  --off-white: #f5f8ff;
  --text: #0d1f3c;
  --muted: #6b80a0;
  --accent: #7ba7e0;
  --border: #c8d8f0;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #fdf6e3;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(26,58,107,.12); }

.nav-logo { display: flex; align-items: center; gap: 0px; text-decoration: none; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text strong { font-family:'Jost',sans-serif; font-weight:600; font-size:14px; color:#000000; letter-spacing:1.5px; text-transform:uppercase; }
.nav-logo-text span { font-size:11px; color:#000000; letter-spacing:2px; text-transform:uppercase; }
.nav-logo img { height: 120px; width: auto; mix-blend-mode: multiply; }

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--text);
  font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  position: relative; padding-bottom: 2px; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  border: 1.5px solid var(--gold) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--blue) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--blue); display: block; transition: .3s; }

.mobile-menu {
  display: none; position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--white);
  padding: 24px 5%;
  flex-direction: column; gap: 16px;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--text);
  font-size: 15px; font-weight: 500;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  letter-spacing: .5px;
}

/* SHARED SECTION */
.section-wrap { max-width: 1200px; margin: 0 auto; padding: 70px 5%; }
.section-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; font-weight: 600; display: block; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 400; color: var(--blue); line-height: 1.15; margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--gold); }
.section-body { font-size: 16px; color: var(--muted); line-height: 1.8; max-width: 600px; font-weight: 300; }
.divider { width: 48px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin: 20px 0 32px; }

/* BUTTONS */
.btn-primary {
  background: var(--blue); color: var(--white);
  padding: 15px 34px; font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none;
  display: inline-block; transition: .3s; border-radius: 2px;
  border: 1.5px solid var(--blue);
}
.btn-primary:hover { background: var(--gold); color: var(--blue); border-color: var(--gold); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 14px 34px; font-size: 13px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,.5);
  cursor: pointer; text-decoration: none; display: inline-block; transition: .3s; border-radius: 2px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* PAGE HERO BANNER (for inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 60%, var(--blue-light) 100%);
  padding: 160px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,.08) 0%, transparent 70%);
}
.page-hero-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; font-weight: 600; position: relative; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 6vw, 72px); font-weight: 300; color: var(--white); line-height: 1.1; position: relative; }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.75); margin-top: 16px; font-weight: 300; position: relative; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.page-hero-divider { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin: 24px auto 0; position: relative; }

/* FOOTER */
footer { background: var(--text); color: rgba(255,255,255,.75); padding: 70px 5% 32px; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 32px;
}
.footer-logo { display: flex; align-items: center; gap: 4px; margin-bottom: 16px; }
.footer-logo img { height: 44px; width: auto; margin-right: -20px; }
.footer-logo-text strong { display: block; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 13px; color: var(--white); letter-spacing: 1px; text-transform: uppercase; }
.footer-logo-text span { font-size: 10px; color: rgba(255,255,255,.4); letter-spacing: 1.5px; text-transform: uppercase; }
.footer-brand p { font-size: 13px; line-height: 1.75; max-width: 280px; margin-bottom: 20px; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 16px; color: var(--gold-light); }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-light); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 13px; transition: .2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 13px; align-items: flex-start; }
.footer-contact-item span:first-child { color: var(--gold-light); font-size: 14px; min-width: 18px; }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 12px; }
.socials { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); text-decoration: none; font-size: 16px; transition: .2s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%); padding: 80px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 70% 50%, rgba(201,168,76,.1) 0%, transparent 70%); pointer-events: none; }
.cta-banner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 48px); color: var(--white); font-weight: 300; margin-bottom: 16px; position: relative; }
.cta-banner h2 em { color: var(--gold-light); font-style: italic; }
.cta-banner p { color: rgba(255,255,255,.75); font-size: 16px; margin-bottom: 36px; position: relative; font-weight: 300; }
.gold-line { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin: 0 auto 28px; position: relative; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  .strip { flex-direction: column !important; align-items: flex-start !important; gap: 12px !important; padding: 20px 5% !important; }
  .strip-item { font-size: 14px; width: 100%; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
