:root {
  --ink: #142033;
  --paper: #ffffff;
  --panel: #fffaf1;
  --navy: #0f2f5a;
  --orange: #d96b2b;
  --pink: #ff5c8a;
  --salmon: #ffb49a;
  --gold: #f3c63f;
  --mint: #bfe3a2;
  --sky: #b8d8ff;
  --line: rgba(20, 32, 51, 0.12);
  --shadow: 0 18px 40px rgba(20, 32, 51, 0.1);
  --shadow-loud: 0 16px 0 rgba(20, 32, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 6px;
  background: rgba(20, 32, 51, 0.06);
  pointer-events: none;
}

.scroll-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #0f2f5a 0%, #ff8a00 55%, #8bc34a 100%);
  box-shadow: 0 4px 18px rgba(15, 47, 90, 0.22);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.topbar,
.hero-grid,
.idea-grid,
.gallery-grid,
.dropzone-note {
  gap: 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.brand-pill,
.top-link,
.eyebrow,
.button,
code {
  letter-spacing: 0.04em;
}

.brand-pill,
.top-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  background: #fff;
  box-shadow: 0 6px 0 rgba(20, 32, 51, 0.08);
}

.top-link {
  color: inherit;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.ob-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  width: min(100%, 360px);
}

.ob-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  padding: 0;
  animation: logoRise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero {
  padding: 8px 0 40px;
}

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

.hero-copy h1,
.section-heading h2,
.dropzone-note h2,
.idea-card h3 {
  font-family: "Bricolage Grotesque", sans-serif;
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(3rem, 6.8vw, 5.2rem);
  line-height: 0.92;
  max-width: 13ch;
  text-wrap: balance;
}

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

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.lede {
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.65;
}

.micro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.micro-badges span {
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 6px 0 rgba(20, 32, 51, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.micro-badges span:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(20, 32, 51, 0.12);
}

.cta-row,
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-row {
  margin: 28px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease;
  position: relative;
  overflow: hidden;
}

.button-primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 10px 24px rgba(20, 32, 51, 0.16);
}

.button-secondary {
  background: var(--panel);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 0 10px 24px rgba(20, 32, 51, 0.08);
}

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

.magnetic-item {
  will-change: transform;
}

.button::after {
  content: "";
  position: absolute;
  inset: -120% auto -120% -30%;
  width: 42%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0)
  );
  transform: rotate(18deg) translateX(-220%);
  transition: transform 700ms ease;
}

.button:hover::after {
  transform: rotate(18deg) translateX(420%);
}

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

.stat-row li {
  min-width: 155px;
  padding: 16px;
  border: 2px solid rgba(20, 32, 51, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 32, 51, 0.06);
}

.stat-row strong,
.stat-row span {
  display: block;
}

.stat-row span {
  margin-top: 8px;
  font-size: 0.92rem;
  color: rgba(23, 32, 45, 0.72);
}

.hero-stack {
  position: relative;
  min-height: 560px;
  transform: translate3d(var(--stack-x, 0), var(--stack-y, 0), 0);
  transition: transform 220ms ease-out;
}

.image-card,
.gallery-card {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(23, 32, 45, 0.14);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    background-color 320ms ease;
}

