/* ========================================
   MACNOS · Design System
   Premium editorial aesthetic
   ======================================== */

:root {
  /* Palette */
  --ink:        #0F0E0C;
  --ink-soft:   #1A1815;
  --cream:      #F4EEE4;
  --cream-deep: #EBE3D5;
  --paper:      #FBF7F0;
  --accent:     #E8541C;
  --accent-2:   #D44116;
  --muted:      #8A827A;
  --line:       rgba(15, 14, 12, 0.12);
  --line-light: rgba(244, 238, 228, 0.16);

  /* Type */
  --font-serif: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --gut: clamp(20px, 4vw, 56px);
  --section: clamp(80px, 12vw, 180px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: opacity .3s var(--ease), color .3s var(--ease); }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

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

/* ===== Grain ===== */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1000;
  opacity: 0.06; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ===== Shared ===== */
.h-display {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(38px, 6.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.h-display .italic, .italic { font-style: italic; font-weight: 400; color: var(--muted); }
.h-display .highlight, .highlight {
  display: inline-block;
  position: relative;
  color: var(--accent);
  font-style: normal;
  font-weight: 500;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow--light { color: var(--cream); }
.eyebrow__dash {
  width: 28px; height: 1px; background: currentColor; opacity: .6;
}

.tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); font-weight: 500;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(251, 247, 240, 0.6);
  backdrop-filter: blur(10px);
}
.tag__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 84, 28, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232, 84, 28, 0.18); }
  50% { box-shadow: 0 0 0 7px rgba(232, 84, 28, 0.05); }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 28px;
  border-radius: 100px;
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
  transition: all .4s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink); color: var(--cream);
}
.btn--primary svg { transition: transform .4s var(--ease); }
.btn--primary:hover { background: var(--accent); }
.btn--primary:hover svg { transform: translate(3px, -3px); }
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  padding: 18px 26px;
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px var(--gut);
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 14px var(--gut);
  background: rgba(244, 238, 228, 0.85);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: inline-flex; align-items: baseline;
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.03em;
}
.nav__logo-mark {
  color: var(--accent);
  font-weight: 600;
  font-size: 22px;
}
.nav__links {
  display: flex; gap: 36px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width .4s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  transition: all .4s var(--ease);
}
.nav__cta svg { transition: transform .4s var(--ease); }
.nav__cta:hover { background: var(--ink); color: var(--cream); }
.nav__cta:hover svg { transform: translate(2px, -2px); }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
}
.nav__burger span {
  width: 22px; height: 1.5px; background: var(--ink);
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.nav__burger[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--cream);
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
  padding: 120px var(--gut) var(--gut);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu nav {
  display: flex; flex-direction: column; gap: 24px;
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.mobile-menu .is-cta {
  margin-top: 24px;
  font-size: 20px;
  color: var(--accent);
  font-style: normal;
}

/* ============ HERO ============ */
.hero {
  padding: 140px var(--gut) 80px;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: space-between;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
.hero__meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 60px;
}
.hero__year {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--muted);
  font-weight: 500;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(56px, 12vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  color: var(--ink);
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .reveal {
  display: inline-block;
  transform: translateY(110%);
  animation: revealUp 1.1s var(--ease-out) forwards;
}
.hero__title .line:nth-child(1) .reveal { animation-delay: .05s; }
.hero__title .line:nth-child(2) .reveal { animation-delay: .12s; }
.hero__title .line:nth-child(3) .reveal { animation-delay: .19s; }
.hero__title .line:nth-child(4) .reveal { animation-delay: .26s; }
.hero__title .line:nth-child(5) .reveal { animation-delay: .38s; }
.hero__title .line:nth-child(6) .reveal { animation-delay: .44s; }
.reveal--italic { font-style: normal; color: var(--accent); font-weight: 500; }

.hero__title-sub {
  font-size: 0.32em;
  font-style: normal;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.hero__title-sub .reveal { color: var(--muted); }

@keyframes revealUp {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

.hero__foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.hero__intro {
  max-width: 460px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
}
.hero__intro em { color: var(--accent); font-style: italic; }

.hero__actions {
  display: flex; gap: 14px;
  justify-self: end;
  flex-wrap: wrap;
}

.hero__figure {
  position: absolute;
  top: 160px;
  right: var(--gut);
  width: clamp(140px, 16vw, 220px);
  aspect-ratio: 3/4;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 60px -20px rgba(15, 14, 12, 0.4);
  transform: rotate(3deg);
  transition: transform .6s var(--ease);
  z-index: 5;
}
.hero__figure:hover { transform: rotate(0deg) scale(1.02); }
.hero__figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: contrast(1.05) saturate(0.95);
}
.hero__figure figcaption {
  position: absolute;
  bottom: 10px; left: 10px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(15, 14, 12, 0.65);
  backdrop-filter: blur(6px);
  padding: 5px 9px;
  border-radius: 100px;
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 30px; right: var(--gut);
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll-line {
  display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--ink));
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============ MARQUEE ============ */
.marquee {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-deep);
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 60px;
  animation: scroll 40s linear infinite;
  width: max-content;
}
.marquee__group {
  display: flex; align-items: center; gap: 60px;
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.5vw, 56px);
  font-style: normal;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: -0.035em;
}
.marquee__group .dot {
  color: var(--accent);
  font-size: 0.4em;
  font-style: normal;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============ STATEMENT ============ */
.statement {
  padding: var(--section) var(--gut);
  max-width: 1440px; margin: 0 auto;
}
.statement__grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 80px;
}
.statement__label { padding-top: 12px; }
.statement__body {
  max-width: 900px;
}
.statement__lead {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin-bottom: 40px;
}
.statement__lead em { font-style: normal; color: var(--accent); font-weight: 500; }
.statement__text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 680px;
}
.statement__text strong { font-weight: 600; color: var(--ink); }

.statement__sign {
  margin-top: 56px;
  display: flex; flex-direction: column; gap: 8px;
  color: var(--muted);
  font-size: 13px; letter-spacing: 0.06em;
}
.signature { width: 140px; height: 40px; color: var(--accent); }

/* ============ SERVICES ============ */
.services {
  padding: var(--section) var(--gut);
  max-width: 1440px; margin: 0 auto;
  border-top: 1px solid var(--line);
}
.services__head {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 80px;
  max-width: 1100px;
}

.services__list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.service {
  display: grid;
  grid-template-columns: 80px 1.3fr 2fr 1fr 60px;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding .5s var(--ease);
  cursor: pointer;
}
.service::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--ink);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .6s var(--ease);
  z-index: -1;
  margin: 0 calc(var(--gut) * -1);
}
.service:hover {
  padding: 64px 0;
  color: var(--cream);
}
.service:hover::before { transform: scaleY(1); transform-origin: top; }
.service:hover .service__num { color: var(--accent); }
.service:hover .service__cta { color: var(--accent); transform: translate(6px, -6px); }
.service:hover .service__for { color: rgba(244, 238, 228, 0.6); }
.service:hover .service__desc { color: rgba(244, 238, 228, 0.78); }
.service:hover .service__meta span { color: rgba(244, 238, 228, 0.5); border-color: rgba(244, 238, 228, 0.2); }

