@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy:       #0F2340;
  --navy-mid:   #1B3A5C;
  --blue:       #2D5A8E;
  --off-white:  #F7F8FA;
  --border:     #E2E8F0;
  --text:       #4A5568;
  --heading:    #1A202C;
  --muted:      #8896A8;
  --white:      #FFFFFF;
  --max:        1080px;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Inter', -apple-system, system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.nav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img { height: 34px; width: auto; }

.nav-brand-text {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.015em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a.active { font-weight: 500; }

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 0.4rem 1.1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.nav-cta:hover { background: var(--navy); color: var(--white); }

.nav-links a.nav-pay,
.nav-pay {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff !important;
  background: #2471b8;
  padding: 0.45rem 1.25rem;
  border-radius: 4px;
  text-decoration: none !important;
  transition: background 0.15s;
  letter-spacing: 0.01em;
  border: none;
}
.nav-links a.nav-pay:hover,
.nav-pay:hover { 
  background: #1a5a96; 
  color: #ffffff !important;
}

/* ── HERO ── */
.hero {
  padding: 5.5rem 2rem 5rem;
  border-bottom: 1px solid var(--border);
}

.hero-inner { max-width: var(--max); margin: 0 auto; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  max-width: 500px;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.btn-row { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--navy);
  padding: 0.72rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--navy-mid); }

.btn-ghost {
  font-size: 14px;
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
}
.btn-ghost:hover { text-decoration: underline; }

/* ── SECTIONS ── */
.section {
  padding: 4.5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.section-inner { max-width: var(--max); margin: 0 auto; }

.section-heading {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section-intro {
  font-size: 15px;
  color: var(--text);
  max-width: 580px;
  margin-bottom: 3rem;
  line-height: 1.8;
  font-weight: 300;
}

/* ── SERVICE CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem;
}

.card-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.card-text { font-size: 14px; line-height: 1.75; }

.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
}
.card-link:hover { text-decoration: underline; }

/* ── DIFFERENTIATORS ── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.diff-rule { width: 28px; height: 3px; background: var(--navy); margin-bottom: 1rem; }

.diff-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.diff-text { font-size: 14px; line-height: 1.75; }

/* ── CALLOUT ── */
.callout {
  background: var(--navy);
  padding: 3.5rem 2rem;
}

.callout-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.callout-text {
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  color: var(--white);
  max-width: 560px;
  line-height: 1.4;
}

.callout-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
  font-weight: 300;
  line-height: 1.6;
}

.btn-light {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  padding: 0.72rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}
.btn-light:hover { background: #e8f0f8; }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem;
}

.page-header-inner { max-width: var(--max); margin: 0 auto; }

.page-title {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 500;
  color: var(--navy);
  max-width: 620px;
  line-height: 1.2;
}

.page-sub {
  font-size: 16px;
  color: var(--text);
  max-width: 520px;
  margin-top: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

/* ── SERVICE DETAIL ── */
.svc-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}

.svc-label {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  border-left: 3px solid var(--navy);
  padding-left: 1rem;
  line-height: 1.3;
}

.svc-body { font-size: 15px; line-height: 1.85; }

.svc-body p { margin-bottom: 1rem; }
.svc-body p:last-child { margin-bottom: 0; }

.svc-list {
  list-style: none;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.svc-list li {
  font-size: 14px;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.svc-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--navy);
}

/* ── PILLS ── */
.pill-group { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }

.pill {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy-mid);
  background: #EDF4FF;
  border: 1px solid #BFDBFE;
  padding: 0.28rem 0.75rem;
  border-radius: 20px;
}

/* ── PHOTO INTRO ── */
.photo-intro {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.photo-col img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.photo-intro-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.photo-intro-cred {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.photo-intro-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
}

.photo-intro-text p { margin-bottom: 1rem; }
.photo-intro-text p:last-child { margin-bottom: 0; }

/* ── CLIENTS ── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.client-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
}

.client-card-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.client-card-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text);
}

/* ── ABOUT ── */
.about-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}

.about-prose { font-size: 15px; line-height: 1.9; }
.about-prose p { margin-bottom: 1.25rem; }
.about-prose p:last-child { margin-bottom: 0; }

.about-section-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.sidebar-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.sidebar-box-title {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 1rem;
}

.sidebar-row {
  font-size: 13px;
  color: var(--text);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.sidebar-row:last-child { border-bottom: none; }

/* ── CONTACT PAGE ── */
.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.contact-info-sub {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

.contact-detail-row {
  display: flex;
  gap: 0.75rem;
  font-size: 14px;
  margin-bottom: 0.75rem;
  align-items: flex-start;
}

.contact-detail-key {
  font-weight: 500;
  color: var(--navy);
  min-width: 52px;
  flex-shrink: 0;
  font-size: 13px;
  padding-top: 1px;
}

.referral-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--navy);
  border-radius: 0 6px 6px 0;
  padding: 1.25rem 1.5rem;
  margin-top: 2.5rem;
}

.referral-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.referral-text { font-size: 13px; line-height: 1.7; }

/* ── FORM ── */
.form-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.75rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }

.form-label { font-size: 13px; font-weight: 500; color: var(--navy); }

.form-input,
.form-select,
.form-textarea {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--heading);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.65rem 0.9rem;
  width: 100%;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--navy); }

.form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

.form-submit {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--navy);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s;
  align-self: flex-start;
  letter-spacing: 0.01em;
}
.form-submit:hover { background: var(--navy-mid); }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 2.25rem 2rem;
  text-align: center;
}

.footer-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0.4rem;
}

.footer-meta { font-size: 12px; color: rgba(255,255,255,0.4); }

.footer-meta a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer-meta a:hover { color: rgba(255,255,255,0.75); }

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .svc-block { grid-template-columns: 1fr; gap: 1.25rem; }
  .about-grid { grid-template-columns: 1fr; }
  .photo-intro { grid-template-columns: 1fr; }
  .photo-col img { max-width: 240px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .callout-inner { flex-direction: column; }
  .diff-grid { gap: 2rem; }
  .clients-grid { grid-template-columns: 1fr; }
}

/* ── MOBILE NAV ── */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--navy);
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 2rem;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  display: block;
}

.nav-mobile-menu a.nav-pay {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: #1a6fbc !important;
  background: none;
  padding: 1.1rem 0;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.01em;
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .svc-block { grid-template-columns: 1fr; gap: 1.25rem; }
  .about-grid { grid-template-columns: 1fr; }
  .photo-intro { grid-template-columns: 1fr; }
  .photo-col img { max-width: 200px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .callout-inner { flex-direction: column; }
  .diff-grid { gap: 2rem; }
  .clients-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 1.25rem; }
  .hero { padding: 3rem 1.25rem; }
  .page-header { padding: 2.5rem 1.25rem; }
  .svc-block { padding: 2.5rem 1.25rem; }
}
