/* ============================================================
   Guilherme Rosa — Videomaker | Design tokens + estilos globais
   ============================================================ */
:root {
  --bg: #050507;
  --bg-2: #0c0d10;
  --fg: #f5f5f7;
  --fg-dim: #7c8088;
  --line: #1a1c20;
  --silver: #c9ccd1;
  --copper: #d99565;
}

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

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Syne', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

.container { max-width: 100%; padding: 0 48px; }
.container-narrow { max-width: 1480px; margin: 0 auto; padding: 0 48px; }
.mono { font-family: 'IBM Plex Mono', monospace; }
.serif { font-family: 'Cormorant Garamond', serif; font-style: italic; }

/* ============ NAV ============ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: linear-gradient(180deg, rgba(5,5,7,0.9), transparent);
  padding: 22px 0;
}
.site-nav .row { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 18px; letter-spacing: 0.12em; text-transform: uppercase; }
.brand .mark { width: 30px; height: 30px; border: 1.5px solid var(--silver); border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.nav-menu { display: flex; list-style: none; gap: 36px; font-family: 'IBM Plex Mono'; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.nav-menu a { color: var(--fg-dim); cursor: pointer; }
.nav-menu a:hover, .nav-menu a.active { color: var(--fg); }
.nav-cta {
  padding: 10px 22px; border: 1px solid var(--silver); color: var(--silver);
  font-family: 'IBM Plex Mono'; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  transition: 0.25s; cursor: pointer;
}
.nav-cta:hover { background: var(--silver); color: var(--bg); }

/* ============ HERO ============ */
.hero { height: 100vh; min-height: 780px; position: relative; overflow: hidden; background: #050507; }
.hero .bg-poster {
  position: absolute; inset: 0;
  background: url('/static/img/guilherme-studio.jpg') center / cover no-repeat;
  filter: grayscale(1) contrast(1.05) brightness(0.55);
  transform: scale(1.15);
  z-index: 0;
}
.hero .bg-poster::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center 40%, rgba(5,5,7,0.55) 0%, rgba(5,5,7,0.85) 60%, rgba(5,5,7,0.98) 100%),
    linear-gradient(180deg, rgba(5,5,7,0.85) 0%, rgba(5,5,7,0.55) 25%, rgba(5,5,7,0.55) 65%, rgba(5,5,7,0.98) 100%);
}
.hero .bg-poster .noise {
  position: absolute; inset: 0; opacity: 0.4;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 3px);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,7,0.4) 0%, transparent 25%, transparent 70%, rgba(5,5,7,0.95) 100%);
  z-index: 2; pointer-events: none;
}
.portrait-stage { position: absolute; left: 0; right: 0; bottom: 0; height: 62%; display: grid; place-items: end center; padding-bottom: 20px; }
.portrait {
  width: min(920px, 78%); aspect-ratio: 16/9; max-height: 78%;
  position: relative;
  background: #0a0c10 url('/static/img/guilherme-studio.jpg') center / cover no-repeat;
  border: 1px solid rgba(217,149,101,0.4);
  overflow: hidden;
  filter: drop-shadow(0 60px 100px rgba(0,0,0,0.9));
}
.portrait .vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 45%, rgba(5,5,7,0.5) 100%),
    linear-gradient(180deg, rgba(5,5,7,0) 55%, rgba(5,5,7,0.7) 100%);
}
.portrait::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(180deg, transparent 0, transparent 3px, rgba(255,255,255,0.02) 3px, rgba(255,255,255,0.02) 4px);
  mix-blend-mode: overlay;
}
.portrait .crosshair { position: absolute; inset: 18px; border: 1px dashed rgba(201,204,209,0.28); z-index: 2; }
.portrait .crosshair .lbl {
  position: absolute; top: 10px; left: 12px; color: var(--copper);
  font-family: 'IBM Plex Mono'; font-size: 10px; letter-spacing: 0.2em;
  padding: 3px 8px; background: rgba(5,5,7,0.5); backdrop-filter: blur(4px);
}
.portrait .crosshair .lbl.r { left: auto; right: 12px; color: var(--silver); }
.portrait .crosshair .lbl.b { top: auto; bottom: 10px; }
.portrait .crosshair .lbl.br { top: auto; bottom: 10px; left: auto; right: 12px; color: var(--silver); }
.portrait::after {
  content: 'REC ●'; position: absolute; top: -14px; left: 18px; z-index: 4;
  font-family: 'IBM Plex Mono'; font-size: 11px; letter-spacing: 0.2em; color: var(--copper);
  animation: blink 1.4s infinite;
  padding: 4px 10px; background: var(--bg); border: 1px solid var(--copper);
}
@keyframes blink { 50% { opacity: 0.25; } }

