:root {
  --ink: #111111;
  --paper: #fff4d6;
  --cream: #fffaf0;
  --white: #ffffff;
  --mustard: #f6c62f;
  --orange: #ff922b;
  --grape: #8a63eb;
  --blush: #f7c6d3;
  --highlight: #f7ef61;
  --lime: #d3ef6d;
  --shadow-lg: 9px 9px 0 var(--ink);
  --shadow-md: 6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

main {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Archivo Black", sans-serif;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

p {
  font-size: 1rem;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
  position: relative;
}

.section-tight {
  padding: 60px 0;
}

.bg-white {
  background: var(--white);
}

.bg-cream {
  background: var(--cream);
}

.bg-yellow {
  background: var(--mustard);
}

.bg-pink {
  background: var(--blush);
}

.bg-grape {
  background: var(--grape);
  color: var(--white);
}

.bg-lime {
  background: var(--lime);
}

.panel {
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.panel-sm {
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  background: var(--highlight);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--orange);
}

.tilt-left {
  transform: rotate(-2.4deg);
}

.tilt-right {
  transform: rotate(2.4deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border: 3px solid var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn-primary {
  background: var(--mustard);
}

.btn-secondary {
  background: var(--grape);
  color: var(--white);
}

.btn-pink {
  background: var(--blush);
}

.btn-light {
  background: var(--white);
}

.btn-ghost {
  background: transparent;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tag-row,
.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag,
.mini-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: 0.8rem;
  font-weight: 700;
}

.tag-yellow {
  background: var(--highlight);
}

.tag-pink {
  background: var(--blush);
}

.tag-lime {
  background: var(--lime);
}

.tag-grape {
  background: var(--grape);
  color: var(--white);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-heading h2 {
  font-size: clamp(2.25rem, 4vw, 3.85rem);
  max-width: 12ch;
}

.section-heading p {
  max-width: 42ch;
  font-size: 1.03rem;
}

.section-heading.centered {
  display: block;
  text-align: center;
}

.section-heading.centered h2 {
  max-width: none;
  margin-bottom: 14px;
}

.section-heading.centered p {
  margin: 0 auto;
}

.top-bar {
  background: var(--mustard);
  border-bottom: 3px solid var(--ink);
  position: relative;
  z-index: 30;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.top-bar-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 700;
}

.top-pill svg {
  width: 16px;
  height: 16px;
  fill: var(--ink);
  flex-shrink: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 90px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  letter-spacing: -0.08em;
}

.logo .logo-free {
  color: var(--orange);
}

.logo .logo-web {
  color: var(--grape);
}

.logo-mark {
  width: 18px;
  height: 18px;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--highlight);
  box-shadow: var(--shadow-sm);
  transform: rotate(-10deg) translateY(2px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav > li {
  position: relative;
}

.nav > li > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 3px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav > li > a:hover,
.nav > li > a:focus-visible,
.nav > li > a.is-active {
  background: var(--white);
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.has-dropdown > a::after {
  content: "+";
  font-family: "Archivo Black", sans-serif;
  font-size: 0.7rem;
  line-height: 1;
}

.dropdown,
.sub-dropdown {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 14px;
}

.dropdown {
  top: calc(100% + 14px);
  left: 0;
  min-width: 260px;
  background: var(--white);
}

.sub-dropdown {
  top: 0;
  left: calc(100% + 14px);
  min-width: 240px;
  background: var(--cream);
}

.nav li:hover > .dropdown,
.nav li:hover > .sub-dropdown,
.nav li.open > .dropdown,
.nav li.open > .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown > li + li {
  margin-top: 12px;
}

.dropdown > li > a,
.sub-dropdown > li > a {
  display: block;
  padding: 12px 14px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  font-size: 0.88rem;
  font-weight: 700;
}

.dropdown > li:nth-child(1) > a {
  background: var(--highlight);
}

.dropdown > li:nth-child(2) > a {
  background: var(--mustard);
}

.dropdown > li:nth-child(3) > a {
  background: var(--blush);
}

.dropdown > li:nth-child(4) > a {
  background: var(--lime);
}

.sub-dropdown > li + li {
  margin-top: 10px;
}

.sub-dropdown > li > a {
  background: var(--white);
}

.has-sub > a {
  padding-right: 36px;
  position: relative;
}

.has-sub > a::after {
  content: "↗";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Archivo Black", sans-serif;
  font-size: 0.8rem;
}

.hamburger {
  display: none;
  width: 64px;
  height: 54px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  padding: 44px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  max-width: 9ch;
}

.hero-copy p {
  max-width: 55ch;
  margin: 24px 0 28px;
  font-size: 1.08rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.sticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 3px solid var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  background: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
}

.sticker-yellow {
  background: var(--highlight);
}

.sticker-pink {
  background: var(--blush);
}

.sticker-grape {
  background: var(--grape);
  color: var(--white);
}

.sticker-mustard {
  background: var(--mustard);
}

.sticker-lime {
  background: var(--lime);
}

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

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border: 3px solid var(--ink);
}

.hero-visual::before {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--orange);
  top: 24px;
  left: 10px;
}

.hero-visual::after {
  width: 110px;
  height: 110px;
  border-radius: 24px;
  background: var(--blush);
  right: 10px;
  bottom: 26px;
  transform: rotate(14deg);
}

.photo-stack {
  position: absolute;
  inset: 32px 36px 88px 24px;
  padding: 14px;
  background: var(--white);
}

.photo-stack img {
  height: 100%;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: 18px;
}

.metric-card,
.note-card,
.floating-card {
  position: absolute;
  padding: 20px;
}

.metric-card {
  top: 12px;
  right: 0;
  max-width: 220px;
  background: var(--mustard);
}

.metric-card strong {
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.metric-card span,
.note-card span,
.floating-card span {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.note-card {
  right: 22px;
  bottom: 0;
  max-width: 255px;
  background: var(--grape);
  color: var(--white);
}

.floating-card {
  left: 0;
  bottom: 88px;
  max-width: 245px;
  background: var(--highlight);
}

.floating-card ul {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.floating-card li {
  font-size: 0.84rem;
  font-weight: 700;
}

.client-marquee {
  overflow: hidden;
  background: var(--white);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 18px 24px;
  border-right: 3px solid var(--ink);
  font-family: "Archivo Black", sans-serif;
  font-size: 1.22rem;
  letter-spacing: -0.05em;
}

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

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

.service-card,
.feature-card,
.process-card,
.quote-card,
.team-card,
.stat-card,
.info-card,
.legal-card,
.showcase-card {
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.service-card {
  padding: 14px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.service-card:nth-child(1) {
  transform: rotate(-1.4deg);
}

.service-card:nth-child(2) {
  transform: rotate(1deg);
}

.service-card:nth-child(3) {
  transform: rotate(-0.8deg);
}

.service-card:nth-child(4) {
  transform: rotate(1.6deg);
}

.service-card .media {
  margin-bottom: 18px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 18px;
}

.service-card .media img {
  height: 100%;
  object-fit: cover;
}

.service-card h3,
.feature-card h3,
.process-card h3,
.quote-card h3,
.team-card h3,
.showcase-card h3 {
  font-size: 1.42rem;
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 18px;
}

.service-card .tag-row {
  margin-bottom: 16px;
}

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

.stat-card {
  padding: 24px;
}

.stat-card strong {
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.stat-card p {
  margin-top: 12px;
  font-size: 0.92rem;
  font-weight: 700;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 28px;
  align-items: start;
}

.content-panel,
.visual-panel,
.intro-panel,
.detail-panel,
.form-card,
.faq-block,
.cta-panel,
.map-panel {
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.content-panel,
.intro-panel,
.detail-panel,
.form-card,
.faq-block,
.legal-card,
.showcase-card {
  padding: 28px;
  background: var(--white);
}

.content-panel h2,
.intro-panel h2,
.detail-panel h2,
.faq-block h2,
.legal-card h2,
.showcase-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.content-panel p + p,
.intro-panel p + p,
.detail-panel p + p,
.legal-card p + p {
  margin-top: 14px;
}

.check-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.check-item::before {
  content: "OK";
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  background: var(--highlight);
  font-family: "Archivo Black", sans-serif;
  font-size: 0.8rem;
  letter-spacing: -0.05em;
}

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

.collage .image-main,
.collage .image-secondary,
.collage .info-burst {
  position: absolute;
}

.collage .image-main {
  inset: 26px 10px 120px 70px;
  padding: 12px;
  background: var(--white);
}

.collage .image-secondary {
  left: 0;
  bottom: 10px;
  width: 250px;
  padding: 12px;
  background: var(--blush);
}

.collage .image-main img,
.collage .image-secondary img {
  border: 3px solid var(--ink);
  border-radius: 18px;
  height: 100%;
  object-fit: cover;
}

.collage .info-burst {
  top: 0;
  right: 0;
  width: 190px;
  padding: 18px;
  background: var(--mustard);
}

.collage .info-burst strong {
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

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

.process-card {
  padding: 24px;
  background: var(--white);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  background: var(--highlight);
  font-family: "Archivo Black", sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.08em;
}

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

.quote-card {
  padding: 26px;
  background: var(--white);
}

.quote-card p {
  font-size: 0.98rem;
}

.quote-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.avatar {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  background: var(--grape);
  color: var(--white);
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
}

.quote-meta strong,
.team-card strong {
  display: block;
  font-size: 0.98rem;
}

.quote-meta span,
.team-card span {
  display: block;
  margin-top: 4px;
  font-size: 0.86rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  padding: 28px;
  background: var(--orange);
}

.cta-panel h2 {
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  margin-bottom: 16px;
}

.cta-panel .cta-side {
  padding: 22px;
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.footer {
  padding: 84px 0 24px;
  background: var(--ink);
  color: var(--paper);
}

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

.footer-card {
  padding: 24px;
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.footer-card:nth-child(1) {
  background: var(--white);
}

.footer-card:nth-child(2) {
  background: var(--mustard);
}

.footer-card:nth-child(3) {
  background: var(--blush);
}

.footer-card:nth-child(4) {
  background: var(--lime);
}

.footer-card h4 {
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.footer-card p,
.footer-card li,
.footer-card a {
  font-size: 0.94rem;
}

.footer-card ul {
  display: grid;
  gap: 10px;
}

.footer-card a {
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 0.85rem;
}

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

.page-hero {
  padding: 44px 0 30px;
}

.page-hero-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.page-hero-copy {
  padding: 28px;
  background: var(--white);
}

.page-hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin: 10px 0 16px;
}

.page-hero-copy p {
  font-size: 1.04rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.breadcrumb span {
  opacity: 0.65;
}

.page-hero-aside {
  padding: 16px;
  background: var(--mustard);
}

.page-hero-aside img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: 18px;
}

.jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.jump-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  background: var(--blush);
  font-size: 0.82rem;
  font-weight: 700;
}

.showcase-stack {
  display: grid;
  gap: 26px;
}

.showcase-card {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 24px;
  align-items: center;
  overflow: hidden;
}

.showcase-card.reverse {
  grid-template-columns: 1.12fr 0.88fr;
}

.showcase-card .showcase-media {
  padding: 16px;
}

.showcase-card .showcase-media img {
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: 18px;
}

.showcase-card .showcase-copy {
  padding: 0 28px 0 0;
}

.showcase-card.reverse .showcase-copy {
  padding: 0 0 0 28px;
}

.detail-shell {
  display: grid;
  gap: 26px;
}

.detail-section {
  padding: 22px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
}

.detail-summary {
  padding: 22px;
  background: var(--white);
}

.detail-summary h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.detail-summary p + p {
  margin-top: 12px;
}

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

.feature-card {
  padding: 22px;
  background: var(--white);
}

.icon-badge {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  background: var(--highlight);
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
}

.feature-card h3 {
  margin-top: 16px;
}

.feature-card p {
  margin-top: 10px;
  font-size: 0.96rem;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
}

.faq-question::after {
  content: "+";
  flex-shrink: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 24px;
}

.form-card {
  background: var(--white);
}

.form-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

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

.form-group {
  margin-top: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  background: var(--paper);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--white);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

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

.info-card {
  padding: 22px;
}

.info-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.info-card p + p {
  margin-top: 8px;
}

.map-panel {
  margin-top: 24px;
  padding: 14px;
  background: var(--white);
}

.map-panel iframe {
  width: 100%;
  height: 320px;
  border: 3px solid var(--ink);
  border-radius: 18px;
}

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

.team-card {
  padding: 24px;
  background: var(--white);
}

.team-card .avatar {
  margin-bottom: 18px;
}

.legal-shell {
  display: grid;
  gap: 18px;
}

.legal-card ul {
  list-style: disc;
  padding-left: 20px;
}

.legal-card li + li {
  margin-top: 10px;
}

.muted {
  opacity: 0.72;
}

.accent-line {
  display: block;
  width: 110px;
  height: 16px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  background: var(--highlight);
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-shell,
  .split-layout,
  .showcase-card,
  .showcase-card.reverse,
  .detail-grid,
  .contact-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .showcase-card .showcase-copy,
  .showcase-card.reverse .showcase-copy {
    padding: 0 28px 28px;
  }

  .card-grid,
  .process-grid,
  .quote-grid,
  .team-grid,
  .feature-grid,
  .stats-board,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-bottom: 14px;
    max-width: none;
  }
}

@media (max-width: 820px) {
  .hamburger {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    top: 108px;
    left: 12px;
    right: 12px;
    z-index: 50;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 0;
    border-radius: 24px;
    box-shadow: none;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.2s ease, padding 0.2s ease, opacity 0.2s ease;
  }

  .nav.active {
    max-height: calc(100vh - 124px);
    padding: 18px 16px 22px;
    overflow: auto;
    gap: 14px;
    border: 3px solid var(--ink);
    box-shadow: var(--shadow-lg);
    background: var(--paper);
    opacity: 1;
    pointer-events: auto;
  }

  .nav > li > a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background: var(--white);
    border-color: var(--ink);
    box-shadow: var(--shadow-sm);
  }

  .dropdown,
  .sub-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    min-width: 0;
    margin-top: 12px;
    box-shadow: var(--shadow-sm);
  }

  .nav li.open > .dropdown,
  .nav li.open > .sub-dropdown {
    display: block;
  }

  .hero-visual,
  .collage {
    min-height: 460px;
  }

  .top-bar {
    position: relative;
    z-index: 45;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 74px 0;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .form-row,
  .card-grid,
  .process-grid,
  .quote-grid,
  .team-grid,
  .feature-grid,
  .stats-board,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .collage {
    min-height: 400px;
  }

  .photo-stack {
    inset: 52px 18px 90px 18px;
  }

  .metric-card {
    max-width: 180px;
    padding: 16px;
  }

  .metric-card strong {
    font-size: 2rem;
  }

  .floating-card,
  .note-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 14px;
  }

  .hero-visual::after {
    right: 22px;
    bottom: 54px;
  }

  .page-hero-copy,
  .content-panel,
  .intro-panel,
  .detail-panel,
  .form-card,
  .legal-card,
  .faq-block,
  .showcase-card {
    padding: 22px;
  }

  .top-bar .container,
  .top-bar-group {
    gap: 10px;
  }

  .top-pill {
    font-size: 0.76rem;
  }

  .btn-row {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}