.image-card::before,
.gallery-card::before {
  content: "Image unavailable";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: rgba(23, 32, 45, 0.6);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.image-card img,
.gallery-card img {
  position: relative;
  z-index: 1;
  padding: 22px;
  transition: opacity 280ms ease, transform 280ms ease;
}

.knockout-light {
  mix-blend-mode: multiply;
  filter: contrast(1.08) saturate(1.04);
}

.image-card:nth-child(1) {
  background: var(--salmon);
  animation: floatCardA 6.4s ease-in-out infinite;
}

.image-card:nth-child(2) {
  background: var(--gold);
  animation: floatCardB 5.8s ease-in-out infinite;
}

.image-card:nth-child(3) {
  background: var(--mint);
  animation: floatCardC 6.8s ease-in-out infinite;
}

.gallery-card:nth-child(4n + 1) {
  background: #fff;
}

.gallery-card:nth-child(4n + 2) {
  background: var(--mint);
}

.gallery-card:nth-child(4n + 3) {
  background: var(--sky);
}

.gallery-card:nth-child(4n + 4) {
  background: #ffd6e3;
}

.image-card {
  position: absolute;
}

.image-card:nth-child(1) {
  width: 46%;
  height: 300px;
  left: 0;
  top: 110px;
}

.image-card:nth-child(2) {
  width: 52%;
  height: 360px;
  right: 0;
  top: 0;
}

.image-card:nth-child(3) {
  width: 44%;
  height: 250px;
  right: 8%;
  bottom: 32px;
}

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

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

.image-card:hover,
.gallery-card:hover,
.idea-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(20, 32, 51, 0.14);
}

.ticker {
  overflow: hidden;
  border-block: 2px solid rgba(20, 32, 51, 0.12);
  background: #fff6df;
  padding: 14px 0;
  margin: 20px 0 64px;
}

.ticker-track {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: slide 24s linear infinite;
  text-transform: uppercase;
  font-weight: 700;
}

.ticker-track span::before {
  content: "★";
  margin-right: 26px;
  color: var(--pink);
}

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

.vibe-section,
.gallery-section {
  margin-top: 80px;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 32px;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  max-width: none;
}

.section-heading h2,
.dropzone-note h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.gallery-refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff6df;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(20, 32, 51, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.gallery-refresh:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(20, 32, 51, 0.12);
}

.gallery-refresh.is-spinning {
  background: #ffe382;
}

.tilt-surface {
  transform-style: preserve-3d;
  will-change: transform;
}

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

.idea-card {
  padding: 26px;
  border-radius: 28px;
  border: 2px solid rgba(23, 32, 45, 0.12);
  box-shadow: 0 12px 28px rgba(20, 32, 51, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
  transform-style: preserve-3d;
}

.idea-card h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.idea-card p {
  margin-bottom: 0;
  line-height: 1.65;
}

.salmon {
  background: #ffcbbb;
}

.cream {
  background: #ffe382;
}

.mint {
  background: #cce9bb;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-auto-rows: 240px;
}

.gallery-grid-compact {
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 128px;
  gap: 14px;
}

.gallery-grid-compact .gallery-card.tall,
.gallery-grid-compact .gallery-card.wide {
  grid-row: span 1;
  grid-column: span 1;
}

.gallery-grid-compact .gallery-card img {
  padding: 14px;
}

.gallery-grid-compact .gallery-card:nth-child(6n + 1) {
  background: #ffe08a;
}

.gallery-grid-compact .gallery-card:nth-child(6n + 2) {
  background: #ffc4d6;
}

.gallery-grid-compact .gallery-card:nth-child(6n + 3) {
  background: #bfe3a2;
}

.gallery-grid-compact .gallery-card:nth-child(6n + 4) {
  background: #b8d8ff;
}

.category-grid,
.flow-grid {
  display: grid;
  gap: 24px;
}

.category-grid {
  grid-template-columns: repeat(3, 1fr);
}

.category-card,
.flow-card,
.final-cta {
  border: 2px solid rgba(20, 32, 51, 0.12);
  border-radius: 28px;
  box-shadow: 0 18px 34px rgba(20, 32, 51, 0.08);
}

.category-card {
  padding: 28px;
  color: white;
  transform-style: preserve-3d;
}

.category-card h3,
.flow-card h3,
.final-cta h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
}

.category-card h3 {
  font-size: 1.9rem;
  line-height: 0.95;
}

.category-card p:last-child,
.flow-card p,
.final-cta p:last-child {
  margin: 14px 0 0;
  line-height: 1.65;
}

