@font-face {
  font-family: "ZT Bros Oskon 90s";
  src: url("assets/official/fonts/ZTBrosOskon90s-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "ZT Bros Oskon 90s";
  src: url("assets/official/fonts/ZTBrosOskon90s-Italic.otf") format("opentype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Stage Grotesk";
  src: url("assets/official/fonts/StageGrotesk-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Stage Grotesk";
  src: url("assets/official/fonts/StageGrotesk-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --wine: #640731;
  --wine-deep: #33000f;
  --wine-soft: #690f0e;
  --cream: #faf6ed;
  --paper: #530f0e;
  --orange: #e46c32;
  --orange-deep: #cf4514;
  --orange-dark: #a8360f;
  --lime: #b0b53c;
  --creator-terracotta: #8b2d22;
  --orange-bright: #ff905b;
  --pink: #ff83de;
  --rose: #f3a0aa;
  --ink: #33000f;
  --white: #faf6ed;
  --on-orange: #fff;
  --serif: "ZT Bros Oskon 90s", Georgia, serif;
  --sans: "Stage Grotesk", Arial, sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --rule: 1px solid currentColor;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --footer-h: 18rem;
  --grain-opacity: .13;
  --print-texture-opacity: .075;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-color: var(--wine) var(--wine-deep); }
body {
  margin: 0;
  color: var(--cream);
  background: var(--wine-deep);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Grão sobre a página inteira: tile de ruído real, sem SVG */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: url("assets/grain.png") repeat;
  background-size: 256px 256px;
  opacity: var(--grain-opacity);
  mix-blend-mode: overlay;
}
body.nav-open { overflow: hidden; }
::selection { background: var(--orange); color: var(--cream); }
input, textarea { caret-color: var(--pink); }
::placeholder { color: rgba(250, 246, 237, .5); }
a, button { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--cream);
  color: var(--wine);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--gutter);
  color: var(--cream);
  background: transparent;
  border-bottom: 1px solid rgba(243, 237, 223, .42);
}
.site-header > * { animation: header-in .9s var(--ease) .15s backwards; }
@keyframes header-in {
  from { opacity: 0; transform: translateY(-.4rem); }
  to { opacity: 1; transform: none; }
}
/* Vidro do menu suspenso em 13/09/2026. Para reativar:
   background: rgba(51, 0, 15, .28);
   backdrop-filter: blur(12px) saturate(110%); */
.brand {
  width: clamp(5rem, 7vw, 6.5rem);
  aspect-ratio: 2.8 / 1;
  display: block;
  overflow: hidden;
  background: center / contain no-repeat url("assets/official/logo-wine.png");
  color: transparent;
  font-size: 0;
  text-decoration: none;
}
.site-header .brand { background-image: url("assets/official/logo-cream.png"); }
.site-footer .brand { background-image: url("assets/official/logo-cream.png"); }
.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-link,
.header-cta {
  font-size: .68rem;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-link { position: relative; }
.nav-link,
.header-cta,
.nav-toggle,
.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.5rem;
  height: 1px;
  background: currentColor;
  transition: right .35s var(--ease);
}
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { right: 0; }
.header-cta {
  justify-self: end;
  border: 1px solid currentColor;
  padding: .9rem 1.15rem;
  transition: background .25s, color .25s;
}
.header-cta:hover { background: var(--cream); color: var(--wine); }
.nav-toggle { display: none; }

.display {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .9;
}
.italic { font-style: italic; }
.nowrap { white-space: nowrap; }
.kicker {
  margin: 0 0 1.25rem;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid currentColor;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
}
.text-link span { transition: transform .3s var(--ease); }
.text-link:hover span { transform: translateX(.35rem); }

.home-hero,
.page-hero {
  position: relative;
  isolation: isolate;
  color: var(--cream);
  background: var(--wine);
  overflow: hidden;
}
.home-hero {
  height: 100svh;
  min-height: 0;
  padding: clamp(6.25rem, 12vh, 9rem) var(--gutter) clamp(1.5rem, 4vh, 3rem);
}
.home-hero::before,
.page-hero::before,
.texture-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: center / cover no-repeat url("assets/official/texture-oyster.webp"), var(--wine);
}
.home-hero::after,
.page-hero::after,
.texture-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(51,0,15,.25), rgba(51,0,15,.04) 58%, rgba(51,0,15,.26));
}
/* Overlay leve em vermelho fechado: protege o título no alto e o apoio na base, mantém o grão no meio */
.home-hero::after {
  background: linear-gradient(180deg, rgba(66, 7, 6, .34) 0%, rgba(66, 7, 6, .16) 42%, rgba(66, 7, 6, .22) 68%, rgba(66, 7, 6, .5) 100%);
}
/* Aprovado em 14/09/2026: mesma tintura por multiply da figura "o vão" (Sobre), em versão mais suave.
   Um véu de bordô a 50% multiplica sobre a estampa; a estampa continua normal sobre o fundo */
.home-hero::before {
  background:
    linear-gradient(rgba(100, 7, 49, .5), rgba(100, 7, 49, .5)),
    46% 70% / cover no-repeat url("assets/official/texture-oyster.webp"),
    var(--wine);
  background-blend-mode: multiply, normal, normal;
  transform-origin: 50% 60%;
  animation: hero-texture 2.6s var(--ease) both;
}
@keyframes hero-texture {
  from { transform: scale(1.07); opacity: .55; }
  to { transform: none; opacity: 1; }
}
.hero-grid {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(.75rem, 2vh, 1.5rem);
  align-items: start;
}
.hero-title {
  grid-column: 1 / 11;
  grid-row: 1;
  align-self: center;
  max-width: 12ch;
  font-size: clamp(3.8rem, min(10.8vw, 16.5vh), 10.5rem);
}
.hero-line { display: block; white-space: nowrap; clip-path: inset(-.4em -50vw -.3em -.5em); }
.hero-line > span { display: block; animation: hero-line-in 1.15s var(--ease) backwards; }
.hero-line:nth-child(1) > span { animation-delay: .3s; }
.hero-line:nth-child(2) > span { animation-delay: .42s; }
.hero-line:nth-child(3) > span { animation-delay: .54s; }
.hero-line:nth-child(2) { margin-left: 10vw; }
.hero-line:nth-child(3) { margin-left: 20vw; }
@keyframes hero-line-in {
  from { transform: translateY(125%) rotate(1.2deg); }
  to { transform: none; }
}
.hero-pearl {
  position: absolute;
  z-index: -1;
  top: 9%;
  right: -5vw;
  width: clamp(13rem, 25vw, 28rem);
  animation: pearl-float 8s ease-in-out infinite;
}
.hero-note {
  grid-column: 8 / 13;
  grid-row: 2;
  align-self: end;
  max-width: 27rem;
  display: grid;
  gap: 1.25rem;
}
.hero-note { animation: hero-note-in 1s var(--ease) 1.05s backwards; }
@keyframes hero-note-in {
  from { opacity: 0; transform: translateY(.75rem); }
  to { opacity: 1; transform: none; }
}
.hero-note p { margin: 0; font-size: clamp(.92rem, 1.25vw, 1.1rem); }
.hero-note .text-link { justify-self: start; color: var(--cream); }