.grid-floor {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 200%; height: 50%;
  background-image:
    linear-gradient(90deg, rgba(201,204,209,0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(201,204,209,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: translateX(-50%) perspective(600px) rotateX(60deg);
  transform-origin: center bottom;
  mask-image: linear-gradient(180deg, transparent 0%, black 50%);
}

.hero-content { position: relative; z-index: 5; padding-top: 140px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-family: 'IBM Plex Mono'; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-dim);
  margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--copper); box-shadow: 0 0 14px var(--copper); }
.hero-eyebrow .silver { color: var(--silver); }

.hero h1 { font-size: clamp(64px, 11vw, 180px); line-height: 0.85; letter-spacing: -0.04em; font-weight: 700; text-transform: uppercase; }
.hero h1 .serif { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; color: var(--silver); text-transform: none; letter-spacing: -0.02em; }
.hero h1 .number {
  display: inline-block; vertical-align: top; font-size: 0.3em; color: var(--copper); font-weight: 400;
  margin-left: 0.3em; margin-top: 0.6em; font-family: 'IBM Plex Mono'; letter-spacing: 0.06em;
}

.hero-bottom { position: absolute; bottom: 40px; left: 0; right: 0; padding: 0 48px; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 30px; z-index: 6; }
.stat-cell { border-top: 1px solid var(--line); padding-top: 16px; }
.stat-cell .label { font-family: 'IBM Plex Mono'; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 10px; }
.stat-cell .val { font-size: 38px; letter-spacing: -0.03em; font-weight: 500; }
.stat-cell .val .unit { font-family: 'IBM Plex Mono'; font-size: 13px; color: var(--fg-dim); margin-left: 8px; }
.stat-cell .ann { font-family: 'IBM Plex Mono'; font-size: 11px; color: var(--copper); margin-top: 4px; }
.stat-cell.cta { padding: 0; text-align: right; border: 0; display: flex; align-items: flex-end; justify-content: flex-end; }
.stat-cell.cta a {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--silver); color: var(--bg); padding: 16px 28px;
  font-family: 'IBM Plex Mono'; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  transition: 0.25s;
}
.stat-cell.cta a:hover { background: var(--copper); color: var(--fg); }

/* ============ SPECLINE ============ */
.specline { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); overflow: hidden; }
.specline-track {
  display: flex; gap: 60px; align-items: center;
  font-family: 'IBM Plex Mono'; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-dim);
  animation: scroll-l 50s linear infinite; white-space: nowrap; width: max-content;
}
.specline-track .item { display: flex; align-items: center; gap: 12px; }
.specline-track .item strong { color: var(--silver); font-weight: 500; }
.specline-track .item::after { content: '✕'; color: var(--copper); }
@keyframes scroll-l { to { transform: translateX(-50%); } }

/* ============ CHAPTER (SOBRE) ============ */
.chapter { padding: 160px 0; position: relative; }
.chapter-head { display: grid; grid-template-columns: 200px 1fr; gap: 60px; margin-bottom: 100px; }
.chapter-head .left { display: flex; flex-direction: column; gap: 6px; }
.chapter-head .left .n { font-family: 'IBM Plex Mono'; font-size: 12px; letter-spacing: 0.16em; color: var(--copper); }
.chapter-head .left .t { font-family: 'IBM Plex Mono'; font-size: 12px; letter-spacing: 0.16em; color: var(--fg-dim); text-transform: uppercase; }
.chapter-head h2 { font-size: clamp(44px, 5.8vw, 92px); line-height: 0.95; letter-spacing: -0.025em; font-weight: 600; max-width: 1100px; }
.chapter-head h2 .serif { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; color: var(--silver); }

.about-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: stretch; }
.about-photo {
  aspect-ratio: 4/5; background: var(--bg-2) url('/static/img/guilherme-portrait.jpg') center / cover no-repeat;
  border: 1px solid var(--line); position: relative; overflow: hidden;
}
.about-photo .grade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,7,0) 40%, rgba(5,5,7,0.55) 100%),
    linear-gradient(90deg, rgba(217,149,101,0.04), transparent 50%);
}
.about-photo .frame-caption {
  position: absolute; bottom: 16px; left: 18px; right: 18px;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: 'IBM Plex Mono'; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver);
}
.about-photo .frame-caption .r { color: var(--fg-dim); }
.about-photo::after {
  content: '● PORTRAIT · GR'; position: absolute; top: 18px; left: 18px; z-index: 3;
  font-family: 'IBM Plex Mono'; font-size: 10px; letter-spacing: 0.2em; color: var(--copper);
  padding: 5px 10px; background: rgba(5,5,7,0.6); backdrop-filter: blur(6px);
}
.about-photo::before {
  content: '01 / 01'; position: absolute; top: 18px; right: 18px; z-index: 3;
  font-family: 'IBM Plex Mono'; font-size: 10px; letter-spacing: 0.2em; color: var(--silver);
  padding: 5px 10px; background: rgba(5,5,7,0.6); backdrop-filter: blur(6px);
}
.about-body { display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.about-body .quote {
  font-family: 'Cormorant Garamond'; font-style: italic; font-size: clamp(28px, 3vw, 44px); line-height: 1.15;
  letter-spacing: -0.01em; color: var(--silver); margin-bottom: 8px;
}
.about-body p { font-size: 17px; line-height: 1.65; color: var(--fg-dim); max-width: 620px; }
.about-body p strong { color: var(--fg); font-weight: 500; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.about-tags span { padding: 8px 14px; border: 1px solid var(--line); font-family: 'IBM Plex Mono'; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim); }
.about-tags span.hi { color: var(--copper); border-color: rgba(217,149,101,0.35); }

.process-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 60px; margin-top: 100px; }
.process-step { padding-top: 20px; border-top: 1px solid var(--line); }
.process-step .label { font-family: 'IBM Plex Mono'; font-size: 11px; letter-spacing: 0.14em; color: var(--copper); margin-bottom: 16px; }
.process-step h4 { font-size: 22px; letter-spacing: -0.01em; font-weight: 500; margin-bottom: 12px; }
.process-step p { font-size: 14px; line-height: 1.6; color: var(--fg-dim); }
.process-step .step-n { font-family: 'IBM Plex Mono'; font-size: 11px; color: var(--fg-dim); letter-spacing: 0.14em; margin-bottom: 8px; }

