/* =====================================================
   IMPACTA CONSULTING GROUP — Stylesheet
   Brand-aligned, editorial premium feel
   ===================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Colors — official brand palette */
  --blood-red: #710014;
  --pearl-white: #F2F1EE;
  --pot-black: #161616;
  --white: #FFFFFF;
  --dark-wine: #2D050E;

  /* Tints / utility */
  --pot-black-soft: #2a2a2a;
  --pearl-darker: #E8E6E0;
  --line-soft: rgba(22, 22, 22, 0.10);
  --line-soft-light: rgba(242, 241, 238, 0.18);

  /* Typography — Per Brand Guide
     Headlines: Playfair Display (web-safe analog to Glamsy/Rietage)
     Body: Inter (web-safe analog to Point) */
  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale */
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Layout */
  --container-max: 1240px;
  --container-pad: 1.5rem;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-base: 400ms;
  --t-slow: 600ms;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--pot-black);
  background: var(--pearl-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
}

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

a { color: inherit; text-decoration: none; transition: color var(--t-base) var(--ease-out); }

ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--pot-black);
}

p { margin: 0; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blood-red);
  margin-bottom: 1.25rem;
  display: inline-block;
}
.eyebrow-light { color: var(--pearl-white); opacity: 0.85; }

.section-title {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.section-title-light { color: var(--pearl-white); }

.body-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--pot-black-soft);
  margin-bottom: 1.25rem;
  max-width: 56ch;
}

.section-head { margin-bottom: 3.5rem; max-width: 720px; }
.section-head-light { color: var(--pearl-white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t-base) var(--ease-out);
  text-transform: none;
}

.btn-primary {
  background: var(--blood-red);
  color: var(--pearl-white);
  border-color: var(--blood-red);
}
.btn-primary:hover {
  background: var(--dark-wine);
  border-color: var(--dark-wine);
  transform: translateY(-1px);
}

.btn-light {
  background: var(--pearl-white);
  color: var(--blood-red);
  border-color: var(--pearl-white);
}
.btn-light:hover {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.btn-sm { padding: 0.65rem 1.2rem; font-size: 0.825rem; }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 0.95rem; }

/* Link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
}
.link-arrow::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: calc(100% - 28px);
  background: currentColor;
  transform-origin: left;
  transition: transform var(--t-base) var(--ease-out);
}
.link-arrow:hover::after { transform: scaleX(1.05); }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow svg { transition: transform var(--t-base) var(--ease-out); }
.link-light { color: var(--pearl-white); }
.link-dark { color: var(--blood-red); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 241, 238, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), background var(--t-base);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line-soft);
  background: rgba(242, 241, 238, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--pot-black);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  transition: opacity var(--t-base) var(--ease-out);
}
.logo:hover { opacity: 0.78; }

/* Header logo (horizontal) */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* Footer logo (vertical, light variant) */
.logo-img-footer {
  height: 130px;
  width: auto;
  display: block;
  margin-bottom: 0.5rem;
}

.main-nav ul {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--pot-black);
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--blood-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-base) var(--ease-out);
}
.nav-link:hover { color: var(--blood-red); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-link.is-active { color: var(--blood-red); }
.nav-link.is-active::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--pot-black);
  transition: all var(--t-base) var(--ease-out);
  margin: 0 auto;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--pearl-white);
  border-top: 1px solid var(--line-soft);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav a { font-size: 1rem; font-weight: 500; color: var(--pot-black); }
.mobile-nav .btn { margin-top: 0.5rem; align-self: flex-start; }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 1rem 0 0;
  background: var(--pearl-white);
}

.hero-band {
  background: var(--blood-red);
  border-radius: 0 0 0 0;
  position: relative;
  overflow: hidden;
  margin: 0 1.5rem;
  border-radius: 6px;
}

