:root {
  --navy: #0b1f33;
  --navy-2: #102a44;
  --ink: #12263a;
  --gold: #c9a24b;
  --gold-2: #e0bd6a;
  --cream: #f7f3ea;
  --white: #ffffff;
  --muted: #5c6b7a;
  --line: #e7e1d3;
  --shadow: 0 20px 50px rgba(11, 31, 51, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-name { font-family: 'Playfair Display', Georgia, serif; }

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

.wrap { width: min(1160px, 90%); margin: 0 auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(201, 162, 75, 0.35);
}
.btn-gold:hover { box-shadow: 0 14px 28px rgba(201, 162, 75, 0.45); }

.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--cream);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.btn-dark {
  background: var(--navy);
  color: var(--cream);
}
.btn-dark:hover { background: var(--navy-2, #143457); }

.btn-block { width: 100%; text-align: center; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 31, 51, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { width: 40px; height: 40px; }
.brand-name { color: var(--cream); font-size: 1.35rem; font-weight: 800; }
.brand-name em { font-style: normal; color: var(--gold-2); }

.nav { display: flex; gap: 8px; margin-left: auto; }
.nav a {
  color: #dbe6f0;
  text-decoration: none;
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: color .15s, background .15s;
}
.nav a:hover { color: var(--gold-2); background: rgba(255,255,255,0.06); }

.nav-cta { margin-left: 4px; padding: 10px 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); display: block; }

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(201,162,75,0.22), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 70px 0 64px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.12;
  font-weight: 800;
}
.hero h1 span { color: var(--gold-2); }
.hero-sub { margin: 20px 0 28px; color: #cfdbe7; font-size: 1.08rem; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}
.stat strong { display: block; font-size: 1.5rem; font-family: 'Playfair Display', serif; color: var(--gold-2); }
.stat span { color: #aebccb; font-size: 0.85rem; }
.hero-visual { display: flex; justify-content: center; }
.hero-img { filter: drop-shadow(0 30px 40px rgba(0,0,0,0.35)); }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section-alt { background: var(--white); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.section-head h2, .split-copy h2, .contact-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--navy);
}
.section-head .eyebrow { margin-bottom: 12px; }

/* ===== Cards ===== */
.grid { display: grid; gap: 24px; }
.cards { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 26px;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-icon { width: 52px; height: 52px; margin-bottom: 18px; }
.card h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--navy); }
.card p { color: var(--muted); font-size: 0.95rem; }

/* ===== Split ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split-img { border-radius: 18px; box-shadow: var(--shadow); }
.split-copy h2 { margin-bottom: 18px; }
.split-copy > p { color: var(--muted); margin-bottom: 22px; }
.checklist { list-style: none; margin: 0 0 28px; }
.checklist li { padding: 9px 0 9px 34px; position: relative; color: var(--ink); }
.checklist li::before {
  content: "✓";
  position: absolute; left: 0; top: 9px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800; font-size: 0.8rem;
  display: grid; place-items: center;
}

/* ===== Offices ===== */
.offices { grid-template-columns: repeat(3, 1fr); }
.office {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.office:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.office-img { width: 100%; height: 200px; object-fit: cover; }
.office-body { padding: 22px 24px; }
.office h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 2px; }
.office-tag { font-size: 0.78rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.office-addr { color: var(--muted); font-size: 0.95rem; }
.office-phone { color: var(--navy); font-weight: 600; font-size: 0.95rem; margin-top: 8px; }

/* ===== Team ===== */
.grid.team { grid-template-columns: repeat(4, 1fr); }
.member { text-align: center; }
.member-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
figure * { margin: 0; }
.member h3 { font-size: 1.15rem; color: var(--navy); }
.member p { color: var(--muted); font-size: 0.9rem; }

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.g-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
  transition: transform .2s;
}
.g-img:hover { transform: scale(1.03); }

/* ===== Contact ===== */
.section-contact { background: var(--navy); color: var(--cream); }
.section-contact .contact-copy h2 { color: var(--cream); }
.section-contact .eyebrow { color: var(--gold-2); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-copy > p { color: #c3d0dd; margin-bottom: 24px; }
.contact-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 24px;
}
.contact-block h4 { font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; color: var(--gold-2); margin-bottom: 12px; }
.contact-block p { margin-bottom: 8px; color: #dbe6f0; font-size: 0.97rem; }
.contact-block a { color: var(--cream); }
.contact-block a:hover { color: var(--gold-2); }

.social { display: flex; gap: 12px; }
.social a {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--cream);
  text-decoration: none;
  font-weight: 700; font-size: 0.85rem;
  transition: background .15s, color .15s, transform .15s;
}
.social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

.contact-form {
  background: var(--cream);
  border-radius: 16px;
  padding: 30px;
  display: grid;
  gap: 14px;
  color: var(--ink);
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.2);
}
.form-note { text-align: center; font-size: 0.9rem; color: #2f7d46; font-weight: 600; }

/* ===== Footer ===== */
.footer { background: var(--navy); color: #a8b7c6; padding: 60px 0 40px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
}
.footer-brand p { margin-top: 14px; font-size: 0.85rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-links h4 { color: var(--cream); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-links a { display: block; color: #a8b7c6; text-decoration: none; margin-bottom: 9px; font-size: 0.92rem; }
.footer-links a:hover { color: var(--gold-2); }

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .cards, .offices { grid-template-columns: repeat(2, 1fr); }
  .grid.team { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-inner { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; padding: 48px 0; }
  .hero-visual { order: -1; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--navy);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 6px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 10px; }
  .nav-cta { margin: 10px 0 0; }
  .nav-toggle { display: flex; }
  .cards, .offices { grid-template-columns: 1fr; }
  .grid.team { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
}