/* ═══════════════════════════════════════════════
   FRM Cornerstone — Site Stylesheet
   Used across all pages of frmaccounting.com
   ═══════════════════════════════════════════════ */

:root {
  --dark:      oklch(28% 0.065 185);
  --dark-2:    oklch(22% 0.05 185);
  --teal:      oklch(67% 0.14 170);
  --teal-mid:  oklch(42% 0.09 180);
  --teal-lt:   oklch(96% 0.02 175);
  --teal-bg:   oklch(92% 0.04 175);
  --paper:     #ffffff;
  --paper-2:   oklch(98% 0.006 180);
  --gray:      oklch(48% 0.02 185);
  --gray-lt:   oklch(70% 0.02 185);
  --rule:      oklch(90% 0.015 175);
  --shadow:    0 4px 24px rgba(45, 77, 74, 0.06);
  --shadow-hover: 0 12px 40px rgba(45, 77, 74, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--teal-mid); }

/* ═══════════════ NAV ═══════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
nav .nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
/* Logo "build" entrance — clip-path wipe + scale bounce */
@keyframes logoBuild {
  0%   { clip-path: inset(0 100% 0 0); opacity: 0; transform: scale(0.98); }
  60%  { clip-path: inset(0 0 0 0); opacity: 1; transform: scale(1); }
  75%  { transform: scale(1.04); filter: drop-shadow(0 0 12px rgba(62, 201, 167, 0.4)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(62, 201, 167, 0)); }
}
nav .nav-logo { display: inline-block; }
nav .nav-logo img {
  height: 92px;
  display: block;
  animation: logoBuild 1.4s cubic-bezier(0.65, 0, 0.35, 1) both;
  transition: transform 0.25s ease, filter 0.25s ease;
}
nav .nav-logo:hover img {
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 6px 14px rgba(45, 77, 74, 0.18));
}
nav .nav-links {
  display: flex;
  gap: 36px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gray);
}
nav .nav-links a { transition: color 0.15s; }
nav .nav-links a:hover { color: var(--dark); }
nav .nav-cta {
  padding: 11px 22px;
  background: var(--dark);
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 6px;
  transition: background 0.15s, transform 0.15s;
}
nav .nav-cta:hover {
  background: var(--teal-mid);
  color: white;
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  nav .nav-links { display: none; }
  nav .nav-inner { padding: 14px 20px; gap: 16px; }
}

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 8px;
  transition: all 0.15s;
  display: inline-block;
}
.btn-primary {
  background: var(--dark);
  color: white;
}
.btn-primary:hover {
  background: var(--teal-mid);
  color: white;
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--rule);
}
.btn-secondary:hover {
  border-color: var(--dark);
  color: var(--dark);
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  background:
    radial-gradient(ellipse at top right, var(--teal-lt) 0%, transparent 60%),
    var(--paper);
  padding: 96px 32px 80px;
  border-bottom: 1px solid var(--rule);
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal-mid);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 8vw, 108px);
  font-weight: 700;
  line-height: 0.98;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero h1 .accent { color: var(--teal); font-style: italic; }
.hero-sub {
  font-size: 21px;
  color: var(--gray);
  line-height: 1.55;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-mid);
  font-weight: 600;
}
.hero-meta .dot { color: var(--rule); }

.hero-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: var(--shadow);
}
.hero-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-mid);
  font-weight: 600;
  margin-bottom: 22px;
}
.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-card-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 15px;
  color: var(--dark);
  line-height: 1.5;
  border-bottom: 1px solid var(--rule);
}
.hero-card-list li:last-child { border-bottom: none; }
.hero-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 16px;
  height: 2px;
  background: var(--teal);
}
.hero-card-list li strong { font-weight: 700; }