/* ============ PORTFOLIO ============ */
.portfolio { padding: 140px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.portfolio-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; flex-wrap: wrap; gap: 24px; }
.portfolio-head h2 { font-size: clamp(40px, 5vw, 76px); line-height: 0.95; letter-spacing: -0.025em; font-weight: 600; }
.portfolio-head h2 .serif { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; color: var(--copper); }
.portfolio-head .side { font-family: 'IBM Plex Mono'; font-size: 12px; letter-spacing: 0.14em; color: var(--fg-dim); text-transform: uppercase; text-align: right; }
.portfolio-head .side strong { color: var(--silver); font-weight: 500; display: block; font-size: 22px; letter-spacing: -0.01em; text-transform: none; margin-bottom: 4px; }

.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.work-card { position: relative; background: var(--bg); border: 1px solid var(--line); padding: 18px; display: flex; flex-direction: column; transition: 0.35s ease; }
.work-card:hover { border-color: var(--copper); box-shadow: 0 20px 60px rgba(217,149,101,0.1); transform: translateY(-4px); }
.work-card .work-label {
  font-family: 'IBM Plex Mono'; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 14px; display: flex; justify-content: space-between; align-items: center;
}
.work-card .work-label .n { color: var(--copper); }
.work-card .work-media { position: relative; aspect-ratio: 9/16; overflow: hidden; background: #0a0c10; margin-bottom: 16px; border: 1px solid var(--line); }
.work-card .work-media video, .work-card .work-media img.poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: 0.4s;
}
.work-card .work-media video { opacity: 0; }
.work-card:hover .work-media video, .work-card.playing .work-media video { opacity: 1; }
.work-card:hover .work-media img.poster, .work-card.playing .work-media img.poster { opacity: 0; }
.work-card .work-media .play {
  position: absolute; bottom: 14px; right: 14px; z-index: 3;
  width: 44px; height: 44px; border: 1px solid var(--silver); border-radius: 50%;
  display: grid; place-items: center; color: var(--silver); font-size: 12px;
  background: rgba(5,5,7,0.6); backdrop-filter: blur(6px); transition: 0.3s;
}
.work-card:hover .work-media .play { background: var(--copper); border-color: var(--copper); color: var(--bg); }
.work-card .work-media .fmt {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  font-family: 'IBM Plex Mono'; font-size: 10px; letter-spacing: 0.14em; color: var(--silver);
  padding: 4px 8px; background: rgba(5,5,7,0.6); backdrop-filter: blur(6px);
}
.work-card .work-media .dur {
  position: absolute; bottom: 14px; left: 14px; z-index: 3;
  font-family: 'IBM Plex Mono'; font-size: 10px; letter-spacing: 0.14em; color: var(--silver);
  padding: 4px 8px; background: rgba(5,5,7,0.6); backdrop-filter: blur(6px);
}
.work-card .work-tag { font-family: 'IBM Plex Mono'; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--copper); margin-bottom: 6px; }
.work-card .work-title { font-size: 18px; font-weight: 500; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 14px; color: var(--fg); }
.work-card .work-foot {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'IBM Plex Mono'; font-size: 10px; letter-spacing: 0.14em; color: var(--fg-dim); text-transform: uppercase;
}
.work-card .work-foot .arrow { color: var(--silver); transition: 0.3s; }
.work-card:hover .work-foot .arrow { color: var(--copper); transform: translateX(3px); }

/* ============ NICHOS ============ */
.nichos { padding: 140px 0; background: var(--bg); border-bottom: 1px solid var(--line); overflow: hidden; }
.nicho-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1480px; margin: 0 auto; padding: 0 48px; }
.nicho-block + .nicho-block { margin-top: 180px; }
.nicho-block.reverse { direction: rtl; }
.nicho-block.reverse > * { direction: ltr; }
.nicho-block-wide { grid-template-columns: 1fr; gap: 60px; }
.nicho-block-wide .nicho-copy { max-width: 720px; }
.nicho-block-wide .nicho-copy p { max-width: 640px; }

.nicho-copy .eyebrow {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.nicho-copy .eyebrow .num { color: var(--fg-dim); font-weight: 400; }
.nicho-copy .eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--copper); display: inline-block; }
.nicho-copy h3 {
  font-family: 'Syne', sans-serif; font-size: clamp(44px, 5.5vw, 82px); line-height: 0.92; letter-spacing: -0.028em;
  font-weight: 600; margin-bottom: 28px; text-transform: uppercase;
}
.nicho-copy h3 .serif { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; text-transform: none; color: var(--copper); }
.nicho-copy p { font-size: 17px; line-height: 1.65; color: var(--fg-dim); margin-bottom: 20px; max-width: 520px; }
.nicho-copy p strong { color: var(--fg); font-weight: 600; }

