/* ══════════════════════════════════════════════
   MARCELO SUAREZ CONSULTING — Main Stylesheet
   ══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --c-navy:       #112942;
  --c-blue:       #193C5C;
  --c-blue-mid:   #1e4a70;
  --c-sky:        #A6C8E1;
  --c-sky-dim:    rgba(166,200,225,0.15);
  --c-sky-faint:  rgba(166,200,225,0.06);
  --c-gray:       #4A4A4A;
  --c-gray-light: #8a9aa8;
  --c-white:      #ffffff;
  --c-off-white:  #f7f9fb;
  --c-bg:         #0a1929;
  --c-bg-mid:     #0e2236;
  --c-border:     rgba(166,200,225,0.12);
  --c-border-med: rgba(166,200,225,0.25);

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Outfit', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', monospace;

  --radius:    4px;
  --radius-lg: 12px;
  --max-w:     1160px;
  --pad-x:     clamp(1.5rem, 5vw, 4rem);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
}

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

/* ── Utility ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }

/* Hero reveals use CSS keyframes so they don't depend on JS timing */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.hero .reveal {
  animation: heroReveal 0.8s var(--ease-out-expo) forwards;
  opacity: 0;
}
.hero .reveal:nth-child(1) { animation-delay: 0.1s; }
.hero .reveal:nth-child(2) { animation-delay: 0.22s; }
.hero .reveal:nth-child(3) { animation-delay: 0.36s; }
.hero .reveal:nth-child(4) { animation-delay: 0.5s; }

/* ── Section shared ── */
.section-label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-sky);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--c-white);
}
.section-title em {
  font-style: italic;
  color: var(--c-sky);
}
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ════════════════════════════
   NAVIGATION
════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem var(--pad-x);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(10, 25, 41, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--c-border);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__logo-mark {
  width: 38px; height: 38px;
  border-radius: 6px;
  background: var(--c-blue);
  border: 1px solid var(--c-border-med);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-sky);
  flex-shrink: 0;
}
.nav__brand-text {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav__brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-sky);
  font-family: var(--f-body);
  font-weight: 300;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--c-white); }
.nav__cta {
  background: var(--c-blue) !important;
  color: var(--c-white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius) !important;
  border: 1px solid var(--c-border-med) !important;
  transition: background 0.2s, border-color 0.2s !important;
}
.nav__cta:hover {
  background: var(--c-blue-mid) !important;
  border-color: var(--c-sky) !important;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--c-white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Mobile menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--c-navy);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mobile-menu a {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--c-white);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--c-sky); }

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 8rem var(--pad-x) 6rem;
  overflow: hidden;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.5;
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__grid-v {
  position: absolute;
  left: 62%;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--c-border);
}
.hero__grid-h {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: var(--c-border);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.hero__tag {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-sky);
  background: var(--c-sky-faint);
  border: 1px solid var(--c-border-med);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}
.hero__divider { color: var(--c-border-med); }
.hero__location {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--c-gray-light);
}
.hero__headline {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 1.0;
  color: var(--c-white);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}
.hero__headline-line {
  display: block;
  font-size: clamp(3.5rem, 8vw, 7rem);
  overflow: hidden;
}
.hero__headline-line--italic {
  font-style: italic;
  color: var(--c-sky);
  font-size: clamp(3.5rem, 8vw, 7rem);
  padding-left: clamp(1.5rem, 4vw, 4rem);
}
.hero__headline-line--ampersand {
  font-size: clamp(3.5rem, 8vw, 7rem);
  padding-left: clamp(0.5rem, 2vw, 2rem);
}
.hero__headline-line--sub {
  font-size: clamp(1.2rem, 3vw, 2.5rem);
  color: var(--c-gray-light);
  font-weight: 300;
  margin-top: 0.6rem;
  letter-spacing: 0.06em;
}
.hero__sub {
  max-width: 52ch;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero meta strip */
.hero__meta {
  position: absolute;
  bottom: 3rem;
  right: var(--pad-x);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(17,41,66,0.5);
  border: 1px solid var(--c-border);
  padding: 1.2rem 2rem;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.hero__meta-item { text-align: center; }
.hero__meta-num {
  display: block;
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--c-sky);
  line-height: 1;
}
.hero__meta-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gray-light);
  margin-top: 0.3rem;
}
.hero__meta-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--c-border);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  left: var(--pad-x);
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
}
.hero__scroll-hint span {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gray-light);
  writing-mode: vertical-lr;
}
.hero__scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--c-sky), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ════════════════════════════
   BUTTONS
