:root{
  --bg:#f6f7f9;
  --paper:#ffffff;
  --line:#e4e7ec;

  --navy:#0b2a4a;
  --navy2:#0a2340;

  --gold:#c7a84f;
  --gold2:#d7c08a;

  --text:#1b2430;
  --muted:#4a5563;

  --radius:14px;
  --max:1120px;
  --shadow:0 18px 60px rgba(15,23,42,0.12);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.75;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:0.96}

h1,h2,h3{
  font-family:"Cormorant Garamond", Georgia, serif;
  margin:0;
  letter-spacing:0.2px;
}
h1{font-size:56px; line-height:1.02}
h2{font-size:36px; line-height:1.12}
h3{font-size:22px; line-height:1.2}

p{margin:0; color:var(--muted)}
.wrap{max-width:var(--max); margin:0 auto; padding:0 24px}

/* Header */
header{
  background:var(--paper);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:50;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:260px;
}
.brand img{
  width:52px;
  height:52px;
  object-fit:contain;
  border-radius:12px;
}
.brandText{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.brandText strong{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:22px;
  color:var(--navy);
  letter-spacing:0.4px;
}
.brandText span{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.7px;
  color:rgba(11,42,74,0.72);
}

/* Menu */
nav{
  display:flex;
  align-items:center;
  gap:2px;
  flex-wrap:wrap;
  justify-content:center;
}
nav a{
  font-size:13px;
  letter-spacing:0.6px;
  text-transform:uppercase;
  color:rgba(11,42,74,0.72);
  padding:10px 12px;
  border-radius:12px;
}
nav a:hover{
  background:rgba(11,42,74,0.06);
  color:rgba(11,42,74,0.92);
}
nav a.active{
  background:rgba(199,168,79,0.14);
  color:rgba(11,42,74,0.92);
  border:1px solid rgba(199,168,79,0.32);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:12px;
  font-size:13px;
  letter-spacing:0.3px;
  border:1px solid rgba(11,42,74,0.18);
  background:rgba(11,42,74,0.04);
  color:rgba(11,42,74,0.92);
}
.btn:hover{
  background:rgba(11,42,74,0.06);
}
.btn.primary{
  background:linear-gradient(135deg, rgba(199,168,79,0.95), rgba(215,192,138,0.35));
  border-color:rgba(199,168,79,0.55);
  color:rgba(11,42,74,0.96);
  font-weight:600;
}

/* Hero */
.hero{
  position:relative;
  height:320px;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:var(--navy2);
}
.hero img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.heroContent{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  width:100%;
}
.heroText{
  max-width:900px;
  margin:0 auto;
  padding:0 24px;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  letter-spacing:0.6px;
  text-transform:uppercase;
  color:rgba(255,255,255,0.92);
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.22);
  background:rgba(11,42,74,0.36);
  backdrop-filter: blur(4px);
}
.kickerDot{
  width:8px;
  height:8px;
  border-radius:99px;
  background:var(--gold);
  box-shadow:0 0 0 6px rgba(199,168,79,0.18);
}
.heroText h1{
  margin-top:14px;
  color:#ffffff;
  font-size:42px;
  line-height:1.1;
  max-width:none;
  text-shadow:0 2px 18px rgba(0,0,0,0.28);
}
.heroText p{
  margin-top:12px;
  color:rgba(255,255,255,0.88);
  font-size:17px;
  max-width:58ch;
  text-shadow:0 2px 14px rgba(0,0,0,0.24);
}
.heroActions{
  margin-top:20px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* Sections */
section{padding:70px 0; border-top:1px solid var(--line)}
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:22px;
  margin-top:26px;
}
.card{
  background:var(--paper);
  border:1px solid var(--line);
  padding:26px;
  border-radius:var(--radius);
  box-shadow: var(--shadow);
}
.card p{font-size:14px}

/* Footer */
footer{
  padding:44px 0;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:14px;
  background:var(--paper);
}

/* Responsive */
@media (max-width: 860px){
  .hero{height:260px}
  h1{font-size:44px}
  .heroText{
  max-width:900px;
  margin:0 auto;
  padding:0 24px;
}
  .heroText h1{
  margin-top:14px;
  color:#ffffff;
  font-size:42px;
  line-height:1.1;
  max-width:none;
  text-shadow:0 2px 18px rgba(0,0,0,0.28);
}
  .heroText p{font-size:15px; max-width:42ch}
  .brand{min-width:auto}
}
/* NAV CLEAN */
.nav{
  gap:14px;
}
.brand{
  min-width:auto;
}
nav{
  gap:4px;
}
@media (max-width: 860px){
  nav a{ padding:10px 10px; }
}

