:root {
  --black: #070707;
  --ink: #21171b;
  --paper: #f7f3ec;
  --white: #ffffff;
  --soft: #ede6da;
  --muted: #6f6763;
  --orange: #f58200;
  --red: #ef4b2a;
  --blue: #0f77d8;
  --cyan: #09a7e7;
  --green: #45a84a;
  --yellow: #f5d21f;
  --purple: #b8228c;
  --line: rgba(33, 23, 27, 0.15);
  --light-line: rgba(255, 255, 255, 0.16);
  --max: 1520px;
  --gutter: clamp(24px, 5vw, 92px);
  --radius: 8px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 0.98;
  letter-spacing: 0;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.pub-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(7, 7, 7, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.pub-nav,
.hero-layout,
.proof-strip,
.section,
.footer-layout,
.footer-bottom,
.single-article,
.legal-page,
.contact-strip {
  width: min(var(--max), calc(100% - var(--gutter)));
  margin: 0 auto;
}

.pub-nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: min(230px, 31vw);
  max-height: 60px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  padding: 8px 11px;
  color: var(--black);
  background: var(--orange);
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.nav-links a {
  position: relative;
  font-size: 0.94rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  transition: transform 220ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.return-link {
  padding: 10px 12px;
  color: var(--white);
  border: 1px solid var(--light-line);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--light-line);
  background: transparent;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--white);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.pub-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 130, 0, 0.14), transparent 24%),
    linear-gradient(120deg, #070707 0 64%, #101315 64% 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.16));
  pointer-events: none;
}

.pub-hero::after {
  content: "";
  position: absolute;
  right: -16vw;
  top: 0;
  width: 30vw;
  height: 100%;
  transform: skewX(-19deg);
  background: linear-gradient(180deg, rgba(239, 75, 42, 0.28), rgba(245, 130, 0, 0.08));
  opacity: 0.7;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 84px);
  padding: clamp(54px, 8vw, 118px) 0 clamp(34px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--orange);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 1000;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 54px;
  height: 3px;
  background: currentColor;
}

.hero-copy h1 {
  max-width: 820px;
  margin-top: 30px;
  font-size: clamp(3.2rem, 5.8vw, 7.2rem);
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-lead {
  max-width: 680px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
}

.hero-tags {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tags span {
  padding: 11px 13px;
  border: 1px solid var(--light-line);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 1000;
  text-transform: uppercase;
}

.actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 1000;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--black);
  background: var(--orange);
}

.button-dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--light-line);
}

.hero-visual {
  position: relative;
  align-self: center;
  min-height: clamp(430px, 48vw, 660px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0f1112;
  box-shadow: var(--shadow);
  transform: translateY(-22px);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.04), rgba(7, 7, 7, 0.38)),
    linear-gradient(90deg, rgba(7, 7, 7, 0.2), transparent 48%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.visual-tags {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.visual-tags span {
  padding: 9px 11px;
  color: var(--black);
  background: var(--orange);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.hero-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 18px;
  color: var(--white);
  background: rgba(7, 7, 7, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero-visual figcaption strong,
.hero-visual figcaption span {
  display: block;
}

.hero-visual figcaption strong {
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.05;
}

.hero-visual figcaption span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
}

.poster-stage {
  position: relative;
  min-height: 610px;
  align-self: start;
  transform: translateY(-44px);
}

.poster-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.poster-main {
  left: 0;
  top: 0;
  width: min(520px, 100%);
  min-height: 570px;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(146deg, transparent 0 73%, rgba(245, 130, 0, 0.94) 73% 100%),
    linear-gradient(18deg, rgba(15, 119, 216, 0.14), transparent 38%),
    var(--paper);
  color: var(--black);
  overflow: hidden;
}

.poster-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.18) 1px, transparent 1px);
  background-size: 6px 6px;
  opacity: 0.42;
  pointer-events: none;
}

.poster-main > * {
  position: relative;
  z-index: 2;
}

.poster-logo img {
  width: 260px;
  max-height: 96px;
  object-fit: contain;
  object-position: left center;
}

.poster-kicker {
  margin-top: 40px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 1000;
  text-transform: uppercase;
  line-height: 0.95;
}

.poster-main strong {
  display: block;
  margin-top: 6px;
  color: var(--red);
  font-size: clamp(3.4rem, 6.8vw, 5.9rem);
  font-weight: 1000;
  text-transform: uppercase;
  line-height: 0.82;
}

.poster-main > span {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.2rem, 2.4vw, 2.1rem);
  font-weight: 1000;
  text-transform: uppercase;
}

.poster-services {
  margin-top: 34px;
  display: grid;
  gap: 11px;
}

.poster-services b {
  display: block;
  padding: 11px 14px;
  color: var(--white);
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  text-transform: uppercase;
  background: var(--black);
}

