:root {
  --cyan: #00afef;
  --cyan-dark: #0077b6;
  --magenta: #ec268f;
  --yellow: #fff212;
  --ink: #121212;
  --gray-900: #202124;
  --gray-700: #4f565d;
  --gray-500: #7b858f;
  --gray-100: #f5f7fa;
  --white: #ffffff;
  --line: #dde3ea;
  --shadow: 0 18px 40px rgba(18, 18, 18, 0.12);
  --soft-shadow: 0 10px 26px rgba(18, 18, 18, 0.09);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-900);
  font-family: "Poppins", "Nunito", "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--white);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

p {
  color: var(--gray-700);
  line-height: 1.7;
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: 3rem;
  max-width: 720px;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.14rem;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

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

.section-band {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
}

.section-wrap {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(221, 227, 234, 0.85);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1240px, calc(100% - 24px));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand img {
  width: 178px;
  max-height: 54px;
  object-fit: contain;
}

.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 0.75rem;
  color: var(--gray-700);
  font-size: 0.94rem;
  font-weight: 800;
  border-radius: var(--radius);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 6px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
  background: #eefaff;
  transform: translateY(-1px);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--yellow);
  font-weight: 900;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
  background: #fff8a8;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding-top: 64px;
  background:
    radial-gradient(circle at 18px 18px, rgba(0, 175, 239, 0.16) 2px, transparent 3px) 0 0 / 34px 34px,
    linear-gradient(135deg, #ffffff 0%, #eefaff 46%, #fff8d8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -34px -12%;
  height: 100px;
  background: var(--white);
  transform: rotate(-2deg);
}

.hero-ink {
  position: absolute;
  width: 36%;
  height: 180px;
  opacity: 0.95;
  transform: rotate(-7deg);
  border-radius: 0 0 8px 8px;
}

.hero-ink-cyan {
  top: 110px;
  right: -9%;
  background: var(--cyan);
}

.hero-ink-magenta {
  bottom: 90px;
  left: -12%;
  background: var(--magenta);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 52px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--magenta);
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 8px;
  background: linear-gradient(90deg, var(--cyan) 0 33%, var(--magenta) 33% 66%, var(--yellow) 66% 100%);
  border: 1px solid var(--ink);
}

.hero-subtitle {
  max-width: 560px;
  font-size: 1.2rem;
  color: var(--gray-700);
}

.hero-actions,
.cta-grid {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 950;
  line-height: 1.1;
  border: 2px solid var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.btn-primary {
  color: var(--white);
  background: var(--magenta);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--cyan-dark);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.btn-secondary {
  color: var(--ink);
  background: var(--white);
  box-shadow: 6px 6px 0 var(--cyan);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--yellow);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--cyan);
}

.btn-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--yellow);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-tags span {
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 3px 3px 0 rgba(18, 18, 18, 0.15);
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}

.floating-label {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 0.8rem;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 950;
  box-shadow: 4px 4px 0 var(--ink);
  animation: floatLabel 4s ease-in-out infinite;
}

.label-cyan {
  top: 12%;
  left: -16px;
  background: var(--cyan);
  color: var(--white);
}

.label-yellow {
  right: 6%;
  top: 6%;
  background: var(--yellow);
  animation-delay: 600ms;
}

.label-magenta {
  bottom: 9%;
  left: 10%;
  color: var(--white);
  background: var(--magenta);
  animation-delay: 1000ms;
}

@keyframes floatLabel {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 54px;
}

.split-layout.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
}

.text-stack {
  display: grid;
  gap: 18px;
}

.text-stack h2,
.section-heading h2 {
  max-width: 780px;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
}

.image-frame {
  position: relative;
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--ink);
  background: repeating-linear-gradient(45deg, rgba(0, 175, 239, 0.14) 0 10px, rgba(236, 38, 143, 0.12) 10px 20px, rgba(255, 242, 18, 0.18) 20px 30px);
  border-radius: var(--radius);
}

.image-frame img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  box-shadow: var(--soft-shadow);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.proof-grid div {
  min-height: 96px;
  padding: 1rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 4px 4px 0 rgba(0, 175, 239, 0.32);
}

.proof-grid strong {
  display: block;
  color: var(--magenta);
  font-size: 1.25rem;
  font-weight: 950;
}

.proof-grid span {
  display: block;
  margin-top: 5px;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 700;
}

