/* ═══════════════════════════════════════════════════════
   CRB WELL SERVICES — styles.css
   Aesthetic: Minimalist industrial. Charcoal, warm white,
   slate. Single accent: burnt amber. Barlow sans-serif.
═══════════════════════════════════════════════════════ */

:root {
  --black:       #0d0d0d;
  --charcoal:    #1a1a1a;
  --slate:       #2e2e2e;
  --mid:         #5a5a5a;
  --grey:        #8c8c8c;
  --grey-light:  #d8d8d8;
  --rule:        #e4e4e4;
  --off-white:   #f5f4f1;
  --white:       #ffffff;
  --text:        #1a1a1a;
  --text-mid:    #4a4a4a;
  --navy: #0a1628;
  --navy-mid: #0f2040;

  /* Single accent — burnt amber, used sparingly */
  --accent:      #ff0000b7;
  --accent-dim:  rgba(193, 125, 60, 0.15);

  --font:        'Syne', sans-serif;
  --font-cond:   'DM Sans', sans-serif;

  --max-w:       1200px;
  --section-pad: 6rem 0;
  --radius:      2px;
}

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

/* ── Eyebrow ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-cond);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.eyebrow--light {
  color: var(--white);
}
.eyebrow__badge--about {
  clip-path: polygon(0% 0%, 100% 0%, 94% 100%, 0% 100%) !important;
  
}
.eyebrow__line {
  display: inline-block;
  width: 1.75rem;
  height: 1px;
  background: none;
  flex-shrink: 0;
}
.eyebrow__badge {
  background: none;
  color: var(--white);
  padding: 0.4rem 1.5rem 0.4rem 1rem;
  letter-spacing: 0.1em;
  backdrop-filter: blur(4px);
  display: inline-block;
  clip-path: polygon(0% 0%, 100% 0%, 97% 100%, 0% 100%);
}

.contact-badge {
  background: linear-gradient(315deg, #242727b7 0%, #000000 100%);
  color: white;
  padding: 0.4rem 1.5rem 0.4rem 1rem;
  display: inline-block;
  clip-path: polygon(0% 0%, 100% 0%, 94% 100%, 0% 100%);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.18s ease;
  border: 1px solid transparent;
 
}
.btn--primary {
  background: linear-gradient(315deg, #242727b7 0%, #000000 100%);
  color: var(--white);
  border-color: transparent;
  /*clip-path: polygon(0% 0%, 100% 0%, 97% 100%, 0% 100%);*/
  border: none;
  

}
.btn--primary:hover {
  background: linear-gradient(315deg, #0d2d5e 0%, #2060aa 100%);
  border-color: transparent;
  clip-path: polygon(0% 0%, 100% 0%, 97% 100%, 0% 100%);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  border-color: var(--white);
}
.btn--nav {
  background: linear-gradient(315deg, #0d2d5e 0%, #2060aa#000000 100%);
  color: var(--white);
  padding: 0.55rem 1.1rem;
  font-size: 0.75rem;
  border: none;
  clip-path: polygon(0% 0%, 100% 0%, 97% 100%, 0% 100%);
}
.btn--nav:hover {
  background: linear-gradient(315deg, #0d2d5e 0%, #2060aa 100%);
}
.btn--full { width: 100%; justify-content: center; }

/* ── Fade-up ── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.timeline__item:nth-child(2) { transition-delay: 0.06s; }
.timeline__item:nth-child(3) { transition-delay: 0.12s; }
.timeline__item:nth-child(4) { transition-delay: 0.18s; }
.service-card:nth-child(2)   { transition-delay: 0.07s; }
.service-card:nth-child(3)   { transition-delay: 0.14s; }
.service-card:nth-child(4)   { transition-delay: 0.21s; }
.cert-item:nth-child(even)   { transition-delay: 0.05s; }
.pillar:nth-child(2)         { transition-delay: 0.06s; }
.pillar:nth-child(3)         { transition-delay: 0.12s; }
.pillar:nth-child(4)         { transition-delay: 0.18s; }
.about__col:nth-child(2)     { transition-delay: 0.08s; }

/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  transition: background 0.3s, padding 0.3s, border-color 0.3s;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav--scrolled {
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  border-bottom-color: rgba(255,255,255,0.07);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-right: auto;
}
.nav__brand-mark {
  font-family: var(--font-cond);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}
.nav__brand-sub {
  font-family: var(--font-cond);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--grey);
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  gap: 2.25rem;
}
.nav__links a {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a4a8a 100%, #0d2d5e 50%,#0a1628 0% );
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

/* Subtle grain texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.hero__left {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 9rem 4rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}
.hero__headline {
  font-family: var(--font-cond);
  font-size: clamp(2rem, 3.5vw, 1rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.hero__headline em {
  font-style: normal;
  color: var(--accent);
}

.headline__badge {
  background: none;
  color: var(--white);
  padding: 0rem 3rem 0.8rem 1.5rem;
  backdrop-filter: blur(4px);
  display: inline-block;
  clip-path: polygon(0% 0%, 100% 0%, 97% 100%, 0% 100%);
}

.hero__body {
  font-size: 1.2rem;         /* was 1rem */
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin-bottom: 2.75rem;    /* was 2.25rem */
  line-height: 1.75;
  padding-left: 20px;
}
.hero__actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero__stats {
  display: flex;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding-right: 2rem;
  margin-right: 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-cond);
  font-size: 1.9rem;         /* was 1.5rem */
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.stat__label {
  font-family: var(--font-cond);
  font-size: 0.75rem;        /* was 0.62rem */
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
  text-transform: uppercase;
}

/* Hero image */
.hero__right {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}
.hero__img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(30%) contrast(1.05);
  transition: transform 6s ease;
}
.hero__img-wrap:hover .hero__img {
  transform: scale(1.04);
}
/* Dark gradient over bottom of image */
.hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,13,13,0.85) 0%,
    rgba(13,13,13,0.2) 45%,
    transparent 70%
  );
}
/* Fallback if image fails */
.hero__img-wrap--fallback {
  background: linear-gradient(160deg, #1e2a1e 0%, var(--slate) 100%);
}
.hero__img-wrap--fallback .hero__img { display: none; }

.hero__img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
}
.hero__img-tag {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.hero__img-caption p {
  font-size: 0.92rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   CLIENT STRIP
═══════════════════════════════════════════════════════ */
.clients {
  background: var(--black);
  padding: 1.4rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.clients__label {
  text-align: center;
  font-family: var(--font-cond);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.clients__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.clients__logos span {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  transition: color 0.2s;
}
.clients__logos span:hover { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════ */
.about {
  background: var(--navy-mid);   /* was --charcoal */
  padding: var(--section-pad);
}
.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  
}
.about__header { max-width: 720px; margin-bottom: 3rem; }
.about__headline {
  font-family: var(--font-cond);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
}
.about__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.about__col {
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.about__col p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.about__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.08);
}
.pillar {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(255,255,255,0.03); }
.pillar__title {
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.pillar__sub {
  font-family: var(--font-cond);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--grey);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════ */
.services {
  background: var(--off-white);
  padding: var(--section-pad);
}
.services__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.5rem;
}
.services__headline {
  font-family: var(--font-cond);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
}
.services__intro {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  align-self: end;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.service-card {
  background: var(--white);
  overflow: hidden;
  transition: background 0.2s;
}
.service-card:hover { background: #fafafa; }
.service-card--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.service-card--wide .service-card__img { height: auto; min-height: 260px; }
.service-card__img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.service-card__img--pa   { background: linear-gradient(150deg, #1a1a1a 0%, #2e2e2e 100%); }
.service-card__img--ops  { background: linear-gradient(150deg, #222222 0%, #333333 100%); }
.service-card__img--comp { background: linear-gradient(150deg, #1e1e1e 0%, #2a2a2a 100%); }
.service-card__img--plan { background: linear-gradient(150deg, #252525 0%, #303030 100%); }

/* Minimal geometric decoration on card images */
.service-card__img::after {
  content: attr(data-num);
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  font-family: var(--font-cond);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  letter-spacing: -0.02em;
}
.service-card__img::before {
  content: '';
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 2rem; height: 2rem;
  border: 1px solid rgba(193,125,60,0.4);
  border-radius: 50%;
}
.service-card__body { padding: 1.75rem 2rem; }
.service-card__num {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.service-card__body h3 {
  font-family: var(--font-cond);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}
.service-card__body p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.service-card__body ul li {
  font-size: 0.83rem;
  font-weight: 400;
  color: var(--mid);
  padding: 0.2rem 0 0.2rem 1rem;
  position: relative;
}
.service-card__body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 1px;
  background: var(--accent);
}

/* ═══════════════════════════════════════════════════════
   EXPERIENCE
═══════════════════════════════════════════════════════ */
.experience {
  background: var(--white);
  padding: var(--section-pad);
}
.experience__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.experience__headline {
  font-family: var(--font-cond);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 3.5rem;
}
.experience__headline em {
  font-style: normal;
  color: var(--accent);
}
.timeline {
  position: relative;
  padding-left: 1.5rem;
  border-left: 1px solid var(--rule);
}
.timeline__item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -1.57rem;
  top: 0.55rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.timeline__meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.1rem;
}
.timeline__date {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: 0.04em;
}
.timeline__badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-cond);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  width: fit-content;
}
.timeline__body h3 {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}
.timeline__client {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.timeline__body p:last-child {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════
   CERTIFICATIONS
═══════════════════════════════════════════════════════ */
.certs {
  background: var(--off-white);
  padding: var(--section-pad);
}
.certs__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.certs__headline {
  font-family: var(--font-cond);
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
}
.certs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.cert-item {
  background: var(--white);
  padding: 1rem 1.25rem;
  font-family: var(--font-cond);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.cert-item::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
  margin-bottom: 0.6rem;
}
.cert-item:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact {
  background: var(--white);
  padding: var(--section-pad);
  border-top: 1px solid var(--rule);
}
.contact__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact__headline {
  font-family: var(--font-cond);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.contact__body {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact__details { display: flex; flex-direction: column; gap: 0.6rem; }
.contact__detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--rule);
  transition: border-color 0.2s;
  cursor: pointer;
}
.contact__detail-item:hover { border-color: var(--charcoal); }
.contact__detail-item--note { cursor: default; background: var(--off-white); }
.contact__detail-item--note:hover { border-color: var(--rule); }
.contact__detail-item--note p {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.6;
}
.contact__detail-icon {
  font-size: 0.95rem;
  width: 2rem; height: 2rem;
  background: var(--off-white);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__detail-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
}
.contact__detail-label {
  font-family: var(--font-cond);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--grey);
  text-transform: uppercase;
}
.contact__detail-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
}
.contact__detail-arrow { font-size: 0.9rem; color: var(--grey-light); }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 1.1rem; }
.form__row--two { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form__group { display: flex; flex-direction: column; gap: 0.4rem; }
.form__group label {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--mid);
  text-transform: uppercase;
}
.form__optional {
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}
.form__group input,
.form__group textarea {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  background: var(--off-white);
  outline: none;
  resize: vertical;
  transition: border-color 0.2s, background 0.2s;
}
.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--charcoal);
  background: var(--white);
}
.form__group textarea { min-height: 120px; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__brand { display: flex; flex-direction: column; line-height: 1.1; }
.footer__copy {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}
.footer__nav { display: flex; gap: 1.75rem; }
.footer__nav a {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer__nav a:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 7rem 2rem 4rem; }
  .hero__right { display: none; }
  .about__cols { grid-template-columns: 1fr; }
  .about__pillars { grid-template-columns: 1fr 1fr; }
  .pillar { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .pillar:nth-child(2) { border-right: none; }
  .services__header { grid-template-columns: 1fr; gap: 1rem; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-column: span 1; grid-template-columns: 1fr; }
  .service-card--wide .service-card__img { height: 200px; min-height: auto; }
  .timeline__item { grid-template-columns: 1fr; gap: 0.4rem; }
  .certs__grid { grid-template-columns: 1fr 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .hero { padding: 6rem 1.25rem 3rem; }
  .hero__stats { flex-direction: column; gap: 1rem; border-top: none; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 1rem; margin-right: 0; }
  .stat:last-child { border-bottom: none; }
  .about__inner, .services__inner, .experience__inner,
  .certs__inner, .contact__inner { padding: 0 1.25rem; }
  .about__pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; }
  .certs__grid { grid-template-columns: 1fr; }
  .form__row--two { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}
