@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --purple: #9b7acc;
  --yellow: #f0c40c;
  --gray: #7a8899;
  --turquoise: #22bdaf;
  --coral: #ff6666;
  --off-white: #f9f9f9;
  --white: var(--off-white);
  --ink: #202129;
  --line: var(--gray);
  --purple-deep: var(--purple);
  --purple-soft: var(--off-white);
  --yellow-deep: var(--ink);
  --yellow-soft: var(--off-white);
  --gray-deep: var(--ink);
  --gray-soft: var(--off-white);
  --turquoise-deep: var(--turquoise);
  --turquoise-soft: var(--off-white);
  --coral-deep: var(--coral);
  --coral-soft: var(--off-white);
  --header-height: 100px;
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 42px;
  --shadow-soft: 0 18px 44px rgba(32, 33, 41, 0.12);
  --container: min(1220px, calc(100% - 56px));
  --section-space: clamp(76px, 8.5vw, 124px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  background: var(--white);
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--gray);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.05rem, 5.6vw, 5.35rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 4.35vw, 4rem);
}

h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

p {
  margin-bottom: 1.2em;
  text-wrap: pretty;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1200;
  top: 12px;
  left: 16px;
  padding: 10px 18px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--off-white);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.narrow {
  width: min(760px, 100%);
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section-sm {
  padding-block: clamp(58px, 7vw, 94px);
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
}

.lead {
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(1.06rem, 1.55vw, 1.25rem);
  line-height: 1.58;
}

.text-purple {
  color: var(--purple);
}

.text-turquoise {
  color: var(--turquoise);
}

.text-coral {
  color: var(--coral);
}

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

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease,
    border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary,
.btn-secondary,
.btn-light,
.btn-ghost-light {
  border-color: var(--purple);
  background: var(--off-white);
  color: var(--purple);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-light:hover,
.btn-ghost-light:hover {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--off-white);
}

.btn-arrow {
  font-size: 1.15em;
  transition: transform 180ms ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: var(--off-white);
  transition: min-height 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled {
  min-height: var(--header-height);
  border-color: var(--line);
  box-shadow: 0 10px 32px rgba(53, 66, 82, 0.08);
}

.header-inner {
  display: flex;
  min-height: inherit;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 1 auto;
  align-items: center;
  gap: 14px;
  color: var(--gray-deep);
  text-decoration: none;
}

.brand-logo {
  width: 68px;
  height: auto;
  flex: 0 0 auto;
}

.brand-copy {
  max-width: 310px;
  color: var(--gray);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.25;
  text-transform: uppercase;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--purple);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.desktop-nav a:hover {
  background: var(--off-white);
  color: var(--purple);
  box-shadow: inset 0 0 0 2px var(--purple);
}

.desktop-nav a[aria-current="page"] {
  background: var(--purple);
  color: var(--off-white);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  border: 2px solid var(--purple);
  background: var(--off-white);
  color: var(--ink);
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: auto;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before {
  position: absolute;
  inset: -7px 0 auto;
}

.menu-lines::after {
  position: absolute;
  inset: 7px 0 auto;
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 990;
  inset: var(--header-height) 0 0;
  display: grid;
  padding: 34px 24px 28px;
  transform: translateX(105%);
  background: var(--off-white);
  opacity: 0;
  visibility: hidden;
  transition: transform 240ms ease, opacity 180ms ease, visibility 240ms;
}

.nav-open .mobile-nav {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul {
  display: grid;
  align-content: start;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--purple);
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav a::after {
  color: var(--purple);
  content: "→";
}

.mobile-nav a[aria-current="page"] {
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--purple);
  color: var(--off-white);
}

.mobile-nav a[aria-current="page"]::after {
  color: var(--off-white);
}

.mobile-nav-footer {
  align-self: end;
  color: var(--gray);
  font-size: 0.9rem;
}

/* Organic visual system */
.organic-bg {
  isolation: isolate;
  overflow: hidden;
}

.organic-bg::before,
.organic-bg::after {
  position: absolute;
  z-index: -1;
  border-radius: 44% 56% 61% 39% / 55% 33% 67% 45%;
  content: "";
  filter: blur(0);
  pointer-events: none;
}

.organic-bg::before {
  top: 4%;
  right: -12%;
  width: 44vw;
  height: 32vw;
  max-height: 500px;
  background: var(--turquoise);
  opacity: 0.12;
  animation: float-shape 12s ease-in-out infinite alternate;
}

.organic-bg::after {
  bottom: -12%;
  left: -8%;
  width: 36vw;
  height: 28vw;
  background: var(--yellow);
  opacity: 0.13;
  animation: float-shape 15s ease-in-out infinite alternate-reverse;
}

@keyframes float-shape {
  from {
    transform: translate3d(0, 0, 0) rotate(0);
  }
  to {
    transform: translate3d(18px, -14px, 0) rotate(4deg);
  }
}

/* Home hero */
.home-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding-block: clamp(58px, 6.5vw, 92px);
  background: var(--off-white);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(470px, 1.06fr);
  align-items: center;
  gap: clamp(58px, 8vw, 110px);
}

.home-hero h1 {
  max-width: 690px;
  font-size: clamp(3.5rem, 5.7vw, 5.45rem);
  line-height: 1.01;
}

.home-hero .lead {
  max-width: 650px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-photo-wrap {
  position: absolute;
  inset: 1% 1% 3% 2%;
  overflow: hidden;
  border-radius: 46% 54% 35% 65% / 43% 38% 62% 57%;
  background: var(--off-white);
  box-shadow: var(--shadow-soft);
}

.hero-photo-wrap picture,
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
}

.hero-photo-wrap img {
  object-fit: cover;
  object-position: 51% center;
}

.hero-float-card {
  position: absolute;
  right: -2%;
  bottom: 3%;
  width: min(300px, 66%);
  padding: 22px 24px;
  border: 8px solid var(--white);
  border-radius: var(--radius-md);
  background: var(--purple);
  box-shadow: var(--shadow-soft);
  color: var(--off-white);
}

.hero-float-card strong {
  display: block;
  font-size: 1.24rem;
  line-height: 1.25;
}

.hero-float-card span {
  display: block;
  margin-top: 6px;
  color: var(--off-white);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-dot-field {
  position: absolute;
  top: 0;
  right: 0;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-image: radial-gradient(var(--coral) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.42;
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  top: 11%;
  left: -2%;
  display: grid;
  width: 114px;
  aspect-ratio: 1;
  place-items: center;
  padding: 15px;
  transform: rotate(-8deg);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.hero-stamp span {
  display: block;
  white-space: nowrap;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: var(--gray);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue::before {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  content: "";
}

/* Shared editorial layouts */
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.split-grid.align-start {
  align-items: start;
}

.photo-collage {
  position: relative;
  min-height: 590px;
}

.photo-card {
  position: absolute;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: var(--radius-md);
  background: var(--gray-soft);
  box-shadow: var(--shadow-soft);
}

.photo-card picture,
.photo-card img {
  width: 100%;
  height: 100%;
}

.photo-card img {
  object-fit: cover;
}

.photo-card.main {
  inset: 0 18% 15% 0;
}

.photo-card.accent {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 48%;
  transform: rotate(4deg);
}

.collage-mark {
  position: absolute;
  z-index: -1;
  top: -25px;
  right: 4%;
  width: 42%;
  height: 36%;
  border-radius: 37% 63% 60% 40% / 54% 41% 59% 46%;
  background: var(--turquoise);
  opacity: 0.2;
}

.definition-quote {
  margin: 36px 0 0;
  padding: 26px 28px;
  border-left: 5px solid var(--yellow);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--off-white);
  color: var(--gray-deep);
  font-size: 1.08rem;
}

.pillar-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

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

.pillar-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.pillar-item:first-child {
  border-top: 0;
}

.pillar-number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  background: var(--purple-soft);
  color: var(--purple-deep);
  font-weight: 800;
}

.pillar-item:nth-child(2) .pillar-number {
  background: var(--yellow-soft);
  color: var(--yellow);
}

.pillar-item:nth-child(3) .pillar-number {
  background: var(--turquoise-soft);
  color: var(--turquoise-deep);
}

.pillar-item:nth-child(4) .pillar-number {
  background: var(--coral-soft);
  color: var(--coral-deep);
}

.pillar-item h3 {
  margin-bottom: 7px;
  color: var(--purple);
  font-size: 1.38rem;
}

.pillar-item p {
  margin: 0;
  color: var(--ink);
}

.app-band {
  overflow: hidden;
  background: var(--purple);
  color: var(--off-white);
}

.app-band::before {
  position: absolute;
  inset: auto auto -45% -8%;
  width: 52vw;
  height: 52vw;
  border-radius: 43% 57% 68% 32% / 54% 40% 60% 46%;
  background: var(--turquoise);
  content: "";
  opacity: 0.22;
}

.app-band h2,
.app-band h3 {
  color: var(--off-white);
}

.app-band-highlight {
  color: var(--yellow);
}

.app-band .section-kicker {
  color: var(--off-white);
}

.app-band .section-kicker::before {
  background: var(--yellow);
}

.app-band .lead,
.app-band p {
  color: var(--off-white);
}

.app-band-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(54px, 9vw, 130px);
}

.phone-stage {
  position: relative;
  min-height: 630px;
}

.phone-gif {
  position: absolute;
  z-index: 1;
  inset: 50% auto auto 50%;
  width: min(68%, 340px);
  max-height: 600px;
  transform: translate(-50%, -50%);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 28px 35px rgba(24, 20, 39, 0.3));
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.store-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border-radius: 8px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.store-link:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.store-link img {
  width: 150px;
  height: 44px;
}

.territory-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.territory-visual {
  position: relative;
  padding: clamp(20px, 4vw, 46px);
  border-radius: var(--radius-lg);
  background: var(--off-white);
}

.territory-visual img {
  width: 100%;
}

.territory-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--gray);
  font-size: 0.82rem;
  line-height: 1.4;
}

.territory-note::before {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--turquoise);
  content: "";
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 7vw, 82px);
  border-radius: var(--radius-lg);
  background: var(--purple);
  color: var(--off-white);
}

