:root {
  --navy: #1a2744;
  --navy-light: #2a3d66;
  --gold: #c8a45e;
  --gold-light: #e2c97e;
  --gold-pale: #faf3e0;
  --cream: #faf8f4;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(26,39,68,0.08), 0 4px 24px rgba(26,39,68,0.06);
  --shadow-lg: 0 4px 12px rgba(26,39,68,0.1), 0 16px 48px rgba(26,39,68,0.08);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--gray-800);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; color: var(--navy); }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

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

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex; align-items: center;
  height: 76px; gap: 24px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.2rem; color: var(--navy);
}
.logo-accent { color: var(--gold); }
.logo-icon { flex-shrink: 0; }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  margin: 0 auto;
}
.nav-links a {
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.938rem; font-weight: 500; color: var(--gray-600);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--navy); background: var(--gray-100); }

.nav-cta { display: none; }

.menu-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.938rem; font-weight: 600;
  border: 2px solid transparent; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); box-shadow: 0 8px 24px rgba(200,164,94,0.35); }

.btn-white {
  background: var(--white); color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { box-shadow: 0 8px 24px rgba(255,255,255,0.4); }

.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-navy {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); box-shadow: 0 8px 24px rgba(26,39,68,0.3); }

.full-width { width: 100%; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #1a2744 0%, #2a3d66 40%, #3d5a8a 70%, #5a7fb0 100%);
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(200,164,94,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(90,127,176,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.pexels.com/photos/4116291/pexels-photo-4116291.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 800px;
}

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

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  max-width: 600px; margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; margin-bottom: 48px;
}

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem; font-weight: 500;
  backdrop-filter: blur(8px);
}

/* SECTION COMMON */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-eyebrow {
  font-size: 0.813rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}
.section-sub { color: var(--gray-600); font-size: 1.063rem; }

/* SERVICES */
.services { padding: 100px 24px; }

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

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.188rem; font-weight: 700;
  margin-bottom: 12px; color: var(--navy);
}
.card p { color: var(--gray-600); font-size: 0.938rem; line-height: 1.7; }

/* ABOUT */
.about { padding: 100px 24px; background: var(--white); }

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

.about-images {
  position: relative;
  min-height: 420px;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 360px; object-fit: cover; }
.about-img-float {
  position: absolute; bottom: -32px; right: -24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-float img { width: 100%; height: 200px; object-fit: cover; }

.about-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 20px;
}
.about-text > p {
  color: var(--gray-600);
  font-size: 1.063rem;
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-list {
  list-style: none; margin-top: 28px;
  display: grid; gap: 14px;
}
.about-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.938rem; color: var(--gray-800);
}
.about-list li svg { flex-shrink: 0; margin-top: 2px; }

/* WHY US */
.why-us { padding: 100px 24px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem; font-weight: 700;
  margin-bottom: 12px; color: var(--navy);
}
.why-card p { color: var(--gray-600); font-size: 0.938rem; line-height: 1.7; }

/* CTA */
.cta-section {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(200,164,94,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 640px;
}
.cta-eyebrow {
  font-size: 0.813rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.cta-inner h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 20px;
}
.cta-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.063rem;
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* CONTACT */
.contact { padding: 100px 24px; background: var(--white); }

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

.contact-info h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}
.contact-intro {
  color: var(--gray-600);
  font-size: 1.063rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-details { display: grid; gap: 28px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 14px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
}
.contact-item dt {
  font-size: 0.813rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 4px;
}
.contact-item dd {
  font-size: 1rem; color: var(--navy); font-weight: 500;
  line-height: 1.6;
}
.contact-item a { color: var(--navy); transition: color var(--transition); }
.contact-item a:hover { color: var(--gold); }

/* FORM */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-200);
}
.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.form-note {
  color: var(--gray-600);
  font-size: 0.938rem;
  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.875rem; font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.938rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,164,94,0.2);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: var(--radius);
  background: #ecfdf5;
  color: #065f46;
  font-size: 0.938rem;
  font-weight: 500;
  text-align: center;
}

/* MAP */
.map-section { height: 320px; }
.map-section iframe { display: block; }

/* FOOTER */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 24px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p { margin-top: 16px; font-size: 0.938rem; line-height: 1.7; max-width: 280px; }
.footer-brand .logo { margin-bottom: 4px; }
.footer h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.813rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer ul { list-style: none; display: grid; gap: 12px; }
.footer ul a {
  font-size: 0.938rem;
  transition: color var(--transition);
}
.footer ul a:hover { color: var(--white); }
.footer address { font-style: normal; line-height: 1.7; font-size: 0.938rem; }
.footer p { font-size: 0.938rem; }
.footer a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.footer-bottom p {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

/* REVEAL ANIMATION */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-cta { display: none; }

  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 32px 24px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.125rem;
    padding: 14px 16px;
  }

  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { min-height: 280px; }
  .about-img-float { right: 0; bottom: -20px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; align-items: center; }
}
