/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #1a2744;
  background: #faf8f4;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8942e;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1a2744;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: #5a6a80;
  max-width: 560px;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #1a2744;
  color: #f5f0e8;
  border-color: #1a2744;
}
.btn-primary:hover {
  background: #2a3d64;
  border-color: #2a3d64;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 39, 68, 0.2);
}
.btn-ghost {
  background: transparent;
  color: #1a2744;
  border-color: #1a2744;
}
.btn-ghost:hover {
  background: #1a2744;
  color: #f5f0e8;
  transform: translateY(-2px);
}
.btn-ghost-sm {
  background: transparent;
  color: #1a2744;
  border: 1.5px solid #d4cfc4;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease;
}
.btn-ghost-sm:hover { border-color: #1a2744; color: #1a2744; }
.btn-full { width: 100%; justify-content: center; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 39, 68, 0.06);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(26, 39, 68, 0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #1a2744;
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: #1a2744;
  color: #c9a84c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #5a6a80;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: #1a2744; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c9a84c;
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: #1a2744 !important;
  color: #f5f0e8 !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem !important;
  transition: all 0.3s ease !important;
}
.nav-cta:hover { background: #2a3d64 !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: #1a2744;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active .nav-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 39, 68, 0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.active { opacity: 1; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: linear-gradient(135deg, #faf8f4 0%, #f0ebe0 50%, #e8e0d0 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 120px;
}
.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12);
  color: #b8942e;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: #1a2744;
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero-desc {
  font-size: 1.1rem;
  color: #5a6a80;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #5a6a80;
  font-weight: 500;
}
.hero-trust-item svg { color: #c9a84c; flex-shrink: 0; }

/* Hero image */
.hero-image { position: relative; }
.hero-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(26, 39, 68, 0.15);
  aspect-ratio: 640/720;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute;
  bottom: -24px;
  left: -32px;
  background: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 16px 48px rgba(26, 39, 68, 0.12);
  max-width: 280px;
}
.hero-float-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1a2744, #2a3d64);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  flex-shrink: 0;
}
.hero-float-label {
  font-size: 0.75rem;
  color: #b8942e;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hero-float-sub {
  font-size: 0.82rem;
  color: #5a6a80;
  line-height: 1.5;
}
.hero-wave { position: absolute; bottom: 0; left: 0; width: 100%; }

/* ─── SERVICES ─── */
.services {
  background: #f5f0e8;
  padding: 100px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.35s ease;
  border: 1px solid rgba(26, 39, 68, 0.05);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26, 39, 68, 0.1);
  border-color: transparent;
}
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(26, 39, 68, 0.06), rgba(201, 168, 76, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2744;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a2744;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.92rem;
  color: #5a6a80;
  line-height: 1.7;
}

/* ─── ABOUT ─── */
.about {
  background: #faf8f4;
  padding: 100px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(26, 39, 68, 0.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(26, 39, 68, 0.15);
  border: 5px solid #faf8f4;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-experience-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: #1a2744;
  color: #f5f0e8;
  border-radius: 20px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(26, 39, 68, 0.25);
}
.about-experience-badge .exp-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
}
.about-experience-badge .exp-label {
  font-size: 0.75rem;
  opacity: 0.7;
  letter-spacing: 0.04em;
}
.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 24px; }
.about-text {
  font-size: 1rem;
  color: #5a6a80;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-values { margin: 32px 0 40px; display: flex; flex-direction: column; gap: 14px; }
.about-value {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #1a2744;
  font-weight: 500;
}
.about-value svg { color: #c9a84c; flex-shrink: 0; }

/* ─── WHY US ─── */
.why-us {
  background: #1a2744;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.why-us .section-tag { color: #c9a84c; }
.why-us .section-title { color: #f5f0e8; }
.why-us .section-desc { color: rgba(245, 240, 232, 0.6); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.35s ease;
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}
.why-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.25);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #f5f0e8;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.92rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
}

/* ─── GALLERY ─── */
.gallery {
  background: #f5f0e8;
  padding: 100px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 39, 68, 0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ─── CONTACT ─── */
.contact {
  background: #faf8f4;
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 12px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-desc {
  font-size: 1.05rem;
  color: #5a6a80;
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; }
.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(26, 39, 68, 0.06), rgba(201, 168, 76, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2744;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b8942e;
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 0.95rem;
  color: #1a2744;
  line-height: 1.6;
}
.contact-detail-value a {
  color: #1a2744;
  border-bottom: 1px solid rgba(26, 39, 68, 0.2);
  transition: border-color 0.2s;
}
.contact-detail-value a:hover { border-color: #c9a84c; }
.contact-map { border-radius: 16px; overflow: hidden; }

/* Form */
.contact-form-wrap { }
.contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 44px 36px;
  box-shadow: 0 16px 48px rgba(26, 39, 68, 0.08);
  border: 1px solid rgba(26, 39, 68, 0.05);
}
.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #1a2744;
}
.form-note {
  font-size: 0.9rem;
  color: #5a6a80;
  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-size: 0.82rem;
  font-weight: 600;
  color: #1a2744;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e4dfd4;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: #1a2744;
  background: #faf8f4;
  transition: all 0.2s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c9a84c;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0a898; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; 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='%235a6a80' 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; }

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.form-success.active { display: block; }
.contact-form.hidden { display: none; }
.form-success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(26, 39, 68, 0.06), rgba(201, 168, 76, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #1a2744;
}
.form-success h4 {
  font-size: 1.3rem;
  color: #1a2744;
  margin-bottom: 8px;
}
.form-success p {
  font-size: 0.9rem;
  color: #5a6a80;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ─── FOOTER ─── */
.footer {
  background: #1a2744;
  color: #f5f0e8;
  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-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #f5f0e8;
}
.footer-logo-mark {
  width: 36px;
  height: 36px;
  background: rgba(201, 168, 76, 0.2);
  color: #c9a84c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.7;
  max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: #f5f0e8; }
.footer-contact p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-contact a { color: rgba(245, 240, 232, 0.7); border-bottom: 1px solid rgba(245, 240, 232, 0.15); transition: border-color 0.2s; }
.footer-contact a:hover { border-color: #c9a84c; color: #c9a84c; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.35);
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #faf8f4;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
    transition: right 0.35s ease;
    box-shadow: -8px 0 32px rgba(26, 39, 68, 0.1);
  }
  .nav-links.active { right: 0; }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-overlay.active { display: block; }

  .hero-grid { grid-template-columns: 1fr; padding-bottom: 80px; }
  .hero-image { order: -1; }
  .hero-img-wrap { aspect-ratio: 4/3; border-radius: 20px; }
  .hero-float-card { left: 16px; bottom: -16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-secondary { right: -16px; bottom: -24px; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding-top: 64px; }
  .services, .about, .why-us, .gallery, .contact { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
}