.cta-panel::after {
  position: absolute;
  right: -10%;
  bottom: -60%;
  width: 45%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
  opacity: 0.95;
}

.cta-panel-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta-panel h2 {
  color: var(--off-white);
}

.cta-panel p {
  color: var(--off-white);
}

.cta-panel .section-kicker {
  color: var(--off-white);
}

.cta-panel .section-kicker::before {
  background: var(--yellow);
}

.cta-panel .text-purple,
.cta-panel .text-turquoise,
.cta-panel .text-coral {
  color: var(--yellow);
}

/* Interior hero */
.page-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(72px, 8vw, 108px);
  background: var(--off-white);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  border-radius: 45% 55% 63% 37% / 56% 37% 63% 44%;
  content: "";
  pointer-events: none;
}

.page-hero::before {
  top: -20%;
  right: -7%;
  width: 38vw;
  height: 34vw;
  background: var(--yellow);
  opacity: 0.18;
}

.page-hero::after {
  bottom: -28%;
  left: -8%;
  width: 34vw;
  height: 30vw;
  background: var(--turquoise);
  opacity: 0.14;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(450px, 1.08fr);
  align-items: center;
  gap: clamp(50px, 8vw, 105px);
}

.page-hero h1 {
  margin-bottom: 22px;
  max-width: 790px;
  font-size: clamp(3.2rem, 5.15vw, 4.9rem);
  line-height: 1.02;
}

