:root {
  --teal-950: #0C2E38;
  --teal-900: #123B45;
  --teal-800: #164752;
  --teal-700: #1E5C68;
  --accent: #2BB6AE;
  --accent-light: #6ED6CF;
  --gold: #D8A657;
  --gold-dark: #B9853A;
  --paper: #FAF8F3;
  --paper-dim: #F1EEE6;
  --ink: #123239;
  --ink-soft: rgba(18, 50, 57, .68);
  --line-dark: rgba(255, 255, 255, .14);
  --line-light: rgba(18, 50, 57, .12);
  --shadow-lg: 0 30px 60px -20px rgba(12, 46, 56, .35);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--accent);
  color: var(--teal-950);
  padding: 10px 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Fraunces', serif;
  margin: 0;
  line-height: 1.05;
}

p {
  margin: 0;
}

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

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

::selection {
  background: var(--gold);
  color: var(--teal-950);
}

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal-stagger.in>* {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in>*:nth-child(1) {
  transition-delay: .05s;
}

.reveal-stagger.in>*:nth-child(2) {
  transition-delay: .15s;
}

.reveal-stagger.in>*:nth-child(3) {
  transition-delay: .25s;
}

.reveal-stagger.in>*:nth-child(4) {
  transition-delay: .35s;
}

@media (prefers-reduced-motion:reduce) {

  .reveal,
  .reveal-stagger>* {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* eyebrow / tab label - filing motif */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px 6px 12px;
  border: 1px solid currentColor;
  border-radius: 3px 3px 0 0;
  position: relative;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

/* ---------- NAV ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--teal-950);
  transition: box-shadow .4s var(--ease), padding .35s var(--ease);
  box-shadow: 0 1px 0 var(--line-dark);
}

header.scrolled {
  box-shadow: 0 12px 30px -14px rgba(0, 0, 0, .5);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .35s var(--ease);
}

header.scrolled .nav-inner {
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

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

nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav a.tab {
  color: rgba(255, 255, 255, .82);
  font-size: 14.5px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px 8px 0 0;
  position: relative;
  transition: color .25s, background .25s, transform .25s var(--ease);
}

nav a.tab::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

nav a.tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  transform: translateY(-2px);
}

nav a.tab:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}

.btn-primary {
  background: var(--accent);
  color: var(--teal-950);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px -10px rgba(43, 182, 174, .6);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
  background: transparent;
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--teal-950);
  color: #fff;
}

.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px -10px rgba(12, 46, 56, .5);
}

.nav-cta {
  margin-left: 10px;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 210;
}

.burger-box {
  width: 22px;
  height: 16px;
  position: relative;
  display: block;
}

.burger-bar,
.burger-bar::before,
.burger-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
}

.burger-bar {
  top: 7px;
}

.burger-bar::before {
  top: -7px;
}

.burger-bar::after {
  top: 7px;
}

.burger[aria-expanded="true"] .burger-bar {
  background: transparent;
}

.burger[aria-expanded="true"] .burger-bar::before {
  top: 0;
  transform: rotate(45deg);
  background: #fff;
}

.burger[aria-expanded="true"] .burger-bar::after {
  top: 0;
  transform: rotate(-45deg);
  background: #fff;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 31, 38, .55);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
  z-index: 190;
}

.mobile-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(78vw, 320px);
  background: var(--teal-950);
  border-left: 1px solid var(--line-dark);
  box-shadow: -20px 0 50px -18px rgba(0, 0, 0, .5);
  z-index: 200;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav .mobile-tab {
  display: block;
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  font-family: 'Fraunces', serif;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-dark);
  opacity: 0;
  transform: translateX(16px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.mobile-nav.open .mobile-tab {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav.open li:nth-child(1) .mobile-tab {
  transition-delay: .08s;
}

.mobile-nav.open li:nth-child(2) .mobile-tab {
  transition-delay: .14s;
}

.mobile-nav.open li:nth-child(3) .mobile-tab {
  transition-delay: .2s;
}

.mobile-nav.open li:nth-child(4) .mobile-tab {
  transition-delay: .26s;
}

.mobile-nav.open li:nth-child(5) .mobile-tab {
  transition-delay: .32s;
}

.mobile-nav .btn {
  opacity: 0;
  transform: translateX(16px);
  transition: opacity .4s var(--ease) .32s, transform .4s var(--ease) .32s;
}

.mobile-nav.open .btn {
  opacity: 1;
  transform: translateX(0);
}

body.nav-locked {
  overflow: hidden;
}

/* ---------- HERO ---------- */
.hero {
  background:
    radial-gradient(1100px 500px at 82% -10%, rgba(43, 182, 174, .20), transparent 60%),
    radial-gradient(700px 400px at 10% 110%, rgba(216, 166, 87, .14), transparent 60%),
    var(--teal-950);
  color: #fff;
  padding: 88px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  color: var(--accent-light);
}

.hero h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  font-weight: 600;
  margin-top: 22px;
  letter-spacing: -.01em;
}

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

.hero-sub {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .78);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 52px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-meta div {
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}

.hero-meta strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}

.hero-meta span {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: .03em;
}

/* signature: badge/ID card illustration */
.badge-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.id-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 26px;
  width: 100%;
  max-width: 360px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: rotate(2.5deg);
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

  0%,
  100% {
    transform: rotate(2.5deg) translateY(0);
  }

  50% {
    transform: rotate(2.5deg) translateY(-12px);
  }
}

