/* ─────────────────────────────────────────────
   MKT MIX — editorial site styles
   Design system: black / paper / marigold
   Type: Instrument Serif (display) + Helvetica Neue (sans)
   ───────────────────────────────────────────── */

:root {
  --ink: #0A0A0A;
  --ink-2: #1a1a1a;
  --paper: #FAFAF7;
  --paper-2: #F2F1EC;
  --rule: rgba(10,10,10,0.12);
  --rule-strong: rgba(10,10,10,0.28);
  --muted: rgba(10,10,10,0.55);
  --accent: #E0A82E;         /* refined marigold */
  --accent-soft: #F5E4B2;    /* lighter yellow for blocks */
  --accent-deep: #C99220;    /* deeper for hover ink */
  --accent-ink: #0A0A0A;

  --serif: "Instrument Serif", "Times New Roman", Georgia, serif;
  --sans: "Helvetica Neue", Helvetica, "Arial", sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", ui-monospace, Menlo, monospace;

  --gutter: clamp(20px, 4vw, 56px);
  --maxw: 1440px;
  --section-pad-y: clamp(80px, 12vw, 160px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

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

/* ───── HEADER ───── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px var(--gutter);
  background: rgba(250,250,247,0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--rule);
  background: rgba(250,250,247,0.92);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  position: relative;
}
.brand-mark { width: 26px; height: 26px; object-fit: contain; }
.brand-word { letter-spacing: 0.04em; }
.brand::before {
  content: "";
  position: absolute;
  left: -10px; top: 50%;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

.primary-nav { margin-left: auto; }
.primary-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 36px;
}
.primary-nav a {
  font-size: 13px; letter-spacing: 0.08em;
  text-transform: lowercase;
  position: relative; padding: 4px 0;
  transition: color .25s ease;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--accent);
  transition: right .35s cubic-bezier(.65,.05,.36,1);
}
.primary-nav a:hover::after { right: 0; }
.primary-nav a:hover { color: var(--ink); }

.header-utility {
  display: flex; align-items: center; gap: 16px;
  margin-left: 24px;
}
.lang-toggle {
  background: none; border: 1px solid var(--rule);
  padding: 7px 12px;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.14em;
  display: inline-flex; gap: 6px; cursor: pointer;
  transition: border-color .25s ease, background .25s ease;
}
.lang-toggle:hover { border-color: var(--accent); background: rgba(224,168,46,0.06); }
.lang-divider { color: var(--muted); }
[data-lang="pt"] .lang-pt { color: var(--accent-deep); font-weight: 700; }
[data-lang="pt"] .lang-en { color: var(--muted); }
[data-lang="en"] .lang-en { color: var(--accent-deep); font-weight: 700; }
[data-lang="en"] .lang-pt { color: var(--muted); }

.menu-btn {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 28px; height: 28px; padding: 0;
  flex-direction: column; justify-content: center; gap: 5px;
}
.menu-btn span {
  display: block; width: 22px; height: 1px; background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}
.menu-btn[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:last-child  { transform: translateY(-3px) rotate(-45deg); }

/* ───── MOBILE DRAWER ───── */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 49;
  background: var(--paper);
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.65,.05,.36,1);
  padding: 96px var(--gutter) 48px;
  pointer-events: none;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateY(0); pointer-events: auto; }
.m-nav { list-style: none; margin: 0; padding: 0; }
.m-nav li {
  display: flex; align-items: baseline; gap: 18px;
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
}
.m-nav a {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(36px, 9vw, 56px);
  line-height: 1;
}
.m-nav a:hover { color: var(--accent); }
.m-num { font-family: var(--mono); font-size: 11px; color: var(--accent); letter-spacing: 0.1em; }
.m-foot { margin-top: 48px; font-size: 13px; color: var(--muted); }
.m-foot p { margin: 2px 0; }
.m-foot a { color: var(--ink); border-bottom: 1px solid var(--accent); }

