/* ============================================================
   SALGADO ADVOGADOS ASSOCIADOS — Direito Bancário Empresarial
   Design system
   ============================================================ */

:root {
  /* Ink / dark */
  --ink:        #0b0b0d;
  --ink-2:      #121216;
  --ink-3:      #1b1b21;
  --ink-line:   rgba(255,255,255,0.10);
  --ink-line-2: rgba(255,255,255,0.06);

  /* Paper / light */
  --paper:      #f4f1ea;
  --paper-2:    #ece7dc;
  --paper-3:    #e2dccd;
  --paper-line: rgba(11,11,13,0.12);

  /* Accent — antique gold */
  --gold:       oklch(0.68 0.072 74);
  --gold-soft:  oklch(0.76 0.06 78);
  --gold-deep:  oklch(0.55 0.07 70);
  --gold-wash:  oklch(0.68 0.072 74 / 0.12);

  /* Text */
  --on-dark:        #f4f1ea;
  --on-dark-muted:  rgba(244,241,234,0.62);
  --on-dark-faint:  rgba(244,241,234,0.40);
  --on-light:       #16161a;
  --on-light-muted: rgba(22,22,26,0.64);
  --on-light-faint: rgba(22,22,26,0.45);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --display: "Marcellus", Georgia, serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --maxw: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--on-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

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

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.on-dark { color: var(--gold-soft); }

h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.06; letter-spacing: -0.01em; }

.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.04;
}

.lede { font-size: 1.16rem; line-height: 1.62; color: var(--on-light-muted); font-weight: 400; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: clamp(72px, 9vw, 132px) 0; position: relative; }
.section--dark { background: var(--ink); color: var(--on-dark); }
.section--paper2 { background: var(--paper-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 15px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  border-radius: 0;
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(0,0,0,0.5); }
.btn--ghost-light { background: transparent; color: var(--on-dark); border-color: var(--ink-line); }
.btn--ghost-light:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn--ghost-dark { background: transparent; color: var(--on-light); border-color: var(--paper-line); }
.btn--ghost-dark:hover { border-color: var(--ink); background: var(--ink); color: var(--on-dark); }
.btn--solid-dark { background: var(--ink); color: var(--on-dark); }
.btn--solid-dark:hover { background: var(--ink-3); transform: translateY(-2px); }
.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11,11,13,0.86);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--ink-line);
}
.site-header::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,11,13,0.88) 0%, rgba(11,11,13,0.45) 55%, rgba(11,11,13,0) 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s var(--ease);
}
.site-header.scrolled::before { opacity: 0; }
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease);
}
.site-header.scrolled .nav { padding-top: 14px; padding-bottom: 14px; }
.nav__brand { display: flex; align-items: center; gap: 14px; }
.nav__mark {
  height: 46px; width: auto;
  display: block;
  transition: height 0.4s var(--ease);
}
.site-header.scrolled .nav__mark { height: 40px; }
.nav__brand-txt { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-txt b {
  font-family: var(--display);
  font-size: 1.18rem;
  letter-spacing: 0.14em;
  color: var(--on-dark);
  font-weight: 400;
}
.nav__brand-txt span {
  font-size: 0.56rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  margin-top: 4px;
}
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(244,241,234,0.80);
  transition: color 0.3s var(--ease);
  position: relative;
  text-shadow: 0 1px 10px rgba(0,0,0,0.55);
}
.site-header.scrolled .nav__links a { text-shadow: none; color: var(--on-dark-muted); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold); transition: width 0.35s var(--ease);
}
.nav__links a:hover { color: var(--on-dark); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--on-dark); display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.nav__phone svg { stroke: var(--gold); }
.nav__burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__burger span { display: block; width: 26px; height: 2px; background: var(--on-dark); margin: 5px 0; transition: 0.3s var(--ease); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px;
  opacity: 0; pointer-events: none; transform: translateY(-10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu a {
  font-family: var(--display); font-size: 2rem; color: var(--on-dark);
  padding: 14px 0; border-bottom: 1px solid var(--ink-line);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 28px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--on-dark);
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  isolation: isolate;
  overflow: hidden;
}
.hero__content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 150px 6vw 80px clamp(32px, 8vw, 120px);
  max-width: 760px;
}
.hero__eyebrow { margin-bottom: 30px; }
.hero h1 { font-size: clamp(2.6rem, 5.6vw, 5rem); line-height: 1.0; }
.hero h1 em { font-style: italic; font-family: var(--serif); color: var(--gold-soft); font-weight: 500; }
.hero__sub {
  margin-top: 28px;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.66;
  color: var(--on-dark-muted);
  max-width: 50ch;
}
.hero__actions { margin-top: 42px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero__meta {
  margin-top: 48px; padding-top: 28px;
  border-top: 1px solid var(--ink-line);
  display: flex; gap: 38px; flex-wrap: wrap;
}
.hero__meta .item { display: flex; flex-direction: column; gap: 4px; }
.hero__meta .item b { font-family: var(--display); font-size: 1.7rem; color: var(--gold-soft); font-weight: 400; }
.hero__meta .item span { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-faint); }

