:root {
  --ink: #050607;
  --ink-soft: #11171a;
  --paper: #f7f8f5;
  --muted: #a9b4b7;
  --line: rgba(255, 255, 255, 0.13);
  --teal: #36e6d1;
  --coral: #ff6b4a;
  --amber: #ffd166;
  --violet: #9c7bff;
  --green: #7ef29d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 12%, rgba(54, 230, 209, 0.14), transparent 28rem),
    radial-gradient(circle at 85% 18%, rgba(255, 107, 74, 0.1), transparent 30rem),
    linear-gradient(135deg, #050607 0%, #0b0f10 42%, #111312 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  color: var(--ink);
  background: var(--teal);
}

.page-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--coral));
  transform-origin: left;
}

.cursor-glow {
  position: fixed;
  z-index: -1;
  width: 18rem;
  height: 18rem;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.28;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(54, 230, 209, 0.34), transparent 64%);
  filter: blur(2px);
}

.section-pad {
  max-width: var(--content);
  margin: 0 auto;
  padding: 7.5rem 1.25rem;
}

section[id] {
  scroll-margin-top: 6.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  max-width: var(--content);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 7, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 10rem;
}

.brand img {
  width: 12rem;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.site-nav a {
  min-height: 2.25rem;
  padding: 0.58rem 0.95rem;
  border-radius: 999px;
  color: rgba(247, 248, 245, 0.76);
  font-size: 0.9rem;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.09);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  color: var(--paper);
  font-weight: 750;
  line-height: 1.1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  background: rgba(54, 230, 209, 0.12);
  box-shadow: inset 0 0 0 1px rgba(54, 230, 209, 0.32);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #04100f;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  box-shadow: 0 18px 42px rgba(54, 230, 209, 0.24);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px var(--line);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.25rem auto;
  background: var(--paper);
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(20rem, 0.96fr);
  align-items: center;
  gap: 3.4rem;
  min-height: 44rem;
  padding-top: 5.8rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 46rem;
  margin-bottom: 1.35rem;
  font-size: 4.75rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: 3.05rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-text,
.section-heading p,
.provide-copy p,
.about-copy p,
.case-copy p,
.contact-copy p,
.process-step p,
.goal p,
.portfolio-card p,
.service-tile p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 42rem;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 2.2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 42rem;
  margin: 0;
}

.hero-stats div,
.case-metrics div,
.goal,
.service-tile,
.portfolio-card,
.process-step,
.about-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 1rem;
}

.hero-stats dt,
.case-metrics strong {
  display: block;
  color: var(--paper);
  font-size: 2.05rem;
  font-weight: 850;
  line-height: 1;
}

.hero-stats dd,
.case-metrics span {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 39rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 55% 16%, rgba(255, 209, 102, 0.18), transparent 21rem),
    radial-gradient(circle at 14% 78%, rgba(156, 123, 255, 0.18), transparent 18rem);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(5, 6, 7, 0.92), transparent);
}

.brand-signal {
  position: absolute;
  inset: 4.5rem 3rem auto;
  display: grid;
  place-items: center;
  min-height: 13rem;
  transform: translateZ(24px);
}

.brand-signal img {
  width: 22rem;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.42));
  animation: floatLogo 5s ease-in-out infinite;
}

.signal-rings {
  position: absolute;
  width: 19rem;
  height: 19rem;
  border-radius: 50%;
  border: 1px solid rgba(54, 230, 209, 0.28);
  animation: pulseRing 3.8s ease-in-out infinite;
}

.signal-rings::before,
.signal-rings::after {
  content: "";
  position: absolute;
  inset: -2.5rem;
  border-radius: inherit;
  border: 1px solid rgba(255, 209, 102, 0.16);
}

.signal-rings::after {
  inset: 2.9rem;
  border-color: rgba(255, 107, 74, 0.26);
}

.campaign-board {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 2rem;
  width: 19rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 6, 7, 0.7);
  backdrop-filter: blur(16px);
  transform: translateZ(40px);
}

.board-top,
.metric-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.board-top {
  margin-bottom: 1rem;
  color: var(--paper);
  font-weight: 800;
}

.live-dot {
  position: relative;
  color: var(--green);
  font-size: 0.8rem;
}

.live-dot::before {
  content: "";
  display: inline-block;
  width: 0.44rem;
  height: 0.44rem;
  margin-right: 0.35rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

.metric-line {
  min-height: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--muted);
  font-size: 0.85rem;
}

