:root {
  --bg: #0b0b0d;
  --bg-soft: #111114;
  --panel: #161619;
  --panel-2: #1c1c20;
  --text: #f7f7f4;
  --muted: #a8a8b1;
  --yellow: #ffe600;
  --pink: #ec168c;
  --blue: #06a9e0;
  --line: rgba(255,255,255,.11);
  --radius: 28px;
  --shadow: 0 30px 90px rgba(0,0,0,.35);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 90% 4%, rgba(255,230,0,.08), transparent 20%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--yellow); color: #101010; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  filter: blur(130px);
  border-radius: 50%;
  opacity: .08;
  pointer-events: none;
  z-index: -1;
}
.page-glow--pink { background: var(--pink); top: 45%; left: -220px; }
.page-glow--blue { background: var(--blue); top: 70%; right: -250px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8,8,10,.78);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand { width: 188px; flex: 0 0 auto; }
.brand img { width: 100%; height: 58px; object-fit: contain; object-position: left center; }

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.desktop-nav a {
  font-size: 14px;
  color: #d9d9dd;
  transition: .2s ease;
}
.desktop-nav a:hover { color: var(--yellow); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--yellow {
  color: #111;
  background: var(--yellow);
  box-shadow: 0 12px 30px rgba(255,230,0,.14);
}
.btn--yellow:hover { box-shadow: 0 16px 40px rgba(255,230,0,.24); }
.btn--ghost { border-color: var(--line); color: #fff; background: rgba(255,255,255,.025); }
.btn--ghost:hover { border-color: rgba(255,230,0,.5); background: rgba(255,230,0,.05); }
.btn--dark { background: #111; color: #fff; }
.btn--large { min-height: 58px; padding: 0 28px; border-radius: 16px; }

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: .25s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  padding: 10px 20px 24px;
  background: rgba(8,8,10,.97);
  border-top: 1px solid var(--line);
}
.mobile-nav a:not(.btn) {
  display: block;
  padding: 15px 2px;
  border-bottom: 1px solid var(--line);
  color: #ddd;
}
.mobile-nav .btn { width: 100%; margin-top: 18px; }

/* HERO */
.hero {
  position: relative;
  min-height: 870px;
  padding: 138px 0 50px;
  display: flex;
  align-items: center;
  overflow: clip;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 83%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 32px;
}
.hero-copy { padding: 40px 0 80px; }
.eyebrow, .section-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c9c9d0;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255,230,0,.9);
}
.hero h1 {
  margin: 26px 0 20px;
  max-width: 720px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(56px, 6.3vw, 92px);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 900;
}
.hero h1 .highlight {
  color: var(--yellow);
  display: block;
  position: relative;
}
.hero-text {
  max-width: 630px;
  margin: 0;
  color: #b9b9c0;
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 34px;
  color: #bcbcc4;
  font-size: 12px;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 18px; height: 18px; fill: none; stroke: var(--yellow); stroke-width: 1.8; }

.hero-visual {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-mascot {
  position: relative;
  z-index: 4;
  width: min(100%, 545px);
  max-height: 725px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 34px rgba(0,0,0,.42));
  animation: mascotFloat 5.5s ease-in-out infinite;
}
.mascot-halo {
  position: absolute;
  z-index: 1;
  width: 455px;
  height: 455px;
  bottom: 95px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,230,0,.23), rgba(255,230,0,.055) 45%, transparent 69%);
  border: 1px solid rgba(255,230,0,.16);
}
.mascot-halo::before, .mascot-halo::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
}
.mascot-halo::before { inset: -38px; }
.mascot-halo::after { inset: -82px; }