/* CONTRACT FORM */
.formGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:18px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.label{
  font-size:12px;
  letter-spacing:0.6px;
  text-transform:uppercase;
  color:rgba(11,42,74,0.78);
}
.input, .select, .textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  font-size:14px;
  outline:none;
}
.textarea{ min-height: 140px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus{
  border-color: rgba(199,168,79,0.55);
  box-shadow: 0 0 0 4px rgba(199,168,79,0.14);
}
.formActions{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.note{
  margin-top:12px;
  font-size:13px;
  color: rgba(74,85,99,0.92);
}
@media (max-width: 860px){
  .formGrid{ grid-template-columns: 1fr; }
}

/* CONTACT FORM */
.formGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:18px;
}
.field{display:flex; flex-direction:column; gap:8px;}
.label{font-size:12px; letter-spacing:0.6px; text-transform:uppercase; color:#0b2a4a;}
.input,.textarea{
  width:100%; padding:12px; border-radius:10px; border:1px solid #e4e7ec; font-size:14px;
}
.textarea{min-height:140px; resize:vertical;}
.formActions{margin-top:18px;}
@media(max-width:860px){.formGrid{grid-template-columns:1fr;}}

/* BIGGER LOGO */
.brand img{
  width:100px;
  height:100px;
  object-fit:contain;
}

.brandText strong{
  font-size:28px;
}


/* HAMBURGER MENU */
.hamburger{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(11,42,74,0.18);
  background: rgba(11,42,74,0.04);
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.hamburger:focus{ outline: 2px solid rgba(199,168,79,0.55); outline-offset: 2px; }
.hamburgerLines{
  width:18px;
  height:12px;
  position:relative;
}
.hamburgerLines span{
  position:absolute;
  left:0;
  right:0;
  height:2px;
  border-radius:2px;
  background: rgba(11,42,74,0.92);
  transition: transform .18s ease, top .18s ease, opacity .18s ease;
}
.hamburgerLines span:nth-child(1){ top:0; }
.hamburgerLines span:nth-child(2){ top:5px; }
.hamburgerLines span:nth-child(3){ top:10px; }

.mobileNav{
  display:none;
  background: var(--paper);
  border-bottom:1px solid var(--line);
}
.mobileNavInner{
  padding: 10px 0 18px;
}
.mobileNav a{
  display:block;
  padding: 12px 12px;
  border-radius:12px;
  margin-top:6px;
  font-size:13px;
  letter-spacing:0.6px;
  text-transform:uppercase;
  color: rgba(11,42,74,0.84);
  border:1px solid rgba(11,42,74,0.08);
  background: rgba(11,42,74,0.02);
}
.mobileNav a:hover{
  background: rgba(11,42,74,0.05);
}

body.navOpen .mobileNav{ display:block; }

body.navOpen .hamburgerLines span:nth-child(1){ top:5px; transform: rotate(45deg); }
body.navOpen .hamburgerLines span:nth-child(2){ opacity:0; }
body.navOpen .hamburgerLines span:nth-child(3){ top:5px; transform: rotate(-45deg); }

@media (max-width: 860px){
  /* Hide desktop nav and CTAs on mobile */
  header nav{ display:none; }
  header .nav > div[style]{ display:none !important; }
  .hamburger{ display:inline-flex; }
  .brand img{ width:80px; height:80px; }
  .brandText strong{ font-size:24px; }
}

/* PAGE BANNER */
.pageBanner{
  position:relative;
  height:320px;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:#0b2a4a;
}
.pageBanner img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
@media (max-width: 860px){
  .pageBanner{ height:260px; }
}

/* IMAGE OVERLAY */
.pageBanner::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(11,42,74,0.45), rgba(11,42,74,0.18) 55%, rgba(11,42,74,0.08));
  pointer-events:none;
}


/* MOBILE NAV IMPROVED */
.mobileNav{
  position: relative;
  z-index: 40;
}
@media (max-width: 860px){
  body.navOpen{
    overflow:hidden;
  }
  .mobileNav{
    position: fixed;
    top: 84px; /* below header */
    left: 0;
    right: 0;
    max-height: calc(100vh - 84px);
    overflow: auto;
    box-shadow: 0 22px 70px rgba(15,23,42,0.18);
  }
}



.heroImageOnly{
  height:320px;
}
.heroImageOnly .heroContent{display:none;}

.introBlock{
  max-width:900px;
  margin:0 0 34px;
}
.introBlock h1{
  margin-top:14px;
  color:var(--navy);
  font-size:48px;
  line-height:1.08;
}
.introBlock p{
  margin-top:14px;
  font-size:17px;
  max-width:62ch;
}
.kickerInline{
  color:rgba(11,42,74,0.92);
  background:rgba(199,168,79,0.10);
  border:1px solid rgba(199,168,79,0.28);
  backdrop-filter:none;
}
.introActions{
  margin-top:22px;
}

@media (max-width: 860px){
  .heroImageOnly{height:240px;}
  .introBlock h1{font-size:38px;}
  .introBlock p{font-size:15px;}
}
