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

:root {
  --navy: #0f172a;
  --navy-light: #1e293b;
  --navy-mid: #334155;
  --gold: #d4a017;
  --gold-light: #e8b930;
  --gold-pale: #fef3c7;
  --cream: #faf8f5;
  --warm-gray: #f5f0e8;
  --text: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(15,23,42,0.06);
  --shadow-md: 0 8px 30px rgba(15,23,42,0.10);
  --shadow-lg: 0 16px 50px rgba(15,23,42,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -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; }

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

/* ── Typography ───────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 800; line-height: 1.15; color: var(--navy); }

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  background: var(--gold-pale);
  padding: 6px 14px;
  border-radius: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  padding: 14px 28px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(212,160,23,0.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,160,23,0.4);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-nav { padding: 10px 22px; font-size: 0.88rem; }

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15,23,42,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon { border-radius: 12px; }

.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo-accent { color: var(--gold); }

.main-nav ul {
  display: flex;
  gap: 8px;
}

.main-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
}
.main-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-left: auto;
  transition: var(--transition);
}
.mobile-toggle:hover { background: rgba(255,255,255,0.08); }
.mobile-toggle .hamburger {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: var(--transition);
}
.mobile-toggle .hamburger::before,
.mobile-toggle .hamburger::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--white);
  left: 0;
  transition: var(--transition);
}
.mobile-toggle .hamburger::before { top: -6px; }
.mobile-toggle .hamburger::after { top: 6px; }
.mobile-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.mobile-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.mobile-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  padding: 100px 0 60px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 25% 25%, var(--gold) 1px, transparent 1px),
                     radial-gradient(circle at 75% 75%, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 56px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.08;
}

.hero-description {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image-wrap { position: relative; }

.hero-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 520/380;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Stat Cards */
.stat-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
  pointer-events: auto;
}

.stat-card--1 { top: 10%; left: -40px; animation-delay: 0s; }
.stat-card--2 { bottom: 25%; left: -60px; animation-delay: 2s; }
.stat-card--3 { top: 5%; right: -30px; animation-delay: 4s; }

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.stat-value {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.2;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

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

/* ── Services ─────────────────────────────────────── */
.services {
  padding: 100px 0;
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-desc { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,160,23,0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--navy);
}

.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── About ────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 480/400;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  aspect-ratio: 400/260;
  width: 260px;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
}

.about-content .section-title { margin-bottom: 20px; }
.about-content > p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text);
}

.about-list svg { flex-shrink: 0; }

/* ── Reviews ──────────────────────────────────────── */
.reviews {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 20% 80%, var(--gold) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.reviews .section-header { position: relative; z-index: 1; }
.reviews .section-title { color: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.review-card {
  background: var(--navy-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,160,23,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.review-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ── CTA Banner ───────────────────────────────────── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gold) 0%, #c4900f 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle, var(--navy) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 8px;
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(15,23,42,0.7);
  line-height: 1.6;
}

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-cta-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(15,23,42,0.3);
}
.btn-cta-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(15,23,42,0.4);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(15,23,42,0.3);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* ── Contact ──────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.5;
}
.contact-item a:hover { color: var(--gold); }

.map-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  aspect-ratio: 520/260;
}
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; }

.map-link {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.map-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15,23,42,0.06);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
}

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

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  color: #166534;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a:hover,
.footer-contact a:hover { color: var(--white); }

.footer-contact li { font-size: 0.95rem; line-height: 1.6; }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
}

/* ── Mobile Nav Overlay ───────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(15,23,42,0.97);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-overlay a {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-overlay a:hover { background: rgba(255,255,255,0.08); color: var(--gold); }

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

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-card { grid-template-columns: 1fr; padding: 40px; }
  .hero-image-wrap { display: none; }
  .stat-cards { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .btn-nav { display: none; }
  .mobile-toggle { display: flex; }

  .hero { padding: 100px 0 60px; }
  .hero-card { padding: 28px; }
  .hero-headline { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .services { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .about { padding: 70px 0; }
  .about-img-secondary { display: none; }
  .about-badge { position: relative; top: 0; left: 0; display: inline-flex; margin-bottom: 16px; }

  .reviews { padding: 70px 0; }
  .reviews-grid { grid-template-columns: 1fr; }

  .cta-banner { padding: 60px 0; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { width: 100%; justify-content: center; }

  .contact { padding: 70px 0; }
  .contact-form-wrap { padding: 28px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
}