.hero__media { position: relative; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--ink) 0%, rgba(11,11,13,0.5) 22%, rgba(11,11,13,0) 55%),
              linear-gradient(0deg, rgba(11,11,13,0.45), rgba(11,11,13,0) 40%);
}
.hero__badge {
  position: absolute; right: 32px; bottom: 32px; z-index: 3;
  background: rgba(11,11,13,0.66); backdrop-filter: blur(8px);
  border: 1px solid var(--ink-line);
  padding: 16px 22px; display: flex; align-items: center; gap: 14px;
}
.hero__badge b { font-family: var(--display); font-size: 0.98rem; letter-spacing: 0.04em; }
.hero__badge span { font-size: 0.72rem; color: var(--on-dark-muted); letter-spacing: 0.06em; }
.hero__badge .div { width: 1px; height: 30px; background: var(--ink-line); }

.hero__scroll {
  position: absolute; left: clamp(32px, 8vw, 120px); bottom: 30px; z-index: 4;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--on-dark-faint);
}
.hero__scroll .line { width: 40px; height: 1px; background: var(--on-dark-faint); position: relative; overflow: hidden; }
.hero__scroll .line::after { content:""; position:absolute; inset:0; background: var(--gold); transform: translateX(-100%); animation: scrollline 2.6s var(--ease) infinite; }
@keyframes scrollline { 0%{transform:translateX(-100%)} 50%{transform:translateX(0)} 100%{transform:translateX(100%)} }

/* ============================================================
   QUEM SOMOS
   ============================================================ */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 110px); align-items: center; }
.about__media { position: relative; }
.about__media .frame { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.about__media .frame img { width: 100%; height: 100%; object-fit: cover; }
.about__media .tag {
  position: absolute; left: -1px; bottom: 28px;
  background: var(--ink); color: var(--on-dark);
  padding: 18px 26px; max-width: 70%;
}
.about__media .tag .q { font-family: var(--serif); font-style: italic; font-size: 1.18rem; line-height: 1.4; }
.about__media .tag .a { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); margin-top: 10px; }
.about__media .accent { position: absolute; top: -18px; right: -18px; width: 120px; height: 120px; border: 1px solid var(--gold); z-index: -1; }

.about__body h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); margin: 26px 0 24px; }
.about__body p { margin-bottom: 20px; }
.mission {
  margin-top: 32px; padding: 26px 28px;
  background: var(--paper-2); border-left: 2px solid var(--gold);
}
.mission b { font-family: var(--display); letter-spacing: 0.04em; display: block; margin-bottom: 8px; color: var(--gold-deep); font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.16em; }
.mission p { font-family: var(--serif); font-size: 1.32rem; line-height: 1.5; color: var(--on-light); margin: 0; }

/* ============================================================
   WATERMARK (monograma)
   ============================================================ */
.has-wm { overflow: hidden; }
.has-wm > .wrap { position: relative; z-index: 1; }
.wm {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  opacity: 0.05;
  width: auto;
}
.wm--areas   { right: -70px;  top: 8%;   height: 620px; }
.wm--claudio { left: -90px;   bottom: -90px; height: 560px; transform: rotate(0deg); }
.wm--contato { right: -60px;  bottom: -110px; height: 640px; }
@media (max-width: 920px) {
  .wm--areas { right: -120px; height: 440px; opacity: 0.04; }
  .wm--claudio { left: -130px; height: 420px; opacity: 0.04; }
  .wm--contato { right: -120px; height: 460px; opacity: 0.04; }
}

