:root {
  --paper: #f3f0e9;
  --ink: #111111;
  --soft-ink: #55534e;
  --line: rgba(17, 17, 17, 0.18);
  --orange: #ff5c35;
  --acid: #d8ff36;
  --blue: #9adff2;
  --white: #fffefa;
  --max: 1440px;
  --pad: clamp(1.25rem, 3vw, 3.5rem);
  --radius: 1.2rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.paguru-home-2026 {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

body.paguru-home-2026 > main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.paguru-home-2026.admin-bar .site-header {
  top: 32px;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 5.2rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem var(--pad);
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, transform 0.35s var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(243, 240, 233, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  width: 7.4rem;
}

.brand img {
  height: 2.9rem;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2vw, 2.4rem);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.38rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
}

.nav-cta span {
  transition: transform 0.25s var(--ease);
}

.nav-cta:hover span {
  transform: translate(0.16rem, -0.16rem);
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 0.85rem;
  width: 1.25rem;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s, top 0.25s;
}

.menu-toggle span:nth-child(2) { top: 1.22rem; }
.menu-toggle span:nth-child(3) { top: 1.68rem; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 1.45rem; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 1.45rem; transform: rotate(-45deg); }

.hero {
  display: grid;
  width: min(100%, var(--max));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(8.5rem, 14vh, 11rem) var(--pad) 2.8rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
  grid-template-rows: 1fr auto;
  gap: 3rem clamp(2.5rem, 6vw, 7rem);
  align-items: center;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(2rem, 7vh, 5.5rem);
}

.eyebrow,
.kicker,
.hero-index {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #4dc469;
  box-shadow: 0 0 0 0 rgba(77, 196, 105, 0.5);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 0.45rem rgba(77, 196, 105, 0); }
}

.hero h1,
.section h2,
.idea-lab h2,
.reviews h2,
.contact h2,
.dialog-copy h2 {
  margin: 0;
  font-size: clamp(3.3rem, 6.8vw, 7.4rem);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.hero h1 span,
.section h2 span,
.contact h2 span {
  font-weight: 420;
}

.hero-lede {
  max-width: 35rem;
  margin: 2.4rem 0 0;
  color: var(--soft-ink);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.46;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  transition: color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

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

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--acid);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 800;
}

.text-link span {
  transition: transform 0.25s var(--ease);
}

.text-link:hover span {
  transform: translate(0.16rem, -0.16rem);
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: min(65vh, 43rem);
}

.hero-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: 0 1.8rem 5rem rgba(17, 17, 17, 0.12);
}

.hero-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.hero-card:hover img {
  transform: scale(1.035);
}

.hero-card-main {
  inset: 0 0 1.8rem 8%;
  transform: rotate(2.4deg);
}

.hero-card-main figcaption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  left: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: 0.7rem;
  color: var(--white);
  background: rgba(17, 17, 17, 0.82);
  backdrop-filter: blur(12px);
  font-size: 0.7rem;
  font-weight: 750;
}

.hero-card-accent {
  z-index: -1;
  top: -6%;
  right: -7%;
  width: 38%;
  aspect-ratio: 0.76;
  transform: rotate(7deg);
}

.hero-sticker {
  position: absolute;
  z-index: 2;
  bottom: -0.8rem;
  left: -0.5rem;
  width: 7.6rem;
  height: 7.6rem;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0 1rem 2.8rem rgba(17, 17, 17, 0.18);
  animation: slow-spin 20s linear infinite;
}

.hero-sticker svg {
  width: 100%;
  height: 100%;
}

