:root {
  --orange: #ff4b18;
  --yellow: #b9ff36;
  --blue: #312cff;
  --cream: #e9e6dc;
  --ink: #11110f;
  --dark: #0c0c0b;
  --white: #f3f0e8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  cursor: none;
  overflow-x: hidden;
}
a, button { color: inherit; cursor: none; }
a { text-decoration: none; }
button { font: inherit; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.cursor, .cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
  transform: translate(-50%, -50%);
}
.cursor { width: 38px; height: 38px; border: 1px solid var(--cream); mix-blend-mode: difference; }
.cursor-dot { width: 5px; height: 5px; background: var(--cream); mix-blend-mode: difference; }

.nav {
  position: fixed;
  z-index: 30;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 38px;
  color: var(--white);
  mix-blend-mode: difference;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -.02em; }
.brand-mark { font-family: "Italiana"; font-size: 22px; display: inline-block; color: var(--yellow); }
.nav nav { display: flex; gap: 36px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.nav nav a { position: relative; }
.nav nav a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px; background: currentColor; transition: width .35s; }
.nav nav a:hover::after { width: 100%; }
.menu-button { border: 0; background: none; width: 34px; display: none; gap: 6px; flex-direction: column; }
.menu-button span { display: block; height: 1px; width: 100%; background: currentColor; }

