/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1a2b4a;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Montserrat', Arial, sans-serif; line-height: 1.2; font-weight: 700; }
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c8a44e;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1a2b4a;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 640px;
  line-height: 1.7;
}
.section-header--centered { text-align: center; }
.section-header--centered .section-sub { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #c8a44e;
  color: #1a2b4a;
  border-color: #c8a44e;
}
.btn-primary:hover { background: #b8943e; border-color: #b8943e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,164,78,0.35); }
.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: #ffffff; background: rgba(255,255,255,0.1); }
.btn-outline-light {
  background: transparent;
  color: #1a2b4a;
  border-color: #ffffff;
}
.btn-outline-light:hover { background: #ffffff; }
.btn-gold {
  background: #c8a44e;
  color: #1a2b4a;
  border-color: #c8a44e;
}
.btn-gold:hover { background: #b8943e; border-color: #b8943e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,164,78,0.35); }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 43, 74, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,164,78,0.2);
  transition: background 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
}
.logo-accent { color: #c8a44e; }
.logo-text--light .logo-accent { color: #c8a44e; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  padding: 8px 16px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover { color: #ffffff; background: rgba(255,255,255,0.08); }
.nav-cta {
  background: #c8a44e !important;
  color: #1a2b4a !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.nav-cta:hover { background: #b8943e !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
  left: 9px;
}
.hamburger { top: 19px; }
.hamburger::before { content: ''; top: -7px; }
.hamburger::after { content: ''; top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26, 43, 74, 0.98);
    backdrop-filter: blur(10px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(200,164,78,0.2);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a { padding: 12px 16px; }
  .nav-cta { margin-left: 0 !important; text-align: center; margin-top: 8px; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a2b4a;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,43,74,0.92) 0%, rgba(26,43,74,0.75) 50%, rgba(26,43,74,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: 780px;
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c8a44e;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 18px;
  border-radius: 50px;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: #f7f8fb;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid #e8ecf2;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26,43,74,0.1);
  border-color: #c8a44e;
}
.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,164,78,0.1);
  border-radius: 14px;
  margin-bottom: 24px;
}
.service-card h3 {
  font-size: 1.25rem;
  color: #1a2b4a;
  margin-bottom: 12px;
}
.service-card p {
  color: #4a5568;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: #ffffff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img {
  border-radius: 20px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(26,43,74,0.15);
}
.about-stat {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #1a2b4a;
  color: #ffffff;
  padding: 28px 32px;
  border-radius: 16px;
  border: 3px solid #c8a44e;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #c8a44e;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}
.about-content .section-title { margin-top: 4px; }
.about-content > p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}
.about-list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #2d3748;
  font-size: 0.95rem;
  line-height: 1.5;
}
.about-list svg { flex-shrink: 0; margin-top: 2px; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img { height: 400px; }
  .about-stat { right: 16px; bottom: -16px; }
}

/* ===== PROCESS ===== */
.process {
  padding: 100px 0;
  background: #1a2b4a;
}
.process .section-title { color: #ffffff; }
.process .section-sub { color: rgba(255,255,255,0.7); }
.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 56px;
}
.step {
  flex: 1;
  padding: 40px 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  position: relative;
}
.step:first-child { border-radius: 16px 0 0 16px; }
.step:last-child { border-radius: 0 16px 16px 0; }
.step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(200,164,78,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 12px;
}
.step p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.step-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c8a44e;
  background: rgba(200,164,78,0.12);
  border: 1px solid rgba(200,164,78,0.3);
  padding: 6px 14px;
  border-radius: 50px;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.step-connector::before {
  content: '';
  width: 48px;
  height: 2px;
  background: rgba(200,164,78,0.4);
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}

@media (max-width: 768px) {
  .process-steps { flex-direction: column; gap: 16px; }
  .step { border-radius: 16px !important; }
  .step-connector { display: none !important; }
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: #f7f8fb;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(26,43,74,0.9) 0%, transparent 100%);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #ffffff;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 80px 24px;
  overflow: hidden;
  background: #1a2b4a;
}
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,43,74,0.88);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 20px;
}
.cta-text {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: #ffffff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-intro {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 36px;
  font-size: 1rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item svg { flex-shrink: 0; margin-top: 2px; }
.contact-item span, .contact-item a {
  color: #2d3748;
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-item a:hover { color: #c8a44e; }
.contact-map { border-radius: 12px; overflow: hidden; }

/* Form */
.contact-form-wrap {
  background: #f7f8fb;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e8ecf2;
}
.form-title {
  font-size: 1.5rem;
  color: #1a2b4a;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #1a2b4a;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d1d9e6;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: #1a2b4a;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c8a44e;
  box-shadow: 0 0 0 3px rgba(200,164,78,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a0aec0; }
.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: #718096;
  margin-top: 16px;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success svg { margin: 0 auto 16px; }
.form-success h4 {
  font-size: 1.4rem;
  color: #1a2b4a;
  margin-bottom: 8px;
}
.form-success p {
  color: #4a5568;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0f1d33;
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c8a44e;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: #c8a44e; }
.footer-col address { font-size: 0.9rem; line-height: 1.8; }
.footer-col a:hover { color: #c8a44e; }
.footer-bottom {
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #c8a44e; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}