/* ============================================================
   ÁREAS DE ATUAÇÃO
   ============================================================ */
.areas__head { max-width: 760px; margin-bottom: 64px; }
.areas__head h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); margin: 24px 0 22px; }
.areas__head h2 em { font-style: italic; font-family: var(--serif); color: var(--gold-soft); }

.area {
  display: grid;
  grid-template-columns: 88px 1fr 1.05fr;
  gap: clamp(24px, 4vw, 60px);
  padding: 52px 0;
  border-top: 1px solid var(--ink-line);
  align-items: start;
}
.area:last-child { border-bottom: 1px solid var(--ink-line); }
.area__num { font-family: var(--display); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.area__intro h3 { font-size: 1.78rem; margin-bottom: 18px; }
.area__intro p { color: var(--on-dark-muted); line-height: 1.66; margin-bottom: 22px; }
.area__intro .note {
  font-family: var(--serif); font-style: italic; font-size: 1.08rem; line-height: 1.5;
  color: var(--on-dark); padding-left: 18px; border-left: 2px solid var(--gold); display: block;
}
.area__intro .note span { color: var(--gold-soft); font-style: normal; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; display: block; margin-bottom: 8px; }
.area__list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.area__list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 0.95rem; line-height: 1.5; color: var(--on-dark-muted);
  padding-bottom: 14px; border-bottom: 1px solid var(--ink-line-2);
}
.area__list li:last-child { border-bottom: none; }
.area__list li::before {
  content: "›"; color: var(--gold); font-size: 1.1rem; line-height: 1.3; flex-shrink: 0;
}

/* ============================================================
   POR QUE SALGADO
   ============================================================ */
.why__head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 60px; }
.why__head h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); }
.why__head h2 em { font-style: italic; font-family: var(--serif); color: var(--gold-deep); }
.why__head p { color: var(--on-light-muted); line-height: 1.66; }
.why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--paper-line); border: 1px solid var(--paper-line); }
.why__cell { background: var(--paper); padding: 38px 34px; transition: background 0.4s var(--ease); }
.why__cell:hover { background: var(--paper-2); }
.why__cell .ix { font-family: var(--display); font-size: 0.92rem; color: var(--gold-deep); letter-spacing: 0.1em; }
.why__cell h4 { font-family: var(--display); font-size: 1.42rem; margin: 16px 0 12px; font-weight: 400; letter-spacing: -0.01em; }
.why__cell p { font-size: 0.95rem; line-height: 1.6; color: var(--on-light-muted); }

/* ============================================================
   CLÁUDIO / FOUNDER
   ============================================================ */
.founder { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.founder__media { position: relative; }
.founder__media .frame { overflow: hidden; aspect-ratio: 4/5; }
.founder__media .frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.founder__media .accent { position: absolute; bottom: -18px; left: -18px; width: 140px; height: 140px; border: 1px solid var(--gold); z-index: -1; }
.founder__body .eyebrow { margin-bottom: 26px; }
.founder__body h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
.founder__body .role { color: var(--gold-soft); font-size: 0.92rem; letter-spacing: 0.16em; text-transform: uppercase; margin: 14px 0 26px; display: block; }
.founder__body p { color: var(--on-dark-muted); line-height: 1.7; margin-bottom: 20px; font-size: 1.04rem; }
.founder__body .sign { display: flex; align-items: center; gap: 20px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--ink-line); }
.founder__body .sign .name { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--on-dark); }
.founder__body .sign .oab { font-size: 0.78rem; letter-spacing: 0.1em; color: var(--on-dark-muted); }

/* ============================================================
   ENVIRONMENT GALLERY
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery figure { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.gallery figure:first-child { grid-row: span 1; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 0; bottom: 0; right: 0;
  padding: 22px 20px 18px;
  background: linear-gradient(0deg, rgba(11,11,13,0.82), rgba(11,11,13,0));
  color: var(--on-dark);
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
}

/* ============================================================
   CONTATO
   ============================================================ */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); }