/* Loops so rodam com o elemento em tela (classe aplicada pelo script) */
.js .statement-pearl:not(.in-view), .js .method-pearl:not(.in-view), .js .hero-pearl:not(.in-view), .js .brands-process-pearl:not(.in-view), .js .creators-process-pearl:not(.in-view), .js .about-gap-pearl:not(.in-view) { animation-play-state: paused; }
.motion-paused .statement-pearl,
.motion-paused .method-pearl,
.motion-paused .hero-pearl,
.motion-paused .brands-process-pearl,
.motion-paused .creators-process-pearl,
.motion-paused .about-gap-pearl,
.motion-paused .glow span { animation-play-state: paused !important; }

@keyframes pearl-float {
  0%, 100% { transform: translate3d(0,0,0) rotate(-2deg); }
  50% { transform: translate3d(-1rem,1.2rem,0) rotate(2deg); }
}

.brand-statement {
  position: relative;
  min-height: 92dvh;
  padding: clamp(6rem, 12vw, 11rem) var(--gutter);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  color: var(--cream);
  background: var(--wine-deep);
  overflow: hidden;
}
/* Logotipo RARA de fundo removido em 13/09/2026 (ficou em dúvida). Para testar de novo:
   ::before absoluto, right -9%, bottom -5%, width 64%, aspect-ratio 2966/575,
   background contain logo-cream.png, opacity .045. */
/* Lâmina de vidro suspensa em 13/09/2026. Para reativar: ::after com inset 6% 5% 6% 11%,
   fundo rgba(100,7,49,.28), borda 1px rgba(250,246,237,.28), radius 16px,
   backdrop-filter blur(16px) saturate(115%). */
/* A pérola vive na grade, centrada entre o fim do título e o início do parágrafo */
.statement-pearl {
  grid-column: 4 / 7;
  grid-row: 1 / 3;
  align-self: center;
  justify-self: center;
  position: relative;
  z-index: 0;
  width: clamp(13rem, 22vw, 22rem);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  animation: statement-drift 9s ease-in-out infinite;
}
.statement-copy .display, .statement-side { position: relative; z-index: 1; }
.statement-copy {
  grid-column: 2 / 12;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: end;
  row-gap: clamp(4rem, 12vh, 8rem);
}
.statement-copy .display {
  grid-column: 1 / 6;
  grid-row: 1;
  max-width: 12ch;
  font-size: clamp(3.4rem, 6.5vw, 6.8rem);
}
.statement-side {
  grid-column: 6 / 11;
  grid-row: 2;
  width: 100%;
  max-width: 39rem;
  justify-self: end;
}
.statement-side p { margin: 0; font-size: clamp(1rem, 1.4vw, 1.25rem); }
.statement-side .statement-sign {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(250, 246, 237, .3);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@keyframes statement-drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-4deg); }
  50% { transform: translate3d(-.75rem, 1rem, 0) rotate(2deg); }
}

.audiences { display: grid; grid-template-columns: 1fr 1fr; min-height: 94dvh; }
.audience-panel {
  position: relative;
  min-height: 94dvh;
  padding: clamp(5rem, 8vw, 8rem) var(--gutter) 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  text-decoration: none;
}
.audience-panel:first-child { color: var(--cream); background: var(--wine); }
.audience-panel:last-child { color: var(--on-orange); background: var(--orange-deep); }
/* Estampas do pacote de identidade, bem de leve, na mesma cor de cada painel */
.audience-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: center / cover no-repeat url("assets/official/texture-glass.webp");
  opacity: .16;
  pointer-events: none;
}
.audience-panel:last-child::before { background-image: url("assets/official/texture-pearls.webp"); opacity: .14; }
.audience-panel .display { max-width: 14ch; font-size: clamp(3.4rem, 5.6vw, 7.5rem); }
.audience-panel p { max-width: 30rem; font-size: clamp(1rem, 1.35vw, 1.18rem); }
.audience-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.audience-meta { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.audience-meta > p { margin: 0; }
.audience-topics {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.brand-statement::before,
.method-intro::before,
.paper-section::before,
.wine-section::before,
.orange-section::before,
.contact-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: center / cover no-repeat url("assets/official/texture-glass.webp");
  opacity: var(--print-texture-opacity);
  mix-blend-mode: screen;
  pointer-events: none;
}
.brand-statement > *,
.method-intro > *,
.paper-section > *,
.wine-section > *,
.orange-section > *,
.contact-page > * { position: relative; z-index: 1; }
.audience-topics li {
  display: inline-flex;
  align-items: center;
  font-size: clamp(.68rem, .8vw, .78rem);
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}
.audience-topics li:not(:last-child)::after {
  content: "/";
  margin: 0 clamp(.55rem, 1vw, .9rem);
  opacity: .55;
}
.audience-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 246, 237, .05);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.audience-panel > * { position: relative; z-index: 1; }
.audience-panel .display { transition: transform .6s var(--ease); }
.audience-arrow { font: 400 4rem/1 var(--serif); transition: transform .4s var(--ease); }
.audience-panel:hover::after, .audience-panel:focus-visible::after { opacity: 1; }
.audience-panel:hover .display { transform: translateX(.35rem); }
.audience-panel:hover .audience-arrow { transform: translateX(1rem); }

.method {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 5fr 7fr;
  background: var(--wine-deep);
  color: var(--cream);
}
.method-intro {
  position: sticky;
  top: 0;
  height: 100dvh;
  padding: clamp(7rem, 10vw, 10rem) var(--gutter) 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.method-intro .display { font-size: clamp(3.8rem, 6.5vw, 7rem); }
.method-intro > div { position: relative; z-index: 1; }
.method-pearl {
  position: absolute;
  z-index: 0;
  right: 6%;
  bottom: -6%;
  width: clamp(14rem, 19vw, 22rem);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  animation: method-pearl 11s ease-in-out infinite;
}
@keyframes method-pearl {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-.6rem, -.9rem) rotate(-3deg); }
}
.method-lead { max-width: 26rem; margin: 1.5rem 0 0; font-size: clamp(1rem, 1.3vw, 1.15rem); }
.method-list { position: relative; margin: 0; padding: clamp(6rem, 9vw, 9rem) var(--gutter) 6rem; list-style: none; background: var(--wine); color: var(--cream); }
.method-list::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat url("assets/official/texture-glass.webp");
  opacity: .1;
  pointer-events: none;
}
.method-item { position: relative; min-height: 36vh; display: grid; grid-template-columns: 7fr 5fr; column-gap: clamp(2rem, 4vw, 5rem); align-content: center; padding: 3rem 0; border-bottom: 1px solid rgba(250,246,237,.32); }
.method-item:last-child { border-bottom: 0; }
.method-num { grid-column: 1 / -1; margin-bottom: 1.25rem; font-size: .7rem; letter-spacing: .14em; }
.method-item h3 { grid-column: 1; margin: 0; font: 400 clamp(2.2rem, 4vw, 4.6rem)/.95 var(--serif); letter-spacing: -.035em; }
.method-item p { grid-column: 2; align-self: end; max-width: 24rem; margin: 0; }