.nicho-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; margin-bottom: 36px; }
.nicho-tags .tag {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--silver); padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255,255,255,0.02); transition: all 0.25s ease;
}
.nicho-tags .tag:hover { border-color: var(--copper); color: var(--copper); }

.nicho-cta {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px;
  border: 1px solid var(--silver); color: var(--silver);
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  transition: all 0.28s ease; cursor: pointer; background: transparent;
}
.nicho-cta:hover { background: var(--copper); border-color: var(--copper); color: var(--bg); }
.nicho-cta .arrow { transition: transform 0.28s ease; }
.nicho-cta:hover .arrow { transform: translateX(4px); }

.nicho-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 60px 180px 60px 180px 60px; gap: 18px; position: relative; }
.nicho-gallery.moda { grid-template-columns: repeat(6, 1fr); grid-template-rows: auto; gap: 12px; }
.nicho-gallery.moda .nicho-cell { aspect-ratio: 9 / 16; grid-column: auto !important; grid-row: auto !important; }
.nicho-gallery.moda .nicho-cell video { object-fit: cover; object-position: center; }
.nicho-gallery.moda .nicho-cell::before {
  content: "9:16"; position: absolute; top: 10px; right: 10px; z-index: 3;
  background: rgba(217, 149, 101, 0.92); color: #1a0f08;
  font-family: 'IBM Plex Mono', monospace; font-size: 9px; letter-spacing: 0.1em; padding: 3px 7px; border-radius: 3px;
}
.nicho-cell {
  position: relative; overflow: hidden; border-radius: 4px; border: 1px solid var(--line); background: var(--bg-2);
  opacity: 0; filter: blur(12px); transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.nicho-cell.is-in { opacity: 1; filter: blur(0); transform: translateY(0); }
.nicho-cell img, .nicho-cell video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.35) contrast(1.02); transition: filter 0.6s ease, transform 0.8s ease; display: block; }
.nicho-cell:hover img, .nicho-cell:hover video { filter: grayscale(0) contrast(1.05); transform: scale(1.04); }
.nicho-cell.has-video::before {
  content: "▶"; position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 26px; height: 26px; border-radius: 50%; background: rgba(5,5,7,0.6); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15); color: var(--copper); font-size: 9px; display: grid; place-items: center;
}
.nicho-gallery.moda .nicho-cell.has-video::before { content: "9:16"; }
.nicho-cell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(5,5,7,0.6) 100%); pointer-events: none; }
.nicho-cell .cell-tag {
  position: absolute; left: 12px; bottom: 10px; font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg); z-index: 2; padding: 4px 10px;
  background: rgba(5,5,7,0.55); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.08); border-radius: 999px;
}
.nicho-cell:nth-child(1) { grid-column: 2 / 3; grid-row: 1 / 3; }
.nicho-cell:nth-child(2) { grid-column: 1 / 2; grid-row: 2 / 4; transition-delay: 0.15s; }
.nicho-cell:nth-child(3) { grid-column: 1 / 2; grid-row: 4 / 6; transition-delay: 0.3s; }
.nicho-cell:nth-child(4) { grid-column: 2 / 3; grid-row: 3 / 5; transition-delay: 0.45s; }