.hero-sticker text {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.sticker-arrow {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

.hero-proof {
  display: grid;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
}

.hero-proof div {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  padding-right: 1rem;
}

.hero-proof strong {
  font-size: clamp(1.8rem, 3vw, 3.3rem);
  letter-spacing: -0.055em;
}

.hero-proof span {
  max-width: 8rem;
  color: var(--soft-ink);
  font-size: 0.68rem;
  line-height: 1.2;
}

.ticker {
  overflow: hidden;
  padding: 1rem 0;
  color: var(--white);
  background: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.5rem;
  font-size: clamp(1.3rem, 2.4vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
}

.ticker-track i {
  color: var(--orange);
  font-style: normal;
}

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

.section {
  padding: clamp(6rem, 11vw, 11rem) var(--pad);
}

.projects,
.approach,
.team {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-head {
  display: grid;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.6fr);
  gap: 4rem;
  align-items: end;
}

.section h2 {
  margin-top: 1.2rem;
  font-size: clamp(3.1rem, 6.1vw, 6.7rem);
}

.section-intro {
  max-width: 31rem;
  justify-self: end;
}

.section-intro > p,
.section-intro-text {
  margin: 0 0 1.8rem;
  color: var(--soft-ink);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.55;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter {
  min-height: 2.35rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 750;
}

.filter:hover,
.filter.is-active {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4.5rem) clamp(1rem, 2vw, 2rem);
}

.project-card {
  display: block;
  min-width: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.project-card-wide {
  grid-column: span 1;
}

.project-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: calc(var(--radius) * 0.75);
  background: #dedad1;
}

.project-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.35s;
}

.project-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 0;
  border-top: 1px solid transparent;
}

.project-meta > span:first-child {
  display: grid;
  gap: 0.25rem;
}

.project-meta b {
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  letter-spacing: -0.045em;
}

.project-meta small {
  color: var(--soft-ink);
  font-size: 0.7rem;
}

.project-arrow {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 0.25s, background 0.25s, transform 0.35s var(--ease);
}

.project-card:hover .project-image img {
  transform: scale(1.035);
}

.project-card:hover .project-arrow {
  color: var(--white);
  background: var(--ink);
  transform: rotate(45deg);
}

.project-card[hidden] {
  display: none;
}

.button-outline {
  margin-top: 4rem;
}

.button-outline:hover {
  color: var(--white);
  background: var(--ink);
}

.services {
  width: 100%;
  color: var(--white);
  background: var(--ink);
}

.services > * {
  width: min(100%, calc(var(--max) - 2 * var(--pad)));
  margin-right: auto;
  margin-left: auto;
}

.section-head-light .section-intro-text {
  align-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  justify-self: end;
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.service-row {
  position: relative;
  display: grid;
  min-height: 12rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  grid-template-columns: 5rem minmax(20rem, 1.2fr) minmax(16rem, 0.7fr) 3rem;
  gap: 1.5rem;
  transition: padding 0.35s var(--ease), color 0.25s, background 0.25s;
}

.service-row::before {
  position: absolute;
  z-index: -1;
  inset: 0 calc(-1 * var(--pad));
  background: var(--acid);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s var(--ease);
}

.service-row:hover {
  z-index: 1;
  color: var(--ink);
}

.service-row:hover::before {
  transform: scaleY(1);
}

.service-number {
  align-self: start;
  padding-top: 0.55rem;
  font-size: 0.68rem;
  font-weight: 800;
}

.service-row h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.8rem, 3.4vw, 3.7rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.service-row p {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  line-height: 1.5;
  transition: color 0.25s;
}

.service-row:hover p {
  color: rgba(17, 17, 17, 0.72);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.service-tags span {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 0.65rem;
}

.service-row:hover .service-tags span {
  border-color: rgba(17, 17, 17, 0.32);
}

.service-mark {
  font-size: 1.8rem;
  transition: transform 0.35s var(--ease);
}

.service-row:hover .service-mark {
  transform: rotate(45deg);
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.8fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.approach-copy {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.approach-lede {
  max-width: 38rem;
  margin: 2.4rem 0;
  color: var(--soft-ink);
  font-size: clamp(1.05rem, 1.6vw, 1.38rem);
  line-height: 1.5;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  min-height: 12rem;
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 4rem 1fr;
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  padding-top: 0.45rem;
  font-size: 0.66rem;
  font-weight: 800;
}

.process-list h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.055em;
}

.process-list p {
  max-width: 30rem;
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.45;
}

.team {
  padding-top: 0;
}

.team-head {
  display: grid;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: 4rem;
  align-items: end;
}

.team-head > p {
  max-width: 34rem;
  margin: 0 0 0.35rem;
  color: var(--soft-ink);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.55;
  justify-self: end;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem) clamp(0.8rem, 1.6vw, 1.5rem);
}

.team-card {
  min-width: 0;
  grid-column: span 3;
}

.team-card:nth-child(n + 5) {
  grid-column: span 4;
}

.team-card figure {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: calc(var(--radius) * 0.75);
  background: #d8d5ce;
}

.team-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}

.team-card:hover img {
  transform: scale(1.035);
}

.team-meta {
  display: grid;
  align-items: start;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  grid-template-columns: 2.2rem 1fr;
  gap: 0.3rem;
}

.team-meta > span {
  color: var(--soft-ink);
  font-size: 0.62rem;
  font-weight: 800;
}

.team-meta h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  letter-spacing: -0.045em;
}

.team-meta p {
  margin: 0.3rem 0 0;
  color: var(--soft-ink);
  font-size: 0.7rem;
  line-height: 1.35;
}

.idea-lab {
  display: grid;
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  background: var(--blue);
  grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.75fr);
  gap: 5rem;
  align-items: end;
}