.poster-services b:nth-child(1) { background: var(--blue); }
.poster-services b:nth-child(3) { background: var(--yellow); color: var(--black); }
.poster-services b:nth-child(4) { background: var(--green); }
.poster-services b:nth-child(5) { background: var(--purple); }
.poster-services b:nth-child(6) { background: var(--cyan); }

.poster-side {
  right: 0;
  bottom: 34px;
  width: min(420px, 64%);
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(239, 75, 42, 0.95), rgba(245, 130, 0, 0.82)),
    var(--red);
  transform: rotate(-2deg);
}

.poster-side span {
  display: block;
  font-size: 1.1rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.poster-side strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 1000;
  text-transform: uppercase;
}

.promo-icons {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.promo-icons i {
  aspect-ratio: 1;
  border: 3px solid var(--white);
  background: rgba(255, 255, 255, 0.22);
}

.promo-icons i:nth-child(1) { border-radius: 50%; }
.promo-icons i:nth-child(2) { border-radius: 0 0 18px 18px; }
.promo-icons i:nth-child(3) { transform: skewX(-14deg); }
.promo-icons i:nth-child(4) { border-radius: 999px 999px 14px 14px; }

.poster-side p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  font-weight: 800;
}

.proof-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--light-line);
  border-left: 1px solid var(--light-line);
}

.proof-strip span {
  padding: 18px;
  border-right: 1px solid var(--light-line);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 1000;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: clamp(70px, 9vw, 132px) 0;
}

.section-head {
  max-width: 1120px;
}

.section-head h2 {
  margin-top: 24px;
  font-size: clamp(2.6rem, 5.2vw, 6.2rem);
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.section-head p {
  max-width: 850px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.45rem);
}

.section-head.compact h2 {
  font-size: clamp(2.4rem, 4.4vw, 5.2rem);
}

.services-section {
  background:
    linear-gradient(90deg, rgba(33, 23, 27, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(33, 23, 27, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 92px 92px;
}

.service-wall {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 280px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: var(--orange);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -22%;
  top: -20%;
  width: 72%;
  aspect-ratio: 1;
  border: 18px solid rgba(33, 23, 27, 0.05);
  transform: rotate(24deg);
}

.service-card span {
  position: absolute;
  top: 24px;
  left: 24px;
  color: rgba(33, 23, 27, 0.34);
  font-weight: 1000;
}

.service-card h3 {
  position: relative;
  z-index: 2;
  font-size: clamp(1.45rem, 1.9vw, 2rem);
}

.service-card p {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.02rem;
}

.color-blue::before { background: var(--blue); }
.color-red::before { background: var(--red); }
.color-yellow::before { background: var(--yellow); }
.color-green::before { background: var(--green); }
.color-purple::before { background: var(--purple); }
.color-cyan::before { background: var(--cyan); }
.color-orange::before { background: var(--orange); }
.color-black::before { background: var(--black); }

.work-section {
  width: 100%;
  margin: 0;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  color: var(--white);
  background:
    radial-gradient(circle at 8% 18%, rgba(239, 75, 42, 0.24), transparent 26%),
    linear-gradient(125deg, #070707 0 62%, #15191b 62% 100%);
}

.work-layout {
  max-width: var(--max);
  margin: 0 auto;
}

.work-section .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.work-gallery {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 24px;
  cursor: grab;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) rgba(255, 255, 255, 0.12);
  -webkit-overflow-scrolling: touch;
}

.work-gallery::-webkit-scrollbar,
.editor-gallery .wp-block-gallery::-webkit-scrollbar,
.editor-gallery .blocks-gallery-grid::-webkit-scrollbar {
  height: 10px;
}

.work-gallery::-webkit-scrollbar-track,
.editor-gallery .wp-block-gallery::-webkit-scrollbar-track,
.editor-gallery .blocks-gallery-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.12);
}

.work-gallery::-webkit-scrollbar-thumb,
.editor-gallery .wp-block-gallery::-webkit-scrollbar-thumb,
.editor-gallery .blocks-gallery-grid::-webkit-scrollbar-thumb {
  background: var(--orange);
}

.work-gallery.is-dragging,
.editor-gallery .is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.work-gallery.is-dragging .work-item,
.editor-gallery .is-dragging a,
.editor-gallery .is-dragging figure {
  pointer-events: none;
}

.editor-gallery {
  margin-top: 34px;
}

.editor-gallery .wp-block-gallery,
.editor-gallery .blocks-gallery-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) rgba(255, 255, 255, 0.12);
  -webkit-overflow-scrolling: touch;
}