.category-tag,
.flow-number {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navy-card {
  background: var(--navy);
}

.orange-card {
  background: var(--orange);
}

.sky-card {
  background: #6ea8e8;
}

.navy-card .category-tag,
.orange-card .category-tag,
.sky-card .category-tag {
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

.flow-grid {
  grid-template-columns: repeat(3, 1fr);
}

.flow-card {
  padding: 26px;
  background: #fff;
  transition: transform 240ms ease, box-shadow 240ms ease;
  transform-style: preserve-3d;
}

.flow-number {
  background: #fff0d9;
  color: var(--orange);
}

.flow-card h3 {
  font-size: 1.6rem;
  line-height: 1;
}

.flow-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(20, 32, 51, 0.12);
}

.gallery-card.tall {
  grid-row: span 2;
}

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

.dropzone-note {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 80px;
  padding: 32px;
  border-radius: 32px;
  background: var(--orange);
  border: 2px solid rgba(20, 32, 51, 0.12);
  color: white;
  box-shadow: 0 20px 40px rgba(20, 32, 51, 0.14);
}

.dropzone-note code {
  display: inline-block;
  max-width: 520px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.9rem;
  line-height: 1.8;
  color: white;
}

.punchline-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  border: 2px solid rgba(20, 32, 51, 0.12);
  border-radius: 30px;
  background: var(--navy);
  color: white;
  box-shadow: 0 20px 40px rgba(20, 32, 51, 0.14);
}

.punchline-strip p,
.punchline-strip strong {
  margin: 0;
}

.punchline-strip p {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.punchline-strip strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1;
  color: #ffe382;
}

.final-cta {
  display: grid;
  grid-template-columns: 1.1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 80px;
  padding: 30px;
  background: #fff6df;
  animation: softPulse 5.4s ease-in-out infinite;
}

.final-cta-copy h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.96;
}