.service__num {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: color .4s var(--ease);
  padding-top: 10px;
}
.service__title h3 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.service__for {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .4s var(--ease);
}
.service__desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  transition: color .4s var(--ease);
  max-width: 500px;
}
.service__meta {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.service__meta span {
  padding: 6px 0;
  border-top: 1px solid var(--line);
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.service__meta span:first-child { border-top: none; padding-top: 0; }
.service__cta {
  align-self: center;
  display: inline-flex; justify-self: end;
  color: var(--ink);
  transition: transform .5s var(--ease), color .4s var(--ease);
}

/* ============ MÉTODO ============ */
.method {
  padding: var(--section) var(--gut);
  max-width: 1440px; margin: 0 auto;
  border-top: 1px solid var(--line);
}
.method__head {
  display: flex; flex-direction: column; gap: 28px;
  margin-bottom: 72px;
  max-width: 1100px;
}
.method__lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
}
.method__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.method__card {
  background: var(--cream);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 240px;
  transition: background .4s var(--ease);
  position: relative;
}
.method__card:hover { background: var(--paper); }
.method__card--accent { background: var(--ink); color: var(--cream); }
.method__card--accent:hover { background: var(--ink-soft); }
.method__num {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
}
.method__card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.method__card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: auto;
}
.method__card--accent p { color: rgba(244, 238, 228, 0.75); }