.founders {
  position: relative;
  padding: clamp(6rem, 9vw, 9rem) var(--gutter) clamp(5rem, 7vw, 7rem);
  background: var(--wine-deep);
  color: var(--cream);
  overflow: hidden;
}
.founders::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat url("assets/official/texture-glass.webp");
  opacity: .08;
  pointer-events: none;
}
.founders > * { position: relative; }
.founders-head { display: grid; grid-template-columns: repeat(12, 1fr); margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.founders-head .kicker { grid-column: 1 / 3; }
.founders-head .display { grid-column: 3 / 11; font-size: clamp(3rem, 6.4vw, 7rem); }
/* Díptico assimétrico: Joana em cima à esquerda, Luise embaixo à direita, retratos em diagonal */
.founders-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(1rem, 2.5vw, 2.5rem);
  row-gap: 0;
}
.portrait { position: relative; margin: 0; aspect-ratio: 3 / 4; overflow: hidden; background: var(--wine); }
.portrait img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(1); transition: transform .9s var(--ease); }
.portrait:hover img { transform: scale(1.03); }
/* Fotos no centro, em encaixe assimétrico; fichas de cada lado */
.founder--joana { grid-column: 1 / 4; align-self: center; text-align: right; justify-items: end; }
.founders-photo { grid-column: 4 / 10; display: grid; grid-template-columns: 1fr 1fr; column-gap: .75rem; align-items: start; }
.portrait--joana { margin-top: 0; margin-bottom: 5rem; }
.portrait--luise { margin-top: 5rem; }
.founder--luise { grid-column: 10 / 13; align-self: center; text-align: left; justify-items: start; }
.founder { display: grid; gap: .9rem; }
.founder-name { font-size: clamp(2.6rem, 4.4vw, 4.6rem); }
.founder-role { margin: 0; max-width: 16rem; font-size: .68rem; line-height: 1.5; letter-spacing: .12em; text-transform: uppercase; }
.role-break { display: block; }
.founder--joana .founder-role { color: var(--pink); }
.founder--luise .founder-role { color: var(--orange-bright); }
.founder-bio {
  margin: 1.6rem 0 0;
  max-width: 16rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.founder-stat { display: grid; gap: .35rem; margin: 1rem 0 0; padding-top: 1.1rem; border-top: 1px solid rgba(250, 246, 237, .3); max-width: 16rem; }
.founder-stat strong { font: 400 clamp(3rem, 5vw, 5rem)/.9 var(--serif); letter-spacing: -.03em; }
.founder-stat span { font-size: .86rem; line-height: 1.45; }
.validar { font-size: .6rem; font-style: normal; letter-spacing: .12em; text-transform: uppercase; opacity: .55; }
.portrait-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: .3rem;
  text-align: center;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .6;
  background: center / cover no-repeat url("assets/official/texture-portrait.webp");
  background-blend-mode: multiply;
  background-color: var(--wine);
}
.portrait--luise .portrait-placeholder { background-image: url("assets/official/texture-candelabra.webp"); background-color: var(--orange-dark); }
.portrait-placeholder small { display: block; font-size: .6rem; opacity: .7; }
.founders-foot { grid-column: 4 / 10; margin: clamp(1.5rem, 3vw, 2.5rem) 0 0; text-align: center; }

.closing {
  position: relative;
  min-height: 100dvh; /* o fecho ocupa a tela inteira; o rodapé é revelado por trás dele */
  padding: 8rem var(--gutter) 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--wine-deep);
  color: var(--cream);
  overflow: hidden;
}
/* Estampa 1 (ostra) em recorte duro: coluna de 40% à direita, sem degradê.
   O conteúdo fica na coluna de 60% da esquerda (padding-right) e não invade a imagem */
.closing { padding-right: calc(40% + var(--gutter)); }
.closing::before {
  content: "";
  position: absolute;
  /* A caixa da imagem é 1,8x mais alta que a seção e sobe além do topo (a seção recorta):
     assim a imagem cobre a coluna inteira e a pérola (71% da altura da imagem) cai a ~48% do painel */
  inset: -80% 0 0 auto;
  width: 40%;
  background: 52% 50% / cover no-repeat url("assets/official/texture-oyster.webp");
}
/* Página de marcas: estampa 4 (vidro escuro) no lugar da ostra */
.brands-closing::before { inset: 0 0 0 auto; background: 50% 40% / cover no-repeat url("assets/official/texture-glass.webp"); }
.creators-closing { background: var(--wine-deep); }
.creators-closing::before { inset: 0 0 0 auto; background: center / cover no-repeat url("assets/official/estampa-03.jpg"); }
.closing > * { position: relative; z-index: 1; }
.closing .display { max-width: 10ch; font-size: clamp(4.5rem, 10vw, 11rem); }
.brands-closing .display { max-width: 12ch; font-size: clamp(4.5rem, 7.6vw, 9rem); }
.creators-closing .display { max-width: 12ch; font-size: clamp(4.5rem, 7.6vw, 9rem); }
/* Quando a coluna aperta, o link desce para a linha de baixo em vez de espremer o parágrafo */
.closing-bottom { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 2rem; }
/* Linhas equilibradas: evita palavra órfã no fim da linha (o "A" solto) */
.closing-bottom p { flex: 1 1 22rem; min-width: 0; max-width: 30rem; text-wrap: pretty; text-wrap: balance; }
.closing-bottom .text-link { flex-shrink: 0; margin-left: auto; white-space: nowrap; }
.closing-mark { position: absolute; right: -4vw; bottom: -15vw; font: italic 400 31vw/.7 var(--serif); opacity: .06; }

/* Rodapé revelado: fica preso na base da janela, atrás do conteúdo; a página rola por cima e o descobre no fim */
main { position: relative; z-index: 1; background: var(--wine-deep); }
.site-footer {
  position: sticky;
  bottom: 0;
  z-index: 0;
  min-height: var(--footer-h);
  padding: clamp(2.5rem, 4vw, 3.5rem) var(--gutter) 1.5rem;
  background: #24000b;
  color: var(--cream);
  border-top: 1px solid rgba(250,246,237,.3);
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat url("assets/official/texture-glass.webp");
  opacity: .07;
  pointer-events: none;
}
.footer-main { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; column-gap: clamp(2rem, 6vw, 8rem); }
.footer-mark { display: block; width: clamp(16rem, 34vw, 34rem); margin-right: -1.5vw; line-height: 0; opacity: .38; transition: opacity .6s var(--ease); }
.footer-mark:hover { opacity: .7; }
.footer-mark img { width: 100%; height: auto; display: block; }
.footer-cols { display: grid; grid-template-columns: repeat(2, auto); column-gap: clamp(2rem, 4vw, 4rem); align-content: start; justify-content: start; }
.footer-col { display: grid; gap: .5rem; justify-items: start; font-style: normal; }
.footer-label { margin: 0 0 .5rem; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; opacity: .5; }
.footer-col a, .footer-col span { font-size: .88rem; line-height: 1.4; }
.footer-col a { position: relative; text-decoration: none; }
.footer-col a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.15rem; height: 1px; background: currentColor; transition: right .35s var(--ease); }
.footer-col a:hover::after { right: 0; }
.footer-col span { opacity: .7; }
.footer-meta {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(2rem, 3.5vw, 3rem);
  padding-top: 1.1rem;
  border-top: 1px solid rgba(250,246,237,.16);
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .6;
}
.footer-meta a { text-decoration: none; }
.footer-meta a:hover { text-decoration: underline; text-underline-offset: .3em; }