.nicho-copy > * {
  opacity: 0; transform: translateY(20px); filter: blur(8px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.nicho-copy.is-in > * { opacity: 1; transform: translateY(0); filter: blur(0); }
.nicho-copy.is-in > *:nth-child(1) { transition-delay: 0.05s; }
.nicho-copy.is-in > *:nth-child(2) { transition-delay: 0.15s; }
.nicho-copy.is-in > *:nth-child(3) { transition-delay: 0.28s; }
.nicho-copy.is-in > *:nth-child(4) { transition-delay: 0.4s; }
.nicho-copy.is-in > *:nth-child(5) { transition-delay: 0.52s; }

.nichos-head { max-width: 1480px; margin: 0 auto 100px; padding: 0 48px; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
.nichos-head h2 { font-family: 'Syne', sans-serif; font-size: clamp(40px, 5vw, 76px); line-height: 0.95; letter-spacing: -0.025em; font-weight: 600; }
.nichos-head h2 .serif { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; color: var(--copper); }
.nichos-head .side { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.14em; color: var(--fg-dim); text-transform: uppercase; text-align: right; }
.nichos-head .side strong { color: var(--silver); font-weight: 500; display: block; font-size: 22px; letter-spacing: -0.01em; text-transform: none; margin-bottom: 4px; }

/* ============ NÚMEROS ============ */
.spec { padding: 140px 0; }
.spec-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: stretch; }
.spec-text h2 { font-size: clamp(44px, 6vw, 88px); line-height: 0.95; letter-spacing: -0.025em; font-weight: 600; margin-bottom: 36px; }
.spec-text h2 .serif { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; color: var(--copper); }
.spec-text p { font-size: 17px; line-height: 1.55; color: var(--fg-dim); max-width: 540px; margin-bottom: 24px; }
.spec-table { border-top: 1px solid var(--line); }
.spec-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.spec-row .k { font-family: 'IBM Plex Mono'; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim); align-self: center; }
.spec-row .v { font-size: 19px; letter-spacing: -0.01em; font-weight: 500; }
.spec-row .v small { font-family: 'IBM Plex Mono'; font-size: 11px; color: var(--fg-dim); margin-left: 6px; letter-spacing: 0.1em; }

/* ============ PACOTES ============ */
.packages { padding: 160px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.packages-head { text-align: center; margin-bottom: 70px; }
.packages-head .eyebrow { font-family: 'IBM Plex Mono'; font-size: 11px; letter-spacing: 0.18em; color: var(--copper); margin-bottom: 18px; display: block; }
.packages-head h2 { font-size: clamp(44px, 6vw, 92px); line-height: 0.95; letter-spacing: -0.025em; font-weight: 600; }
.packages-head h2 .serif { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; }
.packages-head p { color: var(--fg-dim); font-size: 15px; max-width: 620px; margin: 20px auto 0; line-height: 1.6; }
.packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.pkg-card {
  background: var(--bg); border: 1px solid var(--line); padding: 32px;
  position: relative; min-height: 540px; display: flex; flex-direction: column;
  isolation: isolate; transition: border-color 0.35s ease, transform 0.35s ease;
  --mx: 50%; --my: 50%;
}
.pkg-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(217, 149, 101, 0.18), rgba(217, 149, 101, 0.05) 25%, transparent 55%);
  opacity: 0; transition: opacity 0.5s ease; pointer-events: none; z-index: 0; clip-path: inset(0);
}
.pkg-card:hover { border-color: rgba(217, 149, 101, 0.55); transform: translateY(-2px); }
.pkg-card:hover::after { opacity: 1; }
.pkg-card > * { position: relative; z-index: 1; }
.pkg-card--featured { background: #0a0c10; border-color: var(--copper); box-shadow: 0 20px 60px rgba(217,149,101,0.08); }
.pkg-card--featured::after { background: radial-gradient(480px circle at var(--mx) var(--my), rgba(217, 149, 101, 0.28), rgba(217, 149, 101, 0.08) 30%, transparent 60%); }
.pkg-card--featured::before {
  content: '★ MAIS POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--copper); color: var(--bg); padding: 6px 14px;
  font-family: 'IBM Plex Mono'; font-size: 10px; letter-spacing: 0.2em; font-weight: 600;
}
.pkg-card .label { font-family: 'IBM Plex Mono'; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 14px; }
.pkg-card--featured .label { color: var(--copper); }
.pkg-card h3 { font-size: 28px; letter-spacing: -0.02em; font-weight: 600; margin-bottom: 4px; line-height: 1; }
.pkg-card .price-wrap { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 20px; }
.pkg-card .price-wrap .cur { font-family: 'IBM Plex Mono'; font-size: 13px; color: var(--silver); }
.pkg-card .price-wrap .price { font-size: 42px; letter-spacing: -0.03em; font-weight: 600; }
.pkg-card .price-wrap .per { font-family: 'IBM Plex Mono'; font-size: 12px; color: var(--fg-dim); letter-spacing: 0.06em; }
.pkg-card--featured .price-wrap .price { color: var(--copper); }
.pkg-card .desc { font-size: 13px; color: var(--fg-dim); line-height: 1.55; margin-bottom: 22px; min-height: 60px; }
.pkg-card ul { list-style: none; margin: 0 0 24px; padding: 0; flex: 1; }
.pkg-card ul li { padding: 12px 0; border-bottom: 1px solid var(--line); display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--fg); }
.pkg-card ul li:last-child { border: 0; }
.pkg-card ul li::before { content: '+'; color: var(--copper); font-family: 'IBM Plex Mono'; font-size: 14px; line-height: 1.3; flex-shrink: 0; }
.pkg-card ul li.extra { color: var(--copper); }
.pkg-card ul li.extra::before { content: '★'; }
.pkg-card .pkg-cta-row { margin-top: auto; display: flex; gap: 8px; }
.pkg-card a {
  flex: 1; padding: 14px 12px; text-align: center; font-family: 'IBM Plex Mono';
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; border: 1px solid var(--silver); transition: 0.25s;
}
.pkg-card a:hover { background: var(--silver); color: var(--bg); }
.pkg-card a.primary { background: var(--silver); color: var(--bg); }
.pkg-card--featured a.primary { background: var(--copper); border-color: var(--copper); color: var(--bg); }
.pkg-card--featured a.primary:hover { background: var(--fg); border-color: var(--fg); }

.packages-terms {
  max-width: 900px; margin: 0 auto; padding: 24px 32px; border: 1px solid var(--line);
  display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center;
}
.packages-terms .k { font-family: 'IBM Plex Mono'; font-size: 11px; letter-spacing: 0.16em; color: var(--copper); text-transform: uppercase; }
.packages-terms ul { list-style: none; display: flex; gap: 32px; flex-wrap: wrap; }
.packages-terms ul li { font-family: 'IBM Plex Mono'; font-size: 11px; letter-spacing: 0.08em; color: var(--fg-dim); text-transform: uppercase; }
.packages-terms ul li strong { color: var(--silver); font-weight: 500; }