.id-card::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 26px;
  background: var(--gold);
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

.id-photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 32%, #F0D9B0 0 22%, transparent 23%),
    linear-gradient(160deg, var(--teal-800), var(--teal-700));
  position: relative;
  overflow: hidden;
}

.id-photo svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.id-caption {
  margin-top: 18px;
}

.id-caption .name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
}

.id-caption .role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.id-divider {
  height: 1px;
  background: var(--line-light);
  margin: 16px 0;
}

.id-stat-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-soft);
}

.id-stat-row strong {
  color: var(--ink);
}

.id-stamp {
  position: absolute;
  bottom: -44px;
  right: -57px;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
}

/* floating tape decorations */
.float-chip {
  position: absolute;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  animation: drift 7s ease-in-out infinite;
}

@keyframes drift {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ---------- WHY ME / ABOUT ---------- */
.section {
  padding: 100px 0;
}

.section-light {
  background: var(--paper);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 70px;
}

.section h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  color: var(--ink);
  margin: 14px 0 24px;
}

.lead-text p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.about-card {
  background: var(--paper-dim);
  border: 1px solid var(--line-light);
  border-radius: 18px;
  padding: 34px;
  position: relative;
}

.about-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.location-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 22px;
  font-style: normal;
}

/* ---------- EXPERIENCE (dark, tab cards) ---------- */
.section-dark {
  background:
    radial-gradient(900px 400px at 100% 0%, rgba(43, 182, 174, .15), transparent 60%),
    var(--teal-950);
  color: #fff;
}

.section-dark .eyebrow {
  color: var(--accent-light);
}

.section-dark h2 {
  color: #fff;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.exp-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform .45s var(--ease), background .45s, border-color .45s, box-shadow .45s;
  position: relative;
  overflow: hidden;
}

.exp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}

.exp-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .28);
  box-shadow: 0 24px 40px -20px rgba(0, 0, 0, .5);
}

.exp-card:hover::before {
  transform: scaleX(1);
}

.exp-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(43, 182, 174, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.exp-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.exp-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .68);
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 48px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px -14px rgba(18, 50, 57, .2);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -22px rgba(18, 50, 57, .32);
}