/* Seção 4: mosaico por coluna com os 8 serviços (bordô = marcas, laranja = creators) */
.mosaic { position: relative; padding: clamp(6rem, 9vw, 9rem) var(--gutter); color: var(--cream); background: var(--wine-deep); overflow: hidden; }
.mosaic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: center / cover no-repeat url("assets/official/texture-glass.webp");
  opacity: .08;
  pointer-events: none;
}
.mosaic > * { position: relative; z-index: 1; }
/* Luz em movimento atrás do mosaico: três manchas desfocadas na paleta, deriva lenta */
.glow { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.glow span {
  position: absolute;
  width: 46vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  mix-blend-mode: screen;
}
.glow-a { left: -12%; top: 8%; background: radial-gradient(circle, rgba(255,131,222,.55), transparent 62%); animation: glow-a 22s ease-in-out infinite alternate; }
.glow-b { right: -14%; top: 30%; background: radial-gradient(circle, rgba(228,108,50,.5), transparent 62%); animation: glow-b 26s ease-in-out infinite alternate; }
.glow-c { left: 30%; bottom: -30%; background: radial-gradient(circle, rgba(105,15,14,.9), transparent 62%); animation: glow-c 30s ease-in-out infinite alternate; }
@keyframes glow-a { to { transform: translate(18vw, 22vh) scale(1.15); } }
@keyframes glow-b { to { transform: translate(-16vw, -14vh) scale(.9); } }
@keyframes glow-c { to { transform: translate(-12vw, -18vh) scale(1.1); } }
.js .mosaic:not(.in-view) .glow span, .js .founders:not(.in-view) .glow span { animation-play-state: paused; }
/* Variante centrada: as três luzes orbitam o díptico das fundadoras */
.glow--center span { width: 40vw; opacity: .5; }
.glow--center .glow-a { left: 30%; top: 10%; animation-name: glow-ca; }
.glow--center .glow-b { left: 42%; top: 30%; animation-name: glow-cb; }
.glow--center .glow-c { left: 22%; top: 40%; animation-name: glow-cc; }
@keyframes glow-ca { to { transform: translate(10vw, 12vh) scale(1.1); } }
@keyframes glow-cb { to { transform: translate(-12vw, -6vh) scale(.95); } }
@keyframes glow-cc { to { transform: translate(8vw, -14vh) scale(1.15); } }
.founders > .glow { z-index: 0; }
.founders > :not(.glow) { z-index: 1; }
.mosaic-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.mosaic-title { white-space: nowrap; font-size: clamp(2.4rem, 5.2vw, 5.6rem); }
.mosaic-card { grid-area: var(--area); }

.mosaic-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  padding: clamp(1.4rem, 2vw, 2rem);
  color: var(--cream);
  text-decoration: none;
  overflow: hidden;
  transition: transform .5s var(--ease), filter .5s var(--ease);
}
.mosaic-card:hover { transform: translateY(-3px); }
.mosaic-card--marcas { background: var(--wine); }
.mosaic-card--creators { color: var(--on-orange); background: var(--orange-deep); }
.mosaic-card--dark { background: var(--orange-dark); }
.mosaic-card--rose { background: var(--rose); color: var(--wine-deep); }
.mosaic-card--rose .text-link { color: var(--wine-deep); }
.mosaic-card--texture::before,
.mosaic-card--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--photo) center / cover no-repeat;
  opacity: .22;
  transition: transform .9s var(--ease), opacity .5s var(--ease);
}
.mosaic-card--photo::before { opacity: .72; }
.mosaic-card--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(51,0,15,.05) 25%, rgba(51,0,15,.88));
}
.mosaic-card--creators.mosaic-card--photo::after { background: linear-gradient(180deg, rgba(168,54,15,.05) 25%, rgba(105,15,14,.9)); }
.mosaic-card:hover::before { transform: scale(1.04); }
.mosaic-card--photo:hover::before { opacity: .82; }
.mosaic-card h3 { margin: auto 0 0; font: 400 clamp(1.7rem, 2.4vw, 2.6rem)/1 var(--serif); letter-spacing: -.025em; max-width: 12ch; }
.mosaic-card h3 i { white-space: nowrap; }
.masonry .mosaic-card h3 { max-width: none; }
.mosaic-card p { margin: 0; max-width: 28rem; font-size: .88rem; line-height: 1.5; }
/* Chamada simples, como na referência */
.mosaic-more { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; text-decoration: underline; text-underline-offset: .3em; text-decoration-thickness: 1px; }
.mosaic-more span { font-size: .75rem; transition: transform .35s var(--ease); }
.mosaic-card:hover .mosaic-more span { transform: translate(.2rem, -.2rem); }
.mosaic .mosaic-head { justify-content: flex-start; }

/* Masonry por coluna. Cada coluna tem um público; os cartões com foto
   absorvem a altura que sobra, então as três colunas terminam na mesma linha. */
.masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; align-items: stretch; }
.masonry-col { display: flex; flex-direction: column; gap: .75rem; }
.masonry .mosaic-card { min-height: 13rem; }
.masonry .mosaic-card--grow { flex: 1 1 auto; min-height: 20rem; }

