@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ── Tokens ── */
:root {
  --slate:       #2E3D4A;
  --slate-dark:  #1E2D38;
  --copper:      #C47A52;
  --copper-lt:   #D4916C;
  --cream:       #F1EDE6;
  --pearl:       #E8E2D8;
  --mist:        #7A8E96;
  --white:       #FFFFFF;
  --fd: 'Playfair Display', Georgia, serif;
  --fb: 'DM Sans', system-ui, sans-serif;
  --mw: 1160px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--fb); color: var(--slate); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Layout ── */
.container { max-width: var(--mw); margin: 0 auto; padding: 0 48px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-cream { background: var(--cream); }
.bg-slate { background: var(--slate); }
.bg-dark  { background: var(--slate-dark); }
.bg-white { background: var(--white); }
.grid-2      { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3      { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
/* Footer 4-col grid — used via inline style, collapses here */
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }

/* ── Nav ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--pearl);
  padding: 0 48px; height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 2px 24px rgba(46,61,74,0.08); }
.nav-logo { display: flex; flex-direction: column; }
.nav-logo-name { font-family: var(--fd); font-size: 16px; font-weight: 600; letter-spacing: 0.04em; color: var(--slate); line-height: 1; }
.nav-logo-rule { height: 2px; background: var(--copper); margin: 4px 0 3px; width: 100%; }
.nav-logo-sub  { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mist); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 13.5px; color: var(--mist); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--slate); }
.nav-links .nav-cta {
  background: var(--slate); color: var(--white) !important;
  padding: 10px 22px; border-radius: 6px; font-size: 13px !important; margin-left: 8px;
  transition: background 0.2s !important;
}
.nav-links .nav-cta:hover { background: var(--slate-dark) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--slate); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--slate-dark); flex-direction: column;
  align-items: center; justify-content: center; gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--fd); font-size: 30px; color: var(--cream); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--copper); }
.mobile-close {
  position: absolute; top: 24px; right: 32px;
  background: none; border: none; cursor: pointer;
  color: var(--cream); font-size: 36px; line-height: 1;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 6px; font-family: var(--fb); font-size: 14px;
  cursor: pointer; transition: all 0.2s; padding: 13px 26px;
  border: none; font-weight: 400; letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary      { background: var(--slate); color: var(--white); }
.btn-primary:hover { background: var(--slate-dark); }
.btn-outline      { background: transparent; color: var(--slate); border: 1.5px solid var(--slate); }
.btn-outline:hover { background: var(--slate); color: var(--white); }
.btn-copper       { background: var(--copper); color: var(--white); }
.btn-copper:hover  { background: var(--copper-lt); }
.btn-ghost-light  { background: transparent; color: var(--cream); border: 1.5px solid rgba(241,237,230,0.4); }
.btn-ghost-light:hover { background: rgba(241,237,230,0.08); border-color: rgba(241,237,230,0.7); }
.btn-light        { background: var(--cream); color: var(--slate); }
.btn-light:hover   { background: var(--pearl); }

/* ── Typography ── */
.overline {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--copper);
  display: block; margin-bottom: 14px; font-family: var(--fb);
}
.overline-mist { color: var(--mist) !important; }
h1, .h1 { font-family: var(--fd); font-size: clamp(32px, 5vw, 58px); line-height: 1.15; color: var(--slate); font-weight: 600; }
h2, .h2 { font-family: var(--fd); font-size: clamp(26px, 3.5vw, 42px); line-height: 1.2; color: var(--slate); font-weight: 600; }
h3, .h3 { font-family: var(--fd); font-size: clamp(18px, 2.5vw, 22px); line-height: 1.3; color: var(--slate); font-weight: 600; }
h4, .h4 { font-family: var(--fd); font-size: clamp(16px, 2vw, 18px); line-height: 1.4; color: var(--slate); font-weight: 400; }
.lead    { font-size: clamp(16px, 2vw, 18px); line-height: 1.8; color: var(--mist); }
.body-lg { font-size: 16px; line-height: 1.8; color: var(--mist); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--cream); }
.on-dark .lead, .on-dark p, .on-dark .body-lg { color: rgba(241,237,230,0.7); }
.on-dark .overline { color: var(--copper); }
.copper-rule        { height: 2px; background: var(--copper); width: 48px; margin: 18px 0; }
.copper-rule-center { height: 2px; background: var(--copper); width: 48px; margin: 18px auto; }