════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.25s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--c-blue);
  color: var(--c-white);
  border: 1px solid var(--c-border-med);
}
.btn--primary:hover {
  background: var(--c-blue-mid);
  border-color: var(--c-sky);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(25,60,92,0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--c-sky);
  border: 1px solid var(--c-border-med);
}
.btn--ghost:hover {
  border-color: var(--c-sky);
  background: var(--c-sky-faint);
  transform: translateY(-1px);
}
.btn--full { width: 100%; justify-content: center; }

/* ════════════════════════════
   SERVICES
════════════════════════════ */
.services {
  padding: clamp(5rem, 10vw, 8rem) var(--pad-x);
  background: var(--c-bg-mid);
}
.services .container { max-width: var(--max-w); margin: 0 auto; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr));
  gap: 1.5px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--c-bg);
  padding: 2.4rem 2rem;
  position: relative;
  transition: background 0.3s;
}
.service-card:hover { background: var(--c-bg-mid); }
.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  color: var(--c-border-med);
  letter-spacing: 0.1em;
}
.service-card--highlight {
  background: var(--c-sky-faint);
  border: 1px solid var(--c-border-med);
}
.service-card__icon {
  width: 40px; height: 40px;
  color: var(--c-sky);
  margin-bottom: 1.4rem;
}
.service-card__title {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.service-card__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.service-card__tags li {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-sky);
  background: var(--c-sky-faint);
  border: 1px solid var(--c-border);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

/* ════════════════════════════
   ABOUT
════════════════════════════ */
.about {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) var(--pad-x);
  overflow: hidden;
}
.about__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(25,60,92,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.about .container { max-width: var(--max-w); margin: 0 auto; }
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.about__visual {
  position: relative;
}
.about__portrait-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
}
.about__portrait-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-bg-mid) 100%);
  border: 1px solid var(--c-border-med);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__initials {
  font-family: var(--f-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--c-blue);
  opacity: 0.6;
}
.about__portrait-accent {
  position: absolute;
  bottom: -1rem; right: -1rem;
  width: 60%; height: 40%;
  border: 1px solid var(--c-border-med);
  border-radius: var(--radius);
  z-index: -1;
}
.about__stat-card {
  margin-top: 1.5rem;
  background: var(--c-sky-faint);
  border: 1px solid var(--c-border-med);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  display: flex;
  gap: 2rem;
}
.about__stat-card-item { flex: 1; }
.about__stat-num {
  display: block;
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--c-sky);
}
.about__stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gray-light);
}

.about__text { padding-top: 0.5rem; }
.about__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.8rem 0;
}
.about__body p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}
.about__values {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0 2.4rem;
  border-left: 1px solid var(--c-border-med);
  padding-left: 1.5rem;
}
.about__value {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.about__value-num {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  color: var(--c-sky);
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.about__value strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-white);
  margin-bottom: 0.2rem;
}
.about__value p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ════════════════════════════
   EXPERTISE
════════════════════════════ */
.expertise {
  padding: clamp(5rem, 10vw, 8rem) var(--pad-x);
  background: var(--c-bg-mid);
}
.expertise .container { max-width: var(--max-w); margin: 0 auto; }
.expertise__columns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 2.5rem;
}
.expertise__col-title {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-sky);
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--c-border);
}
.expertise__list { display: flex; flex-direction: column; gap: 1rem; }
.expertise__item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.25rem 0.5rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.75);
}
.expertise__item span:first-child {
  grid-column: 1 / -1;
  height: 2px;
  background: var(--c-border);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.expertise__item span:first-child::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--w, 0);
  background: linear-gradient(to right, var(--c-blue), var(--c-sky));
  border-radius: 2px;
  transition: width 1.2s var(--ease-out-expo);
}
.expertise__item.animated span:first-child::after { width: var(--w); }
.expertise__pct {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  color: var(--c-sky);
  letter-spacing: 0.06em;
}

