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

:root {
  --navy:    #1C2B3A;
  --navy-mid:#2A3F52;
  --teal:    #4E8C7E;
  --teal-lt: #EAF3F0;
  --teal-mid:#B8D8D2;
  --off:     #F5F4F1;
  --border:  rgba(28,43,58,0.12);
  --muted:   #5A6A76;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 2.5rem;
  background: #fff;
  border-bottom: 0.5px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.logo-mark {
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.2;
}

.logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--teal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

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

.nav-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 3px;
  border-bottom: 1.5px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

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

/* ── SHARED ── */
.section-hero {
  background: var(--navy);
  padding: 4.5rem clamp(1.25rem, 6vw, 5rem) 4rem;
}

.section-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  max-width: 720px;
  margin-bottom: 0.85rem;
}

.section-hero p {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  font-weight: 300;
  max-width: 640px;
  line-height: 1.75;
  font-style: italic;
}

.accent-bar {
  width: 28px;
  height: 2px;
  background: var(--teal);
  margin-bottom: 1.25rem;
}

.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 11px 24px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 0.5px solid rgba(255,255,255,0.35);
  padding: 11px 24px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
}

.cta-group { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 2rem; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  padding: 1.25rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer span {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
}

.site-footer a:hover {
  color: rgba(255,255,255,0.6);
  border-bottom-color: rgba(255,255,255,0.4);
}

/* ════════════════════════
   HOME PAGE
════════════════════════ */
.hero h1 em { font-style: italic; color: var(--teal-mid); }

.hero .sub {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  max-width: 460px;
  line-height: 1.8;
  margin-top: 1.25rem;
  font-weight: 300;
  font-style: normal;
}

.home-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid var(--border);
}

.home-col {
  padding: 3rem 2.5rem;
}

.home-col:first-child { border-right: 0.5px solid var(--border); }

.home-col p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1rem;
}

.home-col p:last-child { margin-bottom: 0; }
.home-col strong { color: var(--navy); font-weight: 500; }

.home-col .segments {
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.04em;
  margin-top: 1.5rem;
}

.service-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--off);
  border-bottom: 0.5px solid var(--border);
}

.tile {
  padding: 2rem 1.75rem;
  border-right: 0.5px solid var(--border);
}

.tile:last-child { border-right: none; }

.tile-num {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--teal-mid);
  margin-bottom: 0.6rem;
  line-height: 1;
}

.tile h3 {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.tile p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

.home-quote {
  padding: 3.5rem 2.5rem;
  background: var(--teal-lt);
  border-bottom: 0.5px solid var(--border);
}

.home-quote blockquote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.6;
  color: var(--navy);
  max-width: 600px;
  font-weight: 400;
}

.home-quote .attr {
  font-size: 11px;
  color: var(--teal);
  margin-top: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ════════════════════════
   ABOUT PAGE
════════════════════════ */
.about-hero {
  background: var(--navy);
  padding: 4rem clamp(1.25rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
}

.about-hero-portrait {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-hero-portrait img {
  display: block;
  border-radius: 50%;
  border: 2px solid rgba(78,140,126,0.45);
  box-shadow: 0 0 0 6px rgba(78,140,126,0.12);
  width: 160px;
  height: 160px;
  object-fit: cover;
}

.about-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.about-hero .location {
  font-size: 11px;
  color: var(--teal-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-hero .opening {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.62);
  font-weight: 300;
}

.competency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid var(--border);
}

.comp-block {
  padding: 2.5rem 2.5rem;
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.comp-block:nth-child(2) { border-right: none; }

.comp-block.full {
  grid-column: 1 / -1;
  border-right: none;
  border-bottom: none;
  background: var(--teal-lt);
}

.comp-num {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--teal-mid);
  margin-bottom: 0.6rem;
  line-height: 1;
}

.comp-block h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.comp-block p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
}

.about-transition {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 2.5rem;
  background: var(--off);
  border-bottom: 0.5px solid var(--border);
}

.about-transition p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1rem;
}

.about-transition p:last-child { margin-bottom: 0; }

.about-pull {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.about-closing {
  padding: 2.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.5px solid var(--border);
  gap: 2rem;
}

.about-closing p {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  max-width: 420px;
  line-height: 1.7;
}

.about-closing-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  flex-shrink: 0;
}

.about-closing-links a {
  font-size: 13px;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 0.5px solid var(--teal-mid);
  padding-bottom: 2px;
  white-space: nowrap;
}

/* ════════════════════════
   SERVICES PAGE
════════════════════════ */
.services-section {
  padding: 2.75rem clamp(1.25rem, 6vw, 5rem);
  border-bottom: 0.5px solid var(--border);
}

.services-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.services-section .intro {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 860px;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.service-item {
  background: #fff;
  padding: 1.75rem;
}

.service-item.full {
  grid-column: 1 / -1;
  background: var(--teal-lt);
}

.service-item.full.standalone {
  background: var(--teal-lt);
  border-top: 1px solid var(--border);
}

.service-item h3 {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

.service-item em {
  font-size: 11px;
  color: var(--teal);
  display: block;
  margin-top: 0.75rem;
}

.pkg-table-wrap { overflow-x: auto; margin-top: 1.25rem; }

.pkg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.pkg-table th {
  text-align: left;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  padding: 0 1.5rem 0.75rem 0;
  border-bottom: 0.5px solid var(--border);
}

.pkg-table td {
  padding: 0.75rem 1.5rem 0.75rem 0;
  border-bottom: 0.5px solid var(--border);
  color: var(--muted);
  font-weight: 300;
}

.pkg-table td:first-child {
  color: var(--navy);
  font-weight: 500;
}

.pkg-note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin-top: 0.85rem;
}

.services-cta {
  padding: 3rem clamp(1.25rem, 6vw, 5rem);
  background: var(--off);
}

.services-cta strong {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 400;
  display: block;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.services-cta p {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ════════════════════════
   INSIGHTS PAGE
════════════════════════ */
.insights-body {
  padding: 3rem 2.5rem;
  border-bottom: 0.5px solid var(--border);
}

.insights-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 580px;
}

.insights-placeholder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 3rem 2.5rem;
  background: var(--off);
  border-bottom: 0.5px solid var(--border);
  align-items: center;
}

.insights-placeholder p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

.li-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 2px;
  padding: 1.75rem;
}

.li-card .lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--teal);
  margin-bottom: 0.6rem;
}