/* ═══════════════ DARK STRIPS ═══════════════ */
.strip-dark {
  background: var(--dark-2);
  color: white;
  padding: 96px 32px;
}
.strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.strip-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 18px;
}
.strip-dark h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 56px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.strip-dark h2 .accent { color: var(--teal); font-style: italic; }
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.strip-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 30px;
}
.strip-card.featured {
  background: var(--teal);
  border-color: var(--teal);
}
.strip-card.featured .strip-card-label { color: var(--dark); }
.strip-card.featured p { color: var(--dark-2); }
.strip-card-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 12px;
}
.strip-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

/* ═══════════════ SECTION FRAME ═══════════════ */
.section { padding: 96px 32px; }
.section-alt { background: var(--paper-2); }
.section-inner { max-width: 1280px; margin: 0 auto; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-head .left { max-width: 720px; }
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-mid);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.section-head h2 .accent { color: var(--teal); font-style: italic; }
.section-head .left p {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.55;
}
.section-link {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal-mid);
  white-space: nowrap;
}
.section-link:hover { color: var(--dark); }

/* ═══════════════ SERVICES TEASE ═══════════════ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-tease {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 32px 28px;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.svc-tease:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--teal-bg);
}
.svc-tease .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--teal-mid);
  font-weight: 600;
  margin-bottom: 14px;
}
.svc-tease h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}
.svc-tease p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.5;
}

/* ═══════════════ WHO WE SERVE ═══════════════ */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.serve-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 30px 28px;
  border-top: 4px solid var(--teal);
}
.serve-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.serve-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.5;
}

/* ═══════════════ MODERN WORKFLOWS ═══════════════ */
.modern-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.modern-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 16px 0 24px;
}
.modern-left h2 .accent { color: var(--teal); font-style: italic; }
.modern-left p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 18px;
}
.security-line {
  padding: 18px 22px;
  background: var(--teal-lt);
  border-left: 3px solid var(--teal);
  border-radius: 0 8px 8px 0;
  font-size: 14px !important;
  color: var(--dark) !important;
  margin-top: 24px !important;
}
.security-line strong { color: var(--teal-mid); }

.modern-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.modern-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 24px 24px;
}
.modern-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 10px;
}
.modern-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.modern-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

/* ═══════════════ FOUNDATION TEASER ═══════════════ */
.foundation-banner {
  background: var(--dark);
  color: white;
  border-radius: 20px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.foundation-left .section-eyebrow { color: var(--teal); }
.foundation-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 16px 0 20px;
}
.foundation-left h2 .accent { color: var(--teal); font-style: italic; }
.foundation-left p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  margin-bottom: 28px;
}
.foundation-left .btn-primary {
  background: var(--teal);
  color: var(--dark);
}
.foundation-left .btn-primary:hover {
  background: white;
  color: var(--dark);
}
.foundation-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.foundation-stat {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--teal);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.foundation-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--teal);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.foundation-stat .lbl {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ═══════════════ TIMELINE ═══════════════ */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--rule);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
}
.step .dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--dark);
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--paper);
}
.section-alt .step .dot { border-color: var(--paper-2); }
.step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.55;
}

/* ═══════════════ TESTIMONIAL ═══════════════ */
.testimonial-block {
  background: var(--paper);
  border: 1px dashed var(--rule);
  border-radius: 16px;
  padding: 64px 56px;
  text-align: center;
}
.testimonial-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-mid);
  font-weight: 600;
  margin-bottom: 24px;
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: var(--gray);
  line-height: 1.35;
  max-width: 920px;
  margin: 0 auto 28px;
  letter-spacing: -0.005em;
}
.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: var(--gray);
}
.testimonial-attr strong {
  color: var(--dark);
  font-size: 15px;
  font-weight: 600;
}

/* ═══════════════ FOOTER CTA ═══════════════ */
.footer-cta {
  background:
    radial-gradient(ellipse at bottom left, var(--teal-bg) 0%, transparent 60%),
    var(--paper-2);
  padding: 120px 32px;
  border-top: 1px solid var(--rule);
}
.footer-cta-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.footer-cta .eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-mid);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.footer-cta h2 .accent { color: var(--teal); font-style: italic; }
.footer-cta p {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.55;
  max-width: 640px;
  margin: 0 auto 40px;
}
.footer-cta .actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════ SITE FOOTER ═══════════════ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-brand img {
  height: 52px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.55;
  max-width: 360px;
  color: rgba(255,255,255,0.55);
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col li {
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.7);
}
.footer-col li a:hover { color: white; }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .tag { color: var(--teal); font-weight: 600; }