.page-hero h1 .headline-line {
  display: block;
}

.page-hero h1 .headline-line-nowrap {
  white-space: nowrap;
}

.page-hero .lead {
  margin-bottom: 0;
}

.page-hero-art {
  position: relative;
  min-height: 450px;
}

.page-hero-art .art-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 8px solid var(--off-white);
  border-radius: 31% 69% 35% 65% / 46% 35% 65% 54%;
  box-shadow: var(--shadow-soft);
}

.page-hero-art .art-photo picture,
.page-hero-art .art-photo img {
  width: 100%;
  height: 100%;
}

.page-hero-art .art-photo img {
  object-fit: cover;
}

.art-label {
  position: absolute;
  z-index: 2;
  right: -1%;
  bottom: 4%;
  max-width: 230px;
  padding: 17px 20px;
  border-radius: 18px;
  background: var(--coral);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  transform: rotate(3deg);
}

.art-label.yellow {
  background: var(--yellow);
  color: var(--ink);
}

.art-label.turquoise {
  background: var(--turquoise);
  color: var(--ink);
}

body[data-page="aplicativo"] .page-hero-art .art-photo img {
  object-position: center;
}

body[data-page="projeto"] .page-hero-art .art-photo img,
body[data-page="contato"] .page-hero-art .art-photo img {
  object-position: center 46%;
}