.hero-arc {
  position: absolute;
  bottom: -120px;
  right: -100px;
  width: 360px;
  height: 360px;
  border: 1.5px solid rgba(242, 241, 238, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.hero-circle-deco {
  position: absolute;
  top: -60px;
  left: 40%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(242, 241, 238, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 0 6.5rem;
  position: relative;
  z-index: 2;
}

.hero-content { color: var(--pearl-white); }
.hero-content .eyebrow { margin-bottom: 1.75rem; }

.hero-title {
  font-family: var(--font-serif);
  color: var(--pearl-white);
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 1.75rem;
  max-width: 18ch;
}
.hero-title .quote-mark {
  font-family: var(--font-serif);
  color: rgba(242, 241, 238, 0.55);
  font-weight: 300;
  font-size: 0.95em;
  display: inline-block;
  line-height: 0;
  vertical-align: -0.05em;
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(242, 241, 238, 0.92);
  max-width: 48ch;
  margin-bottom: 2.25rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(242, 241, 238, 0.7);
  border-top: 1px solid rgba(242, 241, 238, 0.18);
  padding-top: 1.25rem;
  max-width: 260px;
}

/* Hero photo */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-circle {
  width: clamp(280px, 32vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 6px solid var(--blood-red);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}
.hero-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}
.hero-photo-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1.5px solid rgba(242, 241, 238, 0.45);
  border-radius: 50%;
  z-index: 1;
}

/* ============================================
   QUOTE BAND
   ============================================ */
.quote-band {
  padding: var(--space-2xl) 0;
  background: var(--pearl-darker);
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(113, 0, 20, 0.12);
  border-bottom: 1px solid rgba(113, 0, 20, 0.12);
}
.quote-band-alt {
  background: var(--pearl-white);
  border-top: 1px solid rgba(113, 0, 20, 0.12);
  border-bottom: 1px solid rgba(113, 0, 20, 0.12);
}

/* Decorative ornament above the quote — small editorial flourish */
.quote-band::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--blood-red);
  margin: 0 auto 2.5rem;
  opacity: 0.5;
}

.big-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.85rem);
  line-height: 1.25;
  font-weight: 400;
  color: var(--blood-red);
  font-style: italic;
  max-width: 34ch;
  margin: 0 auto 1.5rem;
  letter-spacing: -0.005em;
}
.quote-glyph {
  font-style: normal;
  opacity: 0.5;
  font-size: 1.1em;
  display: inline-block;
  line-height: 0;
  vertical-align: -0.08em;
}
.quote-attribution {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pot-black);
  font-weight: 500;
}
.placeholder-note {
  color: var(--pot-black-soft);
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 400;
  opacity: 0.55;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--space-3xl) 0 var(--space-2xl);
  background: var(--pearl-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-photo-circle {
  width: clamp(260px, 28vw, 400px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.about-photo-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}
.about-circle-decoration {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(calc(-50% + 80px));
  width: 200px;
  height: 200px;
  border: 1px solid var(--blood-red);
  border-radius: 50%;
  opacity: 0.25;
  z-index: 1;
}

.bullet-list {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.75rem;
}
.bullet-list li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.bullet-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blood-red);
  border: 1px solid var(--blood-red);
  border-radius: 50%;
  background: var(--pearl-white);
}
.bullet-icon svg { width: 18px; height: 18px; }
.bullet-list li > div { display: flex; flex-direction: column; gap: 0.15rem; padding-top: 0.35rem; }
.bullet-list li strong {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--pot-black);
  letter-spacing: -0.005em;
}
.bullet-list li span {
  font-size: 0.95rem;
  color: var(--pot-black-soft);
  line-height: 1.55;
}

/* ============================================
   SERVICIOS
   ============================================ */
.services {
  padding: var(--space-2xl) 0;
  background: var(--pearl-darker);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.service-card {
  background: var(--pearl-white);
  padding: 2.5rem 2rem 2.25rem;
  position: relative;
  border: 1px solid transparent;
  transition: all var(--t-slow) var(--ease-out);
  border-radius: 4px;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--blood-red);
  transform: translateY(-4px);
  background: var(--white);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-base) var(--ease-out);
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.service-card:hover .service-icon { transform: scale(1.06); }

.service-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--pot-black);
  margin-bottom: 0.75rem;
  letter-spacing: -0.005em;
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--pot-black-soft);
  margin-bottom: 1.25rem;
}

.service-line {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--blood-red);
  transition: width var(--t-slow) var(--ease-out);
}
.service-card:hover .service-line { width: 60px; }

.services-cta { text-align: center; margin-top: 1rem; }

/* ============================================
   PROCESO
   ============================================ */
.process {
  padding: var(--space-2xl) 0;
  background: var(--blood-red);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(242,241,238,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  padding-top: 2.5rem;
}
.process-line {
  position: absolute;
  top: 80px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(242, 241, 238, 0.25);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  color: var(--pearl-white);
  padding-right: 1rem;
}
.process-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--pearl-white);
  display: block;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  position: relative;
}
.process-num::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--pearl-white);
  opacity: 0.6;
}
.process-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--pearl-white);
  margin-bottom: 0.6rem;
}
.process-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(242, 241, 238, 0.85);
}

