/* ==========================================================================
   Instituto Friol · design system v5
   ========================================================================== */

:root {
  /* Brand */
  --c-purple: #6B3FA0;
  --c-purple-700: #5A2F8E;
  --c-purple-900: #3D1E62;
  --c-turquoise: #3FBFE0;
  --c-turquoise-700: #2A9CC2;
  --c-lilac: #A88BC9;

  /* Calor humano (acento novo) */
  --c-coral: #E76F51;
  --c-coral-strong: #C04B30;
  --c-coral-soft: #F4A261;
  --c-warm-bg: #FBF5EE;

  /* Neutros tintados */
  --c-bg: #FFFEFB;
  --c-bg-soft: #F9F4F0;
  --c-bg-muted: #F3ECEA;
  --c-ink: #1A1530;
  --c-ink-2: #4A455F;
  --c-ink-3: #7A7590;
  --c-line: #E9E1DC;

  /* Type — Hanken Grotesk + Gloock (escolhidos fora do reflex-reject list) */
  --f-sans: 'Hanken Grotesk', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --f-display: 'Gloock', 'Hanken Grotesk', serif;

  /* Spacing scale (4pt) */
  --s-1: .25rem; --s-2: .5rem; --s-3: .75rem; --s-4: 1rem;
  --s-5: 1.25rem; --s-6: 1.5rem; --s-8: 2rem; --s-10: 2.5rem;
  --s-12: 3rem; --s-16: 4rem; --s-20: 5rem; --s-24: 6rem; --s-32: 8rem;

  /* Layout */
  --container: 1240px;
  --container-narrow: 880px;
  --measure: 64ch;

  /* Radius */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 28px; --r-full: 9999px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(26, 21, 48, .04);
  --sh-md: 0 8px 24px -6px rgba(26, 21, 48, .08);
  --sh-lg: 0 24px 48px -16px rgba(26, 21, 48, .14);

  /* Motion */
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --t-1: 140ms; --t-2: 280ms; --t-3: 480ms;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--c-purple); text-decoration: none; transition: color var(--t-1) var(--ease-out); }
a:hover { color: var(--c-coral); }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
ul, ol { padding-left: 1.25rem; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-4);
  color: var(--c-ink);
}
h1 { font-size: clamp(2.6rem, 5vw + 1rem, 4.8rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 2.5vw + 1rem, 3rem); }
h3 { font-size: 1.45rem; line-height: 1.25; }
p  { margin: 0 0 var(--s-4); max-width: var(--measure); }
.lede { font-size: 1.18rem; color: var(--c-ink-2); line-height: 1.6; max-width: 56ch; }

/* Em uses Hanken Grotesk italic (real italic, não synthetic do Gloock) */
em, i {
  font-family: var(--f-sans);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--c-coral-strong);
}
/* Em hero/page-header (texto grande tolera contraste menor) */
.hero__title em, .page-header h1 em {
  color: var(--c-coral);
  font-weight: 600;
}

::selection { background: var(--c-coral); color: #fff; }

/* Skip link */
.skip-link {
  position: absolute; top: -50px; left: 16px;
  background: var(--c-ink); color: #fff;
  padding: var(--s-3) var(--s-5); border-radius: var(--r-md);
  z-index: 1000; transition: top var(--t-1) var(--ease-out);
}
.skip-link:focus { top: 16px; color: #fff; }

:focus-visible {
  outline: 2px solid var(--c-coral);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--s-6); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: clamp(4rem, 6vw + 2rem, 8rem) 0; }
.section--soft { background: var(--c-bg-soft); }
.section--warm { background: var(--c-warm-bg); }
.section--tight { padding: clamp(3rem, 4vw + 1rem, 5rem) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--f-sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-coral-strong);
  margin-bottom: var(--s-5);
}
.eyebrow::before {
  content: ''; width: 26px; height: 1.5px; background: currentColor;
}

.section-head { max-width: 720px; margin-bottom: var(--s-12); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 254, 251, .9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-2) var(--ease-out);
}
.site-header.is-scrolled { border-bottom-color: var(--c-line); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__logo { width: 42px; height: 42px; }
.brand__name {
  font-family: var(--f-display); font-weight: 400;
  font-size: 1.15rem;
  color: var(--c-ink);
  transition: color var(--t-2) var(--ease-out);
}
.brand__name span {
  font-style: italic; color: var(--c-purple);
  transition: color var(--t-2) var(--ease-out);
}
.brand:hover .brand__name span { color: var(--c-coral); }

.nav { display: flex; align-items: center; gap: var(--s-2); }
.nav__list {
  display: flex; align-items: center; gap: 0;
  margin: 0; padding: 0; list-style: none;
}
.nav__link {
  display: inline-flex; align-items: center;
  min-height: 44px; padding: .75rem 1rem;
  font-size: .96rem; font-weight: 500;
  color: var(--c-ink-2); border-radius: var(--r-md);
  transition: color var(--t-1) var(--ease-out);
}
.nav__link:hover { color: var(--c-ink); }
.nav__link.is-active { color: var(--c-purple); }
.nav__link.is-active::after {
  content: ''; display: block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-coral);
  margin-left: .5rem;
}