/* ───── HERO ───── */
.hero {
  position: relative;
  padding: clamp(120px, 18vh, 180px) var(--gutter) 0;
  min-height: 100vh;
  display: flex; flex-direction: column;
  max-width: var(--maxw); margin: 0 auto;
}
.hero-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 16px; margin-bottom: clamp(28px, 6vw, 56px);
}
.meta-line { font-family: var(--sans); }
.meta-line::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent);
  margin-right: 12px;
  vertical-align: middle;
  animation: blink 2.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.meta-year {
  font-family: var(--mono);
  background: var(--accent);
  color: var(--ink);
  padding: 4px 10px;
  letter-spacing: 0.16em;
}

.hero-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 8vw, 80px);
}

.hero-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.hl-line { display: block; }
.hl-italic { font-style: italic; color: var(--ink); padding-left: clamp(12px, 4vw, 64px); }
.hl-accent {
  position: relative;
  display: inline-block;
}
.hl-accent::after {
  content: ".";
  color: var(--accent);
  position: absolute;
  right: -0.18em; bottom: 0;
}

.hero-sub {
  display: flex; flex-direction: column; gap: 28px;
  padding-bottom: 12px;
  max-width: 420px;
}
.hero-sub p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  position: relative;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}

.cta-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.08em;
  text-transform: lowercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
  width: max-content;
  transition: color .25s ease, border-color .25s ease, gap .25s ease;
}
.cta-link:hover { color: var(--accent-deep); border-color: var(--accent); gap: 14px; }

/* hero figure with real photos */
.hero-figure { margin: 0; position: relative; }
.hero-frames {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}
.hero-frame {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-frame.is-active { opacity: 1; }
.hero-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02);
}
.frame-cap {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent);
  padding: 6px 10px;
}

.hero-fig-cap {
  display: flex; align-items: center; gap: 16px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.cap-idx { color: var(--ink); }
.cap-idx #frameIdx { color: var(--accent-deep); font-weight: 700; }
.cap-rule { flex: 1; height: 1px; background: var(--rule); position: relative; overflow: hidden; }
.cap-rule::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 33.333%; height: 100%;
  background: var(--accent);
  animation: capslide 15s ease-in-out infinite;
}
@keyframes capslide {
  0%,   33%   { left: 0%; }
  33.4%, 66%  { left: 33.333%; }
  66.4%, 100% { left: 66.666%; }
}

/* marquee */
.marquee {
  margin-top: auto;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--accent);
  padding: 18px 0 18px;
  overflow: hidden;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  color: var(--ink);
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  gap: 28px;
  animation: marquee 40s linear infinite;
}
.marquee-track span { display: inline-block; }
.marquee-track span:nth-child(even) { color: rgba(10,10,10,0.5); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ───── SECTION SHELL ───── */
.section {
  padding: var(--section-pad-y) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(48px, 7vw, 96px);
  max-width: 1100px;
}
.sec-num {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
  width: max-content;
}
.sec-num::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
}
.sec-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.sec-title em {
  font-style: italic;
  padding-left: clamp(8px, 3vw, 36px);
  color: var(--accent-deep);
}
.sec-kicker {
  max-width: 540px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  margin: 16px 0 0;
}

/* ───── ABOUT ───── */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
  border-top: 1px solid var(--ink);
  padding-top: clamp(40px, 5vw, 64px);
  position: relative;
}
.about-grid::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 80px; height: 3px;
  background: var(--accent);
}
.about-copy p { font-size: 16px; line-height: 1.65; margin: 0 0 20px; max-width: 60ch; }
.about-copy .lead {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  margin-bottom: 32px;
  letter-spacing: -0.005em;
}
.about-copy .lead::first-letter {
  color: var(--accent-deep);
  font-size: 1.4em;
  font-style: italic;
}
.about-side .facts {
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0;
}
.about-side .facts > div {
  display: flex; align-items: baseline; gap: 16px;
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  position: relative;
}
.about-side .facts > div::before {
  content: "";
  position: absolute; left: 0; bottom: -1px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .6s ease;
}
.about-side .facts > div.in::before { width: 100%; }
.about-side .facts dt {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  font-weight: 400;
  margin: 0;
  min-width: 120px;
  color: var(--accent-deep);
}
.about-side .facts dd {
  margin: 0;
  font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ───── SERVICES ───── */
.services-list {
  list-style: none; margin: 0; padding: 0;
  border-top: 2px solid var(--ink);
}
.service-row {
  display: grid;
  grid-template-columns: 80px 1.2fr 2fr;
  gap: clamp(20px, 4vw, 64px);
  align-items: baseline;
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: padding-left .35s ease;
}
.service-row::after {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 0; height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: width .35s ease, opacity .35s ease;
  pointer-events: none;
  z-index: -1;
}
.service-row:hover {
  padding-left: 18px;
}
.service-row:hover::after { width: 4px; opacity: 1; }
.service-row:hover .srv-name { color: var(--accent-deep); }
.service-row:hover .srv-num { color: var(--accent-deep); }

.srv-num {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: lowercase;
  transition: color .3s ease;
}
.srv-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  transition: color .3s ease;
}
.srv-desc {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px; line-height: 1.55;
  max-width: 56ch;
}