/* ============ PROOF ============ */
.proof {
  padding: var(--section) var(--gut);
  max-width: 1440px; margin: 0 auto;
  border-top: 1px solid var(--line);
}
.proof__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.proof__item {
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--ink);
  position: relative;
}
.proof__item::before {
  content: "";
  position: absolute; top: -5px; left: 0;
  width: 9px; height: 9px;
  background: var(--accent);
  border-radius: 50%;
}
.proof__num {
  font-family: var(--font-serif);
  font-size: clamp(64px, 9vw, 128px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.06em;
}
.proof__num::after { content: "+"; color: var(--accent); font-weight: 500; font-size: 0.7em; vertical-align: super; }
.proof__label {
  font-size: 14px;
  line-height: 1.3;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ============ ABOUT ============ */
.about {
  padding: var(--section) var(--gut);
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  border-top: 1px solid var(--line);
}
.about__left { position: sticky; top: 120px; align-self: start; display: flex; flex-direction: column; gap: 32px; }

.about__right { display: grid; gap: 48px; }
.about__portrait {
  aspect-ratio: 4/5;
  background: var(--ink);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  margin: 0;
}
.about__portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: grayscale(0.15) contrast(1.02);
  transition: transform 1.2s var(--ease);
}
.about__portrait:hover img { transform: scale(1.04); }
.about__portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,14,12,0) 55%, rgba(15,14,12,0.55) 100%);
  pointer-events: none;
}
.about__mono {
  position: absolute;
  top: 20px; left: 20px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  color: var(--cream);
  letter-spacing: 0.22em;
  z-index: 2;
  padding: 6px 10px;
  background: rgba(15, 14, 12, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  font-weight: 500;
}
.about__caption {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  display: flex; justify-content: space-between;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
}

.about__bio {
  display: flex; flex-direction: column; gap: 20px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.about__bio em { color: var(--accent); font-style: italic; }
.about__facts {
  list-style: none;
  margin-top: 16px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 15px;
  color: var(--ink);
}
.about__facts li {
  display: flex; gap: 16px; align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.about__facts li:last-child { border-bottom: 1px solid var(--line); }
.about__facts span { color: var(--accent); }

/* ============ LOGOS ============ */
.logos {
  padding: 80px var(--gut);
  max-width: 1440px; margin: 0 auto;
  border-top: 1px solid var(--line);
  text-align: center;
}
.logos__eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 40px;
}
.logos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 40px;
  align-items: center; justify-items: center;
}
.logos__item {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--muted);
  transition: color .3s var(--ease), transform .3s var(--ease);
  cursor: default;
}
.logos__item--serif { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.03em; }
.logos__item--mono {
  font-family: ui-monospace, monospace;
  font-size: 17px;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.logos__item:hover { color: var(--ink); transform: translateY(-2px); }

/* ============ PROCESO ============ */
.process {
  padding: var(--section) var(--gut);
  max-width: 1440px; margin: 0 auto;
  border-top: 1px solid var(--line);
}
.process__head {
  display: flex; flex-direction: column; gap: 28px;
  margin-bottom: 64px;
  max-width: 900px;
}
.process__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.process__step {
  background: var(--cream);
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  min-height: 200px;
  transition: background .4s var(--ease);
}
.process__step:hover { background: var(--paper); }
.process__step-num {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 500;
  padding-top: 6px;
}
.process__step h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.process__step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.process__step p strong { color: var(--ink); font-weight: 600; }
.process__cta {
  margin-top: 48px;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.process__cta-note {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ FAQ ============ */
.faq {
  padding: var(--section) var(--gut);
  max-width: 1440px; margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq__head {
  display: flex; flex-direction: column; gap: 28px;
  margin-bottom: 56px;
  max-width: 900px;
}
.faq__list {
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.faq__item[open] { background: var(--paper); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.035em;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }
.faq__item summary > span { flex: 1; }
.faq__icon {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .4s var(--ease), color .3s var(--ease);
}
.faq__item[open] .faq__icon {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq__item p {
  padding: 0 0 32px 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq__item p strong { color: var(--ink); font-weight: 600; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: var(--section) var(--gut);
  max-width: 1440px; margin: 0 auto;
  border-top: 1px solid var(--line);
}
.testimonials__head {
  display: flex; flex-direction: column; gap: 32px;
  margin-bottom: 72px;
  max-width: 900px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.testimonial {
  background: var(--cream);
  padding: 48px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-height: 320px;
  transition: background .4s var(--ease);
}
.testimonial:hover { background: var(--paper); }
.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-weight: 500;
}
.testimonial figcaption {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.testimonial strong {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
}
.testimonial span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ CONTACT ============ */
.contact {
  background: var(--ink);
  color: var(--cream);
  padding: var(--section) var(--gut);
  margin-top: var(--section);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -30%; right: -20%;
  width: 80%; height: 160%;
  background: radial-gradient(circle, rgba(232, 84, 28, 0.22), transparent 60%);
  pointer-events: none;
}
.contact__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 40px;
  position: relative;
}
.contact__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(44px, 8vw, 120px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}
.contact__title .italic { color: var(--muted); font-style: normal; font-weight: 400; }
.contact__big {
  display: block;
  color: var(--accent);
  font-style: normal;
  font-weight: 500;
}
.contact__lead {
  font-size: 18px;
  line-height: 1.6;
  max-width: 540px;
  color: rgba(244, 238, 228, 0.72);
}

.contact__methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-light);
  margin-top: 40px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.contact__method {
  background: var(--ink);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 16px;
  transition: background .4s var(--ease);
  position: relative;
}
.contact__method svg {
  grid-column: 2; grid-row: 1 / 3;
  align-self: center;
  color: var(--muted);
  transition: transform .4s var(--ease), color .4s var(--ease);
}
.contact__method:hover {
  background: var(--ink-soft);
}
.contact__method:hover svg { transform: translate(4px, -4px); color: var(--accent); }

.contact__place {
  margin-top: 32px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244, 238, 228, 0.65);
  max-width: 580px;
}
.contact__place strong { color: var(--cream); font-weight: 600; }
.contact__method-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact__method-value {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: -0.035em;
  color: var(--cream);
  font-weight: 500;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 0 var(--gut) 32px;
  position: relative;
  overflow: hidden;
}
.footer__big {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: normal;
  font-size: clamp(100px, 22vw, 320px);
  line-height: 1;
  letter-spacing: -0.08em;
  color: var(--ink);
  -webkit-text-stroke: 1px rgba(244, 238, 228, 0.18);
  text-align: center;
  padding: 40px 0 20px;
  user-select: none;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 56px 0;
  border-top: 1px solid var(--line-light);
}
.footer__col {
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
  color: rgba(244, 238, 228, 0.72);
}
.footer__col a:hover { color: var(--accent); }
.footer__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  display: flex; justify-content: space-between;
  font-size: 12px; letter-spacing: 0.08em;
  color: var(--muted);
}

/* ============ REVEAL ON SCROLL ============ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { padding-top: 110px; min-height: auto; }
  .hero__meta { flex-direction: column; gap: 20px; align-items: flex-start; margin-bottom: 40px; }
  .hero__foot { grid-template-columns: 1fr; gap: 32px; margin-top: 48px; }
  .hero__actions { justify-self: start; }
  .hero__scroll { display: none; }
  .hero__figure { display: none; }

  .statement__grid { grid-template-columns: 1fr; gap: 32px; }

  .service {
    grid-template-columns: 60px 1fr 40px;
    grid-template-areas:
      "num title cta"
      ".   desc  desc"
      ".   meta  meta";
    gap: 16px 20px;
    padding: 32px 0 !important;
  }
  .service:hover { padding: 32px 0 !important; }
  .service__num { grid-area: num; font-size: 22px; }
  .service__title { grid-area: title; }
  .service__desc { grid-area: desc; }
  .service__meta { grid-area: meta; flex-direction: row; flex-wrap: wrap; gap: 8px 16px; }
  .service__meta span { border-top: none; padding: 0; }
  .service__cta { grid-area: cta; align-self: start; }

  .proof__row { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .about { grid-template-columns: 1fr; gap: 48px; }
  .about__left { position: static; }

  .logos__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .method__grid { grid-template-columns: repeat(2, 1fr); }
  .method__card { min-height: 200px; padding: 28px; }

  .process__list { grid-template-columns: 1fr; }
  .process__step { padding: 28px; min-height: auto; }
  .process__cta { flex-direction: column; align-items: flex-start; gap: 12px; }

  .faq__item summary { padding: 22px 0; font-size: 18px; }

  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial { padding: 32px; min-height: auto; }

  .contact__methods { grid-template-columns: 1fr; }
  .contact__method { padding: 24px; }

  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .proof__row { grid-template-columns: 1fr; }
  .logos__grid { grid-template-columns: 1fr; }
  .method__grid { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__title .reveal { transform: none; }
  .marquee__track { animation: none; }
}