.nav__cta { margin-left: var(--s-3); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  align-items: center; justify-content: center;
}
.nav-toggle:hover { background: var(--c-bg-muted); }
.nav-toggle__bar {
  position: relative; display: block;
  width: 22px; height: 2px; background: var(--c-ink);
  border-radius: 2px;
  transition: transform var(--t-2) var(--ease-out), opacity var(--t-1);
}
.nav-toggle__bar::before, .nav-toggle__bar::after {
  content: ''; position: absolute; left: 0;
  width: 22px; height: 2px; background: var(--c-ink); border-radius: 2px;
  transition: transform var(--t-2) var(--ease-out);
}
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after  { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after  { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 80px 0 0 0;
    background: rgba(255, 254, 251, .98);
    backdrop-filter: blur(14px);
    flex-direction: column; align-items: stretch;
    padding: var(--s-6);
    transform: translateX(100%);
    transition: transform var(--t-2) var(--ease-out);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: var(--s-1); }
  .nav__link { padding: var(--s-4); font-size: 1.15rem; }
  .nav__cta { margin: var(--s-4) 0 0; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px;
  padding: .85rem 1.6rem;
  font-family: var(--f-sans);
  font-size: 1rem; font-weight: 600; line-height: 1;
  border-radius: var(--r-full);
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform var(--t-1) var(--ease-out),
              background var(--t-1), color var(--t-1), box-shadow var(--t-2);
}
.btn:active { transform: translateY(1px); }
.btn:disabled, .btn[aria-disabled="true"] {
  opacity: .55; cursor: not-allowed; pointer-events: none;
}
.btn svg { width: 16px; height: 16px; transition: transform var(--t-1) var(--ease-out); }
.btn:hover svg.arrow { transform: translateX(3px); }

.btn--primary {
  background: var(--c-ink); color: #fff;
}
.btn--primary:hover {
  background: var(--c-coral); color: #fff;
}

.btn--ghost {
  background: transparent; color: var(--c-ink);
  box-shadow: inset 0 0 0 1.5px var(--c-ink);
}
.btn--ghost:hover { background: var(--c-ink); color: #fff; }

.btn--coral {
  background: var(--c-coral); color: #fff;
}
.btn--coral:hover { background: var(--c-ink); color: #fff; }

.btn--lg { min-height: 56px; padding: 1.05rem 1.85rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   Hero · asymmetric editorial
   ========================================================================== */

.hero {
  position: relative;
  padding: clamp(4rem, 6vw + 1rem, 7rem) 0 clamp(3rem, 4vw, 5rem);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-12); }
}

.hero__title {
  font-size: clamp(2.6rem, 5vw + 1rem, 5.4rem);
  letter-spacing: -0.03em; line-height: 1.02;
  margin-bottom: var(--s-6);
}
.hero__title em { color: var(--c-coral); font-weight: 400; }

.hero__lede {
  font-size: clamp(1.05rem, .5vw + 1rem, 1.25rem);
  color: var(--c-ink-2);
  max-width: 50ch;
  margin-bottom: var(--s-8);
  line-height: 1.55;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-3); }

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-bg-muted);
}
.hero__visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.hero__visual:hover img { transform: scale(1.03); }

.hero__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 21, 48, .25) 100%);
  pointer-events: none;
}

@media (max-width: 960px) {
  .hero__visual { aspect-ratio: 16 / 11; }
}

/* ==========================================================================
   Mission & Vision · editorial split
   ========================================================================== */

.mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
@media (max-width: 720px) { .mv { grid-template-columns: 1fr; } }

.mv__block { padding-top: var(--s-4); }
.mv__label {
  display: block;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--c-coral-strong); margin-bottom: var(--s-4);
}
.mv__text {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 1.5vw + 1rem, 2rem);
  line-height: 1.25;
  color: var(--c-ink);
  letter-spacing: -0.01em;
  max-width: 28ch;
}

/* ==========================================================================
   Services · numbered editorial list (no cards, no icons)
   ========================================================================== */