.metric-line strong {
  color: var(--paper);
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 0.45rem;
  height: 5rem;
  margin-top: 0.9rem;
}

.mini-chart span {
  flex: 1;
  height: var(--height);
  border-radius: 999px 999px 0 0;
  background: linear-gradient(to top, var(--coral), var(--teal));
  animation: chartLift 2.4s ease-in-out infinite alternate;
}

.floating-tag {
  position: absolute;
  z-index: 3;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.64rem 0.9rem;
  background: rgba(5, 6, 7, 0.68);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
  animation: drift 5.4s ease-in-out infinite;
}

.tag-one {
  top: 4.2rem;
  left: 2rem;
}

.tag-two {
  top: 17.3rem;
  right: 1.55rem;
  animation-delay: -1.6s;
}

.tag-three {
  bottom: 6.4rem;
  left: 2rem;
  animation-delay: -2.8s;
}

.marquee-band {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  padding: 1.15rem 0;
  animation: marquee 27s linear infinite;
}

.marquee-track span {
  color: rgba(247, 248, 245, 0.78);
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section-heading {
  max-width: 47rem;
  margin-bottom: 2.25rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-tile {
  position: relative;
  min-height: 18.5rem;
  padding: 1.1rem;
  overflow: hidden;
  transform-style: preserve-3d;
}

.service-tile::after,
.portfolio-card::after,
.goal::after,
.process-step::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.service-tile:hover::after,
.portfolio-card:hover::after,
.goal:hover::after,
.process-step:hover::after {
  transform: scaleX(1);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  color: var(--ink);
  background: var(--teal);
  font-weight: 900;
}

.service-tile:nth-child(2n) .service-icon {
  background: var(--amber);
}

.service-tile:nth-child(3n) .service-icon {
  background: var(--coral);
}

.service-tile h3,
.portfolio-card h3,
.goal h3,
.process-step h3 {
  margin-bottom: 0.65rem;
}

.provide,
.about,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 3rem;
}

.phone-frame {
  width: min(22rem, 100%);
  min-height: 37rem;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 50% 14%, rgba(54, 230, 209, 0.2), transparent 14rem),
    var(--ink-soft);
  box-shadow: var(--shadow);
}

.phone-header {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.phone-header span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--coral);
}

.phone-header span:nth-child(2) {
  background: var(--amber);
}

.phone-header span:nth-child(3) {
  background: var(--teal);
}

.post-card {
  display: grid;
  align-content: center;
  min-height: 23rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 1.3rem;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.18), rgba(5, 6, 7, 0.82)),
    conic-gradient(from 140deg, rgba(54, 230, 209, 0.23), rgba(255, 107, 74, 0.22), rgba(255, 209, 102, 0.22), rgba(54, 230, 209, 0.23));
}

.post-card img {
  margin-bottom: 3rem;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.42));
}