/* Clients */
.clients {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--c-border);
  text-align: center;
}
.clients__label {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gray-light);
  margin-bottom: 1.2rem;
}
.clients__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
}
.clients__logo-text {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.clients__logo-text:hover { color: rgba(255,255,255,0.7); }
.clients__sep { color: var(--c-border-med); font-size: 1.2rem; }

/* ════════════════════════════
   CONTACT
════════════════════════════ */
.contact {
  padding: clamp(5rem, 10vw, 9rem) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 20% 50%, rgba(25,60,92,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.contact .container { max-width: var(--max-w); margin: 0 auto; }
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact__intro {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin: 1.5rem 0 2.5rem;
  max-width: 40ch;
}
.contact__channels { display: flex; flex-direction: column; gap: 1rem; }
.contact__channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--c-sky-faint);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}
a.contact__channel:hover {
  border-color: var(--c-sky);
  background: rgba(166,200,225,0.1);
}
.contact__channel-icon {
  font-size: 1.1rem;
  color: var(--c-sky);
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}
.contact__channel strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  margin-bottom: 0.15rem;
}
.contact__channel span {
  font-size: 0.88rem;
  color: var(--c-white);
}

/* Form */
.contact__form-wrap {
  background: var(--c-bg-mid);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}
.contact__form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(10,25,41,0.6);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-white);
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23A6C8E1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2rem;
}
.form-group select option { background: var(--c-navy); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-sky);
  box-shadow: 0 0 0 3px rgba(166,200,225,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form__note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 0.2rem;
}

/* Success state */
.form__success {
  text-align: center;
  padding: 3rem 1rem;
}
.form__success-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(166,200,225,0.12);
  border: 1px solid var(--c-border-med);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--c-sky);
  margin: 0 auto 1.2rem;
}
.form__success h3 {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.form__success p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

/* ════════════════════════════
   TESTIMONIALS
════════════════════════════ */
.testimonials {
  background: var(--c-bg-mid);
  padding: 7rem var(--pad-x);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testimonial {
  background: var(--c-sky-faint);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}

.testimonial:hover {
  border-color: var(--c-border-med);
  transform: translateY(-3px);
}

.testimonial__quote {
  font-family: var(--f-display);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-sky);
  margin: 0;
  font-style: italic;
  flex: 1;
}

.testimonial__footer {
  border-top: 1px solid var(--c-border);
  padding-top: 1rem;
}

.testimonial__author {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-white);
  letter-spacing: 0.03em;
}

.testimonial__role {
  font-family: var(--f-body);
  font-size: 0.8rem;
  color: var(--c-gray-light);
  margin-top: 0.2rem;
}

.testimonials__cta {
  text-align: center;
  margin-top: 3rem;
}

/* About LinkedIn link */
.about__linkedin {
  margin-bottom: 1.5rem;
}

.about__linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-sky);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: var(--f-body);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  transition: border-color 0.2s, color 0.2s;
}

.about__linkedin-link:hover {
  border-color: var(--c-sky);
  color: var(--c-white);
}

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.footer {
  background: var(--c-navy);
  border-top: 1px solid var(--c-border);
  padding: 2.5rem var(--pad-x);
}
.footer .container { max-width: var(--max-w); margin: 0 auto; }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.footer__logo-mark {
  width: 36px; height: 36px;
  background: var(--c-blue);
  border: 1px solid var(--c-border-med);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-sky);
  flex-shrink: 0;
}
.footer__name {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-white);
}
.footer__tagline {
  font-size: 0.72rem;
  color: var(--c-gray-light);
}
.footer__links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--c-white); }
.footer__copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: right;
}
.footer__copy span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 900px) {
  .about__layout { grid-template-columns: 1fr; }
  .about__visual { max-width: 260px; }
  .about__portrait-placeholder { aspect-ratio: 1/1; }
  .contact__layout { grid-template-columns: 1fr; }
  .hero__meta {
    position: relative;
    bottom: auto; right: auto;
    margin-top: 3rem;
    width: fit-content;
  }
  .hero { padding-bottom: 5rem; }
  .hero__scroll-hint { display: none; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__copy { text-align: left; }
}
@media (max-width: 700px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .hero__headline-line--italic { padding-left: 1rem; }
  .hero__headline-line--ampersand { padding-left: 0.5rem; }
}
@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .expertise__columns { grid-template-columns: 1fr; }
  .hero__meta { flex-direction: column; gap: 1rem; text-align: left; }
  .hero__meta-divider { width: 2.5rem; height: 1px; }
}