/* Internal pages */
.page-hero { min-height: 82dvh; padding: 10rem var(--gutter) 4rem; }
.page-hero-grid { min-height: calc(82dvh - 14rem); display: grid; grid-template-columns: repeat(12, 1fr); align-items: end; }
.page-hero .display { grid-column: 1 / 10; font-size: clamp(3.8rem, min(10.8vw, 16.5vh), 10.5rem); }
.page-hero-copy { grid-column: 9 / 13; margin-top: 2rem; }
.page-hero-copy p { margin: 0 0 1.5rem; }
.brands-hero .page-hero-copy { width: 100%; max-width: 29rem; justify-self: end; }
.brands-hero .page-hero-copy p { text-wrap: balance; }
.page-hero .hero-pearl { top: 4rem; width: clamp(12rem, 22vw, 24rem); }
.brands-hero { background: #640731; }
.brands-hero::before {
  background: 50% 38% / cover no-repeat url("assets/official/estampa-04.jpg"), #640731;
}
.brands-hero::after {
  background:
    linear-gradient(90deg, rgba(51, 0, 15, .78) 0%, rgba(51, 0, 15, .42) 48%, rgba(51, 0, 15, .62) 100%),
    linear-gradient(0deg, rgba(51, 0, 15, .52), transparent 58%);
}
.brands-hero .display {
  grid-column: 1 / 11;
  font-size: clamp(3.8rem, min(10.8vw, 16.5vh), 10.5rem); /* mesma escala da capa da home */
  line-height: .88;
}
.hero-service-label {
  position: absolute;
  top: clamp(7.25rem, 14vh, 9.5rem);
  left: var(--gutter);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}
.hero-service-label span:first-child {
  padding-right: 1rem;
  color: var(--pink);
  border-right: 1px solid rgba(255, 242, 235, .42);
}
.hero-service-label span:last-child {
  color: var(--cream);
}
/* No laranja, o rosa choque some; o rosa suave é o que mais se separa do fundo */
.creators-hero .hero-service-label span:first-child { color: var(--rose); }
.creators-hero { background: var(--orange-deep); }
.creators-hero::before {
  background: center 46% / cover no-repeat url("assets/official/estampa-03.jpg"), var(--orange-deep);
}
.creators-hero::after {
  background:
    linear-gradient(90deg, rgba(100, 7, 49, .68) 0%, rgba(100, 7, 49, .22) 52%, rgba(100, 7, 49, .38) 100%),
    linear-gradient(0deg, rgba(100, 7, 49, .46), transparent 58%);
}
.creators-hero .display {
  grid-column: 1 / 11;
  font-size: clamp(3.8rem, min(10.8vw, 16.5vh), 10.5rem); /* mesma escala da capa da home */
  line-height: .88;
}
.creators-hero .page-hero-copy { width: 100%; max-width: 29rem; justify-self: end; }
.creators-hero .page-hero-copy p { text-wrap: balance; }
/* Heros de marcas e creators ocupam a tela inteira, menu incluído (o header é absoluto sobre a hero) */
.brands-hero, .creators-hero, .about-hero { min-height: 100svh; }
.brands-hero .page-hero-grid, .creators-hero .page-hero-grid, .about-hero .page-hero-grid { min-height: calc(100svh - 14rem); }
/* Abertura de marcas e creators: mesma coreografia da home (textura aproxima, linhas sobem, apoio entra por último) */
.brands-hero::before, .creators-hero::before {
  transform-origin: 50% 45%;
  animation: hero-texture 2.6s var(--ease) both;
}
.page-hero .hero-line { white-space: normal; margin-left: 0; }
.page-hero .hero-line:nth-child(1) > span { animation-delay: .3s; }
.page-hero .hero-line:nth-child(2) > span { animation-delay: .42s; }
.brands-hero .hero-service-label, .creators-hero .hero-service-label,
.brands-hero .page-hero-copy, .creators-hero .page-hero-copy { animation: hero-note-in 1s var(--ease) .95s backwards; }
.orange-hero { background: var(--wine); color: var(--cream); }
.orange-hero::before { background: center / cover no-repeat url("assets/official/texture-candelabra.webp"), var(--wine); opacity: .34; }

.lp-intro { padding: clamp(6rem, 10vw, 10rem) var(--gutter); display: grid; grid-template-columns: repeat(12, 1fr); gap: 2rem; }
.lp-intro .display { grid-column: 1 / 9; font-size: clamp(3.6rem, 7vw, 7.6rem); text-wrap: balance; }
.lp-intro-copy { grid-column: 9 / 13; align-self: end; }
.lp-intro-copy p { margin: 0; }
.paper-section.brands-intro { background: #33000f; color: var(--cream); }
.paper-section.brands-services { background: #33000f; color: var(--cream); }
.paper-section.creators-intro,
.paper-section.creators-services { background: #33000f; color: var(--cream); }
.service-detail { padding: 0 var(--gutter) 8rem; }
.detail-row { display: grid; grid-template-columns: 1fr 4fr 3fr; gap: 3rem; padding: 3.5rem 0; border-top: 1px solid currentColor; }
.detail-row:last-child { border-bottom: 1px solid currentColor; }
.detail-row h2 { margin: 0; font: 400 clamp(2.2rem, 4vw, 4.8rem)/.95 var(--serif); letter-spacing: -.035em; }
.detail-row p { margin: .4rem 0 0; max-width: 33rem; }
.detail-row .text-link { align-self: end; justify-self: end; }
.wine-section,
.paper-section,
.orange-section,
.contact-page { position: relative; isolation: isolate; overflow: hidden; }
.wine-section { background: var(--wine); color: var(--cream); }
.paper-section { background: var(--wine-soft); color: var(--cream); }
.orange-section { background: var(--wine); color: var(--cream); }

/* Método das páginas internas: cabeçalho assimétrico e três colunas */
.process { position: relative; padding: clamp(6rem, 9vw, 9rem) var(--gutter); overflow: visible; }
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat url("assets/official/texture-glass.webp");
  opacity: .1;
  pointer-events: none;
}
.process > * { position: relative; }
.brands-process-pearl,
.creators-process-pearl {
  --pearl-y: -50%;
  position: absolute;
  top: 0;
  right: clamp(2rem, 5vw, 5rem);
  z-index: 1;
  width: clamp(8rem, 12vw, 12rem);
  height: auto;
  opacity: .88;
  transform: translateY(var(--pearl-y)) rotate(7deg);
  filter: saturate(.92) contrast(1.04);
  pointer-events: none;
  animation: brands-process-pearl-float 9s ease-in-out infinite;
}
.creators-process {
  background: #88102a;
  color: var(--cream);
}
.creators-process::before {
  background: center / cover no-repeat url("assets/official/texture-glass.webp");
  opacity: .14;
  mix-blend-mode: screen;
}
@keyframes brands-process-pearl-float {
  0%, 100% { transform: translate3d(0, var(--pearl-y), 0) rotate(7deg); }
  50% { transform: translate3d(-.6rem, calc(var(--pearl-y) + .7rem), 0) rotate(4deg); }
}
.process-head {
  display: grid;
  grid-template-columns: 8fr 4fr;
  column-gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}
.process .display { max-width: 16ch; font-size: clamp(3rem, 5.8vw, 6.4rem); }
/* Título do método em uma linha só (marcas e creators); no tamanho atual cabe na coluna de 8/12 com folga */
.process .process-title-line { max-width: none; white-space: nowrap; }
.process-lead { max-width: 22rem; margin: 0 0 .5rem; font-size: clamp(1rem, 1.25vw, 1.1rem); justify-self: end; }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: clamp(2rem, 4vw, 5rem); margin: 0; padding: 0; list-style: none; }
.process-item { position: relative; padding-top: 1.75rem; }
.process-item::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: currentColor; opacity: .45; transform-origin: left; }
.process-num { display: block; margin-bottom: 2.25rem; font-size: .68rem; letter-spacing: .14em; }
.process-item h3 { margin: 0 0 1rem; font: 400 clamp(2rem, 3vw, 3.2rem)/1 var(--serif); letter-spacing: -.025em; }
.process-item p { margin: 0; max-width: 20rem; }

/* Sobre: hero com a estampa 2 (candelabro) na cor original, dourado/oliva, como na página de contato.
   Mesma abertura das outras capas. Overlay no tom escuro da própria estampa, só para assentar o texto */
/* No verde-oliva da página institucional, a etiqueta usa o lima da paleta em vez do rosa */
.about-hero .hero-service-label span:first-child { color: var(--lime); }
.about-hero { background: #262006; }
.about-hero::before {
  background: 50% 40% / cover no-repeat url("assets/official/texture-candelabra.webp"), #262006;
  transform-origin: 50% 45%;
  animation: hero-texture 2.6s var(--ease) both;
}
.about-hero::after {
  background:
    linear-gradient(90deg, rgba(38, 32, 6, .62) 0%, rgba(38, 32, 6, .2) 50%, rgba(38, 32, 6, .4) 100%),
    linear-gradient(0deg, rgba(38, 32, 6, .6), transparent 55%);
}
.about-hero .display { grid-column: 1 / 11; font-size: clamp(4.75rem, 10.5vw, 11.5rem); line-height: .88; }
.about-hero .page-hero-copy { width: 100%; max-width: 29rem; justify-self: end; }
.about-hero .page-hero-copy p { text-wrap: balance; }
.about-hero .hero-service-label, .about-hero .page-hero-copy { animation: hero-note-in 1s var(--ease) .95s backwards; }

/* Sobre: origem em página escura, título largo, texto à direita e ficha técnica na base esquerda */
/* Sobre: a lacuna em duas metades. Leitura sobre o bordô à esquerda; à direita a estampa 1 tingida,
   com a conclusão alinhada à direita na base. A pérola fica solta sobre a divisa das duas metades */
.about-gap { position: relative; display: grid; grid-template-columns: 3fr 2fr; min-height: 100dvh; background: var(--wine); color: var(--cream); overflow: hidden; }
.about-gap::before { content: ""; position: absolute; inset: 0; background: center / cover no-repeat url("assets/official/texture-glass.webp"); opacity: .1; pointer-events: none; }
.about-gap > * { position: relative; }
.about-gap-text {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: stretch;
  padding: clamp(6rem, 8vw, 8rem) clamp(3rem, 6vw, 7rem) clamp(6rem, 8vw, 8rem) var(--gutter);
}
.about-gap-text .kicker { align-self: start; margin: 0; }
.about-gap-text .display {
  max-width: 16ch;
  margin: clamp(1.25rem, 2vw, 2rem) 0 0;
  font-size: clamp(2.8rem, 4.55vw, 5.2rem);
}
.about-gap-title-line { display: block; }
@media (min-width: 1200px) {
  .about-gap-text .display { max-width: none; }
  .about-gap-title-line--nowrap { white-space: nowrap; }
}
.about-gap-prose {
  align-self: end;
  width: 100%;
  max-width: none;
  margin-top: clamp(4rem, 8vh, 7rem);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}
.about-gap-prose p { margin: 0; max-width: 34rem; font-size: clamp(1rem, 1.1vw, 1.1rem); line-height: 1.6; }
.about-gap-prose .about-gap-lead { margin: 0; font-family: var(--serif); font-size: clamp(1.45rem, 1.75vw, 2rem); line-height: 1.2; letter-spacing: -.02em; }
.about-gap-side {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: clamp(6rem, 9vw, 9rem) var(--gutter) clamp(6rem, 9vw, 9rem) clamp(3rem, 7vw, 8rem);
  background: 50% 45% / cover no-repeat url("assets/official/texture-oyster.webp"), var(--wine-deep);
  text-align: right;
}
.about-gap-side::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(51,0,15,.34), rgba(51,0,15,.7)),
    radial-gradient(ellipse 70% 65% at 50% 48%, rgba(51,0,15,0), rgba(51,0,15,.48) 100%);
  pointer-events: none;
}
.about-gap-close {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  margin: 0;
  padding-top: clamp(1.25rem, 2vw, 2rem);
  border-top: 1px solid rgba(250, 246, 237, .42);
  font-size: clamp(2.4rem, 3.2vw, 3.8rem);
}
.about-gap-pearl { position: absolute; z-index: 2; left: 60%; top: 51%; width: clamp(8rem, 11vw, 12rem); height: auto; aspect-ratio: 1; object-fit: contain; transform: translate(-50%, -50%); animation: gap-pearl 12s ease-in-out infinite; }
@keyframes gap-pearl { 0%, 100% { transform: translate(-50%, -50%) rotate(0deg); } 50% { transform: translate(-52%, -54%) rotate(-3deg); } }