.post-card p {
  max-width: 14rem;
  margin: 0;
  color: var(--paper);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

.post-bars {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.post-bars span {
  height: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.post-bars span::after {
  content: "";
  display: block;
  width: 74%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}

.post-bars span:nth-child(2)::after {
  width: 58%;
  background: linear-gradient(90deg, var(--coral), var(--violet));
}

.post-bars span:nth-child(3)::after {
  width: 88%;
}

.provide-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  margin: 1.8rem 0 0;
  list-style: none;
}

.provide-list li {
  position: relative;
  min-height: 4.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1rem 1rem 2.25rem;
  color: rgba(247, 248, 245, 0.86);
  background: rgba(255, 255, 255, 0.045);
  line-height: 1.35;
}

.provide-list li::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(54, 230, 209, 0.6);
}

.about {
  align-items: start;
}

.about-copy p {
  max-width: 43rem;
}

.text-link {
  display: inline-flex;
  margin-top: 0.9rem;
  color: var(--teal);
  font-weight: 850;
}

.text-link::after {
  content: ">";
  margin-left: 0.5rem;
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.about-panel {
  padding: 1.3rem;
}

.about-panel h3 {
  margin-bottom: 1rem;
}

.about-panel ol {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: awareness;
}

.about-panel li {
  position: relative;
  padding: 0 0 1rem 3.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  counter-increment: awareness;
}

.about-panel li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-panel li::before {
  content: "0" counter(awareness);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--amber);
  font-weight: 900;
}

.about-panel strong,
.about-panel span {
  display: block;
}

.about-panel span {
  margin-top: 0.35rem;
  color: var(--muted);
  line-height: 1.6;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  gap: 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background:
    radial-gradient(circle at 18% 0%, rgba(54, 230, 209, 0.16), transparent 24rem),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.case-copy {
  padding: 1.1rem;
}

.case-copy h3 {
  max-width: 44rem;
  font-size: 2rem;
  line-height: 1.04;
}

.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.case-metrics div {
  display: grid;
  align-content: center;
  min-height: 12rem;
  padding: 1rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.portfolio-card {
  position: relative;
  min-height: 25.5rem;
  padding: 0.8rem;
  overflow: hidden;
  transform-style: preserve-3d;
}

.portfolio-art {
  display: grid;
  align-content: end;
  min-height: 13.5rem;
  margin-bottom: 1.05rem;
  border-radius: 8px;
  padding: 1rem;
  background: #111;
  overflow: hidden;
}

.portfolio-art span {
  position: relative;
  z-index: 2;
  max-width: 100%;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.portfolio-card h3,
.portfolio-card p {
  padding-inline: 0.35rem;
}

.art-coworking {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 100%),
    repeating-linear-gradient(135deg, rgba(54, 230, 209, 0.38) 0 1px, transparent 1px 14px),
    linear-gradient(135deg, #162f32, #1d1410);
}

.art-consultancy {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(circle at 78% 18%, rgba(255, 209, 102, 0.46), transparent 6rem),
    linear-gradient(135deg, #0d151c, #2e2146);
}

.art-social {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(circle at 30% 26%, rgba(255, 107, 74, 0.62), transparent 7rem),
    linear-gradient(135deg, #211116, #072522);
}

.art-growth {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(126, 242, 157, 0.25) 1px, transparent 1px),
    linear-gradient(0deg, rgba(126, 242, 157, 0.22) 1px, transparent 1px),
    #11171a;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.goal-grid,
.process-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.goal {
  position: relative;
  min-height: 15rem;
  padding: 1.2rem;
  overflow: hidden;
}

.goal span,
.process-step span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-line {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
  position: relative;
  min-height: 17rem;
  padding: 1.15rem;
  overflow: hidden;
}

.contact {
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.contact-links a,
.contact-links span {
  max-width: max-content;
  color: rgba(247, 248, 245, 0.86);
  overflow-wrap: anywhere;
}

.contact-links a:hover {
  color: var(--teal);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  color: rgba(247, 248, 245, 0.82);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.9rem 0.95rem;
  color: var(--paper);
  background: rgba(5, 6, 7, 0.52);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(54, 230, 209, 0.58);
  box-shadow: 0 0 0 3px rgba(54, 230, 209, 0.12);
}

.form-note {
  min-height: 1.4rem;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  padding: 3rem 1.25rem 3.6rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.site-footer img {
  width: 12.5rem;
}

.site-footer p {
  max-width: 34rem;
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

[data-tilt] {
  transition: transform 180ms ease, border-color 180ms ease;
}

[data-tilt]:hover {
  border-color: rgba(54, 230, 209, 0.34);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulseRing {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes chartLift {
  to {
    transform: scaleY(0.72);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1080px) {
  .hero,
  .provide,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.55rem;
  }

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

  .case-study {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 10.4rem;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 4.7rem 1rem auto;
    display: grid;
    justify-items: stretch;
    justify-self: stretch;
    width: calc(100% - 2rem);
    border-radius: 8px;
    padding: 0.8rem;
    background: rgba(5, 6, 7, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    border-radius: 6px;
    padding: 0.92rem 1rem;
  }

  .section-pad {
    padding-block: 5.25rem;
  }

  h1 {
    font-size: 3.15rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.18rem;
  }

  .hero-stats,
  .case-metrics,
  .goal-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 34rem;
  }

  .brand-signal {
    inset: 4rem 1.25rem auto;
  }

  .brand-signal img {
    width: 18rem;
  }

  .campaign-board {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: auto;
  }

  .floating-tag {
    display: none;
  }

  .provide-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .section-pad {
    padding-inline: 1rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-actions,
  .case-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .service-grid,
  .portfolio-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .service-tile,
  .portfolio-card,
  .process-step,
  .goal {
    min-height: auto;
  }

  .hero-visual {
    min-height: 31rem;
  }

  .phone-frame {
    min-height: 31rem;
  }

  .post-card {
    min-height: 18rem;
  }

  .post-card p {
    font-size: 1.45rem;
  }
}

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