/* ── Hero ── */
.hero { background: var(--cream); padding: 96px 0 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; padding-bottom: 64px; }
.hero-punchline { font-family: var(--fd); font-size: clamp(17px, 2.2vw, 24px); font-style: italic; color: var(--copper); margin: 14px 0 24px; line-height: 1.5; }
.hero-lead { font-size: clamp(15px, 1.8vw, 17px); line-height: 1.8; color: var(--mist); margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo-wrap { display: flex; justify-content: flex-end; }
.hero-photo-frame {
  width: 100%; max-width: 400px; border-radius: 14px;
  overflow: hidden; background: var(--pearl);
  position: relative; aspect-ratio: 3/4;
  box-shadow: 0 24px 64px rgba(46,61,74,0.12);
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--slate); padding: 14px 18px;
}
.hero-photo-caption p:first-child { font-family: var(--fd); font-size: 14px; color: var(--cream); }
.hero-photo-caption p:last-child { font-size: 10.5px; color: rgba(241,237,230,0.55); margin-top: 2px; letter-spacing: 0.04em; }

/* ── Credentials bar ── */
.creds-bar { background: var(--slate); padding: 18px 48px; display: flex; flex-wrap: wrap; }
.cred { padding: 8px 36px 8px 0; margin-right: 36px; border-right: 1px solid rgba(241,237,230,0.15); }
.cred:last-child { border-right: none; }
.cred-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(241,237,230,0.4); display: block; margin-bottom: 3px; }
.cred-value { font-size: 13px; color: rgba(241,237,230,0.85); }

/* ── Service cards ── */
.service-card {
  background: var(--white); border-radius: 12px;
  padding: 36px 32px; border: 1px solid var(--pearl);
  transition: border-color 0.25s, transform 0.25s;
  display: flex; flex-direction: column;
}
.service-card:hover { border-color: var(--copper); transform: translateY(-3px); }
.service-icon {
  width: 52px; height: 52px; background: var(--cream);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin-bottom: 22px; flex-shrink: 0;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p  { color: var(--mist); font-size: 15px; line-height: 1.75; flex: 1; }
.service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 22px; font-size: 13.5px; color: var(--copper); font-weight: 500; transition: gap 0.2s; }
.service-link:hover { gap: 10px; }

/* ── Creds bar number style ── */
.cred-num { font-family: var(--fd); font-size: 28px; color: var(--copper); line-height: 1; margin-bottom: 4px; }

/* ── Stats ── */
.stat-num { font-family: var(--fd); font-size: clamp(36px, 5vw, 48px); color: var(--copper); line-height: 1; }
.stat-label { font-size: 14px; color: var(--mist); margin-top: 6px; line-height: 1.4; }
.stat-label-light { color: rgba(241,237,230,0.6) !important; }

/* ── Page hero ── */
.page-hero { background: var(--slate); padding: 88px 0 80px; }
.page-hero h1 { color: var(--cream); }
.page-hero .lead { color: rgba(241,237,230,0.68); max-width: 600px; margin-top: 16px; }
.page-hero-inner { max-width: 680px; }

/* ── Pullquote ── */
.pullquote { font-family: var(--fd); font-size: clamp(17px, 2.5vw, 26px); line-height: 1.6; font-style: italic; color: var(--slate); }
.pullquote-attr { font-size: 13px; color: var(--copper); margin-top: 18px; letter-spacing: 0.04em; }

/* ── Process steps ── */
.process-step { display: flex; gap: 28px; padding: 32px 0; border-bottom: 1px solid var(--pearl); }
.process-step:last-child { border-bottom: none; }
.step-num { font-family: var(--fd); font-size: 38px; color: var(--pearl); line-height: 1; min-width: 52px; flex-shrink: 0; }
.step-body h3 { margin-bottom: 8px; }
.step-body p  { font-size: 15px; color: var(--mist); line-height: 1.75; }

/* ── Tags ── */
.tag    { display: inline-block; font-size: 12.5px; background: var(--pearl); color: var(--slate); padding: 6px 14px; border-radius: 4px; }
.tag-sm { font-size: 11.5px; padding: 4px 10px; }