/* ============ DEPOIMENTOS ============ */
.testimonials { padding: 160px 0; }
.testimonials-head { display: grid; grid-template-columns: 200px 1fr; gap: 60px; margin-bottom: 80px; }
.testimonials-head .left .n { font-family: 'IBM Plex Mono'; font-size: 12px; letter-spacing: 0.16em; color: var(--copper); }
.testimonials-head .left .t { font-family: 'IBM Plex Mono'; font-size: 12px; letter-spacing: 0.16em; color: var(--fg-dim); text-transform: uppercase; margin-top: 6px; }
.testimonials-head h2 { font-size: clamp(40px, 5vw, 76px); line-height: 0.95; letter-spacing: -0.025em; font-weight: 600; }
.testimonials-head h2 .serif { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; color: var(--silver); }
.testimonials-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.testimonial-card { border: 1px solid var(--line); padding: 32px; background: var(--bg-2); display: flex; flex-direction: column; gap: 22px; grid-column: span 2; }

.testimonial-highlight {
  grid-column: span 6; border: 1px solid var(--copper);
  background: linear-gradient(180deg, rgba(217,149,101,0.04), var(--bg-2) 30%);
  padding: 40px; display: grid; grid-template-columns: 1.05fr 1.35fr; gap: 48px; align-items: center; position: relative;
}
.testimonial-highlight::before {
  content: 'CASE REAL · 2026'; position: absolute; top: -12px; left: 32px;
  font-family: 'IBM Plex Mono'; font-size: 10px; letter-spacing: 0.22em; color: var(--copper);
  background: var(--bg); padding: 4px 12px; border: 1px solid var(--copper);
}
.testimonial-highlight .stars { color: var(--copper); font-family: 'IBM Plex Mono'; font-size: 14px; letter-spacing: 0.1em; margin-bottom: 18px; }
.testimonial-highlight .metric { display: flex; align-items: baseline; gap: 12px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.testimonial-highlight .metric .n { font-family: 'Syne'; font-weight: 700; font-size: clamp(48px, 6vw, 78px); line-height: 0.95; letter-spacing: -0.03em; color: var(--fg); }
.testimonial-highlight .metric .u { font-family: 'IBM Plex Mono'; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--copper); max-width: 160px; }
.testimonial-highlight blockquote { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; font-size: clamp(22px, 2vw, 28px); line-height: 1.35; color: var(--fg); }
.testimonial-highlight .who { display: flex; align-items: center; gap: 14px; padding-top: 22px; margin-top: 22px; border-top: 1px solid var(--line); }
.testimonial-highlight .who .av {
  width: 46px; height: 46px; border-radius: 50%; background: var(--bg); border: 1px solid var(--copper);
  display: grid; place-items: center; font-family: 'IBM Plex Mono'; font-size: 13px; letter-spacing: 0.1em; color: var(--copper);
}
.testimonial-highlight .who .name { font-size: 15px; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.testimonial-highlight .who .verified {
  width: 15px; height: 15px; background: var(--copper); border-radius: 50%; display: inline-grid; place-items: center;
  color: var(--bg); font-size: 10px; font-weight: 800;
}
.testimonial-highlight .who .role { font-family: 'IBM Plex Mono'; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim); margin-top: 3px; }
.testimonial-highlight .who a { color: var(--copper); font-family: 'IBM Plex Mono'; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; margin-left: auto; padding: 6px 12px; border: 1px solid var(--copper); transition: 0.25s; }
.testimonial-highlight .who a:hover { background: var(--copper); color: var(--bg); }

