/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #2C3E50;
  background: #FAFAF8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1B4D5E;
}

/* ── Layout ───────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Utilities ────────────────────────────────── */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A84B;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.section-line {
  width: 60px;
  height: 2px;
  background: #D4A84B;
  margin-bottom: 32px;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #D4A84B;
  color: #1B4D5E;
}
.btn-primary:hover {
  background: #C49A3F;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 168, 75, 0.3);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.btn-gold {
  background: #D4A84B;
  color: #1B4D5E;
}
.btn-gold:hover {
  background: #C49A3F;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 168, 75, 0.3);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Header ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.0);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(250, 250, 248, 0.97);
  box-shadow: 0 1px 0 rgba(27, 77, 94, 0.08);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}
.brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.4s ease;
}
.site-header.scrolled .brand-name { color: #1B4D5E; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #D4A84B;
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #D4A84B; }
.nav-links a:hover::after { width: 100%; }
.site-header.scrolled .nav-links a { color: #2C3E50; }
.site-header.scrolled .nav-links a:hover { color: #D4A84B; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.hamburger-line {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}
.site-header.scrolled .hamburger-line { background: #1B4D5E; }
.menu-toggle.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
.menu-toggle.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27, 77, 94, 0.97);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
}
.mobile-nav-link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
}
.mobile-nav-link:hover { color: #D4A84B; }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 45, 56, 0.88) 0%,
    rgba(27, 77, 94, 0.78) 50%,
    rgba(20, 61, 74, 0.85) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 80px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4A84B;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-headline .accent {
  color: #D4A84B;
  font-style: italic;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
}
.trust-item svg { opacity: 0.7; }
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  animation: scrollBounce 2s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ── Services ─────────────────────────────────────────── */
.services {
  padding: 120px 0;
  background: #FAFAF8;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: #fff;
  border-radius: 8px;
  padding: 40px 32px;
  border: 1px solid rgba(27, 77, 94, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1B4D5E, #D4A84B);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(27, 77, 94, 0.1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 77, 94, 0.06);
  border-radius: 12px;
  margin-bottom: 24px;
  transition: background 0.3s ease;
}
.service-card:hover .service-icon { background: rgba(27, 77, 94, 0.1); }
.service-title {
  font-size: 1.375rem;
  margin-bottom: 14px;
  color: #1B4D5E;
}
.service-desc {
  font-size: 0.9375rem;
  color: #5A6B7D;
  line-height: 1.75;
}

/* ── About ────────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(27, 77, 94, 0.12);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/7;
}
.about-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  background: #1B4D5E;
  border-radius: 8px;
  z-index: -1;
  opacity: 0.06;
}
.about-text {
  font-size: 1rem;
  color: #5A6B7D;
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(27, 77, 94, 0.08);
}
.stat { text-align: left; }
.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1B4D5E;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8A9BB0;
  margin-top: 4px;
}

/* ── Process ──────────────────────────────────────────── */
.process {
  padding: 120px 0;
  background: #1B4D5E;
  color: #fff;
}
.process .section-eyebrow { color: #D4A84B; }
.process .section-title { color: #fff; }
.process .section-line { background: #D4A84B; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: rgba(212, 168, 75, 0.3);
}
.process-step { text-align: center; position: relative; }
.step-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(212, 168, 75, 0.25);
  line-height: 1;
  margin-bottom: 20px;
}
.step-title {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* ── Areas ────────────────────────────────────────────── */
.areas {
  padding: 120px 0;
  background: #FAFAF8;
}
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.areas-text {
  font-size: 1rem;
  color: #5A6B7D;
  line-height: 1.85;
  margin-bottom: 32px;
}
.areas-list { display: flex; flex-direction: column; gap: 14px; }
.areas-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: #2C3E50;
  font-weight: 500;
}
.areas-map {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(27, 77, 94, 0.12);
  aspect-ratio: 560/640;
}
.areas-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.map-overlay svg { flex-shrink: 0; margin-top: 2px; }
.map-overlay span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1B4D5E;
  line-height: 1.6;
}

/* ── CTA ──────────────────────────────────────────────── */
.cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 45, 56, 0.92) 0%, rgba(27, 77, 94, 0.85) 100%);
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4A84B;
  margin-bottom: 20px;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #fff;
  margin-bottom: 20px;
}
.cta-text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Contact ──────────────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text {
  font-size: 1rem;
  color: #5A6B7D;
  line-height: 1.85;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 77, 94, 0.06);
  border-radius: 12px;
}
.contact-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A9BB0;
  margin-bottom: 4px;
}
.contact-item a,
.contact-item span {
  font-size: 0.9375rem;
  color: #2C3E50;
  line-height: 1.7;
}
.contact-item a:hover { color: #D4A84B; }

/* Form */
.contact-form-wrap {
  background: #FAFAF8;
  border-radius: 12px;
  padding: 48px;
  border: 1px solid rgba(27, 77, 94, 0.06);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #2C3E50;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  padding: 12px 16px;
  border: 1.5px solid rgba(27, 77, 94, 0.12);
  border-radius: 6px;
  background: #fff;
  color: #2C3E50;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #D4A84B;
  box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0BEC5; }
.form-group textarea { resize: vertical; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A9BB0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(27, 77, 94, 0.06);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: #1B4D5E;
  margin-top: 8px;
}
.form-success svg { flex-shrink: 0; }

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: #1A2733;
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo .brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D4A84B;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: #D4A84B; }
.footer-contact p {
  font-size: 0.875rem;
  line-height: 1.85;
}
.footer-contact a { transition: color 0.3s ease; }
.footer-contact a:hover { color: #D4A84B; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ── Animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .hero-content { padding: 100px 20px 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { gap: 20px; }
  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-accent { display: none; }
  .process { padding: 80px 0; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .areas { padding: 80px 0; }
  .areas-grid { grid-template-columns: 1fr; gap: 48px; }
  .areas-map { aspect-ratio: 4/3; }
  .cta { padding: 80px 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .contact { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section-header { margin-bottom: 48px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 16px 20px; }
  .hero-headline { font-size: 1.875rem; }
  .about-stats { flex-direction: column; gap: 24px; }
}