/* ============================================
   FOUNDER
   ============================================ */
.founder {
  padding: var(--space-3xl) 0 var(--space-2xl);
  background: var(--pearl-white);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 5rem;
  align-items: center;
}

.founder-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.founder-photo-circle {
  width: clamp(260px, 28vw, 400px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 1px solid var(--line-soft);
}
.founder-photo-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.94);
}
.founder-badge {
  position: absolute;
  bottom: 20px;
  right: calc(50% - 200px);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blood-red);
  color: var(--pearl-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(113, 0, 20, 0.3);
}
.founder-badge svg { width: 24px; height: 24px; }

.founder-role {
  font-family: var(--font-sans);
  color: var(--blood-red);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.founder-quote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--blood-red);
  margin: 2rem 0 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--blood-red);
  line-height: 1.4;
  max-width: 32ch;
}
.founder-quote .quote-glyph {
  margin-right: 0.2em;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  background: var(--dark-wine);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.cta-arc {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border: 1px solid rgba(242, 241, 238, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.cta-final-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  color: var(--pearl-white);
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.cta-sub {
  color: rgba(242, 241, 238, 0.85);
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
}
.cta-note {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(242, 241, 238, 0.6);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--pot-black);
  color: var(--pearl-white);
  padding: var(--space-2xl) 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(242, 241, 238, 0.12);
}

.logo-footer { color: var(--pearl-white); display: block; margin-bottom: 0; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }

.footer-tagline {
  margin-top: 1.25rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.45;
  color: rgba(242, 241, 238, 0.75);
  max-width: 28ch;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pearl-white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(242, 241, 238, 0.18);
  width: fit-content;
}

.footer-links li, .footer-contact li {
  font-size: 0.92rem;
  color: rgba(242, 241, 238, 0.78);
  line-height: 1.5;
  padding: 0.4rem 0;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--pearl-white); }

.footer-contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.footer-contact svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--pearl-white);
  opacity: 0.85;
}
.footer-contact a, .footer-contact span { color: rgba(242,241,238,0.78); }
.footer-contact li:hover svg { opacity: 1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.copyright {
  font-size: 0.82rem;
  color: rgba(242, 241, 238, 0.65);
  letter-spacing: 0.04em;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242, 241, 238, 0.45);
  border-radius: 50%;
  color: var(--pearl-white);
  transition: all var(--t-base) var(--ease-out);
}
.social-links svg { width: 16px; height: 16px; }
.social-links a:hover {
  border-color: var(--pearl-white);
  background: var(--pearl-white);
  color: var(--pot-black);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============================================
   FOCUS STATES (Accessibility)
   ============================================ */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--blood-red);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn-light:focus-visible { outline-color: var(--pearl-white); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; padding: 4.5rem 0 5rem; text-align: left; }
  .hero-visual { justify-content: flex-start; }
  .hero-band { margin: 0 1rem; }

  .about-grid, .founder-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual, .founder-visual { order: -1; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
  .process-line { display: none; }

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

@media (max-width: 768px) {
  :root { --container-pad: 1.25rem; }

  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }

  .hero { padding-top: 0.5rem; }
  .hero-band { margin: 0 0.75rem; }
  .hero-grid { padding: 4rem 0 4.5rem; gap: 2.5rem; }
  .hero-arc { width: 240px; height: 240px; bottom: -80px; right: -60px; }
  .hero-circle-deco { display: none; }
  .hero-photo-accent { width: 80px; height: 80px; }

  .about, .founder { padding: var(--space-2xl) 0 var(--space-xl); }
  .quote-band { padding: var(--space-xl) 0; }

  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 2rem 1.5rem; }

  .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-num { font-size: 3rem; }

  .founder-badge { right: calc(50% - 130px); width: 50px; height: 50px; }
  .founder-quote { font-size: 1.2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .hero-ctas { gap: 1.25rem; }

  .bullet-list li { gap: 0.85rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; }
  .section-title { font-size: 1.85rem; }
  .big-quote { font-size: 1.65rem; }
  .cta-title { font-size: 1.9rem; }
  .container { padding: 0 1rem; }
  .logo-img { height: 36px; }
  .logo-img-footer { height: 110px; }
}