/* ───── CLIENTS ───── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
  border-left: 1px solid var(--rule);
}
.cli {
  padding: clamp(28px, 3.5vw, 40px) clamp(16px, 2vw, 28px);
  min-height: clamp(120px, 13vw, 160px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  transition: background .35s ease, transform .35s ease;
  position: relative;
  overflow: hidden;
}
.cli::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .4s cubic-bezier(.65,.05,.36,1);
}
.cli img {
  max-width: 75%;
  max-height: 60%;
  width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.78;
  transition: filter .35s ease, opacity .35s ease, transform .4s ease;
  mix-blend-mode: multiply;
}
.cli:hover {
  background: var(--accent);
}
.cli:hover::before { width: 100%; }
.cli:hover img {
  filter: grayscale(1) contrast(1);
  opacity: 1;
  transform: scale(1.04);
}

/* ───── TALENTS (dark section) ───── */
.section-talents {
  background: var(--ink);
  color: var(--paper);
  max-width: none;
  padding-left: 0; padding-right: 0;
}
.section-talents .section-head {
  padding: 0 var(--gutter);
  max-width: var(--maxw);
  margin-left: auto; margin-right: auto;
}
.section-head-dark .sec-num { color: var(--paper); }
.section-head-dark .sec-num::before { background: var(--accent); }
.section-head-dark .sec-title { color: var(--paper); }
.section-head-dark .sec-title em { color: var(--accent); }
.section-head-dark .sec-kicker { color: rgba(250,250,247,0.72); }

.talents-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(250,250,247,0.18);
  padding: 0 var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.talent {
  border-right: 1px solid rgba(250,250,247,0.12);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 18px;
  transition: background .3s ease;
  position: relative;
}
.talent:last-child { border-right: none; }
.talent::before {
  content: "";
  position: absolute; top: 0; left: 24px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .4s ease;
}
.talent:hover { background: rgba(224,168,46,0.06); }
.talent:hover::before { width: calc(100% - 48px); }
.t-portrait {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #1a1a1a;
  position: relative;
}
.t-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform .8s cubic-bezier(.22,.61,.36,1), filter .5s ease;
}
.talent:hover .t-portrait img {
  transform: scale(1.04);
  filter: grayscale(0.4) contrast(1.05);
}
.t-meta { display: flex; flex-direction: column; gap: 4px; }
.t-idx {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--accent);
}
.t-meta h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(20px, 1.7vw, 26px);
  margin: 0; letter-spacing: -0.005em;
}
.t-tag {
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.55);
}

