/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1a2e;
  background: #fff;
  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; }

/* ── Tokens ── */
:root {
  --navy:    #0B1D3A;
  --navy-mid:#132D54;
  --gold:    #C8A44E;
  --gold-lt: #E2C97E;
  --cream:   #F7F4EC;
  --gray:    #6B7280;
  --gray-lt: #F3F4F6;
  --white:   #FFFFFF;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(11,29,58,.08);
  --shadow-lg: 0 12px 48px rgba(11,29,58,.12);
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); box-shadow: var(--shadow); }
.btn--dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--dark:hover { background: var(--navy-mid); box-shadow: var(--shadow); }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline-light:hover { background: var(--white); color: var(--navy); }
.btn--full { width: 100%; }

/* ── Section Eyebrow & Title ── */
.section-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-header { text-align: center; margin-bottom: 56px; }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(11,29,58,.08);
  backdrop-filter: blur(8px);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.05rem; color: var(--navy);
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: .85rem; font-weight: 700;
}
.primary-nav ul { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.primary-nav a {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  transition: background .2s, color .2s;
}
.primary-nav a:hover { background: var(--gray-lt); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
  position: relative;
  margin-left: auto;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s;
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute; left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after  { top:  7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  padding-top: 72px;
  background: var(--cream);
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}
.hero-eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { position: relative; }
.hero-image img {
  width: 100%; height: 720px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero-stat-card {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--navy);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero-stat-card .stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-card .stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
}

/* ── About ── */
.about { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap img {
  width: 100%; height: 640px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-content .section-title { margin-bottom: 24px; }
.about-content p { color: var(--gray); margin-bottom: 16px; line-height: 1.75; }
.about-bullets { margin: 28px 0 36px; display: grid; gap: 12px; }
.about-bullets li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500; color: var(--navy);
}
.about-bullets span {
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700;
  flex-shrink: 0;
}

/* ── Services ── */
.services {
  padding: 100px 0;
  background: var(--navy);
}
.services .section-eyebrow { color: var(--gold); }
.services .section-title { color: var(--white); text-align: center; margin-bottom: 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: background .25s, transform .2s;
}
.service-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.service-icon {
  width: 56px; height: 56px;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p { color: rgba(255,255,255,.65); line-height: 1.75; }

/* ── Areas ── */
.areas { padding: 100px 0; background: var(--cream); }
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.areas-content .section-title { margin-bottom: 20px; }
.areas-content p { color: var(--gray); line-height: 1.75; margin-bottom: 28px; }
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.area-list li {
  display: flex; align-items: center; gap: 10px;
  font-weight: 500; color: var(--navy);
}
.area-list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.areas-image img {
  width: 100%; height: 700px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ── Testimonials ── */
.testimonials { padding: 100px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--gray-lt);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  position: absolute; top: 16px; left: 28px;
  opacity: .5;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 20px;
  padding-top: 32px;
}
.testimonial-author {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray);
}

/* ── CTA ── */
.cta {
  padding: 100px 0;
  background: var(--navy);
  text-align: center;
}
.cta-eyebrow { color: var(--gold) !important; }
.cta-title { color: var(--white); margin-bottom: 20px; }
.cta-text {
  color: rgba(255,255,255,.65);
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ── */
.contact { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-desc { color: var(--gray); line-height: 1.75; margin-bottom: 28px; }
.contact-details { margin-bottom: 28px; line-height: 2; }
.contact-details a { color: var(--gold); font-weight: 600; transition: color .2s; }
.contact-details a:hover { color: var(--navy); }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* Form */
.contact-form-wrap {
  background: var(--gray-lt);
  border-radius: var(--radius);
  padding: 40px;
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .85rem;
  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 #d1d5db;
  border-radius: 8px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  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,78,.2);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  margin-top: 16px;
  padding: 14px 18px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  color: #065f46;
  font-size: .9rem;
  font-weight: 500;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo-mark { margin-bottom: 12px; }
.footer-brand .logo-text { color: var(--white); font-weight: 700; font-size: 1.1rem; display: block; margin-bottom: 8px; }
.footer-tagline { font-size: .9rem; line-height: 1.6; color: rgba(255,255,255,.5); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { color: var(--gold); font-weight: 500; transition: color .2s; }
.footer-contact a:hover { color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ── Mobile Nav ── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .primary-nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 99;
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .primary-nav a { padding: 14px 16px; font-size: 1.05rem; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .areas-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .hero-image { order: -1; }
  .hero-image img { height: 420px; }
  .hero-stat-card { bottom: -16px; left: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-image img { height: 420px; }
  .about-image-wrap img { height: 420px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 24px; }
}