.service-visual {
  height: 190px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-visual svg {
  width: 64%;
  height: 64%;
  transition: transform .6s var(--ease);
}

.service-card:hover .service-visual svg {
  transform: scale(1.08) rotate(-2deg);
}

.sv-1 {
  background: linear-gradient(135deg, #EAF6F5, #D8EFEC);
}

.sv-2 {
  background: linear-gradient(135deg, #FDF3E4, #F6E4C4);
}

.sv-3 {
  background: linear-gradient(135deg, #0C2E38, #164752);
}

.sv-4 {
  background: linear-gradient(135deg, #EFEAE0, #E3DCCB);
}

.service-body {
  padding: 26px 28px 30px;
}

.service-body h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.service-body p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.service-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

/* QA stamp animation trigger */
.stamp-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px dashed var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .05em;
  color: var(--gold-dark);
  text-align: center;
  transform: scale(0) rotate(-25deg);
  opacity: 0;
  transition: transform .5s var(--ease), opacity .5s;
}

.service-card.stamp-in .stamp-badge {
  transform: scale(1) rotate(-12deg);
  opacity: 1;
}

/* ---------- RESOURCES / ARTICLES ---------- */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}

.resource-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 6px 20px -14px rgba(18, 50, 57, .2);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -22px rgba(18, 50, 57, .32);
}

.resource-card time {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.resource-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.resource-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  flex-grow: 1;
}

.resource-card .read-more {
  margin-top: 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: .04em;
  color: var(--teal-950);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s;
}

.resource-card:hover .read-more {
  gap: 12px;
}

/* ---------- CONTACT ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  color: #fff;
}

.contact-info p {
  color: rgba(255, 255, 255, .72);
  font-size: 15.5px;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 40ch;
}

.contact-links {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, .85);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-dark);
  transition: color .25s, gap .25s, border-color .25s;
}

.contact-links a:hover {
  color: var(--accent-light);
  gap: 18px;
  border-color: var(--accent);
}

.form-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  padding: 38px;
  backdrop-filter: blur(6px);
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 8px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 13px 16px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  transition: border-color .3s, background .3s, box-shadow .3s;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%236ED6CF' stroke-width='2'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.field select option {
  background: var(--teal-950);
  color: #fff;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, .35);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 0 0 4px rgba(43, 182, 174, .18);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.send-btn {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 15px;
  margin-top: 20px;
}

.form-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .5);
  text-align: center;
  height: 16px;
}

/* ---------- FOOTER ---------- */
footer {
  background: #081F26;
  color: rgba(255, 255, 255, .55);
  padding: 30px 0;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-inner a {
  color: rgba(255, 255, 255, .7);
  margin-left: 18px;
  transition: color .25s;
}

.footer-inner a:hover {
  color: var(--accent-light);
}

/* ---------- ARTICLE PAGES ---------- */
.breadcrumb {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.article-hero {
  padding: 56px 0 40px;
}

.article-hero time {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-top: 18px;
}

.article-hero h1 {
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 600;
  color: var(--ink);
  margin-top: 10px;
  letter-spacing: -.01em;
}

.article-hero .dek {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
}

.article-body {
  max-width: 70ch;
  padding: 0 0 100px;
}

.article-body h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 600;
  color: var(--ink);
  margin: 40px 0 16px;
}

.article-body h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin: 28px 0 12px;
}

.article-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body strong {
  color: var(--ink);
}

.article-cta {
  margin-top: 44px;
  padding: 32px;
  border-radius: 18px;
  background: var(--paper-dim);
  border: 1px solid var(--line-light);
  text-align: center;
}

.article-cta p {
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 18px;
}

.articles-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:980px) {

  .grid-2,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .badge-wrap {
    order: -1;
  }

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

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

  .resources-grid,
  .articles-index-grid {
    grid-template-columns: 1fr;
  }

  nav ul {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (max-width:640px) {
  .wrap {
    padding: 0 20px;
  }

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

  .hero {
    padding: 64px 0 80px;
  }

  .hero-meta {
    gap: 24px;
  }

  .section {
    padding: 72px 0;
  }

  .id-card {
    max-width: 100%;
  }

  .float-chip {
    display: none;
  }
}