.editor-gallery .wp-block-gallery.has-nested-images figure.wp-block-image,
.editor-gallery .wp-block-image,
.editor-gallery .blocks-gallery-item {
  position: relative;
  flex: 0 0 calc((100% - 32px) / 3);
  width: calc((100% - 32px) / 3) !important;
  min-width: 260px;
  min-height: clamp(360px, 34vw, 560px);
  margin: 0 !important;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--light-line);
  background: #111;
}

.editor-gallery .wp-block-gallery.has-nested-images figure.wp-block-image:nth-child(1),
.editor-gallery .wp-block-gallery.has-nested-images figure.wp-block-image:nth-child(7),
.editor-gallery .wp-block-image:nth-child(1),
.editor-gallery .wp-block-image:nth-child(7),
.editor-gallery .blocks-gallery-item:nth-child(1),
.editor-gallery .blocks-gallery-item:nth-child(7) {
  flex-basis: calc((100% - 32px) / 3);
  width: calc((100% - 32px) / 3) !important;
  min-height: clamp(360px, 34vw, 560px);
}

.editor-gallery .wp-block-gallery.has-nested-images figure.wp-block-image:nth-child(4),
.editor-gallery .wp-block-gallery.has-nested-images figure.wp-block-image:nth-child(9),
.editor-gallery .wp-block-image:nth-child(4),
.editor-gallery .wp-block-image:nth-child(9),
.editor-gallery .blocks-gallery-item:nth-child(4),
.editor-gallery .blocks-gallery-item:nth-child(9) {
  flex-basis: calc((100% - 32px) / 3);
  width: calc((100% - 32px) / 3) !important;
}

.editor-gallery .wp-block-image img,
.editor-gallery .blocks-gallery-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.work-item {
  position: relative;
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 260px;
  min-height: clamp(360px, 34vw, 560px);
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--light-line);
  background: #111;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
}

.work-item:nth-child(1),
.work-item:nth-child(7) {
  flex-basis: calc((100% - 32px) / 3);
  min-height: clamp(360px, 34vw, 560px);
}

.work-item:nth-child(4),
.work-item:nth-child(9) {
  flex-basis: calc((100% - 32px) / 3);
}

.work-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.work-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.work-item span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(7, 7, 7, 0.76);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-admin-note {
  margin-top: 46px;
  padding: 28px;
  display: flex;
  gap: 12px;
  flex-direction: column;
  color: var(--white);
  border: 1px dashed var(--light-line);
  background: rgba(255, 255, 255, 0.05);
}

.gallery-admin-note strong {
  font-size: 1.3rem;
}

.process-section {
  background: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: start;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-grid article {
  min-height: 245px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid span {
  color: var(--orange);
  font-weight: 1000;
}

.process-grid strong {
  display: block;
  margin-top: 54px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.05;
}

.process-grid p {
  margin-top: 12px;
  color: var(--muted);
}

.facebook-section {
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(54px, 7vw, 96px);
}

.facebook-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(30px, 4.5vw, 58px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(245, 130, 0, 0.22), transparent 38%),
    linear-gradient(135deg, #070707 0 58%, #21171b 58% 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 64px rgba(33, 23, 27, 0.16);
}

.facebook-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.55;
  pointer-events: none;
}

.facebook-panel .section-head,
.facebook-panel .button {
  position: relative;
  z-index: 1;
}

.facebook-panel .section-head {
  max-width: 820px;
}

.facebook-panel .section-head h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 4.2rem);
}

.facebook-panel .section-head p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.facebook-section .button {
  margin-top: 0;
  white-space: nowrap;
}

.contact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 18%, rgba(245, 130, 0, 0.22), transparent 24%),
    linear-gradient(120deg, #070707 0 56%, #16191a 56% 100%);
}

.contact-layout {
  width: min(var(--max), calc(100% - var(--gutter)));
  margin: 0 auto;
  padding: clamp(74px, 9vw, 132px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: start;
}

.contact-copy h2 {
  margin-top: 22px;
  font-size: clamp(2.6rem, 5vw, 5.7rem);
}

.contact-copy p {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
}

.contact-copy strong {
  color: var(--white);
}

.contact-quick {
  margin-top: 28px;
  display: grid;
  gap: 9px;
  color: var(--orange);
  font-weight: 1000;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--light-line);
}

.field {
  display: grid;
  gap: 8px;
}

.field-full,
.form-notice,
.contact-form button {
  grid-column: 1 / -1;
}

label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.28);
  font: inherit;
}