/* Sobre: fundadoras em duas linhas espelhadas, retrato grande e texto centrado na altura */
.about-founders { position: relative; padding: clamp(6rem, 10vw, 10rem) var(--gutter) clamp(4rem, 8vw, 8rem); background: var(--wine-deep); color: var(--cream); overflow: hidden; }
.about-founders::before { content: ""; position: absolute; inset: 0; background: center / cover no-repeat url("assets/official/texture-glass.webp"); opacity: .1; pointer-events: none; }
.about-founders > * { position: relative; }
.about-founders-head { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: 2rem; row-gap: 1.5rem; margin-bottom: clamp(5rem, 8vw, 8rem); }
.about-founders-head .kicker { grid-column: 1 / 3; margin: 0; }
.about-founders-head .display { grid-column: 3 / 11; font-size: clamp(3rem, 6.4vw, 7rem); }
.about-founders-lead { grid-column: 3 / 8; margin: 0; max-width: 30rem; }
/* Fichas nas pontas, retratos no centro em degrau: a mesma composição espelhada da home */
.about-founders-grid { display: grid; grid-template-columns: 5fr minmax(24rem, 42vw) 5fr; column-gap: clamp(2rem, 4vw, 4.5rem); align-items: center; }
.about-founder { display: contents; }
.about-founder--luise .about-founder-copy { grid-column: 1; text-align: right; justify-items: end; }
.about-founder--joana .about-founder-copy { grid-column: 3; text-align: left; justify-items: start; }
.about-founder-copy { display: grid; max-width: 22rem; font-size: .95rem; }
.about-founder--luise .about-founder-copy { justify-self: end; }
.about-founders-photos { grid-column: 2; display: grid; grid-template-columns: 1fr 1fr; column-gap: 1rem; align-items: start; }
.about-founders-photos .portrait { margin: 0; }
.about-founders-photos .portrait--luise { margin-bottom: 5rem; }
.about-founders-photos .portrait--joana { margin-top: 5rem; }
.about-founder--joana .about-founder-copy .kicker { color: var(--pink); }
.about-founder--luise .about-founder-copy .kicker { color: var(--orange-bright); }
.about-founder-copy .display { margin-bottom: .75rem; font-size: clamp(2.6rem, 4.2vw, 4.6rem); }
.about-founder-copy .kicker { margin-bottom: 1.25rem; }
.about-founder-copy p { margin: 0 0 1rem; }
.about-founder-copy .founder-stat { margin-top: 1.5rem; }
.about-founders-close { margin: clamp(5rem, 9vw, 8.5rem) auto 0; text-align: center; font-family: var(--serif); font-size: clamp(2.2rem, 4.2vw, 4.8rem); line-height: 1.05; letter-spacing: -.03em; }
.about-founders-close span, .about-founders-close i { display: block; white-space: nowrap; }

/* Sobre: fecho com a estampa 2 (candelabro) na cor original, fechando o par com a capa */
.about-closing::before { inset: 0 0 0 auto; background: 50% 40% / cover no-repeat url("assets/official/texture-candelabra.webp"); }
.about-closing .display { max-width: 12ch; font-size: clamp(4.5rem, 7.6vw, 9rem); }