.proof-stack { display: flex; flex-direction: column; gap: 14px; }
.proof-hero {
  position: relative; overflow: hidden; background: linear-gradient(180deg, #0a0c10, var(--bg));
  border: 1px solid rgba(217, 149, 101, 0.35); padding: 28px 24px;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.2), border-color 0.4s;
}
.proof-hero:hover { border-color: var(--copper); transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-4px); }
.proof-hero img { width: 100%; display: block; position: relative; z-index: 1; }
.proof-hero::before {
  content: ''; position: absolute; inset: -20%;
  background: radial-gradient(ellipse at center, rgba(217,149,101,0.22), transparent 55%);
  animation: haloPulse 3.2s ease-in-out infinite; z-index: 0; pointer-events: none;
}
@keyframes haloPulse { 0%, 100% { opacity: 0.55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
.proof-hero::after {
  content: ''; position: absolute; top: 0; left: -30%; bottom: 0; width: 30%;
  background: linear-gradient(115deg, transparent 0%, rgba(217,149,101,0.08) 40%, rgba(255,224,190,0.35) 50%, rgba(217,149,101,0.08) 60%, transparent 100%);
  animation: scanSweep 4.5s ease-in-out infinite; animation-delay: 1.2s; z-index: 2; pointer-events: none; mix-blend-mode: screen;
}
@keyframes scanSweep {
  0% { transform: translateX(0); opacity: 0; }
  8% { opacity: 1; }
  50% { transform: translateX(400%); opacity: 1; }
  58% { opacity: 0; }
  100% { transform: translateX(400%); opacity: 0; }
}
.proof-hero .live {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  font-family: 'IBM Plex Mono'; font-size: 9px; letter-spacing: 0.22em; color: var(--copper);
  background: rgba(5,5,7,0.85); backdrop-filter: blur(4px); padding: 5px 10px; border: 1px solid var(--copper);
  display: flex; align-items: center; gap: 6px;
}
.proof-hero .live::before { content: ''; width: 6px; height: 6px; background: var(--copper); border-radius: 50%; animation: blink 1.2s infinite; box-shadow: 0 0 8px var(--copper); }
.proof-hero .cap {
  position: absolute; bottom: 14px; left: 14px; z-index: 3;
  font-family: 'IBM Plex Mono'; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg); background: rgba(5,5,7,0.85); backdrop-filter: blur(4px); padding: 5px 10px; border: 1px solid var(--line);
}
.proof-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.proof-thumbs .shot { position: relative; overflow: hidden; background: #000; border: 1px solid var(--line); aspect-ratio: 4/5; transition: border-color 0.3s, transform 0.3s; }
.proof-thumbs .shot:hover { border-color: rgba(217,149,101,0.6); transform: translateY(-2px); }
.proof-thumbs .shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.proof-thumbs .shot .cap {
  position: absolute; bottom: 8px; left: 8px; font-family: 'IBM Plex Mono'; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg); background: rgba(5,5,7,0.8); backdrop-filter: blur(4px); padding: 4px 8px;
}
.testimonial-card .stars { color: var(--copper); font-family: 'IBM Plex Mono'; font-size: 14px; letter-spacing: 0.1em; }
.testimonial-card blockquote { font-family: 'Cormorant Garamond'; font-style: italic; font-size: 22px; line-height: 1.35; color: var(--fg); letter-spacing: -0.005em; flex: 1; }
.testimonial-card .who { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.testimonial-card .who .av {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: linear-gradient(135deg, #1a1c20, #0a0c10); display: grid; place-items: center;
  font-family: 'IBM Plex Mono'; font-size: 12px; color: var(--silver); letter-spacing: 0.06em;
}
.testimonial-card .who .name { font-size: 14px; font-weight: 500; }
.testimonial-card .who .role { font-family: 'IBM Plex Mono'; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim); margin-top: 3px; }

/* ============ CTA FINAL ============ */
.reserve { padding: 160px 0; position: relative; overflow: hidden; background: radial-gradient(ellipse at center, #1a1c20 0%, #050507 70%); }
.reserve-wrap { text-align: center; position: relative; }
.reserve h2 { font-size: clamp(52px, 8vw, 132px); line-height: 0.9; letter-spacing: -0.035em; font-weight: 600; text-transform: uppercase; margin-bottom: 28px; }
.reserve h2 .serif { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; text-transform: none; color: var(--copper); }
.reserve p { font-size: 18px; color: var(--fg-dim); max-width: 560px; margin: 0 auto 40px; line-height: 1.5; }
.reserve-cta { display: inline-flex; align-items: center; gap: 16px; padding: 20px 40px; background: var(--silver); color: var(--bg); font-family: 'IBM Plex Mono'; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; transition: 0.25s; }
.reserve-cta:hover { background: var(--copper); color: var(--fg); }
.reserve-alt { margin-top: 20px; font-family: 'IBM Plex Mono'; font-size: 11px; letter-spacing: 0.16em; color: var(--fg-dim); text-transform: uppercase; }
.reserve-alt a { color: var(--silver); text-decoration: underline; text-underline-offset: 4px; }
.reserve-alt a:hover { color: var(--copper); }

/* ============ FOOTER ============ */
.site-footer { padding: 80px 0 32px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-grid h5 { font-family: 'IBM Plex Mono'; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 18px; font-weight: 500; }
.footer-grid li { list-style: none; padding: 5px 0; font-size: 14px; }
.footer-grid li a:hover { color: var(--copper); }
.footer-blurb { color: var(--fg-dim); font-size: 14px; max-width: 320px; line-height: 1.6; margin-top: 16px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--line); font-family: 'IBM Plex Mono'; font-size: 11px; letter-spacing: 0.12em; color: var(--fg-dim); flex-wrap: wrap; gap: 12px; }

/* ============ STICKY ORÇAMENTO CARD ============ */
.sticky-quote {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 16px 24px 20px;
  pointer-events: none; transform: translateY(120%); opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.sticky-quote.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.sticky-quote::before {
  content: ""; position: absolute; left: 50%; bottom: -30px; transform: translateX(-50%);
  width: min(1200px, 92%); height: 80%;
  background: radial-gradient(ellipse at center, rgba(217, 149, 101, 0.28) 0%, rgba(217, 149, 101, 0.12) 40%, transparent 70%);
  filter: blur(40px); z-index: -1; pointer-events: none;
}
.sticky-quote-inner {
  max-width: 1480px; margin: 0 auto;
  background: radial-gradient(120% 140% at 15% 0%, #16171a 0%, #0c0d10 55%, #050507 100%);
  border: 1px solid rgba(217, 149, 101, 0.22); border-radius: 20px; padding: 20px 24px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.02) inset;
  position: relative; overflow: hidden;
}
.sticky-quote-inner::after {
  content: ""; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,149,101,0.55), transparent);
}
.sq-brand { display: flex; align-items: center; gap: 16px; min-width: 0; }
.sq-mark {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--copper);
  display: grid; place-items: center; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 15px; color: var(--copper); flex-shrink: 0;
}
.sq-text { min-width: 0; }
.sq-eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--copper); margin-bottom: 4px; }
.sq-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 22px; line-height: 1.1; letter-spacing: -0.005em; color: var(--fg); text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sq-title .serif { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; text-transform: none; color: var(--silver); letter-spacing: 0; }
.sq-benefits { display: flex; align-items: center; justify-content: center; gap: 26px; min-width: 0; font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-dim); }
.sq-benefit { display: flex; align-items: center; gap: 9px; white-space: nowrap; }
.sq-benefit .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--copper); flex-shrink: 0; }
.sq-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.1); }
.sq-cta {
  display: inline-flex; align-items: center; gap: 12px; padding: 14px 26px; border-radius: 999px;
  background: var(--copper); color: #1a0f08; font-family: 'IBM Plex Mono', monospace; font-weight: 500; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.3s ease, background 0.25s ease;
  box-shadow: 0 8px 24px rgba(217, 149, 101, 0.3); white-space: nowrap; flex-shrink: 0; position: relative; overflow: hidden;
}
.sq-cta:hover { transform: translateY(-1px); background: #e5a679; box-shadow: 0 12px 32px rgba(217, 149, 101, 0.5); }
.sq-cta:active { transform: translateY(0); }
.sq-cta svg { width: 16px; height: 16px; }
.sq-cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%); transform: translateX(-100%); transition: transform 0.65s ease; }
.sq-cta:hover::before { transform: translateX(100%); }
.sq-close {
  position: absolute; top: 10px; right: 12px; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: var(--fg-dim); cursor: pointer;
  display: grid; place-items: center; transition: all 0.2s ease; z-index: 2;
}
.sq-close:hover { background: rgba(255,255,255,0.09); color: var(--fg); }
.sq-close svg { width: 12px; height: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) { .packages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { aspect-ratio: 16/12; max-width: 560px; }
  .spec-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { grid-column: span 1; }
  .testimonial-highlight { grid-column: span 1; grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; }
  .proof-stack { grid-template-columns: 1fr 1fr; }
  .testimonials-head { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .nichos { padding: 100px 0; }
}
@media (max-width: 900px) {
  .nichos { padding: 80px 0; }
  .nichos-head { margin-bottom: 60px; padding: 0 24px; }
  .nicho-block { grid-template-columns: 1fr; gap: 50px; padding: 0 24px; }
  .nicho-block + .nicho-block { margin-top: 100px; }
  .nicho-block.reverse { direction: ltr; }
  .nicho-gallery { grid-template-rows: 40px 140px 40px 140px 40px; gap: 12px; }
  .nicho-gallery.moda { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .nicho-copy p { font-size: 15.5px; }
}
@media (max-width: 560px) {
  .nicho-gallery.moda { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 20px; }
  .nav-menu { display: none; }
  .site-nav { padding: 16px 0; }
  .brand { font-size: 14px; }
  .nav-cta { padding: 8px 14px; font-size: 10px; }
  .hero { min-height: 100vh; }
  .hero-content { padding-top: 100px; }
  .hero-eyebrow { font-size: 10px; }
  .hero-bottom { grid-template-columns: 1fr 1fr; gap: 16px; padding: 0 20px; position: relative; bottom: 0; margin-top: 24px; padding-bottom: 32px; }
  .stat-cell .val { font-size: 26px; }
  .stat-cell.cta { grid-column: 1 / -1; text-align: center; justify-content: center; }
  .stat-cell.cta a { width: 100%; justify-content: center; }
  .portrait-stage { height: 52%; }
  .portrait { width: 88%; }
  .specline-track { font-size: 11px; gap: 30px; }
  .chapter, .testimonials { padding: 80px 0; }
  .chapter-head, .testimonials-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
  .process-grid { margin-top: 50px; }
  .about-body .quote { font-size: 26px; }
  .portfolio { padding: 80px 0; }
  .work-grid { grid-template-columns: 1fr; gap: 16px; }
  .spec { padding: 80px 0; }
  .spec-row { grid-template-columns: 1fr 1fr; gap: 12px; padding: 12px 0; }
  .spec-row .v { font-size: 16px; }
  .packages { padding: 80px 0; }
  .packages-head { margin-bottom: 50px; }
  .packages-grid { grid-template-columns: 1fr; gap: 32px; }
  .pkg-card { padding: 28px; min-height: auto; }
  .pkg-card h3 { font-size: 26px; }
  .pkg-card .price-wrap .price { font-size: 36px; }
  .packages-terms { grid-template-columns: 1fr; gap: 12px; padding: 20px; }
  .packages-terms ul { flex-direction: column; gap: 8px; }
  .reserve { padding: 90px 0; }
  .reserve-cta { padding: 16px 24px; font-size: 12px; width: 100%; justify-content: center; }
  .site-footer { padding: 60px 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; margin-bottom: 8px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sticky-quote { padding: 14px 20px 18px; }
  .sticky-quote-inner { grid-template-columns: 1fr auto; gap: 16px; padding: 18px 20px; }
  .sq-benefits { display: none; }
  .sq-title { font-size: 17px; }
  .sq-mark { width: 40px; height: 40px; font-size: 14px; }
}
@media (max-width: 560px) {
  .sticky-quote { padding: 10px 12px 14px; }
  .sticky-quote-inner { padding: 14px 14px; border-radius: 18px; gap: 10px; }
  .sq-brand { gap: 12px; }
  .sq-eyebrow { font-size: 10px; letter-spacing: 0.12em; }
  .sq-title { font-size: 14.5px; }
  .sq-cta { padding: 11px 16px; font-size: 11px; gap: 8px; letter-spacing: 0.1em; }
  .sq-cta-full { display: none; }
}
