/* ============================================================
   MDC Tax Services — Main Stylesheet
   Color Palette:
     --navy-deep:   #1B1E3E
     --navy-dark:   #1D3052
     --navy-mid:    #2B4D6B
     --slate:       #37596E
     --gold:        #E3C170
     --gold-light:  #FAD493
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy-deep:  #1B1E3E;
  --navy-dark:  #1D3052;
  --navy-mid:   #2B4D6B;
  --slate:      #37596E;
  --gold:       #E3C170;
  --gold-light: #FAD493;
  --white:      #FFFFFF;
  --off-white:  #F7F6F2;
  --text-dark:  #1B1E3E;
  --text-muted: #5A6A7A;

  --font-heading: Constantia, Cambria, Charter, 'Bitstream Charter', serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1100px;
  --section-pad: 5rem 1.5rem;
  --radius: 4px;

  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p {
  font-size: 1rem;
  color: var(--text-dark);
  max-width: 65ch;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-pad);
}

.section--dark {
  background: var(--navy-deep);
  color: var(--white);
}

.section--dark p,
.section--dark .lead {
  color: rgba(255,255,255,0.8);
}

.section--navy {
  background: var(--navy-dark);
  color: var(--white);
}

.section--navy p,
.section--navy .lead {
  color: rgba(255,255,255,0.8);
}

.section--tint {
  background: var(--off-white);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section--dark .section__header h2,
.section--navy .section__header h2 {
  color: var(--white);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: transparent;
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--navy-deep);
  transform: translateY(-1px);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-1px);
}

/* ── Gold Divider ──────────────────────────────────────────── */
.gold-rule {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto 0;
}

.gold-rule--left {
  margin: 1rem 0 0;
}

/* ── Navigation ────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--navy-deep);
  padding: 0 3rem;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: background var(--transition);
}

.nav__logo {
  font-family: Georgia, serif;
  font-weight: bold;
  color: #E3C170;
  font-size: 28px;
  letter-spacing: 0.15em;
  text-decoration: none;
}


.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}

.nav__cta {
  padding: 0.5rem 1.4rem;
  font-size: 0.82rem;
  background: #1D3052;
  color: #E3C170;
  border-color: #E3C170;
}

.nav__cta:hover {
  background: #E3C170;
  color: #1D3052;
  border-color: #E3C170;
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy-dark) 55%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  padding: 120px 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E3C170' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  border-left: 3px solid var(--gold);
  padding-left: 0.75rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 55ch;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Pain Points ───────────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pain-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(227,193,112,0.2);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.pain-card__icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.pain-card h4 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pain-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  max-width: none;
}

/* ── Services Grid ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  border: 1px solid #E8E4DC;
  border-radius: var(--radius);
  padding: 2.25rem;
  transition: box-shadow var(--transition), transform var(--transition);
  background: var(--white);
  position: relative;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(27,30,62,0.1);
  transform: translateY(-3px);
}

.service-card__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  max-width: none;
}

.service-card__list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card__list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.service-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

/* ── Differentiator / Approach ─────────────────────────────── */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.approach__points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.approach__point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.approach__point-marker {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 1px;
  margin-top: 0.6em;
}

.approach__point h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.approach__point p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  max-width: none;
}

.approach__visual {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(227,193,112,0.2);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}

.approach__quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.5;
}

.approach__quote-attr {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── Team / Credibility ────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27,30,62,0.08);
}

.team-card__photo {
  height: 240px;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__photo-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(227,193,112,0.2);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
}

.team-card__body {
  padding: 1.75rem;
}

.team-card__name {
  font-size: 1.4rem;
  color: var(--navy-deep);
  margin-bottom: 0.25rem;
}

.team-card__title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.team-card__bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: none;
}

.team-card__credentials {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.team-card__credentials li {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}

.team-card__credentials li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(227,193,112,0.15);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
}

.testimonial-card__text {
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  padding-top: 1.5rem;
  max-width: none;
}