select {
  appearance: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(245, 130, 0, 0.52);
  outline-offset: 0;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-notice {
  margin: 0;
  padding: 12px 14px;
  font-weight: 900;
}

.form-notice.success {
  color: #08230b;
  background: #c9f7d2;
}

.form-notice.error {
  color: #3b0606;
  background: #ffd1d1;
}

.pub-footer {
  padding: 58px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(2, minmax(180px, 0.8fr));
  gap: clamp(34px, 7vw, 96px);
}

.footer-layout img {
  width: min(300px, 80vw);
  max-height: 110px;
  object-fit: contain;
  object-position: left center;
}

.footer-layout p {
  max-width: 430px;
  margin-top: 22px;
}

.footer-layout nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-contact strong {
  color: var(--white);
}

.footer-layout a:hover {
  color: var(--orange);
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  min-height: 56px;
  padding: 16px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background: #20d35b;
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  font-weight: 1000;
}

.legal-page,
.single-article {
  padding: clamp(70px, 10vw, 130px) 0;
}

.legal-page h1,
.single-article h1,
.empty-state h1 {
  margin-top: 20px;
  font-size: clamp(2.6rem, 5vw, 5.8rem);
}

.legal-content,
.single-content {
  max-width: 980px;
  margin-top: 36px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-content h2,
.single-content h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}

.legal-content p,
.legal-content ul,
.single-content p,
.single-content ul {
  margin: 0 0 18px;
}

.legal-content ul,
.single-content ul {
  padding-left: 20px;
}

.lead {
  color: var(--ink);
  font-size: 1.24rem;
}

.single-image {
  margin: 34px 0;
}

.single-image img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.contact-strip,
.empty-state {
  padding: 70px 0;
}

.empty-state {
  width: min(900px, calc(100% - var(--gutter)));
  margin: 0 auto;
}

.button-light {
  color: var(--black);
  background: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 520ms ease var(--reveal-delay, 0ms), transform 520ms ease var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1600px) {
  .hero-copy h1 {
    font-size: 7.4rem;
  }
}

@media (max-width: 1180px) {
  .hero-layout,
  .process-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: auto;
  }

  .poster-stage {
    min-height: 560px;
    transform: none;
  }

  .hero-visual {
    min-height: 540px;
    transform: none;
  }

  .service-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-item,
  .work-item:nth-child(1),
  .work-item:nth-child(4),
  .work-item:nth-child(7),
  .work-item:nth-child(9) {
    grid-column: span 6;
  }
}

@media (max-width: 840px) {
  :root {
    --gutter: clamp(20px, 7vw, 34px);
  }

  .pub-nav {
    min-height: 74px;
  }

  .brand img {
    width: 178px;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    padding: 20px var(--gutter) 26px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(7, 7, 7, 0.98);
    border-bottom: 1px solid var(--light-line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
  }

  .hero-layout {
    padding-top: 48px;
  }

  .hero-copy h1 {
    font-size: clamp(2.85rem, 13vw, 5.2rem);
  }

  .hero-lead {
    font-size: 1.1rem;
  }

  .poster-stage {
    min-height: 760px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .poster-main {
    width: 100%;
    min-height: 560px;
  }

  .poster-side {
    left: 10%;
    right: auto;
    width: 88%;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head h2,
  .section-head.compact h2,
  .contact-copy h2 {
    font-size: clamp(2.35rem, 11vw, 4.2rem);
  }

  .service-wall,
  .process-grid,
  .contact-form,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .work-gallery {
    scroll-padding-inline: 0;
  }

  .editor-gallery .wp-block-gallery,
  .editor-gallery .blocks-gallery-grid {
    scroll-padding-inline: 0;
  }

  .work-item,
  .work-item:nth-child(1),
  .work-item:nth-child(4),
  .work-item:nth-child(7),
  .work-item:nth-child(9),
  .editor-gallery .wp-block-image,
  .editor-gallery .wp-block-image:nth-child(1),
  .editor-gallery .wp-block-image:nth-child(4),
  .editor-gallery .wp-block-image:nth-child(7),
  .editor-gallery .wp-block-image:nth-child(9),
  .editor-gallery .blocks-gallery-item,
  .editor-gallery .blocks-gallery-item:nth-child(1),
  .editor-gallery .blocks-gallery-item:nth-child(4),
  .editor-gallery .blocks-gallery-item:nth-child(7),
  .editor-gallery .blocks-gallery-item:nth-child(9) {
    grid-column: auto;
    flex-basis: min(82vw, 380px);
    width: min(82vw, 380px) !important;
    min-width: min(82vw, 380px);
    min-height: 360px;
  }

  .facebook-panel {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-tags span {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .actions,
  .button {
    width: 100%;
  }

  .poster-stage {
    min-height: 690px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .visual-tags {
    left: 12px;
    top: 12px;
  }

  .visual-tags span {
    padding: 8px 9px;
    font-size: 0.7rem;
  }

  .hero-visual figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }

  .poster-main {
    min-height: 520px;
    padding: 24px;
  }

  .poster-logo img {
    width: 210px;
  }

  .poster-side {
    left: 5%;
    width: 92%;
    padding: 24px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip span {
    text-align: left;
  }

  .service-card,
  .process-grid article {
    min-height: 220px;
  }
}