.final-cta-copy p:last-child {
  max-width: 56ch;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  margin-top: 88px;
  padding: 36px 32px 22px;
  border: 2px solid rgba(20, 32, 51, 0.12);
  border-radius: 32px;
  background: var(--navy);
  color: white;
  box-shadow: 0 20px 40px rgba(20, 32, 51, 0.14);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-brand img {
  width: min(100%, 260px);
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 34ch;
  margin: 18px 0 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-heading {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffe382;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  line-height: 1.5;
}

.footer-column a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-column a {
  transition: color 220ms ease, transform 220ms ease;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border-radius: 999px;
  background: #25d366;
  color: white;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.whatsapp-widget:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(37, 211, 102, 0.34);
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.whatsapp-icon svg {
  width: 24px;
  height: 24px;
}

[data-image-state="missing"] img {
  opacity: 0;
}

[data-image-state="loaded"]::before {
  display: none;
}

[data-image-state="loaded"] img {
  opacity: 1;
}

.gallery-card.tall img,
.gallery-card.wide img {
  padding: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.is-swapping {
  opacity: 0.2;
  transform: scale(0.97);
}

.hero-copy.is-visible .hero-line {
  animation: lineLift 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy.is-visible .hero-line:nth-child(1) {
  animation-delay: 60ms;
}

.hero-copy.is-visible .hero-line:nth-child(2) {
  animation-delay: 120ms;
}

.hero-copy.is-visible .hero-line:nth-child(3) {
  animation-delay: 180ms;
}

.hero-copy.is-visible .hero-line:nth-child(4) {
  animation-delay: 240ms;
}

@keyframes logoRise {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes lineLift {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 20px 40px rgba(20, 32, 51, 0.12);
  }
  50% {
    box-shadow: 0 24px 50px rgba(20, 32, 51, 0.18);
  }
}

@keyframes floatCardA {
  0%,
  100% {
    transform: rotate(-7deg) translateY(0);
  }
  50% {
    transform: rotate(-7deg) translateY(-10px);
  }
}

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

@keyframes floatCardC {
  0%,
  100% {
    transform: rotate(8deg) translateY(0);
  }
  50% {
    transform: rotate(8deg) translateY(-9px);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .idea-grid,
  .category-grid,
  .flow-grid,
  .gallery-grid,
  .footer-grid,
  .dropzone-note,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .page-shell {
    width: min(100% - 24px, 1180px);
    padding: 18px 0 56px;
  }

  .hero-grid {
    gap: 28px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-stack {
    min-height: 560px;
    margin-top: 12px;
  }

  .image-card:nth-child(1) {
    width: 52%;
    height: 230px;
    top: 118px;
  }

  .image-card:nth-child(2) {
    width: 58%;
    height: 260px;
  }

  .image-card:nth-child(3) {
    width: 50%;
    height: 210px;
    right: 0;
    bottom: 18px;
  }

  .dropzone-note code {
    max-width: 100%;
  }

  .gallery-grid-compact {
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 120px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 16px, 1180px);
    padding: 14px 0 44px;
  }

  .scroll-progress {
    height: 5px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .ob-logo {
    width: 100%;
  }

  .ob-logo img {
    max-width: 240px;
  }

  .top-link {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .gallery-refresh {
    min-height: 44px;
    width: 100%;
  }

  .hero {
    padding: 2px 0 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 13vw, 3rem);
    margin-bottom: 12px;
  }

  .eyebrow {
    font-size: 0.72rem;
    margin-bottom: 10px;
  }

  .lede {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .micro-badges {
    gap: 8px;
    margin-top: 14px;
  }

  .micro-badges span {
    padding: 8px 11px;
    font-size: 0.72rem;
    box-shadow: none;
  }

  .cta-row {
    margin: 22px 0;
    gap: 10px;
  }

  .cta-row .button {
    width: 100%;
    min-height: 44px;
    font-size: 0.95rem;
  }

  .hero-stack {
    min-height: 430px;
  }

  .image-card:nth-child(1) {
    width: 54%;
    height: 170px;
    top: 96px;
  }

  .image-card:nth-child(2) {
    width: 62%;
    height: 205px;
  }

  .image-card:nth-child(3) {
    width: 52%;
    height: 155px;
    bottom: 14px;
  }

  .gallery-grid {
    grid-auto-rows: 170px;
    gap: 14px;
  }

  .gallery-grid-compact {
    max-width: 100%;
    grid-template-columns: 1fr;
    grid-auto-rows: 120px;
  }

  .image-card img,
  .gallery-card img {
    padding: 14px;
  }

  .stat-row {
    gap: 10px;
  }

  .stat-row li {
    min-width: 0;
    width: 100%;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .stat-row strong {
    font-size: 0.95rem;
  }

  .stat-row span {
    margin-top: 6px;
    font-size: 0.84rem;
  }

  .idea-card {
    padding: 18px;
    border-radius: 22px;
  }

  .category-card,
  .flow-card {
    padding: 20px;
    border-radius: 22px;
  }

  .category-card h3,
  .flow-card h3 {
    font-size: 1.35rem;
  }

  .idea-card h3 {
    font-size: 1.2rem;
  }

  .idea-card p {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .section-heading h2,
  .dropzone-note h2,
  .punchline-strip strong {
    font-size: clamp(1.6rem, 9vw, 2.2rem);
  }

  .vibe-section,
  .gallery-section,
  .dropzone-note,
  .site-footer {
    margin-top: 40px;
  }

  .dropzone-note,
  .punchline-strip,
  .final-cta,
  .site-footer {
    padding: 18px 16px;
    border-radius: 22px;
  }

  .footer-brand img {
    max-width: 210px;
  }

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

  .dropzone-note code,
  .punchline-strip p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .final-cta-copy h2 {
    font-size: clamp(1.6rem, 9vw, 2.2rem);
  }

  .final-cta-actions .button {
    width: 100%;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 420px) {
  .ob-logo img {
    max-width: 210px;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero-stack {
    min-height: 360px;
  }

  .image-card:nth-child(1) {
    height: 145px;
    top: 86px;
  }

  .image-card:nth-child(2) {
    height: 180px;
  }

  .image-card:nth-child(3) {
    height: 135px;
  }

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