.hero {
  height: 100svh;
  min-height: 680px;
  position: relative;
  color: var(--white);
  overflow: hidden;
  background: var(--orange);
}
.hero-media, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { overflow: hidden; background: var(--orange); }
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image: linear-gradient(rgba(17,17,15,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(17,17,15,.5) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: perspective(600px) rotateX(58deg) scale(1.5) translateY(18%);
  transform-origin: bottom;
}
.hero-shade { background: radial-gradient(circle at 75% 40%, transparent 0 18%, rgba(12,12,11,.1) 50%), linear-gradient(90deg, rgba(12,12,11,.18), transparent 55%); }
.hero-shape { position: absolute; border: 2px solid var(--ink); }
.shape-one { width: 42vw; height: 42vw; right: -10vw; top: -12vw; border-radius: 50%; background: var(--blue); box-shadow: inset 0 0 0 18px var(--orange), inset 0 0 0 20px var(--ink); }
.shape-two { width: 17vw; height: 17vw; right: 25vw; bottom: -5vw; background: var(--yellow); transform: rotate(35deg); }
.hero-stamp { position: absolute; right: 3vw; bottom: 4vh; color: var(--ink); font-weight: 600; font-size: clamp(15px, 2vw, 31px); line-height: .82; letter-spacing: -.06em; transform: rotate(-90deg); transform-origin: right bottom; }
.hero-portrait {
  position: absolute;
  right: 8vw;
  top: 9vh;
  z-index: 3;
  width: clamp(250px, 30vw, 470px);
  aspect-ratio: 4/5;
  padding: 10px;
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 22px 22px 0 var(--yellow);
  transform: rotate(3deg);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; image-rendering: auto; filter: saturate(.75) contrast(1.18); }
.portrait-caption { position: absolute; left: 20px; bottom: 18px; padding: 7px 10px; background: var(--yellow); color: var(--ink); font-size: 8px; font-weight: 600; line-height: 1.25; letter-spacing: .14em; }
.hero-copy { position: relative; z-index: 4; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 120px 6vw 52px; pointer-events: none; }
.eyebrow { font-size: 11px; letter-spacing: .2em; margin: 0 0 24px 5px; }
h1 { font-family: "Italiana", serif; font-weight: 400; font-size: clamp(68px, 12vw, 190px); line-height: .72; letter-spacing: -.065em; margin: 0; color: var(--ink); }
.title-line { display: block; overflow: hidden; padding-bottom: .08em; }
.title-line > span { display: block; transform: translateY(115%); }
.title-line.italic { font-style: italic; margin-left: 8vw; color: var(--white); -webkit-text-stroke: 1px var(--ink); }
.hero-bottom { display: flex; align-items: end; gap: 9vw; margin-top: auto; }
.intro { margin: 0; padding: 10px 14px; background: var(--ink); color: var(--white); font-size: clamp(12px, 1vw, 15px); line-height: 1.5; }
.round-link { pointer-events: auto; width: 104px; height: 104px; border-radius: 50%; border: 2px solid var(--ink); background: var(--yellow); color: var(--ink); display: flex; align-items: center; justify-content: center; position: relative; font-size: 10px; line-height: 1.3; letter-spacing: .12em; }
.round-link svg { width: 18px; position: absolute; right: 18px; bottom: 18px; fill: none; stroke: currentColor; stroke-width: 1.2; }
.hero-index { position: absolute; right: 40px; bottom: 52px; z-index: 3; display: flex; align-items: center; gap: 10px; font-size: 10px; }
.hero-index .line { width: 60px; height: 1px; background: rgba(255,255,255,.6); }

.manifesto {
  min-height: 100vh;
  padding: 130px 6vw;
  display: grid;
  grid-template-columns: 1fr 3.1fr;
  gap: 7vw;
  align-items: start;
}
.section-label { display: flex; gap: 22px; font-size: 10px; letter-spacing: .15em; padding-top: 14px; }
.section-label p { margin: 0; }
.manifesto-copy { max-width: 1080px; }
.large-copy { font-family: "Italiana", serif; font-size: clamp(44px, 6vw, 92px); line-height: .98; letter-spacing: -.035em; margin: 0; }
.large-copy em { color: var(--blue); }
.sun-word { position: relative; white-space: nowrap; }
.sun-word::after { content: "↗"; color: var(--orange); font-family: "DM Sans"; font-style: normal; font-size: .55em; position: absolute; right: -.55em; top: -.3em; }
@keyframes spin { to { transform: rotate(360deg); } }
.manifesto-note { margin: 75px 0 0 auto; width: min(410px, 100%); display: flex; gap: 28px; font-size: 14px; line-height: 1.6; }
.mini-sun { color: var(--orange); font-family: "Italiana"; font-size: 34px; }
.manifesto-note p { margin: 0; }

.projects { background: var(--dark); color: var(--cream); padding: 120px 6vw; }
.projects-head { display: grid; grid-template-columns: 1fr 3.1fr; gap: 7vw; padding-bottom: 110px; }
.section-label.light { color: #af9e8e; }
.projects h2 { font-family: "Italiana", serif; font-size: clamp(70px, 10vw, 160px); font-weight: 400; line-height: .78; letter-spacing: -.05em; margin: 0; }
.projects h2 em { color: var(--yellow); font-weight: 400; margin-left: 7vw; }
.project-list { border-top: 1px solid rgba(255,255,255,.2); }
.project-card {
  position: relative;
  display: grid;
  grid-template-columns: .5fr 2fr 1.3fr;
  gap: 30px;
  align-items: center;
  min-height: 610px;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.project-number { align-self: start; font-size: 11px; color: #aa9988; }
.project-visual { height: 490px; overflow: hidden; display: grid; place-items: center; position: relative; }
.visual-one { background: #20bd95; }
.poster { width: 58%; aspect-ratio: 3/4; background: #f6d933; color: #26150c; padding: 28px; box-shadow: 20px 25px 50px rgba(0,0,0,.25); transform: rotate(-6deg); display: flex; flex-direction: column; }
.poster > span { font-family: "Italiana"; font-size: 70px; line-height: .8; }
.poster-flower { font-size: 150px; line-height: 1; margin: auto; }
.poster small { font-size: 8px; letter-spacing: .16em; }
.visual-two { background: #322aff; }
.vinyl { width: 340px; height: 340px; border-radius: 50%; background: repeating-radial-gradient(circle, #17120e 0 4px, #25201a 5px 8px); display: grid; place-items: center; box-shadow: 0 25px 45px rgba(0,0,0,.3); }
.vinyl-label { width: 115px; height: 115px; border-radius: 50%; background: var(--yellow); color: var(--ink); display: grid; place-items: center; text-align: center; font-family: "Italiana"; font-size: 27px; line-height: .8; }
.vinyl-label small { font-family: "DM Sans"; font-size: 7px; letter-spacing: .15em; }
.sound-wave { position: absolute; width: 80%; height: 40%; border: 1px solid var(--orange); border-radius: 50%; transform: rotate(-20deg); }
.visual-three { background: #e8441c; }
.project-visual > img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.project-card:hover .project-visual > img { transform: scale(1.035); }
.phone { height: 82%; aspect-ratio: .52; border: 8px solid #21150f; border-radius: 34px; background: #f4c52c; box-shadow: 18px 26px 40px rgba(0,0,0,.3); color: #21150f; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.phone-logo { font-family: "Italiana"; font-size: 58px; z-index: 2; }
.phone-orbit { width: 200px; height: 200px; border: 1px solid; border-radius: 50%; position: absolute; }
.phone-orbit::before, .phone-orbit::after { content: ""; position: absolute; inset: 28px; border: 1px solid; border-radius: 50%; }
.phone-orbit::after { inset: 58px; }
.phone small { position: absolute; bottom: 40px; letter-spacing: .15em; font-size: 6px; }
.project-info p { color: #aa9988; font-size: 9px; letter-spacing: .16em; }
.project-info h3 { font-family: "Italiana"; font-size: clamp(38px, 4vw, 68px); font-weight: 400; margin: 25px 0; line-height: .9; }
.project-info > span { display: block; max-width: 310px; color: #aa9988; font-size: 13px; line-height: 1.5; }
.project-link { display: inline-block; margin-top: 30px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 9px; letter-spacing: .15em; }

.quote { min-height: 85vh; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; text-align: center; padding: 100px 5vw; }
.quote blockquote { font-family: "Italiana"; font-size: clamp(55px, 8vw, 130px); line-height: .93; letter-spacing: -.05em; margin: 0; z-index: 2; }
.orbit-text { position: absolute; width: min(44vw, 600px); aspect-ratio: 1; display: grid; place-items: center; }
.orbit-text svg { position: absolute; width: 100%; height: 100%; overflow: visible; }
.orbit-text text { font-family: "DM Sans"; font-size: 8px; letter-spacing: 3px; }
.orbit-text > span { color: var(--yellow); font-family: "Italiana"; font-size: 65px; }

.contact { background: var(--yellow); color: var(--ink); min-height: 100vh; padding: 70px 5vw 35px; display: flex; flex-direction: column; }
.contact-top { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(32,23,15,.4); padding-bottom: 18px; font-size: 10px; letter-spacing: .15em; }
.contact-link { margin: auto 0; font-family: "Italiana"; font-size: clamp(68px, 13vw, 210px); line-height: .72; letter-spacing: -.06em; position: relative; display: flex; flex-direction: column; width: fit-content; }
.contact-italic { font-style: italic; color: var(--blue); margin-left: 12vw; white-space: nowrap; }
.contact-link svg { position: absolute; width: clamp(45px, 6vw, 90px); right: -11vw; bottom: 10px; fill: none; stroke: var(--ink); stroke-width: 1.5; }
footer { display: flex; gap: 35px; align-items: end; padding-top: 25px; border-top: 1px solid rgba(32,23,15,.4); font-size: 9px; letter-spacing: .1em; }
footer p { margin: 0 0 0 auto; }
.back-top { background: none; border: none; padding: 0; font-size: inherit; letter-spacing: inherit; }

@media (max-width: 900px) {
  .nav { padding: 22px; }
  .nav nav { display: none; }
  .nav nav.open {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: -1;
    background: var(--orange);
    color: var(--ink);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-family: "Italiana";
    font-size: 13vw;
    mix-blend-mode: normal;
  }
  .menu-button { display: flex; }
  .hero-copy { padding: 120px 22px 35px; }
  .hero-portrait { width: 230px; right: 7vw; top: 14vh; }
  .title-line.italic { margin-left: 0; }
  .hero-bottom { justify-content: space-between; gap: 20px; }
  .hero-index { display: none; }
  .manifesto, .projects-head { grid-template-columns: 1fr; gap: 55px; padding-left: 22px; padding-right: 22px; }
  .manifesto { padding-top: 90px; padding-bottom: 90px; }
  .project-card { grid-template-columns: 30px 1fr; min-height: auto; }
  .project-visual { height: 430px; }
  .project-info { grid-column: 2; }
  .poster { width: 70%; }
  .contact { padding-left: 22px; padding-right: 22px; }
  .contact-top span:last-child { display: none; }
  .contact-link svg { right: 0; bottom: -70px; }
  footer { flex-wrap: wrap; }
  footer p { width: 100%; margin: 10px 0 0; order: 3; }
}

@media (max-width: 520px) {
  body { cursor: auto; }
  a, button { cursor: pointer; }
  .cursor, .cursor-dot { display: none; }
  .hero { min-height: 620px; }
  .hero-portrait { width: 145px; right: 20px; top: 92px; padding: 5px; box-shadow: 10px 10px 0 var(--yellow); }
  .portrait-caption { font-size: 5px; left: 8px; bottom: 8px; padding: 5px; }
  .shape-one { width: 95vw; height: 95vw; right: -48vw; top: -12vw; }
  .shape-two { width: 35vw; height: 35vw; right: 28vw; bottom: 2vh; }
  h1 { font-size: 15.2vw; line-height: .84; letter-spacing: -.065em; }
  .hero-shade { background: linear-gradient(0deg, rgba(12,12,11,.28), transparent 52%); }
  .hero-copy { padding-bottom: 24px; }
  .intro { max-width: 230px; }
  .round-link { width: 82px; height: 82px; }
  .large-copy { font-size: 12.2vw; }
  .projects { padding: 90px 22px; }
  .projects-head { padding: 0 0 70px; }
  .project-card { display: block; padding: 30px 0 55px; }
  .project-number { margin-bottom: 18px; }
  .project-visual { height: 360px; }
  .project-info { padding-top: 18px; }
  .vinyl { width: 260px; height: 260px; }
  .quote { min-height: 70vh; }
  .orbit-text { width: 90vw; }
  .contact-link { font-size: 19vw; }
  .contact-italic { margin-left: 2vw; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .title-line > span { transform: none; }
}

/* Restauro da direção editorial quente */
:root {
  --orange: #f15a16;
  --yellow: #f7c928;
  --cream: #f4eddf;
  --ink: #20170f;
  --dark: #18130e;
  --white: #fffaf0;
}

.brand-mark { font-family: inherit; color: inherit; }
.hero { background: var(--dark); }
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}
.hero-media .emidio-background {
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: 68% 38%;
  filter: saturate(.9) contrast(1.08);
  mix-blend-mode: normal;
  -webkit-mask-image: none;
  mask-image: none;
}
.hero-grid, .hero-shape, .hero-stamp { display: none; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(5,5,4,.88) 0%, rgba(5,5,4,.58) 43%, rgba(5,5,4,.08) 78%),
    linear-gradient(0deg, rgba(5,5,4,.62), transparent 48%);
}
.hero-portrait {
  right: 6vw;
  top: 17vh;
  width: clamp(175px, 20vw, 320px);
  aspect-ratio: 1;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  background: rgba(24,19,14,.26);
  box-shadow: 0 30px 80px rgba(33,8,0,.55);
  transform: none;
  backdrop-filter: blur(4px);
}
.hero-portrait img {
  border-radius: 50%;
  filter: none;
}
.portrait-orbit {
  display: block;
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  color: var(--white);
  font-size: 8px;
  letter-spacing: .2em;
  animation: spin 14s linear infinite;
}
.portrait-caption { display: none; }
.hero-copy { pointer-events: auto; }
h1 {
  color: var(--white);
  font-size: clamp(68px, 10.3vw, 166px);
  line-height: .76;
  letter-spacing: -.055em;
}
.title-line.italic {
  margin-left: 8vw;
  color: var(--yellow);
  -webkit-text-stroke: 0;
}
.intro {
  padding: 0;
  background: transparent;
  color: var(--white);
  font-size: clamp(13px, 1.15vw, 17px);
}
.round-link {
  border: 1px solid rgba(255,255,255,.7);
  background: transparent;
  color: var(--white);
}
.large-copy em { color: var(--orange); }
.sun-word::after {
  content: "✺";
  color: var(--orange);
  font-family: inherit;
  font-size: .7em;
  right: -.6em;
  top: -.3em;
  animation: spin 12s linear infinite;
}
.mini-sun { font-family: inherit; }
.projects h2 em { color: var(--orange); }
.quote {
  background: var(--yellow);
  color: var(--ink);
}
.orbit-text > span {
  color: var(--orange);
  font-family: inherit;
}
.contact { background: var(--orange); }
.contact-italic { color: var(--yellow); }

@media (max-width: 900px) {
  .hero-media .emidio-background { width: 100%; object-position: 62% 35%; }
  .title-line.italic { margin-left: 0; }
}

@media (max-width: 520px) {
  .hero-media .emidio-background {
    width: 100%;
    height: 100%;
    top: 0;
    object-position: center top;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5,5,4,.66), rgba(5,5,4,.12)),
      linear-gradient(0deg, rgba(5,5,4,.9), transparent 58%);
  }
}