/* Contato: estampa 2 em coluna inteira à esquerda (passa por trás do menu), formulário sobre o bordô profundo texturizado */
.contact-page { min-height: 100dvh; padding: 0; background: var(--wine-deep); color: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; min-height: 100dvh; }
.contact-intro {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 9rem var(--gutter) clamp(3rem, 5vw, 4.5rem);
  /* A estampa original é dourada; a mistura por luminosidade a leva para o bordô sem escurecer */
  /* Teste: estampa 2 na cor original (dourado/oliva), sem tingir */
  background: center 40% / cover no-repeat url("assets/official/texture-candelabra.webp");
}
/* Gradiente de baixo para cima no tom escuro da própria estampa, só para assentar o texto */
.contact-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(0deg, rgba(38, 32, 6, .72) 0%, rgba(38, 32, 6, .35) 38%, rgba(38, 32, 6, 0) 68%);
  pointer-events: none;
}
.contact-intro-copy { position: relative; z-index: 1; max-width: 26rem; }
.contact-intro .kicker { margin-bottom: 2rem; }
.contact-intro .display { font-size: clamp(3.4rem, 5.6vw, 6.2rem); max-width: 10ch; line-height: .95; }
.contact-intro p { max-width: 24rem; margin: 2rem 0 0; }
.contact-direct { display: flex; flex-wrap: wrap; gap: 1.75rem; margin-top: 2rem; font-size: .8rem; letter-spacing: .06em; }
.contact-direct a { text-decoration: none; border-bottom: 1px solid rgba(250,246,237,.45); padding-bottom: .15rem; }
.contact-direct a:hover { border-color: currentColor; }
.contact-form-wrap {
  position: relative;
  display: grid;
  align-content: center;
  padding: 9rem clamp(2rem, 6vw, 7rem) clamp(3rem, 5vw, 4.5rem);
}
.contact-form-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat url("assets/official/texture-glass.webp");
  opacity: .1;
  pointer-events: none;
}
.contact-form { position: relative; display: grid; gap: 1.4rem; max-width: 40rem; }
.field { display: grid; gap: .5rem; }
.field label { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 1rem 0;
  border: 0;
  border-bottom: 1px solid var(--cream);
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  outline: none;
}
/* A lista do select é desenhada pelo sistema: fundo e texto explícitos para não sair branco sobre creme */
.field select { color-scheme: dark; cursor: pointer; }
.field select option { background: var(--wine-deep); color: var(--cream); }
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-width: 3px; }
.submit {
  justify-self: start;
  margin-top: 1rem;
  padding: 1rem 1.4rem;
  border: 1px solid var(--cream);
  border-radius: 0;
  color: var(--wine-deep);
  background: var(--cream);
  cursor: pointer;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .25s, color .25s;
}
.submit:hover { background: transparent; color: var(--cream); }
.submit:active { transform: translateY(1px); }
.submit:disabled { opacity: .65; cursor: default; }

/* Revelacoes: tres materiais, um por tipo de conteudo.
   (a cortina deixa 1px visivel porque o Chrome considera o clip-path no IntersectionObserver)
   .reveal      fade + subida curta, para paragrafos e blocos de apoio
   .reveal-wipe cortina de baixo para cima, para titulos display
   .reveal-rule o fio desenha da esquerda e o conteudo entra depois, para linhas de lista */
.reveal, .reveal-wipe, .reveal-rule { --d: 0s; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease) var(--d), transform .9s var(--ease) var(--d); }
.js .reveal.is-visible { opacity: 1; transform: none; }

.js .reveal-wipe { clip-path: inset(0 -.5em calc(100% - 1px) -.5em); transform: translateY(.18em); transition: clip-path 1.1s var(--ease) var(--d), transform 1.1s var(--ease) var(--d); }
.js .reveal-wipe.is-visible { clip-path: inset(-.4em -.5em -.3em -.5em); transform: none; }

.js .reveal-rule::before { transform: scaleX(0); transition: transform 1.2s var(--ease) var(--d); }
.js .reveal-rule > * { opacity: 0; transform: translateY(14px); transition: opacity .8s var(--ease) calc(var(--d) + .25s), transform .8s var(--ease) calc(var(--d) + .25s); }
.js .reveal-rule.is-visible::before { transform: none; }
.js .reveal-rule.is-visible > * { opacity: 1; transform: none; }

/* A capa recua conforme sai de cena */
@supports (animation-timeline: view()) {
  .js .hero-grid { animation: hero-recede linear both; animation-timeline: view(); animation-range: exit 0% exit 70%; }
  @keyframes hero-recede {
    to { transform: translateY(-10%); opacity: 0; }
  }
}

:focus-visible { outline: 2px solid var(--pink); outline-offset: 5px; }