/* ═══════════════ ABOUT / CONTACT / SERVICES PAGE COMMONS ═══════════════ */
.page-hero {
  background:
    radial-gradient(ellipse at top right, var(--teal-lt) 0%, transparent 60%),
    var(--paper);
  padding: 96px 32px 80px;
  border-bottom: 1px solid var(--rule);
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.page-hero .eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal-mid);
  font-weight: 600;
  margin-bottom: 24px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 900px;
}
.page-hero h1 .accent { color: var(--teal); font-style: italic; }
.page-hero .sub {
  font-size: 21px;
  color: var(--gray);
  line-height: 1.5;
  max-width: 720px;
}

/* ═══════════════ ABOUT — Founder, values ═══════════════ */
.founder-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
  padding: 96px 0;
}
.founder-photo {
  background: linear-gradient(135deg, var(--teal-lt) 0%, var(--teal-bg) 100%);
  border-radius: 20px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px dashed var(--teal);
}
.founder-photo-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--teal-mid);
  font-weight: 700;
  opacity: 0.4;
}
.founder-photo-note {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-mid);
  text-align: center;
  font-weight: 600;
}
.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 4px;
}
.founder-title {
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-mid);
  font-weight: 600;
  margin-bottom: 28px;
}
.founder-bio p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 16px;
}
.founder-bio p strong { color: var(--dark); font-weight: 600; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 36px 32px;
  border-top: 4px solid var(--teal);
}
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.value-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.55;
}

/* ═══════════════ CONTACT ═══════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 0;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.005em;
  margin-bottom: 24px;
  line-height: 1.1;
}
.contact-info p { font-size: 17px; color: var(--gray); line-height: 1.65; margin-bottom: 36px; }

.contact-list { list-style: none; padding: 0; }
.contact-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-list .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-mid);
  font-weight: 600;
}
.contact-list .value {
  font-size: 17px;
  color: var(--dark);
  font-weight: 500;
}
.contact-list .value a:hover { color: var(--teal-mid); }

.contact-form {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 40px 44px;
}
.contact-form h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.contact-form .form-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-mid);
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-form .form-sub {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.5;
}
.form-row { display: flex; gap: 12px; margin-bottom: 14px; }
.form-row .form-field { flex: 1; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-field label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--paper);
  color: var(--dark);
  outline: none;
  transition: border-color 0.15s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--teal);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--dark);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  margin-top: 10px;
}
.form-submit:hover { background: var(--teal-mid); transform: translateY(-1px); }
.form-note {
  font-size: 12px;
  color: var(--gray-lt);
  text-align: center;
  margin-top: 14px;
  font-style: italic;
}

/* ═══════════════ SERVICES PAGE OVERVIEW ═══════════════ */
.service-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.service-section:last-child { border-bottom: none; }
.service-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.service-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.service-section h2 .accent { color: var(--teal); font-style: italic; }
.service-section .intro {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.55;
  margin-top: 14px;
  max-width: 720px;
}
.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.service-overview {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 26px 28px;
}
.service-overview .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--teal-mid);
  font-weight: 600;
  margin-bottom: 10px;
}
.service-overview h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.service-overview p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 14px;
}
.service-overview .learn {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-mid);
  font-weight: 600;
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 920px) {
  .hero-inner,
  .modern-grid,
  .foundation-banner,
  .contact-grid,
  .founder-block { grid-template-columns: 1fr; gap: 40px; }
  .svc-grid,
  .strip-grid,
  .serve-grid,
  .modern-right,
  .timeline,
  .values-grid { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .foundation-banner { padding: 40px 32px; }
  .form-row { flex-direction: column; gap: 0; }
  .section, .strip-dark { padding: 64px 24px; }
  .contact-form { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 24px 56px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
}
