/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0b1628;
  --navy2:  #0f2040;
  --gold:   #c9a84c;
  --gold-text: #765a0e;
  --gold2:  #e8c46a;
  --white:  #ffffff;
  --off:    #f4f6fa;
  --muted:  #8a96a8;
  --text:   #1a2535;
  --border: rgba(201,168,76,0.2);
  --radius: 12px;
  --trans:  0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Typography ── */
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--white); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; font-family: 'Inter', sans-serif; font-weight: 600; }
p  { color: #4a5568; }

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header .section-sub { color: var(--muted); font-size: 1.05rem; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background var(--trans), transform var(--trans);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: border-color var(--trans), background var(--trans);
}
.btn-secondary:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

.full-width { width: 100%; text-align: center; font-size: 1rem; padding: 1rem; }

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--trans), box-shadow var(--trans);
  padding: 1.2rem 0;
}
#navbar.scrolled {
  background: rgba(11, 22, 40, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  padding: 0.8rem 0;
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.logo span { color: var(--gold); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 0.55rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--gold2); color: var(--navy); }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #1a3a5c 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 5rem;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  flex: 1;
  max-width: 620px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin: 1.5rem 0 2.5rem;
  max-width: 540px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 360px;
}

.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.25);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 1.2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  animation: float 6s ease-in-out infinite;
}
.card-1 { top: 10%; right: 20%; animation-delay: 0s; }
.card-2 { top: 45%; right: 5%;  animation-delay: 2s; }
.card-3 { bottom: 10%; right: 25%; animation-delay: 4s; }

.card-label { font-size: 0.72rem; color: var(--gold); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.card-value  { font-size: 1.35rem; font-weight: 700; color: var(--white); font-family: Georgia, "Times New Roman", serif; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero-disclaimer {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  max-width: 340px;
  text-align: right;
  line-height: 1.5;
}

/* ── Services ── */
#services {
  padding: 7rem 0;
  background: var(--off);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid #e8ecf2;
  border-radius: var(--radius);
  padding: 2.2rem;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: var(--gold);
}
.service-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.service-card h3 { margin-bottom: 0.75rem; color: var(--navy); }
.service-card p  { font-size: 0.92rem; margin-bottom: 1rem; }
.service-card ul { list-style: none; padding: 0; }
.service-card ul li {
  font-size: 0.88rem;
  color: #5a6a7e;
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}
.service-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.highlight-card {
  background: var(--navy);
  border-color: var(--border);
}
.highlight-card h3 { color: var(--white); }
.highlight-card p  { color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; }
.highlight-card .service-icon { color: var(--gold2); }

/* ── About ── */
#about {
  padding: 7rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 { margin-bottom: 1.2rem; color: var(--navy); }
.about-text p   { margin-bottom: 1rem; font-size: 1rem; }


.expertise-list { display: flex; flex-direction: column; gap: 1.4rem; }

.expertise-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid #e8ecf2;
  padding-bottom: 0.8rem;
}
.expertise-label { font-size: 0.88rem; font-weight: 500; color: var(--text); }
.expertise-pct   { font-size: 0.85rem; font-weight: 600; color: var(--gold); text-align: right; }
/* ── Approach ── */
#approach {
  padding: 7rem 0;
  background: var(--navy);
}
#approach .section-eyebrow { color: var(--gold); }
#approach h2 { color: var(--white); }
#approach .section-sub { color: rgba(255,255,255,0.55); }

.approach-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  text-align: center;
}
.step-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.step h3 { color: var(--white); margin-bottom: 0.6rem; }
.step p   { font-size: 0.88rem; color: rgba(255,255,255,0.55); }

.step-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.4;
  margin-top: 2.5rem;
  flex-shrink: 0;
}

/* ── Contact ── */
#contact {
  padding: 7rem 0;
  background: var(--off);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-text h2 { color: var(--navy); margin-bottom: 1rem; }
.contact-text p   { margin-bottom: 1.5rem; }

.contact-details { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.92rem; color: var(--text); }
.contact-icon { color: var(--gold); font-size: 1rem; }
.contact-item a { color: var(--text); }
.contact-item address { font-style: normal; line-height: 1.4; }
.contact-item:has(address) { align-items: flex-start; }
.contact-notice {
  background: var(--white);
  border: 1px solid #e8ecf2;
  border-radius: var(--radius);
  padding: 2.2rem;
}
.contact-notice h3 { color: var(--navy); margin-bottom: 0.8rem; }
.contact-notice p { margin-bottom: 1.5rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

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

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

input, select, textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #dde2eb;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
textarea { resize: vertical; }

.form-note {
  font-size: 0.85rem;
  text-align: center;
  color: #22c55e;
  min-height: 1.2em;
}

/* ── Footer ── */
footer {
  background: var(--navy);
  padding: 3rem 0;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.footer-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
}
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.65); letter-spacing: 0.05em; }
.footer-copy    { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 0.4rem; }
.footer-links { display: flex; gap: 1.25rem; font-size: 0.8rem; }
.footer-links a { color: rgba(255,255,255,0.65); }

/* ── Notices & Accessibility ── */
#notices { padding: 6rem 0; background: var(--white); }
.notices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.notices-grid h2 { color: var(--navy); margin-bottom: 1rem; font-size: 1.8rem; }
.notice-updated { margin-top: 1rem; font-size: 0.82rem; color: var(--muted); }
.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2000;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold2);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  #hero { flex-direction: column; gap: 3rem; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: 280px; width: 100%; }
  .card-1 { top: 0%; right: 5%; }
  .card-2 { top: 40%; right: 0%; }
  .card-3 { bottom: 0%; right: 20%; }

  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .notices-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .approach-steps { gap: 2rem; }
  .step-arrow { display: none; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 1.5rem 2rem; gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 1.5rem; }
  .form-row  { grid-template-columns: 1fr; }
}