.services { list-style: none; padding: 0; margin: 0; }
.service {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 4vw, 4rem);
  align-items: baseline;
  padding: var(--s-10) 0;
  border-top: 1px solid var(--c-line);
  transition: padding-left var(--t-2) var(--ease-out);
}
.service:last-child { border-bottom: 1px solid var(--c-line); }
.service:hover { padding-left: var(--s-3); }
.service__num {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--c-ink-3);
  letter-spacing: .06em;
}
.service__title {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 1.5vw + 1rem, 2.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-3);
}
.service__text {
  font-size: .98rem;
  color: var(--c-ink-2);
  margin: 0;
  max-width: 56ch;
  line-height: 1.55;
}
.service__arrow {
  color: var(--c-ink-3);
  transition: color var(--t-1), transform var(--t-1);
}
.service:hover .service__arrow { color: var(--c-coral); transform: translateX(4px); }

@media (max-width: 720px) {
  .service { grid-template-columns: auto 1fr; }
  .service__arrow { display: none; }
  .service__title { font-size: 1.4rem; }
}

/* ==========================================================================
   Values · typographic list
   ========================================================================== */

.values { list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(2rem, 4vw, 4rem);
  row-gap: var(--s-10);
}
@media (max-width: 720px) { .values { grid-template-columns: 1fr; row-gap: var(--s-8); } }

.value {
  display: grid; grid-template-columns: auto 1fr;
  gap: var(--s-5); align-items: baseline;
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--c-line);
}
.value__num {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--c-coral);
  letter-spacing: .04em;
}
.value__title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 var(--s-2);
  letter-spacing: -0.01em;
}
.value__text { color: var(--c-ink-2); font-size: .97rem; margin: 0; max-width: 36ch; line-height: 1.55; }

/* ==========================================================================
   Pillars (Participe) · numbered + arrow
   ========================================================================== */

.pillars { list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
}
@media (max-width: 720px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  position: relative;
  padding: var(--s-8) var(--s-6);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  transition: border-color var(--t-2), transform var(--t-2);
  display: grid; grid-template-columns: auto 1fr;
  gap: var(--s-5); align-items: start;
}
.pillar:hover { border-color: var(--c-coral); transform: translateY(-3px); }
.pillar__num {
  font-family: var(--f-display);
  font-size: 2.4rem;
  color: var(--c-coral);
  line-height: 1;
}
.pillar__title { font-family: var(--f-display); font-size: 1.3rem; font-weight: 400; margin: 0 0 var(--s-2); }
.pillar__text { color: var(--c-ink-2); margin: 0 0 var(--s-4); max-width: 42ch; font-size: .97rem; line-height: 1.55; }
.pillar__link {
  font-weight: 600; font-size: .92rem;
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--c-purple);
}
.pillar__link:hover { color: var(--c-coral); }
.pillar__link svg { width: 14px; height: 14px; transition: transform var(--t-1); }
.pillar__link:hover svg { transform: translateX(3px); }

/* ==========================================================================
   Imagery & quote callouts
   ========================================================================== */

.figure {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-bg-muted);
}
.figure img { width: 100%; height: auto; display: block; }

.figure-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-6);
}
@media (max-width: 720px) { .figure-pair { grid-template-columns: 1fr; } }

/* ==========================================================================
   CTA Banner · sólido, sem gradient
   ========================================================================== */

.cta-banner {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--c-ink);
  color: #ffffff;
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: grid; grid-template-columns: 1.4fr auto;
  gap: var(--s-8); align-items: center;
}
.cta-banner h2 { color: #ffffff; margin-bottom: var(--s-4); max-width: 18ch; }
.cta-banner p { color: rgba(255, 255, 255, .8); max-width: 50ch; margin: 0; font-size: 1.05rem; }
.cta-banner .btn--primary {
  background: var(--c-coral); color: #fff;
}
.cta-banner .btn--primary:hover { background: #fff; color: var(--c-ink); }
@media (max-width: 720px) {
  .cta-banner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */

.page-header {
  padding: clamp(4rem, 5vw + 1rem, 7rem) 0 clamp(2rem, 3vw, 4rem);
  background: var(--c-bg-soft);
  border-bottom: 1px solid var(--c-line);
}
.page-header__inner { max-width: 760px; }
.page-header h1 {
  font-size: clamp(2.4rem, 4vw + 1rem, 4rem);
  letter-spacing: -0.025em; line-height: 1.05;
  margin-bottom: var(--s-5);
}
.page-header p { font-size: 1.15rem; color: var(--c-ink-2); margin: 0; max-width: 56ch; }

/* ==========================================================================
   Newsletter
   ========================================================================== */

.newsletter {
  background: var(--c-warm-bg);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: center;
}
.newsletter h3 { margin-bottom: var(--s-2); font-size: 1.6rem; }
.newsletter p { color: var(--c-ink-2); margin: 0; max-width: 40ch; }
.newsletter form { display: flex; gap: var(--s-2); }
.newsletter input {
  flex: 1; padding: .9rem 1rem; font: inherit; font-size: 1rem;
  border: 1.5px solid var(--c-line); border-radius: var(--r-full);
  background: #fff; color: var(--c-ink); min-height: 48px;
}
.newsletter input:focus { outline: none; border-color: var(--c-coral); box-shadow: 0 0 0 4px rgba(231, 111, 81, .15); }
@media (max-width: 880px) { .newsletter { grid-template-columns: 1fr; } }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: var(--s-8); } }

.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-6); }
.info-item { display: flex; gap: var(--s-4); align-items: start; }
.info-item__label {
  display: block; font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-ink-3); margin-bottom: .25rem;
}
.info-item__value {
  font-family: var(--f-display); font-weight: 400;
  font-size: 1.15rem; color: var(--c-ink); line-height: 1.35;
  letter-spacing: -0.01em;
}
.info-item a.info-item__value { color: var(--c-ink); }
.info-item a.info-item__value:hover { color: var(--c-coral); }