.li-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1rem;
}

.li-card a {
  font-size: 13px;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 0.5px solid var(--teal-mid);
  padding-bottom: 2px;
}

.insights-formats {
  padding: 3rem 2.5rem;
}

.insights-formats h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.format-item {
  background: #fff;
  padding: 1.75rem;
}

.format-item h3 {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.format-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ════════════════════════
   CONTACT PAGE
════════════════════════ */
.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid var(--border);
}

.contact-detail {
  padding: 3rem 2.5rem;
  border-right: 0.5px solid var(--border);
}

.contact-detail h2,
.contact-form-wrap h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.contact-detail .name {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.contact-detail p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 0.25rem;
}

.contact-links {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-links a {
  font-size: 14px;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 0.5px solid var(--teal-mid);
  padding-bottom: 2px;
  display: inline-block;
}

.contact-response {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin-top: 1.5rem;
}

.contact-form-wrap { padding: 3rem 2.5rem; }

.contact-form-wrap label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 0.4rem;
  margin-top: 1.25rem;
}

.contact-form-wrap label:first-of-type { margin-top: 0; }

.contact-form-wrap input,
.contact-form-wrap textarea {
  display: block;
  width: 100%;
  border: 0.5px solid var(--border);
  border-radius: 2px;
  padding: 10px 14px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus { border-color: var(--teal); }

.contact-form-wrap textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.contact-form-wrap button {
  margin-top: 1.5rem;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 11px 26px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  border-radius: 2px;
  cursor: pointer;
}

/* ── RESPONSIVE (basic) ── */
@media (max-width: 720px) {
  .nav { padding: 1rem 1.25rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 12px; }
  .section-hero { padding: 3rem 1.25rem; }
  .about-hero { padding: 3rem 1.25rem; grid-template-columns: 1fr; }
  .about-hero-portrait { order: -1; margin-bottom: 0.5rem; }
  .home-body, .about-hero, .about-transition,
  .competency-grid, .insights-placeholder,
  .contact-body, .about-closing { grid-template-columns: 1fr; }
  .home-col:first-child { border-right: none; border-bottom: 0.5px solid var(--border); }
  .comp-block:nth-child(2) { border-right: none; }
  .service-tiles { grid-template-columns: 1fr; }
  .tile { border-right: none; border-bottom: 0.5px solid var(--border); }
  .services-grid, .format-grid { grid-template-columns: 1fr; }
  .service-item.full { grid-column: 1; }
  .contact-detail { border-right: none; border-bottom: 0.5px solid var(--border); }
  .services-section, .services-cta, .insights-body,
  .insights-placeholder, .insights-formats,
  .contact-detail, .contact-form-wrap,
  .about-closing { padding: 2rem 1.25rem; }
  .about-closing { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .about-closing-links { align-items: flex-start; }
  .site-footer { flex-direction: column; gap: 6px; padding: 1.25rem; }
}