body[data-page="lugares"] .page-hero-art .art-photo img {
  object-position: center 54%;
}

/* Project */
.project-intro-card {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(38px, 5vw, 64px);
  padding: clamp(30px, 5vw, 64px);
  border-radius: var(--radius-lg);
  background: var(--purple);
  color: var(--off-white);
}

.project-intro-card h2 {
  color: var(--off-white);
}

.project-intro-card p {
  color: var(--off-white);
}

.project-intro-card .section-kicker {
  color: var(--off-white);
}

.project-intro-card .section-kicker::before {
  background: var(--yellow);
}

.project-intro-card .text-purple,
.project-intro-card .text-turquoise,
.project-intro-card .text-coral {
  color: var(--yellow);
}

.project-intro-photo {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 44px rgba(32, 33, 41, 0.18);
}

.project-intro-photo picture,
.project-intro-photo img {
  width: 100%;
  height: 100%;
}

.project-intro-photo img {
  object-fit: cover;
  object-position: 52% center;
}

.workshop-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(48px, 8vw, 110px);
}

.hours-badge {
  display: inline-grid;
  width: 190px;
  aspect-ratio: 1;
  place-content: center;
  margin-top: 28px;
  border-radius: 46% 54% 58% 42% / 56% 43% 57% 44%;
  background: var(--yellow);
  color: var(--ink);
  text-align: center;
  transform: rotate(-4deg);
}

.hours-badge strong {
  display: block;
  font-size: 3rem;
  line-height: 0.9;
}

.hours-badge span {
  display: block;
  margin-top: 9px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}

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

.method-column {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.method-column-header {
  padding: 24px 26px;
  background: var(--coral);
  color: var(--off-white);
}

.method-column-header h3 {
  color: inherit;
}

.method-column:nth-child(2) .method-column-header {
  background: var(--turquoise);
  color: var(--off-white);
}

.method-column-header small {
  display: block;
  margin-top: 4px;
  color: inherit;
  opacity: 0.82;
}

.method-list {
  margin: 0;
  padding: 12px 26px 22px;
  list-style: none;
}

.method-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.method-list li:last-child {
  border-bottom: 0;
}

.method-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gray);
  font-size: 1.02rem;
}

.method-list span {
  display: block;
  color: var(--gray);
  font-size: 0.94rem;
  line-height: 1.5;
}

.continuity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(52px, 8vw, 105px);
}

.continuity-visual {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
}

.continuity-visual figure {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-md);
}

.continuity-visual figure:first-child {
  grid-row: 1 / 3;
}

.continuity-visual picture,
.continuity-visual img {
  width: 100%;
  height: 100%;
}

.continuity-visual img {
  object-fit: cover;
}

.support-panel {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
}

.support-panel p {
  width: min(720px, 100%);
  margin-inline: auto;
  color: var(--ink);
}

.support-panel img {
  width: min(900px, 100%);
  margin: 30px auto 0;
}

/* Application */
.app-intro {
  text-align: center;
}

.app-intro .lead,
.app-intro .narrow {
  margin-inline: auto;
}

.app-showcase {
  display: grid;
  grid-template-columns: minmax(310px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(54px, 9vw, 120px);
  margin-top: 70px;
}

.demo-device {
  position: relative;
  width: min(330px, 88vw);
  margin-inline: auto;
  padding: 14px;
  border: 4px solid #202129;
  border-radius: 46px;
  background: #202129;
  box-shadow: 0 30px 65px rgba(44, 48, 60, 0.25);
}

.demo-device::before {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 50%;
  width: 34%;
  height: 19px;
  transform: translateX(-50%);
  border-radius: 0 0 14px 14px;
  background: #202129;
  content: "";
}

.demo-device-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.493;
  border-radius: 30px;
  background: var(--white);
}

.app-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms;
}

.app-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.app-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.app-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 34px;
}

.app-tab {
  min-height: 46px;
  padding: 9px 18px;
  border: 2px solid var(--purple);
  border-radius: 999px;
  background: var(--off-white);
  color: var(--purple);
  font-weight: 700;
}

.app-tab:hover,
.app-tab[aria-selected="true"] {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--off-white);
}

.app-panel-copy {
  display: none;
}