.info-rule { width: 28px; height: 1.5px; background: var(--c-coral); margin-top: .85rem; flex-shrink: 0; }

/* Form */
.form { display: grid; gap: var(--s-5); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: .35rem; }
.field label {
  font-size: .9rem; font-weight: 500; color: var(--c-ink-2);
}
.field input, .field textarea {
  width: 100%;
  padding: .9rem 1rem;
  min-height: 48px;
  font: inherit; font-size: 1rem; color: var(--c-ink);
  background: var(--c-bg);
  border: 1.5px solid var(--c-line); border-radius: var(--r-md);
  transition: border-color var(--t-1), box-shadow var(--t-1);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--c-coral);
  box-shadow: 0 0 0 4px rgba(231, 111, 81, .15);
}
.field textarea { min-height: 140px; resize: vertical; }
.field--check {
  display: grid; grid-template-columns: auto 1fr; gap: .65rem; align-items: start;
  font-size: .92rem; color: var(--c-ink-2);
}
.field--check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--c-coral); }

.form__feedback {
  padding: var(--s-4); border-radius: var(--r-md);
  font-size: .96rem; display: none;
}
.form__feedback.is-success { display: block; background: rgba(63, 191, 224, .14); color: var(--c-turquoise-700); }
.form__feedback.is-error   { display: block; background: rgba(220, 38, 38, .08); color: #b91c1c; }

/* ==========================================================================
   Footer · light, with editorial calm
   ========================================================================== */

.site-footer {
  background: var(--c-bg-soft);
  color: var(--c-ink);
  padding: clamp(4rem, 5vw, 6rem) 0 var(--s-8);
  margin-top: clamp(4rem, 6vw, 7rem);
  border-top: 4px solid var(--c-coral);
}
.site-footer p, .site-footer li, .site-footer span, .site-footer address { color: inherit; }

.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-10);
  margin-bottom: var(--s-16);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer__brand .brand,
.footer__brand .brand__name { color: var(--c-ink) !important; }
.footer__brand .brand__name span { color: var(--c-purple) !important; }
.footer__about { color: var(--c-ink-2); font-size: .96rem; max-width: 32ch; margin-top: var(--s-4); }

.footer h4 {
  font-family: var(--f-sans);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-coral-strong);
  margin-bottom: var(--s-5);
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li + li { margin-top: var(--s-3); }
.footer ul li { color: var(--c-ink); font-size: .98rem; line-height: 1.55; }
.footer a { color: var(--c-ink); font-size: .98rem; font-weight: 500; }
.footer a:hover { color: var(--c-coral); }

.socials { display: flex; gap: var(--s-3); margin-top: var(--s-4); }
.socials a {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: var(--r-full);
  background: #ffffff;
  border: 1px solid var(--c-line);
  transition: background var(--t-1), border-color var(--t-1), transform var(--t-1);
}
.socials a:hover {
  background: var(--c-coral); border-color: var(--c-coral); transform: translateY(-2px);
}
.socials a:hover svg { color: #ffffff; }
.socials svg { width: 18px; height: 18px; color: var(--c-ink); transition: color var(--t-1); }

.footer__legal {
  border-top: 1px solid var(--c-line);
  padding-top: var(--s-6);
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-4);
  font-size: .88rem; color: var(--c-ink-3);
  flex-wrap: wrap;
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

.reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__visual:hover img { transform: none; }
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.muted { color: var(--c-ink-2); }
.no-bullets { list-style: none; padding: 0; }
.mt-4 { margin-top: var(--s-4); }
