@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700;800&display=swap');

:root {
  --navy: #0b1f3a;
  --navy-2: #102a4d;
  --slate: #5f6b76;
  --slate-light: #eef1f4;
  --white: #ffffff;
  --gold: #d6b86a;
  --gold-dark: #b99a4f;
  --ink: #17202a;
  --muted: #6b7280;
  --success: #1f7a4d;
  --danger: #b42318;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 45px rgba(11, 31, 58, 0.12);
  --shadow-sm: 0 10px 28px rgba(11, 31, 58, 0.09);
  --container: 1180px;
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
ul { padding-left: 1.2rem; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  padding: .8rem 1rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: 0 0 8px 8px;
  font-weight: 700;
}
.skip-link:focus { top: 0; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-soft { background: #f6f8fa; }
.section-gold { background: linear-gradient(135deg, #d6b86a, #b99a4f); color: var(--navy); }
.eyebrow {
  margin: 0 0 .7rem;
  color: var(--gold-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
}
.section-dark .eyebrow { color: var(--gold); }
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.18;
  color: var(--navy);
  margin: 0 0 1rem;
}
.section-dark h2, .section-dark h3, .hero h1, .page-hero h1 { color: var(--white); }
h1 { font-size: clamp(2.5rem, 6vw, 5.2rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -.03em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.2rem; }
.lead { font-size: clamp(1.05rem, 1.8vw, 1.28rem); color: var(--slate); }
.section-dark .lead { color: #d7dee8; }
.text-center { text-align: center; }
.max-760 { max-width: 760px; }
.mx-auto { margin-inline: auto; }
.gold-text { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(11,31,58,.08);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { width: 132px; height: 66px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 1.35rem; }
.site-nav a {
  position: relative;
  font-size: .9rem;
  font-weight: 700;
  color: #314052;
  padding: .4rem 0;
}
.site-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.site-nav a.active { color: var(--navy); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid #d9dee5;
  border-radius: 10px;
  background: var(--white);
  align-items: center;
  justify-content: center;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 22px;
  height: 2px;
  background: var(--navy);
  display: block;
  transition: var(--transition);
}
.menu-toggle span { position: relative; }
.menu-toggle span::before,
.menu-toggle span::after { content: ''; position: absolute; left: 0; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-toggle[aria-expanded='true'] span { background: transparent; }
.menu-toggle[aria-expanded='true'] span::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded='true'] span::after { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .78rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(11,31,58,.18); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: #e1c778; }
.btn-secondary { background: transparent; border-color: rgba(255,255,255,.75); color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-small { min-height: 42px; padding: .55rem 1rem; font-size: .88rem; }
.button-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.hero,
.page-hero {
  position: relative;
  color: var(--white);
  isolation: isolate;
  background-size: cover;
  background-position: center;
}
.hero::before,
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5,17,33,.94) 0%, rgba(11,31,58,.82) 50%, rgba(11,31,58,.35) 100%);
}
.hero { min-height: 720px; display: grid; align-items: center; background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=2000&q=85'); }
.hero-content { max-width: 900px; padding: 6rem 0; }
.hero-logo { width: 210px; height: 120px; object-fit: contain; margin-bottom: 1.3rem; filter: drop-shadow(0 8px 18px rgba(0,0,0,.25)); }
.hero p { max-width: 760px; color: #e5eaf0; font-size: 1.18rem; }
.page-hero { min-height: 430px; display: grid; align-items: end; }
.page-hero-content { padding: 6rem 0 4.5rem; max-width: 860px; }
.page-hero p { color: #dce3ec; max-width: 720px; font-size: 1.08rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.4rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.25rem; }
.image-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 420px; }
.image-frame img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }

.card {
  background: var(--white);
  border: 1px solid rgba(11,31,58,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.7rem;
}
.card h3 { margin-top: .8rem; }
.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(214,184,106,.18);
  color: var(--navy);
}
.icon-box svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.service-card { padding: 0; overflow: hidden; }
.service-card img { width: 100%; height: 230px; object-fit: cover; }
.service-card-body { padding: 1.6rem; }
.service-card ul { color: var(--slate); }
.feature-list { display: grid; gap: 1rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-item .icon-box { flex: 0 0 auto; width: 46px; height: 46px; }
.feature-item h3 { margin-bottom: .3rem; }
.feature-item p { color: var(--slate); margin: 0; }

.stats { margin-top: 2rem; }
.stat-card { text-align: center; padding: 2rem 1rem; border-top: 3px solid var(--gold); }
.stat-card strong { display: block; font-family: 'Montserrat'; font-size: 2.3rem; color: var(--navy); }
.stat-card span { color: var(--slate); font-weight: 700; }

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
  color: var(--white);
  box-shadow: var(--shadow);
}
.cta-banner::after { content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%; right: -80px; top: -100px; border: 38px solid rgba(214,184,106,.15); }
.cta-banner h2 { color: var(--white); max-width: 800px; }

.timeline { position: relative; margin-top: 2rem; }
.timeline::before { content: ''; position: absolute; left: 19px; top: 10px; bottom: 10px; width: 2px; background: #dfe4ea; }
.timeline-item { display: grid; grid-template-columns: 40px 1fr; gap: 1rem; margin-bottom: 1.6rem; }
.timeline-dot { width: 14px; height: 14px; margin: .35rem auto 0; border-radius: 50%; background: var(--gold); outline: 7px solid rgba(214,184,106,.2); z-index: 1; }
.timeline-item h3 { margin-bottom: .35rem; }
.timeline-item p { margin: 0; color: var(--slate); }

.process-grid { counter-reset: process; }
.process-step { position: relative; padding: 1.6rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius); }
.process-step::before { counter-increment: process; content: counter(process, decimal-leading-zero); display: block; color: var(--gold); font-family: 'Montserrat'; font-weight: 800; font-size: 1.5rem; margin-bottom: .8rem; }
.process-step h3 { color: var(--white); }
.process-step p { color: #cfd8e4; margin: 0; }

.comparison { overflow-x: auto; }
.comparison table { width: 100%; border-collapse: collapse; min-width: 680px; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.comparison th, .comparison td { padding: 1rem 1.2rem; text-align: left; border-bottom: 1px solid #e7ebef; }
.comparison th { background: var(--navy); color: var(--white); font-family: 'Montserrat'; }
.comparison td:first-child { font-weight: 700; color: var(--navy); }
.check { color: var(--success); font-weight: 800; }
.minus { color: var(--danger); font-weight: 800; }

.team-group { margin-bottom: 3.5rem; }
.team-role { border-left: 3px solid var(--gold); }
.team-role p { color: var(--slate); margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 2rem; align-items: start; }
.contact-card { display: flex; gap: 1rem; align-items: flex-start; }
.contact-card + .contact-card { margin-top: 1rem; }
.contact-card p { margin: 0; color: var(--slate); }
.contact-card a:hover { color: var(--gold-dark); }
.form-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.form-group { display: grid; gap: .45rem; }
.form-group.full { grid-column: 1 / -1; }
label { font-weight: 700; color: var(--navy); }
input, select, textarea {
  width: 100%;
  border: 1px solid #ccd3db;
  border-radius: 9px;
  padding: .82rem .9rem;
  color: var(--ink);
  background: var(--white);
}
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(214,184,106,.35); border-color: var(--gold-dark); }
.field-error { color: var(--danger); font-size: .84rem; min-height: 1.1em; }
.invalid { border-color: var(--danger); }
.checkbox-row { display: flex; align-items: flex-start; gap: .7rem; }
.checkbox-row input { width: auto; margin-top: .3rem; }
.form-success { display: none; margin-top: 1rem; padding: 1rem; border-left: 4px solid var(--success); background: #eaf7f0; color: #155d3a; border-radius: 8px; }
.form-success.show { display: block; }
.map-frame { border: 0; width: 100%; min-height: 390px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.hours-list { display: grid; gap: .6rem; }
.hours-list div { display: flex; justify-content: space-between; border-bottom: 1px dashed #d5dbe2; padding-bottom: .5rem; }

.site-footer { background: #07172b; color: #cbd5e1; padding: 4.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr 1fr 1.2fr; gap: 2rem; }
.footer-logo { width: 170px; height: 90px; object-fit: contain; margin-bottom: 1rem; }
.site-footer h3 { color: var(--white); font-size: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { margin-top: 3rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; }
.slogan { color: var(--gold); font-weight: 700; }

.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

@media (max-width: 1020px) {
  .menu-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 82px 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .8rem 1rem 1.3rem;
    border-bottom: 1px solid #dfe4ea;
    box-shadow: 0 16px 30px rgba(11,31,58,.12);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: .75rem .4rem; }
  .site-nav .btn { margin-top: .5rem; }
  .grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 4rem 0; }
  .hero { min-height: 650px; background-position: 62% center; }
  .hero::before, .page-hero::before { background: linear-gradient(90deg, rgba(5,17,33,.95), rgba(11,31,58,.73)); }
  .hero-logo { width: 170px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 1.25rem; }
  .image-frame, .image-frame img { min-height: 320px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .brand img { width: 112px; height: 58px; }
  .header-inner { min-height: 72px; }
  .site-nav { inset: 72px 0 auto 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