.contact__intro h2 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); margin: 24px 0 22px; }
.contact__intro h2 em { font-style: italic; font-family: var(--serif); color: var(--gold-soft); }
.contact__intro > p { color: var(--on-dark-muted); line-height: 1.68; max-width: 46ch; margin-bottom: 38px; }
.contact__info { display: flex; flex-direction: column; gap: 2px; }
.contact__row { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-top: 1px solid var(--ink-line); }
.contact__row .ico { width: 22px; height: 22px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact__row .lbl { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark-faint); display: block; margin-bottom: 6px; }
.contact__row .val { font-size: 1.02rem; color: var(--on-dark); line-height: 1.45; }
.contact__row a.val:hover { color: var(--gold-soft); }
.contact__tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.contact__tags span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-muted); border: 1px solid var(--ink-line); padding: 8px 14px; }

.form { background: var(--ink-2); border: 1px solid var(--ink-line); padding: clamp(28px, 4vw, 44px); }
.form h3 { font-size: 1.6rem; margin-bottom: 8px; }
.form > p { color: var(--on-dark-muted); font-size: 0.92rem; margin-bottom: 28px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 9px; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--ink); border: 1px solid var(--ink-line);
  color: var(--on-dark); font-family: var(--sans); font-size: 0.96rem;
  padding: 14px 16px; transition: border-color 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: var(--on-dark-faint); }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .btn { width: 100%; margin-top: 8px; }
.form__note { font-size: 0.78rem; color: var(--on-dark-faint); margin-top: 16px; text-align: center; }
.form__success { display: none; text-align: center; padding: 30px 10px; }
.form__success.show { display: block; }
.form__success .ck { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--gold); display: grid; place-items: center; margin: 0 auto 20px; }
.form__success .ck svg { stroke: var(--gold); }
.form__success h3 { margin-bottom: 10px; }
.form__success p { color: var(--on-dark-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--on-dark); padding: 72px 0 34px; border-top: 1px solid var(--ink-line); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 50px; border-bottom: 1px solid var(--ink-line); }
.footer__brand img { height: 96px; width: auto; margin-bottom: 22px; }
.footer__brand p { color: var(--on-dark-muted); line-height: 1.6; font-size: 0.92rem; max-width: 36ch; }
.footer__col h5 { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 20px; }
.footer__col a, .footer__col p { display: block; color: var(--on-dark-muted); font-size: 0.92rem; line-height: 1.5; margin-bottom: 12px; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--on-dark); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 26px; flex-wrap: wrap; }
.footer__bottom p { font-size: 0.8rem; color: var(--on-dark-faint); }
.footer__bottom .legal { display: flex; gap: 20px; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  display: flex; align-items: center; gap: 12px;
  background: #1faa55; color: #fff;
  padding: 14px 20px 14px 16px; border-radius: 100px;
  box-shadow: 0 14px 34px -10px rgba(0,0,0,0.5);
  font-weight: 600; font-size: 0.9rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  transform: translateY(120px);
}
.wa-float.show { transform: translateY(0); }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(0,0,0,0.6); }
.wa-float svg { width: 24px; height: 24px; fill: #fff; }
.wa-float .txt { display: flex; flex-direction: column; line-height: 1.15; }
.wa-float .txt small { font-weight: 500; opacity: 0.85; font-size: 0.7rem; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__scroll .line::after { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: block; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { padding: 130px 32px 60px; min-height: 88svh; justify-content: center; }
  .hero__media { min-height: 70vh; order: 2; }
  .hero__media img { object-position: center 20%; }
  .about, .founder, .contact { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
  .founder__media { max-width: 420px; margin: 0 auto; }
  .why__head { grid-template-columns: 1fr; gap: 18px; }
  .area { grid-template-columns: 60px 1fr; }
  .area__list { grid-column: 1 / -1; margin-top: 8px; }
  .area__num { font-size: 2rem; }
}
@media (max-width: 620px) {
  .wrap { padding: 0 22px; }
  .nav { padding: 18px 22px; }
  .why__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .field.row2 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 34px; }
  .hero__meta { gap: 24px; }
  .area { grid-template-columns: 1fr; }
  .area__num { font-size: 1.6rem; }
  .wa-float .txt { display: none; }
  .wa-float { padding: 14px; }
}