/* ───── CONTACT ───── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-areas:
    "info form"
    "map  form";
  gap: clamp(32px, 4vw, 64px);
  border-top: 2px solid var(--ink);
  padding-top: clamp(40px, 5vw, 64px);
  position: relative;
}
.contact-grid::before {
  content: "";
  position: absolute;
  top: -2px; right: 0;
  width: 80px; height: 4px;
  background: var(--accent);
}
.contact-info { grid-area: info; display: flex; flex-direction: column; gap: 28px; }
.info-block {
  display: flex; flex-direction: column; gap: 6px;
  padding-left: 12px;
  border-left: 1px solid var(--rule);
  transition: border-color .25s ease;
}
.info-block:hover { border-left-color: var(--accent); }
.info-label {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.info-block p { font-size: 16px; line-height: 1.5; margin: 0; }
.info-block a { border-bottom: 1px solid transparent; transition: border-color .3s ease, color .3s ease; }
.info-block a:hover { color: var(--accent-deep); border-bottom-color: var(--accent); }

.contact-form {
  grid-area: form;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  align-content: start;
  background: var(--paper-2);
  padding: clamp(24px, 3vw, 40px);
  border-top: 3px solid var(--accent);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea {
  font-family: var(--serif);
  font-size: 20px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule-strong);
  padding: 8px 0 12px;
  color: var(--ink);
  resize: vertical;
  border-radius: 0;
  outline: none;
  transition: border-color .25s ease;
}
.field textarea { font-family: var(--sans); font-size: 16px; }
.field input:focus, .field textarea:focus { border-color: var(--accent); }

.form-actions {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  margin-top: 12px;
}
.submit-btn {
  background: var(--accent);
  color: var(--ink);
  border: none;
  font-family: var(--sans);
  font-size: 13px; letter-spacing: 0.1em;
  text-transform: lowercase;
  padding: 16px 22px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .3s ease, color .3s ease, gap .3s ease;
}
.submit-btn:hover { background: var(--ink); color: var(--accent); gap: 14px; }
.form-msg { font-size: 12px; color: var(--muted); margin: 0; }
.form-msg.ok { color: var(--accent-deep); font-weight: 600; }

.map-wrap {
  grid-area: map;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--rule);
  filter: grayscale(1) contrast(0.95);
  overflow: hidden;
  background: var(--paper-2);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ───── FOOTER ───── */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(64px, 8vw, 112px) var(--gutter) 32px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.f-brand {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 18px; letter-spacing: 0.04em;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,250,247,0.12);
  color: var(--accent);
}
.f-mark { width: 32px; height: 32px; }
.f-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 64px);
  padding: 40px 0;
  border-bottom: 1px solid rgba(250,250,247,0.12);
}
.f-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.f-cols a { color: rgba(250,250,247,0.78); transition: color .25s ease; }
.f-cols a:hover { color: var(--accent); }
.f-cols p { color: rgba(250,250,247,0.78); font-size: 14px; line-height: 1.55; margin: 0; }
.f-label {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.f-bottom {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(250,250,247,0.45);
  padding-top: 24px;
}

/* ───── REVEAL ANIMATION ───── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.22,.61,.36,1);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* ───── RESPONSIVE ───── */
@media (max-width: 960px) {
  .primary-nav { display: none; }
  .menu-btn { display: flex; }
  .header-utility { margin-left: auto; }

  .hero-body { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .hero-sub { max-width: 100%; }
  .hl-italic { padding-left: 24px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-side .facts dt { font-size: 48px; min-width: 96px; }

  .service-row {
    grid-template-columns: 40px 1fr;
    grid-template-areas: "num name" "num desc";
    gap: 8px 18px;
  }
  .srv-num { grid-area: num; }
  .srv-name { grid-area: name; }
  .srv-desc { grid-area: desc; }

  .clients-grid { grid-template-columns: repeat(3, 1fr); }

  .talents-grid { grid-template-columns: repeat(2, 1fr); }
  .talent:nth-child(2n) { border-right: none; }
  .talent { border-bottom: 1px solid rgba(250,250,247,0.12); }

  .contact-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "info" "form" "map";
  }
  .contact-form { grid-template-columns: 1fr; }
  .field-full { grid-column: 1; }

  .f-cols { grid-template-columns: 1fr; gap: 32px; }
  .f-bottom { flex-direction: column; gap: 10px; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .hero { padding-top: 100px; }
  .hero-meta { font-size: 10px; }
  .hero-frames { aspect-ratio: 4 / 5; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .talents-grid { grid-template-columns: 1fr; }
  .talent { border-right: none; }
  .sec-title em { padding-left: 0; }
}

/* Print */
@media print {
  .site-header, .mobile-drawer, .marquee, .submit-btn, .map-wrap { display: none !important; }
  body { background: #fff; color: #000; }
}