.shape { position: absolute; opacity: .85; filter: blur(.2px); }
.shape--pink {
  width: 120px; height: 210px; left: 4%; top: 19%;
  background: var(--pink); border-radius: 18px 52px 18px 52px;
  transform: rotate(-18deg); opacity: .13;
}
.shape--blue {
  width: 190px; height: 82px; right: -3%; top: 24%;
  background: var(--blue); border-radius: 50px 12px 50px 12px;
  transform: rotate(-20deg); opacity: .12;
}
.shape--yellow {
  width: 160px; height: 65px; right: 6%; bottom: 15%;
  background: var(--yellow); border-radius: 50px 12px 50px 12px;
  transform: rotate(-18deg); opacity: .13;
}

.hero-badge {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  background: rgba(18,18,21,.68);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.hero-badge--top { top: 100px; right: 0; }
.hero-badge--bottom { left: 8px; bottom: 76px; }
.badge-number { color: var(--yellow); font-family: "Montserrat"; font-size: 15px; font-weight: 900; letter-spacing: .08em; }
.badge-label { color: #c5c5ca; font-size: 11px; }
.badge-icon {
  display: grid; place-items: center;
  width: 35px; height: 35px; border-radius: 10px;
  background: var(--yellow); color: #111;
}
.hero-badge strong { display: block; font-size: 12px; }
.hero-badge small { display: block; color: #9c9ca4; margin-top: 3px; font-size: 10px; }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #74747d;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.scroll-line { display: block; width: 70px; height: 1px; background: linear-gradient(90deg, #5a5a62, transparent); }

@keyframes mascotFloat {
  0%,100% { transform: translateY(0) rotate(-.35deg); }
  50% { transform: translateY(-10px) rotate(.35deg); }
}

/* TICKER */
.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(0,0,0,.18);
  background: var(--yellow);
  color: #111;
}
.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 16px 0;
  animation: ticker 28s linear infinite;
}
.ticker span {
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ticker i { font-style: normal; font-size: 12px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* COMMON SECTION */
.section { padding: 118px 0; }
.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 62px;
}
.section-kicker { color: var(--yellow); }
.section-heading h2, .why-copy h2, .about-copy h2, .contact-copy h2 {
  margin: 13px 0 0;
  font-family: "Montserrat";
  font-size: clamp(42px, 5vw, 70px);
  line-height: .98;
  letter-spacing: -.05em;
}
.section-heading h2 span, .why-copy h2 span, .about-copy h2 span, .contact-copy h2 span { color: var(--yellow); }
.section-heading > p {
  margin: 0;
  max-width: 480px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

/* SERVICES */
.services-section { background: linear-gradient(180deg, #0b0b0d 0%, #0e0e11 100%); }
.service-group { margin-top: 62px; }
.service-group + .service-group { margin-top: 84px; }
.service-group-head {
  display: grid;
  grid-template-columns: 60px 260px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}
.group-index {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 13px;
  color: #111; background: var(--yellow);
  font-family: "Montserrat"; font-weight: 900; font-size: 12px;
}
.group-index--pink { background: var(--pink); color: #fff; }
.service-group-head h3 { margin: 0; font-family: "Montserrat"; font-size: 22px; }
.service-group-head p { margin: 0; color: var(--muted); font-size: 13px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-card {
  min-height: 228px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.025);
  transition: .25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,230,0,.45);
  background: rgba(255,230,0,.035);
  box-shadow: 0 18px 45px rgba(0,0,0,.2);
}
.service-card svg {
  width: 31px; height: 31px;
  fill: none; stroke: var(--yellow); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.service-card h4 { margin: 24px 0 9px; font-family: "Montserrat"; font-size: 17px; }
.service-card p { margin: 0; color: #909099; font-size: 13px; line-height: 1.65; }

.paperline {
  margin-top: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 26px;
  border: 1px solid rgba(255,230,0,.23);
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(255,230,0,.09), rgba(255,255,255,.02));
}
.paperline-title { display: flex; align-items: center; gap: 16px; }
.paperline-title > span { color: var(--yellow); font-family: "Montserrat"; font-weight: 900; }
.paperline-title strong { display: block; font-family: "Montserrat"; }
.paperline-title small { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; }
.paperline-items { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.paperline-items span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: 12px;
  background: #141417; border: 1px solid var(--line); font-size: 12px;
}
.paperline-items svg { width: 18px; height: 18px; fill: none; stroke: var(--yellow); stroke-width: 1.6; }

/* CTA */
.cta-section { padding: 28px 0 118px; }
.cta-box {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 36px;
  background:
    linear-gradient(120deg, var(--yellow) 0 66%, #f2d900 66% 100%);
  color: #111;
  box-shadow: var(--shadow);
}
.cta-box::after {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  right: 10%; top: 7%;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(0,0,0,.035), 0 0 0 92px rgba(0,0,0,.025);
}
.cta-copy { position: relative; z-index: 3; width: 60%; padding: 62px; }
.section-kicker--dark { color: rgba(0,0,0,.62); }
.cta-copy h2 {
  margin: 14px 0 18px;
  font-family: "Montserrat";
  font-size: clamp(44px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -.05em;
}
.cta-copy h2 strong { font-weight: 900; }
.cta-copy p { max-width: 550px; font-size: 16px; line-height: 1.7; color: rgba(0,0,0,.67); }
.cta-copy .btn { margin-top: 16px; }
.cta-mascot {
  position: absolute;
  z-index: 2;
  right: 6%;
  bottom: -250px;
  width: 390px;
  filter: drop-shadow(0 30px 35px rgba(0,0,0,.24));
}
.cta-crown {
  position: absolute;
  right: 30px;
  top: -10px;
  font-size: 140px;
  opacity: .07;
  transform: rotate(14deg);
}

/* PORTFOLIO */
.work-section { background: #0e0e11; }

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-template-rows: 275px 275px;
  gap: 14px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  border: 1px solid var(--line);
  min-height: 0;
}

.portfolio-service-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.portfolio-service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(to top, rgba(0,0,0,.34), transparent);
  z-index: 1;
  pointer-events: none;
}

.portfolio-service-card .portfolio-number,
.portfolio-service-card .portfolio-arrow,
.portfolio-service-card .portfolio-card-copy {
  position: relative;
  z-index: 3;
}

.portfolio-number {
  font-family: "Montserrat";
  font-weight: 900;
  font-size: 12px;
  opacity: .72;
}

.portfolio-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  font-size: 22px;
  opacity: .65;
}

.portfolio-card-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
}

.portfolio-card-copy small {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  opacity: .86;
}

.portfolio-card-copy h3 {
  margin: 0;
  max-width: 260px;
  font-family: "Montserrat";
  font-size: 22px;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.portfolio-card-copy p {
  margin: 10px 0 0;
  max-width: 325px;
  font-size: 12px;
  line-height: 1.55;
  opacity: .78;
}

/* Card principal: impressos, tags e adesivos */
.portfolio-service-card--core {
  grid-row: 1 / 3;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.12), transparent 22%),
    linear-gradient(145deg, #171719 0%, #111114 100%);
  color: #fff;
}

.portfolio-service-card--core::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,230,0,.08), transparent 30%),
    linear-gradient(315deg, rgba(236,22,140,.06), transparent 35%);
  pointer-events: none;
}

.portfolio-service-card--core .portfolio-card-copy {
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.portfolio-service-card--core .portfolio-card-copy small {
  color: var(--yellow);
}

.portfolio-service-card--core .portfolio-card-copy h3 {
  max-width: 360px;
  font-size: 34px;
}

.portfolio-service-card--core .portfolio-card-copy p {
  max-width: 390px;
  color: #c2c2c8;
}

.portfolio-service-card--pink { background: var(--pink); color: #fff; }
.portfolio-service-card--blue { background: var(--blue); color: #05141a; }
.portfolio-service-card--dark {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  background: linear-gradient(135deg, #111216, #191a20);
  color: #fff;
}
.portfolio-service-card--topo {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.portfolio-service-card--wide {
  grid-column: auto;
  background: linear-gradient(135deg, #141419, #101014);
  color: #fff;
}

.portfolio-service-card--wide .portfolio-card-copy h3 {
  max-width: 310px;
}

.portfolio-service-card--topo {
  background:
    radial-gradient(circle at 18% 25%, rgba(255,255,255,.22), transparent 18%),
    linear-gradient(135deg, #ffe600 0%, #f3dc00 100%);
  color: #111;
}

.portfolio-service-card--topo::before {
  background: linear-gradient(to top, rgba(0,0,0,.08), transparent 55%);
}

.portfolio-service-card--topo::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -18px;
  width: 180px;
  height: 180px;
  border-radius: 28px;
  background: rgba(17,17,17,.08);
  transform: rotate(18deg);
  z-index: 1;
  pointer-events: none;
}

.portfolio-service-card--topo .portfolio-card-copy {
  left: 22px;
  right: 22px;
  bottom: 18px;
}

.portfolio-service-card--topo .portfolio-card-copy small {
  color: rgba(17,17,17,.72);
}

.portfolio-service-card--topo .portfolio-card-copy h3 {
  max-width: 230px;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.045em;
}

.portfolio-service-card--topo .portfolio-card-copy p {
  display: none;
}

.portfolio-mascot-image {
  position: absolute;
  z-index: 2;
  right: -8px;
  bottom: -8px;
  width: 66%;
  height: 88%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.20));
  transition: transform .28s ease;
}

.portfolio-mascot-image--core {
  width: 92%;
  height: 78%;
  right: -8%;
  bottom: 95px;
}

.portfolio-service-card--pink .portfolio-mascot-image { width: 64%; }
.portfolio-service-card--blue .portfolio-mascot-image { width: 64%; }

.portfolio-mascot-image--wind {
  right: -26px;
  width: 91%;
  height: 92%;
}

.portfolio-service-card--wide .portfolio-mascot-image--wide {
  right: -6px;
  width: 53%;
  height: 98%;
}

.portfolio-service-card--topo .portfolio-mascot-image--wide {
  right: -8px;
  width: 66%;
  height: 88%;
  bottom: -8px;
}

.portfolio-service-card:hover .portfolio-mascot-image {
  transform: translateY(-6px) scale(1.02);
}

.portfolio-note {
  margin: 22px 0 0;
  color: #777781;
  font-size: 12px;
  text-align: right;
}

/* WHY */
.why-section { padding-top: 130px; }
.why-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.why-copy { position: sticky; top: 130px; }
.why-copy p { max-width: 470px; color: var(--muted); line-height: 1.8; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-card {
  min-height: 265px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
}
.why-card span {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px;
  color: #111; background: var(--yellow);
  font-family: "Montserrat"; font-size: 11px; font-weight: 900;
}
.why-card:nth-child(2) span { background: var(--pink); color: #fff; }
.why-card:nth-child(3) span { background: var(--blue); color: #061117; }
.why-card h3 { margin: 52px 0 10px; font-family: "Montserrat"; font-size: 20px; }
.why-card p { margin: 0; color: #8f8f98; font-size: 13px; line-height: 1.7; }

/* ABOUT */
.about-section { background: #0e0e11; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-art {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}
.about-logo-card {
  position: relative;
  z-index: 2;
  width: 82%;
  height: 340px;
  padding: 42px;
  display: grid;
  place-items: center;
  background: #151518;
  border: 1px solid var(--line);
  border-radius: 32px;
  transform: rotate(-4deg);
  box-shadow: var(--shadow);
}
.about-logo-card img { width: 100%; object-fit: contain; }
.about-accent { position: absolute; border-radius: 28px; }
.about-accent--one { width: 57%; height: 65%; background: var(--yellow); right: 1%; top: 10%; transform: rotate(8deg); opacity: .95; }
.about-accent--two { width: 35%; height: 28%; background: var(--pink); left: 2%; bottom: 3%; transform: rotate(12deg); opacity: .8; }
.about-stamp {
  position: absolute;
  z-index: 3;
  right: -4px;
  bottom: 18px;
  width: 92px; height: 92px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--blue); color: #071116;
  font-family: "Montserrat"; font-size: 11px; font-weight: 900; text-align: center;
  line-height: 1.15;
  transform: rotate(9deg);
}
.about-copy p { color: var(--muted); line-height: 1.9; max-width: 560px; }
.text-link {
  display: inline-flex; gap: 12px; align-items: center;
  margin-top: 16px;
  color: var(--yellow); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em;
}

/* CONTACT */
.contact-section { padding: 115px 0 0; }
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #131316;
}
.contact-copy { padding: 58px; border-right: 1px solid var(--line); }
.contact-copy p { color: var(--muted); }
.contact-copy .btn { margin-top: 18px; }
.contact-list { padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.contact-item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 19px 16px;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-child { border-bottom: 0; }
.contact-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--yellow); color: #111;
}
.contact-icon--pink { background: var(--pink); color: #fff; }
.contact-icon--blue { background: var(--blue); color: #071116; }
.contact-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-item small { display: block; color: #797982; margin-bottom: 5px; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.contact-item strong { font-size: 14px; line-height: 1.55; }
.contact-item b { color: #707079; font-size: 19px; }

/* FOOTER */
.footer { padding: 90px 0 28px; }
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr;
  gap: 60px;
  padding-bottom: 55px;
}
.footer-brand img { width: 220px; height: 86px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 360px; margin: 8px 0 0; color: #777781; font-size: 13px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 11px; font-size: 13px; }
.footer-links span { color: #6d6d75; font-size: 10px; text-transform: uppercase; letter-spacing: .13em; margin-bottom: 7px; }
.footer-links a { color: #b8b8be; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #5f5f67;
  font-size: 11px;
}
.footer-bottom a:hover { color: var(--yellow); }

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  min-width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #07150b;
  box-shadow: 0 16px 40px rgba(37,211,102,.25);
  font-weight: 900;
  font-size: 12px;
  transition: .25s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.015); }
.whatsapp-float svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.whatsapp-float span { white-space: nowrap; }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal--delay { transition-delay: .12s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav.open { display: block; }

  .hero { min-height: auto; padding-bottom: 0; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(52px, 7vw, 72px); }
  .hero-visual { min-height: 580px; }
  .hero-badge--top { top: 80px; right: -5px; }
  .hero-badge--bottom { left: -10px; }
  .hero-scroll { display: none; }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 250px 250px;
  }
  .portfolio-service-card--core {
    grid-column: 1 / 3;
    grid-row: auto;
  }
  .portfolio-service-card--wide {
    grid-column: auto;
  }
  .portfolio-service-card--dark {
    grid-column: 1 / 2;
    grid-row: auto;
  }
  .portfolio-service-card--topo {
    grid-column: 2 / 3;
    grid-row: auto;
  }
  .portfolio-service-card--topo .portfolio-card-copy h3 {
    font-size: 24px;
    max-width: 220px;
  }
  .portfolio-service-card--topo .portfolio-mascot-image--wide {
    width: 66%;
    right: -8px;
  }
  .portfolio-mascot-image--core {
    width: 62%;
    height: 94%;
    bottom: -8px;
    right: -2%;
  }
  .portfolio-service-card--core .portfolio-card-copy {
    max-width: 46%;
  }
  .portfolio-mascot-image--wind {
    width: 78%;
    right: -12px;
  }

  .why-layout { grid-template-columns: 1fr; }
  .why-copy { position: static; }
  .about-grid { gap: 45px; }
  .cta-mascot { right: 0; }
}

@media (max-width: 780px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { height: 76px; }
  .brand { width: 158px; }
  .brand img { height: 50px; }

  .hero { padding-top: 110px; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-copy { padding: 25px 0 10px; }
  .hero h1 { font-size: clamp(48px, 15vw, 70px); max-width: 650px; }
  .hero-text { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 600px; margin-top: -10px; }
  .hero-mascot { width: 500px; max-width: 96%; }
  .mascot-halo { width: 390px; height: 390px; bottom: 75px; }
  .hero-badge--top { top: 90px; right: 0; }
  .hero-badge--bottom { left: 0; bottom: 50px; }

  .section { padding: 90px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 46px; }
  .section-heading h2, .why-copy h2, .about-copy h2, .contact-copy h2 { font-size: clamp(40px, 12vw, 58px); }

  .service-group-head { grid-template-columns: 52px 1fr; }
  .service-group-head p { grid-column: 2; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }

  .paperline { align-items: flex-start; flex-direction: column; }
  .paperline-items { justify-content: flex-start; }

  .cta-box { min-height: 650px; align-items: flex-start; }
  .cta-copy { width: 100%; padding: 44px 28px; }
  .cta-copy h2 { font-size: clamp(42px, 12vw, 60px); }
  .cta-mascot { width: 300px; right: 50%; transform: translateX(50%); bottom: -220px; }
  .cta-box::after { right: 50%; transform: translateX(50%); top: auto; bottom: -30px; }

  .portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .portfolio-card {
    min-height: 300px;
  }
  .portfolio-service-card--core,
  .portfolio-service-card--wide,
  .portfolio-service-card--dark,
  .portfolio-service-card--topo {
    grid-column: auto;
    grid-row: auto;
  }
  .portfolio-service-card--core {
    min-height: 430px;
  }
  .portfolio-service-card--core .portfolio-card-copy {
    max-width: none;
    left: 22px;
    right: 22px;
    bottom: 22px;
  }
  .portfolio-service-card--core .portfolio-card-copy h3 {
    font-size: 30px;
    max-width: 320px;
  }
  .portfolio-service-card--core .portfolio-card-copy p {
    max-width: 330px;
  }
  .portfolio-service-card--topo {
    min-height: 330px;
  }
  .portfolio-service-card--topo .portfolio-card-copy {
    left: 24px;
    right: 24px;
    bottom: 18px;
  }
  .portfolio-service-card--topo .portfolio-card-copy h3 {
    font-size: 34px;
    max-width: 250px;
  }
  .portfolio-service-card--topo .portfolio-card-copy p {
    max-width: 240px;
    font-size: 12px;
  }
  .portfolio-mascot-image--core {
    width: 86%;
    height: 72%;
    right: -8%;
    bottom: 110px;
  }
  .portfolio-mascot-image {
    width: 70%;
    height: 85%;
  }
  .portfolio-mascot-image--wind {
    width: 88%;
    height: 90%;
    right: -16px;
  }
  .portfolio-service-card--topo .portfolio-mascot-image--wide {
    width: 44%;
    height: 85%;
    right: -8px;
    bottom: 0;
  }
  .portfolio-note {
    text-align: left;
    line-height: 1.6;
  }

  .why-cards { grid-template-columns: 1fr; }
  .why-card { min-height: 230px; }
  .why-card h3 { margin-top: 38px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-art { min-height: 390px; }
  .about-logo-card { height: 265px; }
  .about-copy { order: -1; }

  .contact-panel { grid-template-columns: 1fr; }
  .contact-copy { padding: 38px 28px; border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-list { padding: 10px; }
  .contact-item { padding: 17px 12px; }
  .contact-item strong { font-size: 12px; }

  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0; }

  .whatsapp-float { width: 58px; padding: 0; }
  .whatsapp-float span { display: none; }
}

@media (max-width: 480px) {
  .hero-trust { grid-template-columns: 1fr; }
  .hero-visual { min-height: 540px; }
  .mascot-halo { width: 300px; height: 300px; }
  .hero-badge--top { transform: scale(.88); transform-origin: top right; }
  .hero-badge--bottom { transform: scale(.88); transform-origin: bottom left; }
  .ticker-track { padding: 14px 0; gap: 20px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

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