:root {
  --navy: #1a2744;
  --navy-light: #2a3d62;
  --gold: #a08850;
  --gold-light: #c4ad7a;
  --bg: #f7f6f3;
  --bg-white: #ffffff;
  --text-dark: #2c2c2c;
  --text-medium: #444444;
  --text-light: #777777;
  --border: #d8d5ce;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 16px; line-height: 1.7; color: var(--text-dark); background-color: var(--bg);
  font-weight: 500;
}
img { max-width: 100%; height: auto; }
a { color: var(--navy); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--gold); }

.nav {
  position: sticky; top: 0; z-index: 100; background: var(--navy);
  padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px; font-weight: 600; color: var(--bg); letter-spacing: 0.5px;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(247,246,243,1); font-size: 14px; font-weight: 400;
  font-family: 'Inter', -apple-system, sans-serif;
  letter-spacing: 1.2px; text-transform: uppercase; text-decoration: none;
  transition: color 0.3s; cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }

.hero {
  position: relative; height: 650px; display: flex;
  align-items: center; justify-content: center; overflow: hidden;
}
.hero-map { background-color: #e8e6e1; }
.hero-nyc { background-color: var(--navy); }
.hero-image {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-map .hero-image {
  object-position: center 0%;
}
.hero-nyc .hero-image { object-position: center 25%; }

.section { padding: 48px 40px; max-width: 960px; margin: 0 auto; }
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px; font-weight: 500; color: var(--navy); margin-bottom: 24px;
}
.section-title::after {
  content: ''; display: block; width: 48px; height: 2px;
  background: var(--gold); margin-top: 16px;
}
.section-text { font-size: 16px; line-height: 1.8; color: var(--text-medium); max-width: 720px; }

.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 16px; }
.service-card {
  padding: 28px; background: var(--bg-white); border: 1px solid var(--border);
  border-radius: 2px; transition: border-color 0.3s;
}
.service-card:hover { border-color: var(--gold); }
.service-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 16px;
}
.service-card p { font-size: 16px; line-height: 1.75; color: var(--text-medium); }

.bio { display: flex; gap: 36px; align-items: flex-start; padding: 36px 0; }
.bio + .bio { border-top: 1px solid var(--border); }
.bio-photo {
  flex-shrink: 0; width: 130px; height: 130px; border-radius: 50%;
  background: var(--border); display: flex; align-items: center;
  justify-content: center; overflow: hidden; margin-top: 4px;
}
.bio-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.bio-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 4px;
}
.bio-location {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px; color: var(--gold); letter-spacing: 1.2px;
  text-transform: uppercase; margin-bottom: 20px; font-weight: 500;
}
.bio-text { font-size: 16px; line-height: 1.8; color: var(--text-medium); }
.bio-text p { margin-bottom: 14px; }
.bio-text p:last-child { margin-bottom: 0; }

.contact {
  background: var(--navy); padding: 44px 40px; text-align: center;
}
.contact-inner { max-width: 960px; margin: 0 auto; }
.contact-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px; font-weight: 500; color: #fff; margin-bottom: 28px;
}
.contact-details { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.contact-item { color: rgba(255,255,255,0.7); font-size: 15px; font-family: 'Inter', -apple-system, sans-serif; }
.contact-item strong {
  display: block; color: var(--gold-light); font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; font-weight: 500;
}
.contact-item a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.contact-item a:hover { color: var(--gold-light); }

.footer { background: #141f33; padding: 24px 40px; text-align: center; }
.footer p { font-size: 13px; color: rgba(255,255,255,0.4); font-family: 'Inter', -apple-system, sans-serif; }

@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-brand { font-size: 20px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; letter-spacing: 0.8px; }
  .hero { height: auto; overflow: hidden; }
  .hero-image { position: static; width: 100%; height: auto; object-fit: contain; }
  .section { padding: 40px 24px; }
  .section-title { font-size: 28px; margin-bottom: 20px; }
  .section-title::after { margin-top: 12px; }
  .section-text { font-size: 15px; line-height: 1.75; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card { padding: 24px; }
  .service-card h3 { font-size: 20px; margin-bottom: 12px; }
  .service-card p { font-size: 15px; }
  .bio { flex-direction: column; align-items: center; text-align: center; gap: 20px; padding: 32px 0; }
  .bio-text { text-align: left; font-size: 15px; }
  .bio-photo { width: 110px; height: 110px; }
  .bio-name { font-size: 23px; }
  .bio-location { margin-bottom: 16px; }
  .bio-text p { margin-bottom: 16px; }
  .contact { padding: 36px 24px; }
  .contact-title { font-size: 24px; margin-bottom: 24px; }
  .contact-details { flex-direction: column; gap: 24px; }
  .contact-item { font-size: 14px; }
  .footer { padding: 20px 24px; }
  .footer p { font-size: 12px; }
}

@media (max-width: 480px) {
  .nav { flex-direction: column; height: auto; padding: 14px 20px; gap: 10px; }
  .nav-brand { font-size: 19px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 12px; letter-spacing: 0.6px; }
  .section { padding: 32px 20px; }
  .section-title { font-size: 26px; }
  .services-grid { gap: 16px; }
  .service-card { padding: 20px; }
  .bio-photo { width: 100px; height: 100px; }
  .bio-name { font-size: 22px; }
  .contact { padding: 32px 20px; }
}