@media (max-width: 900px) {
  .closing { --footer-h: 26rem; padding-right: var(--gutter); }
  .closing::before { position: static; width: auto; height: 60vw; margin: 3rem calc(-1 * var(--gutter)) 0; order: 2; background-size: cover; background-position: 50% 70%; }
  .site-footer { --footer-h: 26rem; }
  .footer-main { grid-template-columns: 1fr; row-gap: 2.5rem; }
  .footer-mark { width: 60vw; justify-self: end; }
  .closing-bottom { align-items: flex-start; flex-direction: column; }
  .closing-bottom .text-link { margin-left: 0; }
  .site-header { grid-template-columns: 1fr auto; height: 72px; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    padding: 7rem var(--gutter) 3rem;
    background: var(--wine-deep);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; }
  .main-nav .nav-list li { opacity: 0; transform: translateY(.6rem); transition: opacity .5s var(--ease), transform .5s var(--ease); }
  .main-nav.is-open .nav-list li { opacity: 1; transform: none; }
  .main-nav.is-open .nav-list li:nth-child(2) { transition-delay: .07s; }
  .main-nav.is-open .nav-list li:nth-child(3) { transition-delay: .14s; }
  .nav-list { align-items: flex-start; flex-direction: column; gap: 2rem; }
  .nav-link { font: 400 2.4rem/1 var(--serif); letter-spacing: -.03em; text-transform: none; }
  .header-cta { display: none; }
  .site-header .nav-toggle { display: inline-flex; min-width: 44px; position: relative; z-index: 2; justify-self: end; justify-content: flex-end; border: 0; background: transparent; color: inherit; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
  .hero-title { grid-column: 1 / 13; font-size: clamp(4.1rem, 16vw, 8rem); }
  .hero-line:nth-child(2) { margin-left: 5vw; }
  .hero-line:nth-child(3) { margin-left: 10vw; }
  .hero-note { grid-column: 6 / 13; }
  .statement-copy { grid-column: 1 / 13; }
  .audiences { grid-template-columns: 1fr; }
  .audience-panel { min-height: 75dvh; }
  .masonry { grid-template-columns: repeat(2, 1fr); }
  .masonry-col:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, 1fr); }
  .mosaic-head { flex-direction: column; align-items: flex-start; }
  .method { grid-template-columns: 1fr; }
  .method-intro { position: relative; height: auto; min-height: 60dvh; padding-bottom: 14rem; }
  .method-pearl { right: var(--gutter); bottom: -4%; width: 12rem; }
  .founders-head .kicker { grid-column: 1 / 13; margin-bottom: 1rem; }
  .founders-head .display { grid-column: 1 / 13; }
  .founders-photo { grid-column: 1 / 13; grid-row: 1; max-width: 32rem; margin: 0 auto 1.5rem; }
  .founders-foot { grid-column: 1 / 13; grid-row: 3; }
  .founder--joana { grid-column: 1 / 7; text-align: left; justify-items: start; }
  .founder--luise { grid-column: 7 / 13; }
  .page-hero .display { grid-column: 1 / 13; }
  .page-hero-copy { grid-column: 6 / 13; }
  .lp-intro .display { grid-column: 1 / 12; }
  .lp-intro-copy { grid-column: 6 / 13; }
  .detail-row { grid-template-columns: 1fr 4fr; }
  .detail-row .text-link { grid-column: 2; justify-self: start; }
  .process-head { grid-template-columns: 1fr; row-gap: 1.5rem; }
  .process .process-title-line { max-width: 16ch; white-space: normal; }
  .process-lead { justify-self: start; }
  .about-gap { grid-template-columns: 1fr; min-height: 0; }
  .about-gap-text { display: block; padding-right: var(--gutter); }
  .about-gap-text .display { margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
  .about-gap-prose { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 0; }
  .about-gap-prose .about-gap-lead { margin-top: .75rem; }
  .about-gap-side { min-height: 26rem; padding: 8rem var(--gutter) 4rem; }
  .about-gap-pearl { width: 11rem; left: auto; right: 4%; top: auto; bottom: 26rem; transform: translate(0, 50%); animation: none; }
  .about-founders-head .kicker, .about-founders-head .display, .about-founders-lead { grid-column: 1 / 13; }
  .about-founders-grid { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
  .about-founders-photos { grid-column: 1 / -1; grid-row: 1; max-width: 32rem; margin: 0 auto; }
  .about-founder--luise .about-founder-copy { grid-column: 1; text-align: left; justify-items: start; justify-self: start; }
  .about-founder--joana .about-founder-copy { grid-column: 2; }
  .contact-grid { grid-template-columns: 1fr; min-height: 0; }
  .contact-intro { min-height: 70dvh; padding-top: 8rem; }
  .contact-form-wrap { padding: 4rem var(--gutter) 4rem; }
}

@media (max-width: 600px) {
  :root { --gutter: 1.25rem; }
  .home-hero { height: 100svh; min-height: 35rem; padding: 6rem var(--gutter) 1.5rem; }
  .home-hero::before { background-position: 43% 68%; }
  .hero-grid { height: 100%; min-height: 0; }
  .hero-title { font-size: clamp(3.35rem, min(18vw, 12.5vh), 5.5rem); align-self: center; }
  .hero-line:nth-child(2), .hero-line:nth-child(3) { margin-left: 0; white-space: normal; }
  .hero-note { grid-column: 3 / 12; }
  .brand-statement { min-height: 78dvh; }
  .statement-pearl { width: 11rem; margin: 2.5rem 0 0 auto; }
  .audience-bottom { padding-right: 0; }
  .statement-copy { grid-column: 1 / 13; display: block; }
  .statement-copy .display { max-width: 9ch; }
  .statement-side { max-width: 24rem; margin: 2rem 0 0 auto; }
  .audience-panel { min-height: 68dvh; padding-top: 5rem; }
  .audience-bottom { gap: 1rem; }
  .audience-arrow { flex: 0 0 auto; font-size: 3rem; }
  .audience-topics li { font-size: .62rem; letter-spacing: .075em; }
  .audience-topics li:not(:last-child)::after { margin-inline: .45rem; }
  .masonry, .masonry-col:last-child { grid-template-columns: 1fr; }
  .masonry .mosaic-card, .masonry .mosaic-card--grow { min-height: 12rem; }
  .method-intro { height: 70dvh; }
  .method-list { padding-top: 5rem; }
  .method-item { min-height: 0; grid-template-columns: 1fr; padding: 2.5rem 0; }
  .method-item p { grid-column: 1; margin-top: 1.25rem; }
  .founders-grid { grid-template-columns: 1fr; row-gap: 2rem; }
  .founders-photo, .founder--joana, .founder--luise { grid-column: 1; grid-row: auto; }
  .portrait--joana { margin-bottom: 2.5rem; }
  .portrait--luise { margin-top: 2.5rem; }
  .founders-foot { grid-column: 1; }
  .footer-cols { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
  .footer-meta { flex-direction: column; gap: .75rem; }
  .footer-links { flex-wrap: wrap; }
  .page-hero { min-height: 76dvh; padding-top: 8rem; }
  .page-hero-grid { min-height: calc(76dvh - 12rem); }
  .brands-hero { min-height: 100svh; padding-bottom: 2rem; }
  .brands-hero .page-hero-grid { min-height: calc(100svh - 10rem); }
  .creators-hero { min-height: 100svh; padding-bottom: 2rem; }
  .creators-hero .page-hero-grid { min-height: calc(100svh - 10rem); }
  .about-hero { min-height: 100svh; padding-bottom: 2rem; }
  .about-hero .page-hero-grid { min-height: calc(100svh - 10rem); }
  .page-hero .display { font-size: clamp(4rem, 19vw, 6rem); }
  .page-hero-copy { grid-column: 1 / 10; position: relative; z-index: 1; }
  .page-hero .hero-pearl { width: 12rem; right: -4.5rem; top: 9rem; }
  .brands-hero::before { background-position: 42% center; }
  .brands-hero .display { font-size: clamp(3.7rem, 17vw, 5.6rem); line-height: .82; }
  .creators-hero::before { background-position: 54% center; }
  .creators-hero .display { font-size: clamp(3rem, 12.6vw, 4.5rem); line-height: .82; }
  .hero-service-label { top: 7rem; gap: .75rem; font-size: .6rem; }
  .brands-closing .display { max-width: 10ch; font-size: clamp(3.35rem, 16vw, 4.5rem); }
  .creators-closing .display { max-width: none; font-size: clamp(2.8rem, 12vw, 3.6rem); }
  .lp-intro-copy { grid-column: 1 / 13; }
  .lp-intro .display { grid-column: 1 / 13; }
  .detail-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-list { grid-template-columns: 1fr; row-gap: 2.5rem; }
  .process-num { margin-bottom: 1.25rem; }
  .brands-process-pearl,
  .creators-process-pearl { --pearl-y: -50%; right: -2.5rem; width: 8.5rem; opacity: .78; }
  .detail-row .text-link { grid-column: 1; }
  .about-founders-close span, .about-founders-close i { white-space: normal; }
  .about-founders-grid { grid-template-columns: 1fr; }
  .about-founder--luise .about-founder-copy, .about-founder--joana .about-founder-copy { grid-column: 1; }
  .about-founders-photos .portrait--luise { margin-bottom: 2rem; }
  .about-founders-photos .portrait--joana { margin-top: 2rem; }
  .about-hero .display { font-size: clamp(3.7rem, 17vw, 5.6rem); line-height: .82; }
  .about-hero::before { background-position: 45% center; }
}

@media (min-width: 1200px) {
  .home-hero::before { background-position: 40% 70%; }
}

@media (pointer: coarse) {
  .contact-direct a,
  .footer-col a,
  .footer-meta a { min-height: 44px; display: inline-flex; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .hero-grid { animation: none; }
  .home-hero::before,
  .brands-hero::before,
  .creators-hero::before,
  .about-hero::before,
  .hero-line > span,
  .hero-note,
  .hero-service-label,
  .page-hero-copy,
  .site-header > *,
  .statement-pearl,
  .method-pearl,
  .hero-pearl,
  .brands-process-pearl,
  .creators-process-pearl,
  .glow span { animation: none; }
  .js .reveal, .js .reveal-rule > * { opacity: 1; transform: none; transition: opacity .3s; }
  .js .reveal-wipe { clip-path: inset(-.4em -.5em -.3em -.5em); transform: none; }
  .js .reveal-rule::before { transform: none; }
  .audience-panel .display,
  .audience-arrow,
  .portrait img,
  .mosaic-card,
  .mosaic-card::before,
  .mosaic-more span,
  .text-link span,
  .nav-link::after,
  .main-nav,
  .main-nav .nav-list li { transition: none; }
}

@media (min-width: 1440px) {
  .page-hero { min-height: 90dvh; }
  .page-hero-grid { min-height: calc(90dvh - 14rem); }
}

@media (forced-colors: active) {
  body::after,
  .brand-statement::before,
  .method-intro::before,
  .paper-section::before,
  .wine-section::before,
  .orange-section::before,
  .contact-page::before { display: none; }
}