.testimonial-card__author {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-card--placeholder {
  opacity: 0.4;
  border-style: dashed;
}

.testimonial-card--placeholder .testimonial-card__text {
  color: rgba(255,255,255,0.4);
  font-style: normal;
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(227,193,112,0.1);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(227,193,112,0.07);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  margin: 0 auto 2rem;
  max-width: 55ch;
  text-align: center;
}

/* ── Contact Form ──────────────────────────────────────────── */
.form-wrap {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(27,30,62,0.12);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  grid-template-areas: "form context";
  gap: 5rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-layout > * {
  min-width: 0;
}

.contact-layout > :first-child {
  grid-area: context;
}

.contact-layout > :nth-child(2) {
  grid-area: form;
}

.form-group {
  margin-bottom: 1.5rem;
  min-width: 0;
}

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

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
select,
textarea {
  min-width: 0;
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid #D8D4CB;
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(43,77,107,0.12);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231D3052' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.form-confirmation {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-confirmation__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-confirmation h3 {
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

.form-confirmation p {
  color: var(--text-muted);
  text-align: center;
  max-width: none;
}

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
  padding: 130px 1.5rem 5rem;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero .lead {
  color: rgba(255,255,255,0.7);
  margin: 0 auto;
  max-width: 55ch;
  text-align: center;
}

/* ── Case Studies Placeholder ──────────────────────────────── */
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.case-study-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(227,193,112,0.15);
  border-radius: var(--radius);
  padding: 2.25rem;
}

.case-study-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.case-study-card h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.case-study-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  max-width: none;
}

.case-study-card--placeholder {
  opacity: 0.4;
  border-style: dashed;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  padding: 1.5rem 1.5rem 1rem;
  border-top: 1px solid rgba(227,193,112,0.15);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer__brand-name span {
  color: var(--gold);
}

.footer__logo {
  height: 12rem;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
}

.footer__tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 32ch;
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  max-width: var(--max-width);
  margin: 0.625rem auto 0;
  padding-top: 0.375rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ── Services Detail Page ──────────────────────────────────── */
.service-detail {
  padding: 4rem 0;
  border-bottom: 1px solid #EEE9E0;
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.service-detail__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.service-detail h2 {
  font-size: 2rem;
  color: var(--navy-dark);
  margin-bottom: 0;
}

.service-detail__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.service-detail__list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}

.service-detail__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 1px;
}

.service-detail__list li strong {
  display: block;
  color: var(--navy-dark);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

/* ── Not-offered Box ───────────────────────────────────────── */
.not-offered-box {
  background: var(--off-white);
  border-left: 4px solid var(--slate);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 2rem 2.25rem;
}

.not-offered-box h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

.not-offered-box ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.not-offered-box li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-dark);
  padding-left: 1.1rem;
  position: relative;
}

.not-offered-box li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
}

/* ── About Page ────────────────────────────────────────────── */
.about-mission-grid,
.about-clients-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.about-mission-grid {
  gap: 5rem;
}

.about-clients-grid {
  gap: 4rem;
  align-items: start;
}

.about-mission-grid > *,
.about-clients-grid > * {
  min-width: 0;
}

.about-quote-card {
  background: var(--off-white);
  border-radius: 4px;
  padding: 3rem;
  border-top: 4px solid var(--gold);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.value-card {
  padding: 2rem;
  border-top: 3px solid var(--gold);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(27,30,62,0.06);
  border-radius: 0 0 var(--radius) var(--radius);
}

.value-card__icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.1rem;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: none;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-pad: 3.5rem 1.25rem;
  }

  .site-nav {
    height: 72px;
    padding: 0 1.25rem;
  }

  .nav__links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    padding: 1.5rem;
    gap: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a::after {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__links .nav__cta {
    display: inline-block;
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 4rem;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-mission-grid,
  .about-clients-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-detail__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "context"
      "form";
    gap: 2.5rem;
  }

  .form-wrap {
    width: 100%;
    max-width: none;
    padding: 2rem 1.5rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 3rem 1rem;
  }

  .site-nav {
    padding: 0 1rem;
  }

  .contact-section .container {
    padding: 0;
  }

  .page-hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .form-wrap {
    padding: 1.5rem 1rem;
  }

  .about-quote-card {
    padding: 2rem 1.25rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}
