@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300&display=swap');

:root {
  --navy: #0d2137;
  --gold: #e8b84b;
  --gold-dark: #c99a2e;
  --white: #f5f2ec;
  --gray: #8a9aaa;
  --light-bg: #f0ede6;
  --text: #1a2b3c;
  --border: rgba(232,184,75,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
}

/* ─── HEADER ─── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-bolt {
  width: 36px;
  height: 36px;
  background: var(--gold);
  clip-path: polygon(60% 0%, 40% 45%, 70% 45%, 40% 100%, 60% 55%, 30% 55%);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-sub {
  font-family: 'Source Serif 4', serif;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

nav { display: flex; align-items: center; gap: 0; }

nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245,242,236,0.75);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
  position: relative;
}

nav a:hover, nav a.active { color: var(--gold); }

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  background: var(--navy);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  min-width: 240px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
}

.header-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.6rem 1.4rem !important;
  font-weight: 700 !important;
  margin-left: 1rem;
  transition: background 0.2s !important;
}

.header-cta:hover { background: var(--gold-dark) !important; color: var(--navy) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── TOP BAR ─── */
.topbar {
  background: var(--gold);
  text-align: center;
  padding: 0.45rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
}

.topbar a { color: var(--navy); text-decoration: none; }

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 6rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(232,184,75,0.08) 0%, transparent 70%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(232,184,75,0.03) 40px,
      rgba(232,184,75,0.03) 41px
    );
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(245,242,236,0.7);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover { background: var(--gold-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(245,242,236,0.4);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-badges {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.badge-label {
  font-size: 0.75rem;
  color: rgba(245,242,236,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── CONTACT CARD ─── */
.contact-card {
  background: var(--white);
  padding: 2.5rem;
  border-top: 4px solid var(--gold);
}

.contact-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row.full { grid-template-columns: 1fr; }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }

.form-group label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Source Serif 4', serif;
  font-size: 0.9rem;
  background: var(--light-bg);
  border: 1px solid rgba(13,33,55,0.15);
  color: var(--text);
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  font-size: 1rem;
  padding: 1rem;
}

.form-msg {
  display: none;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.form-msg.success { background: #d4edda; color: #155724; }
.form-msg.error { background: #f8d7da; color: #721c24; }

/* ─── SECTIONS ─── */
.section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gold-dark);
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-desc {
  color: #4a5e6e;
  max-width: 640px;
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(13,33,55,0.08);
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.3s;
}

.service-card:hover::after { width: 100%; }
.service-card:hover { background: var(--light-bg); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card p { font-size: 0.92rem; color: #4a5e6e; line-height: 1.7; }

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin-top: 1rem;
  text-decoration: none;
}

/* ─── WHY US ─── */
.dark-section {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.why-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
}

.why-item h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.why-item p { font-size: 0.9rem; color: rgba(245,242,236,0.65); line-height: 1.7; }

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--gold);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-band h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(13,33,55,0.7);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover { background: #162d47; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--navy);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(232,184,75,0.03) 40px, rgba(232,184,75,0.03) 41px
  );
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.45);
  margin-bottom: 1rem;
}

.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.1;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.page-hero p {
  color: rgba(245,242,236,0.65);
  max-width: 600px;
  margin-top: 1rem;
  font-size: 1.05rem;
}

/* ─── CONTENT BLOCKS ─── */
.content-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.content-block h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.content-block h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

.content-block p { margin-bottom: 1.25rem; color: #3a4e5e; line-height: 1.8; }

.content-block ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.content-block ul li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: #3a4e5e;
  border-bottom: 1px solid rgba(13,33,55,0.06);
}

.content-block ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-size: 0.9rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

.signs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.sign-card {
  background: var(--light-bg);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
}

.sign-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.sign-card p { font-size: 0.9rem; color: #4a5e6e; line-height: 1.6; margin: 0; }

.steps-list { counter-reset: step; margin: 2rem 0; }

.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(13,33,55,0.08);
  counter-increment: step;
}

.step-num {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.step-item h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.step-item p { font-size: 0.92rem; color: #4a5e6e; margin: 0; }

/* ─── FAQ ─── */
.faq-list { margin: 2rem 0; }

.faq-item {
  border-bottom: 1px solid rgba(13,33,55,0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 1.25rem;
  color: #4a5e6e;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 5rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.contact-info p { color: #4a5e6e; font-size: 0.95rem; margin-bottom: 0.5rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(13,33,55,0.08);
  color: #3a4e5e;
}

.contact-detail .icon { font-size: 1.2rem; width: 24px; text-align: center; }

.contact-detail a { color: var(--navy); text-decoration: none; font-weight: 600; }
.contact-detail a:hover { color: var(--gold-dark); }

.full-form .contact-card {
  border-top: 4px solid var(--gold);
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.highlight-box {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem;
  margin-top: 2rem;
}

.highlight-box h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.highlight-box p { font-size: 0.92rem; color: rgba(245,242,236,0.7); line-height: 1.75; margin: 0; }

/* ─── FOOTER ─── */
footer {
  background: #08182a;
  color: rgba(245,242,236,0.6);
  padding: 4rem 2rem 2rem;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,242,236,0.1);
  margin-bottom: 2rem;
}

.footer-brand .logo-name { font-size: 1.1rem; }

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-top: 1rem;
  color: rgba(245,242,236,0.5);
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
  color: rgba(245,242,236,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(245,242,236,0.3);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-top: 0.75rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .contact-card { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .signs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    padding: 2rem;
    overflow-y: auto;
    z-index: 99;
    gap: 0;
  }
  nav.open a { padding: 1rem 0; border-bottom: 1px solid rgba(245,242,236,0.1); font-size: 1.1rem; }
  nav.open .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; background: rgba(255,255,255,0.05); border: none; padding: 0 0 0 1rem; }
  nav.open .nav-dropdown { flex-direction: column; }
  .hamburger { display: flex; }
  .header-cta { margin-left: 0; }
  .hero { padding: 4rem 2rem; }
  .hero-badges { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