.idea-intro {
  justify-self: end;
  width: min(100%, 47rem);
}

.idea-lab h2 {
  margin-top: 1.2rem;
  font-size: clamp(3rem, 5.7vw, 6.5rem);
}

.idea-card {
  width: min(100%, 36rem);
  min-height: 27rem;
  padding: 1.4rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0.9rem 0.9rem 0 var(--ink);
}

.idea-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.idea-card > p {
  min-height: 12rem;
  margin: 2.4rem 0;
  font-size: clamp(1.45rem, 2.5vw, 2.45rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.idea-button {
  display: flex;
  width: 100%;
  min-height: 3.6rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border: 0;
  border-radius: 0.65rem;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
}

.idea-button span {
  font-size: 1.4rem;
  transition: transform 0.4s var(--ease);
}

.idea-button:hover span {
  transform: rotate(180deg);
}

.reviews {
  display: grid;
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.72fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.reviews-copy {
  width: min(100%, 48rem);
  justify-self: end;
}

.reviews h2 {
  margin-top: 1.2rem;
  font-size: clamp(3.4rem, 5.8vw, 6.4rem);
  line-height: 0.9;
}

.reviews-copy > p:last-child {
  max-width: 34rem;
  margin: 2rem 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 1.05rem;
  line-height: 1.55;
}

.review-button {
  display: grid;
  width: min(100%, 36rem);
  min-height: 8.5rem;
  align-items: center;
  justify-self: end;
  padding: 1.35rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  transition: color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

.review-google {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border-radius: 50%;
  background: #f5f5f5;
}

.review-google svg {
  display: block;
  width: 2.65rem;
  height: 2.65rem;
}

.review-label {
  display: grid;
  gap: 0.35rem;
}

.review-label small {
  color: var(--soft-ink);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-label strong {
  font-size: clamp(1.4rem, 2.4vw, 2.35rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.review-button i {
  align-self: start;
  font-size: 1.8rem;
  font-style: normal;
  transition: transform 0.25s var(--ease);
}

.review-button:hover {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-3px);
}

.review-button:hover .review-label small {
  color: rgba(255, 255, 255, 0.58);
}

.review-button:hover i {
  transform: translate(0.2rem, -0.2rem);
}

.contact {
  display: grid;
  padding: clamp(6rem, 11vw, 11rem) var(--pad);
  color: var(--white);
  background: var(--orange);
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.72fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.contact-main {
  width: min(100%, 48rem);
  justify-self: end;
}

.contact h2 {
  margin-top: 1.2rem;
  font-size: clamp(4rem, 8.5vw, 9rem);
}

.contact-main > p:last-child {
  max-width: 34rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.55;
}

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

.contact-mail,
.contact-small {
  display: grid;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  transition: color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

.contact-mail {
  grid-template-columns: 1fr auto;
  gap: 1rem;
}

.contact-mail span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-mail strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  letter-spacing: -0.05em;
  grid-column: 1;
}

.contact-mail i {
  font-size: 1.7rem;
  font-style: normal;
  grid-column: 2;
  grid-row: 1 / span 2;
  transition: transform 0.25s var(--ease);
}

.contact-mail:hover,
.contact-small:hover {
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-3px);
}

.contact-mail:hover i {
  transform: translate(0.2rem, -0.2rem);
}

.contact-small {
  grid-template-columns: 1fr auto;
  border-radius: 999px;
  font-size: 0.72rem;
}

.site-footer {
  display: grid;
  padding: 4.5rem var(--pad) 1.5rem;
  color: var(--white);
  background: var(--ink);
  grid-template-columns: 1.3fr repeat(4, 0.55fr);
  gap: 3rem;
}

.footer-brand img {
  width: 9rem;
  filter: invert(1);
}

.footer-brand > p {
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.4;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.78rem;
}

.footer-column > p {
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column address {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.6;
}

.footer-column a:hover {
  color: var(--acid);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  grid-column: 1 / -1;
}

.project-dialog {
  width: min(76rem, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
}

.project-dialog::backdrop {
  background: rgba(17, 17, 17, 0.84);
  backdrop-filter: blur(8px);
}

.project-dialog[open] {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  animation: dialog-in 0.45s var(--ease);
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(1.5rem) scale(0.98); }
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  place-items: center;
}

.dialog-image {
  min-height: 70vh;
}

.dialog-image img {
  height: 100%;
  object-fit: cover;
}

.dialog-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 5rem) 2rem;
}

.dialog-copy h2 {
  margin-top: 1rem;
  font-size: clamp(3rem, 7vw, 6rem);
}

.dialog-copy > p:not(.kicker) {
  margin: 1.4rem 0 2.4rem;
  color: var(--soft-ink);
}

.dialog-copy .text-link {
  align-self: flex-start;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.22s; }

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

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 0.85fr;
    gap: 3rem 2.5rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 7vw, 5.2rem);
  }

  .service-row {
    grid-template-columns: 3rem 1fr 2rem;
  }

  .service-tags {
    grid-column: 2;
  }

  .service-mark {
    grid-column: 3;
    grid-row: 1;
  }

  .team-card,
  .team-card:nth-child(n + 5) {
    grid-column: span 4;
  }

  .site-footer {
    grid-template-columns: 1.2fr repeat(4, 0.7fr);
  }
}

@media (max-width: 820px) {
  body.paguru-home-2026.admin-bar .site-header {
    top: 46px;
  }

  body.paguru-home-2026.admin-bar .site-nav {
    top: 46px;
    height: calc(100dvh - 46px);
  }

  .site-header {
    min-height: 4.8rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    width: 100vw;
    height: 100dvh;
    align-items: stretch;
    justify-content: flex-start;
    padding: 7rem var(--pad) 2rem;
    background: var(--acid);
    flex-direction: column;
    gap: 0;
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-2rem);
    transition: opacity 0.35s, transform 0.5s var(--ease);
  }

  body.menu-open .site-header {
    border-color: transparent;
    background: transparent;
    backdrop-filter: none;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a:not(.nav-cta) {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.18);
    font-size: clamp(2.2rem, 10vw, 4.8rem);
    font-weight: 800;
    letter-spacing: -0.06em;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    justify-content: space-between;
    margin-top: auto;
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 7.5rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 3rem;
  }

  .eyebrow-row {
    margin-bottom: 3rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 15vw, 7rem);
  }

  .hero-visual {
    min-height: 72svh;
  }

  .hero-card-main {
    right: 3%;
    left: 2%;
  }

  .hero-card-accent {
    right: -4%;
  }

  .hero-proof {
    grid-column: 1;
    gap: 1.4rem;
  }

  .hero-proof div {
    display: grid;
    gap: 0.2rem;
  }

  .hero-proof span {
    max-width: none;
  }

  .section-head,
  .approach,
  .idea-lab,
  .reviews,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 2rem;
  }

  .section-intro,
  .section-head-light .section-intro-text {
    max-width: 38rem;
    justify-self: start;
  }

  .approach-copy {
    position: static;
  }

  .team-head {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-head > p {
    justify-self: start;
  }

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

  .team-card,
  .team-card:nth-child(n + 5) {
    grid-column: auto;
  }

  .team-card:last-child {
    grid-column: 1 / -1;
  }

  .team-card:last-child figure {
    aspect-ratio: 16 / 9;
  }

  .idea-intro,
  .reviews-copy,
  .contact-main {
    justify-self: start;
  }

  .idea-card {
    justify-self: end;
  }

  .contact-actions {
    width: min(100%, 38rem);
    justify-self: end;
  }

  .review-button {
    justify-self: end;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  :root {
    --pad: 1rem;
    --radius: 0.9rem;
  }

  .brand {
    width: 6.4rem;
  }

  .brand img {
    height: 2.5rem;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero h1,
  .section h2,
  .idea-lab h2,
  .reviews h2,
  .contact h2 {
    letter-spacing: -0.065em;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.2rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 128vw;
  }

  .hero-card-main {
    right: 1rem;
    bottom: 2.6rem;
    left: 1rem;
  }

  .hero-card-accent {
    top: -2rem;
    right: -0.4rem;
    width: 40%;
  }

  .hero-sticker {
    bottom: -0.5rem;
    left: -0.1rem;
    width: 6.2rem;
    height: 6.2rem;
  }

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

  .review-button {
    min-height: 7.5rem;
    padding: 1rem;
    grid-template-columns: auto 1fr auto;
  }

  .review-google {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.75rem;
  }

  .hero-proof div {
    align-items: center;
    padding: 0 0 0.8rem;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 5.5rem 1fr;
  }

  .ticker {
    padding: 0.8rem 0;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

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

  .service-row {
    min-height: 0;
    padding: 2.4rem 0;
    grid-template-columns: 2.5rem 1fr;
  }

  .service-tags {
    grid-column: 2;
  }

  .service-mark {
    display: none;
  }

  .process-list li {
    min-height: 10rem;
    grid-template-columns: 3rem 1fr;
  }

  .team-grid {
    gap: 2rem 0.7rem;
  }

  .idea-card {
    min-height: 25rem;
    box-shadow: 0.45rem 0.45rem 0 var(--ink);
  }

  .idea-card > p {
    min-height: 11rem;
  }

  .contact-mail,
  .contact-small {
    border-radius: 0.75rem;
  }

  .contact-small {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }

  .project-dialog[open] {
    grid-template-columns: 1fr;
  }

  .dialog-image {
    min-height: 48vh;
  }

  .dialog-copy {
    padding: 1.5rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/*
 * WordPress compatibility layer.
 * The standalone preview does not load theme/page-builder CSS; these scoped
 * declarations keep the same visual result if a global rule is printed late.
 */
body.paguru-home-2026 {
  color: var(--ink) !important;
  background: var(--paper) !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

body.paguru-home-2026 h1,
body.paguru-home-2026 h2,
body.paguru-home-2026 h3,
body.paguru-home-2026 p,
body.paguru-home-2026 a,
body.paguru-home-2026 button,
body.paguru-home-2026 input,
body.paguru-home-2026 textarea {
  font-family: inherit !important;
}

body.paguru-home-2026 button {
  box-shadow: none !important;
  text-transform: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

body.paguru-home-2026 .menu-toggle {
  width: 3rem !important;
  height: 3rem !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 1px solid var(--line) !important;
  border-radius: 50% !important;
  color: var(--ink) !important;
  background: var(--paper) !important;
}

body.paguru-home-2026 .nav-cta,
body.paguru-home-2026 .button-dark {
  border-color: var(--ink) !important;
  color: var(--white) !important;
  background: var(--ink) !important;
}

body.paguru-home-2026 .button-dark:hover {
  color: var(--ink) !important;
  background: var(--acid) !important;
}

body.paguru-home-2026 .filter {
  display: inline-flex !important;
  min-height: 2.35rem !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.45rem 0.9rem !important;
  border: 1px solid var(--line) !important;
  border-radius: 999px !important;
  color: var(--ink) !important;
  background: transparent !important;
  font-size: 0.72rem !important;
  font-weight: 750 !important;
  text-transform: none !important;
}

body.paguru-home-2026 .filter:hover,
body.paguru-home-2026 .filter.is-active {
  border-color: var(--ink) !important;
  color: var(--white) !important;
  background: var(--ink) !important;
}

body.paguru-home-2026 .project-card {
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: inherit !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: left !important;
  text-transform: none !important;
}

body.paguru-home-2026 .project-arrow {
  color: var(--ink) !important;
  background: transparent !important;
}

body.paguru-home-2026 .project-card:hover .project-arrow {
  color: var(--white) !important;
  background: var(--ink) !important;
}

body.paguru-home-2026 .button {
  min-height: 3.4rem !important;
  padding: 0.75rem 1.2rem !important;
  border: 1px solid var(--ink) !important;
  border-radius: 999px !important;
  text-transform: none !important;
}

body.paguru-home-2026 .button-outline {
  color: var(--ink) !important;
  background: transparent !important;
}

body.paguru-home-2026 .button-outline:hover {
  color: var(--white) !important;
  background: var(--ink) !important;
}

body.paguru-home-2026 .idea-button {
  min-height: 3.6rem !important;
  padding: 0.8rem 1rem !important;
  border: 0 !important;
  border-radius: 0.65rem !important;
  color: var(--white) !important;
  background: var(--ink) !important;
  font-size: 0.76rem !important;
  text-transform: none !important;
}

body.paguru-home-2026 .review-button {
  color: var(--ink) !important;
  background: var(--white) !important;
}

body.paguru-home-2026 .review-button:hover {
  color: var(--white) !important;
  background: var(--ink) !important;
}

body.paguru-home-2026 .contact-mail,
body.paguru-home-2026 .contact-small {
  color: var(--white) !important;
  background: transparent !important;
}

body.paguru-home-2026 .contact-mail:hover,
body.paguru-home-2026 .contact-small:hover {
  color: var(--ink) !important;
  background: var(--acid) !important;
}

body.paguru-home-2026 .site-footer a {
  color: inherit !important;
}