/* ── Split ── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; }
.split-panel   { padding: 80px 64px; }

/* ── About photo ── */
.about-photo { width: 100%; border-radius: 12px; object-fit: cover; aspect-ratio: 4/5; }

/* ── Award items ── */
.award-item { padding: 20px 0; border-bottom: 1px solid var(--pearl); display: flex; gap: 20px; align-items: flex-start; }
.award-item:last-child { border-bottom: none; }
.award-dot  { width: 8px; height: 8px; background: var(--copper); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.award-body h4 { font-family: var(--fd); font-size: 16px; color: var(--slate); margin-bottom: 4px; font-weight: 400; }
.award-body p  { font-size: 13.5px; color: var(--mist); }

/* ── Track cards ── */
.track-card        { background: var(--white); border-radius: 12px; padding: 40px; border: 1px solid var(--pearl); }
.track-card-accent { border-top: 3px solid var(--copper); }

/* ── CTA section ── */
.cta-section    { background: var(--slate-dark); padding: 88px 0; text-align: center; }
.cta-section h2 { color: var(--cream); margin-bottom: 16px; }
.cta-section p  { color: rgba(241,237,230,0.65); max-width: 520px; margin: 0 auto 36px; font-size: 17px; line-height: 1.75; }
.cta-actions    { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact form ── */
.form-group { margin-bottom: 22px; }
.form-label { font-size: 12.5px; font-weight: 500; color: var(--slate); display: block; margin-bottom: 7px; letter-spacing: 0.04em; }
.form-input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--pearl); border-radius: 6px;
  font-size: 15px; font-family: var(--fb); color: var(--slate);
  background: var(--white); transition: border-color 0.2s; outline: none;
}
.form-input:focus { border-color: var(--copper); }
textarea.form-input { resize: vertical; min-height: 140px; }
select.form-input   { appearance: none; }
.form-name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Footer ── */
.footer           { background: var(--slate-dark); padding: 72px 0 32px; }
.footer-logo-name { font-family: var(--fd); font-size: 18px; color: var(--cream); letter-spacing: 0.03em; }
.footer-logo-rule { height: 2px; background: var(--copper); margin: 7px 0 5px; }
.footer-logo-sub  { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(241,237,230,0.38); }
.footer-col-head  { font-size: 10.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(241,237,230,0.38); margin-bottom: 18px; }
.footer-link      { font-size: 14px; color: rgba(241,237,230,0.62); display: block; margin-bottom: 12px; transition: color 0.2s; }
.footer-link:hover { color: var(--cream); }
.footer-bottom    { border-top: 1px solid rgba(241,237,230,0.1); margin-top: 56px; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy      { font-size: 12px; color: rgba(241,237,230,0.3); }

/* ── Responsive: Tablet (≤960px) ── */
@media (max-width: 960px) {
  .container { padding: 0 32px; }
  .site-nav, .creds-bar { padding-left: 32px; padding-right: 32px; }
  .hero-grid, .grid-2 { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo-wrap { justify-content: center; }
  .hero-photo-frame { max-width: 380px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
  .split-section { grid-template-columns: 1fr; }
  .split-panel { padding: 56px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .track-card { padding: 28px 24px; }
}

/* ── Responsive: Mobile (≤600px) ── */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .site-nav, .creds-bar { padding-left: 20px; padding-right: 20px; }
  .grid-3, .grid-2-auto { grid-template-columns: 1fr; }
  .creds-bar { flex-direction: column; }
  .cred { border-right: none; border-bottom: 1px solid rgba(241,237,230,0.1); margin: 0; padding: 10px 0; }
  .hero { padding-top: 48px; }
  .hero-photo-frame { max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section { padding: 56px 0; }
  .section-sm { padding: 36px 0; }
  .split-panel { padding: 40px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .form-name-row { grid-template-columns: 1fr; }
  .stat-num { font-size: 36px; }
  .page-hero { padding: 56px 0 48px; }
  .pullquote { font-size: 17px; }
  .process-step { gap: 16px; }
  .step-num { font-size: 28px; min-width: 36px; }
  .service-card { padding: 28px 24px; }
}

/* ── Responsive: Small mobile (≤380px) ── */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .nav-logo-name { font-size: 13px; }
}