.app-panel-copy.is-active {
  display: block;
}

.app-panel-copy p {
  color: var(--ink);
}

.category-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.category-block {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 44px);
  background: var(--purple);
  color: var(--off-white);
}

.category-block:nth-child(2) {
  background: var(--yellow);
  color: var(--off-white);
}

.category-block:nth-child(3) {
  background: var(--turquoise);
  color: var(--off-white);
}

.category-block:nth-child(4) {
  background: var(--coral);
  color: var(--off-white);
}

.category-block .category-index {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-block h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.category-block p {
  margin: 16px 0 0;
  color: inherit;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}

.app-mosaic {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
}

.app-mosaic img {
  width: 100%;
}

.feature-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.feature-note {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.feature-note:nth-child(2) {
  background: var(--turquoise-soft);
  border-color: transparent;
}

.feature-note p:last-child {
  margin-bottom: 0;
}

.platform-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  box-shadow: inset 0 0 0 1px var(--gray);
}

.platform-editorial-copy {
  align-self: center;
  padding: clamp(40px, 6vw, 76px);
}

.platform-editorial-copy h2 {
  max-width: 650px;
}

.platform-editorial-visual {
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  background: var(--purple);
}

.platform-editorial-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-feature-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--gray);
}

.platform-feature {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: clamp(30px, 4vw, 48px);
}

.platform-feature + .platform-feature {
  border-left: 1px solid var(--gray);
}

.platform-feature > span {
  color: var(--purple);
  font-size: 1.1rem;
  font-weight: 800;
}

.platform-feature h3 {
  margin-bottom: 8px;
  color: var(--purple);
}

.platform-feature p {
  margin: 0;
  color: var(--ink);
}

/* Places */
.place-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--purple);
  color: var(--off-white);
}

.place-feature-image {
  min-height: 570px;
}

.place-feature-image picture,
.place-feature-image img {
  width: 100%;
  height: 100%;
}

.place-feature-image img {
  object-fit: cover;
}

.place-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 72px);
}

.place-feature-copy h2 {
  color: var(--off-white);
}

.place-feature-copy p {
  color: var(--off-white);
}

.place-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--off-white);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.place-meta::before {
  width: 11px;
  height: 11px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--yellow);
  content: "";
}

.territorial-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.territorial-list li {
  display: grid;
  min-height: 120px;
  place-items: center;
  padding: 22px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  color: var(--gray-deep);
  font-weight: 700;
  text-align: center;
}

.territorial-list li:nth-child(2) {
  background: var(--yellow-soft);
}

.territorial-list li:nth-child(3) {
  background: var(--turquoise-soft);
}

.territorial-list li:nth-child(4) {
  background: var(--coral-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 16px;
  margin-top: 52px;
}

.gallery-item {
  grid-column: span 4;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-md);
  background: var(--gray-soft);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(5) {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(6) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-button {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.gallery-button::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--purple-deep);
  font-size: 1.3rem;
  font-weight: 700;
  content: "+";
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-button:hover::after,
.gallery-button:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-button picture,
.gallery-button img {
  width: 100%;
  height: 100%;
}

.gallery-button img {
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery-button:hover img {
  transform: scale(1.035);
}

.image-dialog {
  width: min(1040px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(22, 28, 38, 0.3);
}

.image-dialog::backdrop {
  background: rgba(26, 32, 43, 0.78);
}

.dialog-figure {
  margin: 0;
}

.dialog-figure img {
  width: 100%;
  max-height: calc(100dvh - 130px);
  object-fit: contain;
  background: var(--ink);
}

.dialog-figure figcaption {
  padding: 18px 70px 20px 22px;
  color: var(--gray-deep);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--gray-deep);
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(22, 28, 38, 0.2);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(54px, 9vw, 120px);
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.contact-channels {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.contact-channel {
  display: grid;
  min-height: 72px;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--purple);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.contact-channel:hover {
  transform: translateX(5px);
  background: var(--off-white);
}

.contact-channel-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--purple);
  color: var(--off-white);
}

.contact-channel-icon svg {
  width: 21px;
  height: 21px;
}

.contact-channel-logo {
  overflow: hidden;
  background: var(--off-white);
  box-shadow: inset 0 0 0 1px var(--purple);
}

.contact-channel-logo img {
  width: 30px;
  height: auto;
}

.contact-channel-label {
  display: grid;
  min-width: 0;
}

.contact-channel-label small {
  color: var(--gray);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-channel-label strong {
  overflow-wrap: anywhere;
  color: var(--purple);
  font-size: 0.94rem;
  line-height: 1.3;
}

.contact-channel-arrow {
  color: var(--purple);
  font-size: 1.15rem;
  font-weight: 800;
}

.contact-form-wrap {
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius-lg);
  background: var(--off-white);
}

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

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

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--gray-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid var(--gray);
  border-radius: 13px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(155, 122, 204, 0.2);
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--coral);
}

.field-error {
  min-height: 1.25em;
  margin: 0;
  padding-inline: 6px;
  background: var(--coral);
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.25;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 6px;
}

.form-status {
  flex: 1 1 250px;
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.45;
}

.static-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 26px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.45;
}