.services {
  background:
    linear-gradient(90deg, rgba(255, 242, 18, 0.14), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

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

.service-card {
  min-height: 348px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 1.25rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 6px 6px 0 rgba(18, 18, 18, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 12px 0 rgba(18, 18, 18, 0.14);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  background: var(--white);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p {
  flex: 1;
  font-size: 0.96rem;
}

.service-card a {
  width: fit-content;
  color: var(--ink);
  font-weight: 950;
  border-bottom: 3px solid currentColor;
  transition: color 180ms ease, transform 180ms ease;
}

.service-card a:hover,
.service-card a:focus-visible {
  color: var(--magenta);
  transform: translateX(3px);
}

.card-cyan {
  border-color: var(--cyan-dark);
}

.card-cyan .service-icon {
  color: var(--white);
  background: var(--cyan);
}

.card-yellow .service-icon {
  color: var(--ink);
  background: var(--yellow);
}

.card-magenta {
  border-color: var(--magenta);
}

.card-magenta .service-icon {
  color: var(--white);
  background: var(--magenta);
}

.card-ink .service-icon {
  color: var(--white);
  background: var(--ink);
}

.portfolio {
  background: var(--gray-100);
}

.portfolio-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 14px;
  margin-bottom: 20px;
  scrollbar-width: thin;
}

.tab-button {
  flex: 0 0 auto;
  min-height: 42px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 0.55rem 0.78rem;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.tab-button:hover,
.tab-button:focus-visible,
.tab-button.is-active {
  background: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  overflow: visible;
  padding: 10px 0 32px;
}

.portfolio-item {
  position: relative;
  min-height: 0;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.portfolio-item[hidden] {
  display: none;
}

.portfolio-item img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  filter: blur(2.5px) brightness(0.66) saturate(0.92);
  transform: scale(1.04);
  transform-origin: center center;
  transition: transform 420ms ease, filter 260ms ease, box-shadow 420ms ease, border-radius 420ms ease;
  will-change: transform;
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(135deg, rgba(0, 175, 239, 0.22), rgba(236, 38, 143, 0.18)),
    linear-gradient(0deg, rgba(18, 18, 18, 0.18), rgba(18, 18, 18, 0.18));
  opacity: 1;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.portfolio-item figcaption {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: calc(100% - 34px);
  padding: 0;
  border-radius: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  font-weight: 950;
  text-align: center;
  line-height: 1.18;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.92);
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: opacity 180ms ease, transform 180ms ease;
}

.portfolio-item:hover img,
.portfolio-item:focus-within img {
  filter: blur(0) brightness(1) saturate(1);
  transform: scale(1.16);
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(18, 18, 18, 0.28);
}

.portfolio-item:hover,
.portfolio-item:focus-within {
  overflow: visible;
  z-index: 40;
  box-shadow: 8px 12px 0 rgba(18, 18, 18, 0.16);
}

.portfolio-item:hover::after,
.portfolio-item:focus-within::after {
  opacity: 0;
}

.portfolio-item:hover figcaption,
.portfolio-item:focus-within figcaption {
  opacity: 0;
  transform: translate(-50%, -42%);
}

.feature-section {
  background: #ffffff;
}

.check-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 4px 0 8px;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 28px;
  display: flex;
  align-items: center;
  padding-left: 38px;
  color: var(--gray-700);
  font-weight: 750;
  line-height: 1.35;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: 2px 2px 0 var(--ink);
  transform: translateY(-50%);
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 8px;
  height: 13px;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  transform: translateY(-58%) rotate(40deg);
}

.facade-section {
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.visual-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.visual-panel {
  display: grid;
  gap: 16px;
  padding: 1rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.visual-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.visual-panel p {
  margin-top: 8px;
}

.why {
  background:
    radial-gradient(circle at 12px 12px, rgba(236, 38, 143, 0.12) 2px, transparent 3px) 0 0 / 28px 28px,
    #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.why-item {
  min-height: 210px;
  padding: 1.2rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 5px 5px 0 rgba(0, 175, 239, 0.28);
}

.why-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--magenta);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 950;
}

.why-item h3 {
  margin-bottom: 10px;
}

.why-item p {
  font-size: 0.95rem;
}

.cta-strip {
  padding: 58px 0;
  color: var(--white);
  background: linear-gradient(105deg, var(--cyan) 0%, var(--cyan) 18%, var(--magenta) 50%, var(--yellow) 100%);
  background-size: 100% 100%;
}

.cta-grid {
  justify-content: space-between;
  gap: 24px;
}

.cta-grid > div {
  max-width: 740px;
}

.cta-grid .eyebrow,
.cta-grid h2,
.cta-grid p {
  color: var(--white);
  text-shadow: 0 2px 10px rgba(18, 18, 18, 0.18);
}

.cta-grid .eyebrow::before {
  background: var(--white);
  border-color: var(--white);
}

.contact {
  background:
    linear-gradient(180deg, #ffffff 0%, #eefaff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 22px;
  align-items: stretch;
}

.contact-info,
.contact-actions,
.map-card {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.contact-info {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  isolation: isolate;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(238, 250, 255, 0.76)),
    rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.contact-info::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.13;
  background-image:
    url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2300AFEF' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M34 44h56v36H34z'/%3E%3Cpath d='M42 80v22h40V80'/%3E%3Cpath d='M102 42l24 24-24 24-24-24z'/%3E%3Cpath d='M128 120h34'/%3E%3Cpath d='M145 103v34'/%3E%3Cpath d='M28 132h54'/%3E%3Cpath d='M28 148h72'/%3E%3C/g%3E%3Cg fill='%23EC268F' opacity='.8'%3E%3Ccircle cx='136' cy='46' r='9'/%3E%3Ccircle cx='154' cy='64' r='6'/%3E%3C/g%3E%3Cg fill='%23FFF212' stroke='%23121212' stroke-width='3'%3E%3Cpath d='M116 126h26v26h-26z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 190px 190px;
  background-position: 18px 16px;
}

.contact-info::after {
  content: "";
  position: absolute;
  inset: -30% -12% auto auto;
  z-index: -1;
  width: 320px;
  height: 320px;
  border: 2px solid rgba(0, 175, 239, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(90deg, rgba(0, 175, 239, 0.14), rgba(236, 38, 143, 0.1)),
    radial-gradient(circle at 35% 35%, rgba(255, 242, 18, 0.2), transparent 58%);
}

.contact-line,
address {
  min-height: 94px;
  display: grid;
  align-content: start;
  gap: 7px;
  margin: 0;
  padding: 1.35rem 1.45rem;
  color: var(--gray-700);
  font-style: normal;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(18, 18, 18, 0.18);
  border-style: solid;
  border-width: 0 0 1px 0;
}

.contact-line:nth-child(odd),
address:nth-child(odd) {
  border-right-width: 1px;
}

.contact-line:nth-last-child(-n + 2),
address:nth-last-child(-n + 2) {
  border-bottom-width: 0;
}

.contact-line strong,
address strong {
  color: var(--ink);
  font-size: 0.83rem;
  text-transform: uppercase;
}

.contact-line a {
  color: var(--cyan-dark);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-line a:hover,
.contact-line a:focus-visible {
  color: var(--magenta);
}

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

.contact-button {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  font-weight: 950;
  line-height: 1.12;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.contact-button:hover,
.contact-button:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.contact-button.whatsapp {
  background: #dff8e9;
}

.contact-button.email {
  background: #eefaff;
}

.contact-button.maps {
  background: var(--yellow);
}

.contact-button.instagram {
  background: #ffe9f6;
}

.map-card {
  position: relative;
  grid-column: 1 / -1;
  min-height: 260px;
  overflow: hidden;
  isolation: isolate;
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 175, 239, 0.16) 2px, transparent 2px) 0 0 / 76px 76px,
    linear-gradient(0deg, rgba(236, 38, 143, 0.15) 2px, transparent 2px) 0 0 / 76px 76px,
    linear-gradient(135deg, #ffffff, #f0fbff);
}

.map-grid::before,
.map-grid::after {
  content: "";
  position: absolute;
  height: 24px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  transform: rotate(-13deg);
}

.map-grid::before {
  width: 80%;
  top: 92px;
  left: -70px;
}

.map-grid::after {
  width: 58%;
  right: -40px;
  bottom: 60px;
  background: var(--cyan);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 54px;
  height: 54px;
  background: var(--magenta);
  border: 3px solid var(--ink);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 7px 7px 0 rgba(18, 18, 18, 0.16);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--ink);
}

.map-copy {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 520px;
  display: grid;
  gap: 5px;
  padding: 1rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--gray-700);
  box-shadow: 4px 4px 0 rgba(18, 18, 18, 0.12);
}

.map-copy strong {
  color: var(--ink);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(220px, 0.65fr);
  gap: 28px;
  align-items: start;
  padding: 46px 0;
}

.site-footer img {
  width: min(250px, 82vw);
  max-width: 250px;
  margin-bottom: 14px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 10px;
}

.site-footer a {
  font-weight: 800;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--yellow);
}

.footer-bottom {
  padding: 16px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  font-size: 0.9rem;
}

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

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

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

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

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

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 82px 12px auto 12px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .main-nav a {
    min-height: 48px;
  }

  .hero-grid,
  .split-layout,
  .split-layout.reverse {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-media img {
    min-height: 0;
  }

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

@media (max-width: 860px) {
  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .section-band {
    padding: 68px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .proof-grid,
  .why-grid,
  .visual-pair,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 24px;
  }
}

@media (max-width: 620px) {
  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 148px;
  }

  .main-nav {
    inset: 74px 12px auto 12px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions,
  .btn,
  .contact-button {
    width: 100%;
  }

  .btn {
    min-height: 56px;
  }

  .floating-label {
    min-height: 34px;
    font-size: 0.82rem;
  }

  .label-cyan {
    left: 8px;
  }

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

  .service-card {
    min-height: auto;
  }

  .portfolio-item {
    min-height: 230px;
  }

  .portfolio-item img {
    min-height: 0;
  }

  .map-copy {
    right: 16px;
    left: 16px;
    bottom: 16px;
  }

  .map-card {
    min-height: 300px;
  }
}