.static-note-icon {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--purple);
}

.static-note-icon svg {
  width: 17px;
  height: 17px;
}

/* Footer */
.site-footer {
  padding: 70px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--off-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.65fr 0.65fr 0.9fr;
  gap: clamp(34px, 6vw, 76px);
}

.footer-brand img {
  width: 82px;
}

.footer-brand p {
  max-width: 310px;
  margin: 20px 0 0;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 200;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-title {
  margin-bottom: 18px;
  color: var(--gray-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.92rem;
  text-decoration: none;
}

.footer-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--purple);
}

.footer-tatenda-logo {
  width: 18px;
  height: auto;
  flex: 0 0 auto;
}

.footer-links a:hover {
  color: var(--ink);
  background: var(--yellow);
  text-decoration: underline;
}

.footer-store-links {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.footer-store-links img {
  width: 136px;
  height: auto;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.8rem;
}

.footer-bottom > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--purple);
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom > a:hover {
  text-decoration: underline;
}

.footer-bottom > span a {
  color: var(--purple);
  font-weight: 700;
}

.footer-bottom > span a.footer-credit-tatenda {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #000000;
  font-weight: 400;
}

.footer-credit-tatenda img {
  width: 18px;
  height: auto;
}

.footer-back-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid var(--purple);
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal[data-delay="1"] {
  transition-delay: 90ms;
}

.reveal[data-delay="2"] {
  transition-delay: 180ms;
}

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

/* Responsive */
@media (max-width: 1100px) {
  :root {
    --container: min(100% - 40px, 1020px);
  }

  .brand-copy {
    display: none;
  }

  .home-hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(400px, 1.02fr);
    gap: 45px;
  }

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

  .page-hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 46px;
  }

  .phone-stage {
    min-height: 560px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 0.8fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 96px;
    --section-space: 92px;
  }

  body {
    font-size: 17px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .brand-logo {
    width: 58px;
  }

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

  .home-hero-grid,
  .split-grid,
  .pillar-layout,
  .app-band-grid,
  .territory-grid,
  .page-hero-grid,
  .workshop-summary,
  .continuity-grid,
  .app-showcase,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(650px, 100%);
    min-height: 610px;
    margin-inline: auto;
  }

  .scroll-cue {
    display: none;
  }

  .photo-collage {
    width: min(680px, 100%);
    margin-inline: auto;
  }

  .pillar-layout > :first-child {
    max-width: 680px;
  }

  .app-band-grid {
    gap: 30px;
  }

  .app-band-copy {
    order: -1;
  }

  .phone-stage {
    width: min(620px, 100%);
    min-height: 650px;
    margin-inline: auto;
  }

  .territory-grid {
    gap: 36px;
  }

  .territory-visual {
    width: min(680px, 100%);
    margin-inline: auto;
  }

  .page-hero-art {
    width: min(620px, 100%);
    margin-inline: auto;
  }

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

  .project-intro-photo {
    min-height: 420px;
    aspect-ratio: 16 / 10;
  }

  .hours-badge {
    width: 160px;
  }

  .continuity-visual {
    order: -1;
  }

  .app-showcase {
    margin-top: 48px;
  }

  .app-demo-copy {
    max-width: 680px;
  }

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

  .category-block {
    min-height: 240px;
  }

  .place-feature {
    grid-template-columns: 1fr;
  }

  .place-feature-image {
    min-height: 480px;
  }

  .contact-copy {
    position: static;
  }

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

  .footer-downloads {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  :root {
    --container: calc(100% - 32px);
    --radius-lg: 30px;
    --radius-md: 22px;
    --section-space: 78px;
  }

  h1 {
    font-size: clamp(2.65rem, 12.5vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.1rem, 9.8vw, 3.25rem);
  }

  .button-row,
  .button-row .btn {
    width: 100%;
  }

  .home-hero {
    padding-top: 56px;
  }

  .home-hero h1 {
    font-size: clamp(2.85rem, 12.4vw, 4.35rem);
  }

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

  .hero-photo-wrap {
    inset: 0 2% 5% 2%;
  }

  .hero-stamp {
    top: 4%;
    left: -1%;
    width: 94px;
    font-size: 0.67rem;
  }

  .hero-float-card {
    right: 0;
    width: min(280px, 78%);
  }

  .photo-collage {
    min-height: 510px;
  }

  .photo-card.main {
    right: 12%;
  }

  .pillar-item {
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }

  .pillar-number {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .phone-stage {
    min-height: 560px;
  }

  .phone-gif {
    width: min(72%, 320px);
  }

  .page-hero {
    min-height: auto;
    padding-block: 62px 82px;
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 9.45vw, 3.45rem);
    letter-spacing: -0.042em;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }

  .page-hero-art {
    min-height: 350px;
    margin-top: 8px;
  }

  .project-intro-photo {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .method-columns,
  .feature-columns,
  .platform-editorial,
  .platform-feature-row {
    grid-template-columns: 1fr;
  }

  .platform-editorial-visual {
    min-height: 420px;
  }

  .platform-feature-row {
    grid-column: auto;
  }

  .platform-feature + .platform-feature {
    border-top: 1px solid var(--gray);
    border-left: 0;
  }

  .continuity-visual {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 180px;
  }

  .continuity-visual figure:first-child {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .category-ribbon {
    grid-template-columns: 1fr;
  }

  .category-block {
    min-height: 220px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

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

  .form-field.full,
  .form-actions {
    grid-column: auto;
  }

  .form-actions .btn {
    width: 100%;
  }

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

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

  .footer-downloads {
    grid-column: auto;
  }

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

@media (max-width: 460px) {
  :root {
    --container: calc(100% - 24px);
    --header-height: 88px;
  }

  body {
    font-size: 16px;
  }

  .header-inner {
    gap: 12px;
  }

  .brand-logo {
    width: 52px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .mobile-nav {
    padding-inline: 16px;
  }

  .mobile-nav a {
    min-height: 58px;
    font-size: 1.25rem;
  }

  .home-hero {
    padding-top: 44px;
  }

  .home-hero h1 {
    margin-bottom: 22px;
  }

  .home-hero-grid {
    gap: 48px;
  }

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

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

  .hero-dot-field {
    width: 120px;
    height: 120px;
  }

  .hero-stamp {
    width: 78px;
    padding: 10px;
    font-size: 0.58rem;
  }

  .hero-float-card {
    bottom: -3%;
    width: 82%;
    padding: 16px 18px;
    border-width: 5px;
  }

  .photo-collage {
    min-height: 410px;
  }

  .photo-card {
    border-width: 5px;
  }

  .phone-stage {
    min-height: 440px;
  }

  .phone-gif {
    width: min(70%, 255px);
    max-height: 420px;
  }

  .cta-panel {
    padding: 38px 24px 52px;
  }

  .page-hero-art {
    min-height: 290px;
  }

  .page-hero-art .art-photo {
    inset-inline: 1%;
    border-width: 5px;
  }

  .art-label {
    right: 0;
    bottom: -8%;
    max-width: 190px;
    padding: 13px 15px;
    font-size: 0.82rem;
  }

  .project-intro-card,
  .place-feature-copy,
  .contact-form-wrap {
    padding: 28px 22px;
  }

  .continuity-visual {
    grid-template-rows: 230px 140px;
  }

  .app-tabs {
    display: flex;
    flex-wrap: wrap;
  }

  .app-tab {
    width: auto;
  }

  .platform-editorial-copy,
  .platform-feature {
    padding: 28px 22px;
  }

  .platform-editorial-visual {
    min-height: 280px;
  }

  .place-feature-image {
    min-height: 340px;
  }

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

  .territorial-list li {
    min-height: 86px;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

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

  .footer-brand,
  .footer-downloads {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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