body.contact-funky-page {
  --ink: #1e1230;
  --card-ink: #2c1945;
  --citrus: #d9f931;
  --gum: #ff9fd9;
  --aqua: #53e3cc;
  --lavender: #d8bbff;
  --surface: #ffffff;
  --line: #2f1d4c;
  max-width: none;
  margin: 0;
  padding: 104px 0 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Bricolage Grotesque", "poppins-medium", sans-serif;
  background:
    radial-gradient(circle at 7% 8%, rgba(217, 249, 49, 0.35) 0%, transparent 35%),
    radial-gradient(circle at 93% 11%, rgba(83, 227, 204, 0.24) 0%, transparent 33%),
    linear-gradient(160deg, #fff1f9 0%, #f7f3ff 45%, #f3ffef 100%);
  overflow-x: hidden;
}

.contact-groove-shell {
  width: min(1120px, calc(100% - 30px));
  margin: 0 auto 56px;
  display: grid;
  gap: 20px;
  position: relative;
  z-index: 1;
  font-family: "Bricolage Grotesque", "poppins-medium", sans-serif;
}

.contact-hero-card,
.contact-card,
.contact-note-board {
  background: var(--surface);
  border: 2px solid var(--line);
  box-shadow: 0 9px 0 rgba(47, 29, 76, 0.92);
  border-radius: 28px;
}

.contact-hero-card {
  padding: clamp(18px, 3.4vw, 34px);
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(-18deg, rgba(255, 159, 217, 0.12) 0, rgba(255, 159, 217, 0.12) 10px, transparent 10px, transparent 20px),
    linear-gradient(140deg, #fff 0%, #fffbe9 50%, #eafff6 100%);
  animation: groove-rise 550ms cubic-bezier(0.2, 0.74, 0.33, 1);
}

.contact-hero-card::before,
.contact-hero-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.contact-hero-card::before {
  width: 170px;
  height: 170px;
  right: -60px;
  top: -70px;
  border: 3px dashed var(--line);
  background: rgba(217, 249, 49, 0.4);
  animation: orbit-shift 10s linear infinite;
}

.contact-hero-card::after {
  width: 100px;
  height: 100px;
  left: -26px;
  bottom: -30px;
  background: rgba(83, 227, 204, 0.3);
  border: 2px solid var(--line);
}

.contact-kicker {
  width: fit-content;
  margin: 0 0 12px;
  padding: 6px 12px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--citrus);
  font-family: "Syne", "poppins-bold", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transform: rotate(-2deg);
}

.contact-hero-card h1 {
  margin: 0;
  font-family: "Syne", "poppins-bold", sans-serif;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 0.96;
  letter-spacing: -1px;
  max-width: 11ch;
}

.contact-hero-copy {
  margin: 14px 0 0;
  max-width: 55ch;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.6;
  color: #3f2f59;
}

.contact-quick-lines {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-pill {
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  box-shadow: 0 4px 0 var(--line);
}

.quick-pill:nth-child(1) {
  background: #fdf5ff;
  transform: rotate(-1.2deg);
}

.quick-pill:nth-child(2) {
  background: #f0fff8;
  transform: rotate(1.1deg);
}

.quick-pill:nth-child(3) {
  background: #fffaf0;
  transform: rotate(-0.9deg);
}

.contact-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
}

.contact-card {
  padding: 20px;
  display: grid;
  gap: 14px;
  animation: groove-rise 600ms ease both;
}

.contact-card-whatsapp {
  grid-column: span 7;
  background: linear-gradient(140deg, #f0fff7 0%, #ffffff 70%);
  transform: rotate(-0.8deg);
}

.contact-card-email {
  grid-column: span 5;
  background: linear-gradient(140deg, #fff4fc 0%, #ffffff 70%);
  transform: rotate(1deg);
}

.contact-card-address {
  grid-column: span 12;
  background: linear-gradient(130deg, #f4f2ff 0%, #ffffff 85%);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.contact-card h2 {
  margin: 0;
  font-family: "Syne", "poppins-bold", sans-serif;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1;
}

.contact-card p {
  margin: 0;
  color: #4a3c63;
  line-height: 1.6;
  font-size: 15px;
}

.contact-cta-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: var(--citrus);
  box-shadow: 0 4px 0 var(--line);
  color: #25153d;
  text-decoration: none;
  font-family: "Syne", "poppins-bold", sans-serif;
  font-size: 15px;
  transition: transform 220ms ease;
}

.contact-cta-link:hover {
  transform: translateY(-2px) rotate(-1deg);
}

.contact-qr-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.contact-qr-wrapper {
  width: 112px;
  height: 112px;
  border: 2px dashed var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 8px;
  box-shadow: inset 0 0 0 1px rgba(47, 29, 76, 0.18);
}

.contact-qr-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
}

.contact-qr-note {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5f4e7d;
  font-weight: 700;
}

.contact-email-link {
  color: #2c1853;
  font-size: clamp(18px, 2.2vw, 24px);
  font-family: "Syne", "poppins-bold", sans-serif;
  word-break: break-word;
  text-decoration-thickness: 2px;
}

.contact-address-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.address-chip {
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 700;
  background: #fff;
  box-shadow: 0 4px 0 var(--line);
}

.address-chip:nth-child(1) {
  background: var(--gum);
  transform: rotate(-1.2deg);
}

.address-chip:nth-child(2) {
  background: var(--aqua);
  transform: rotate(1deg);
}

.address-chip:nth-child(3) {
  background: var(--lavender);
  transform: rotate(-0.8deg);
}

.contact-note-board {
  padding: 20px;
  display: grid;
  gap: 12px;
  background:
    radial-gradient(circle at 7% 20%, rgba(255, 159, 217, 0.25), transparent 30%),
    #ffffff;
}

.contact-note-board h3 {
  margin: 0;
  font-family: "Syne", "poppins-bold", sans-serif;
  font-size: 22px;
  line-height: 1.1;
}

.note-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 9px;
  color: #45365f;
  font-size: 14px;
}

@keyframes groove-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbit-shift {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .contact-card-whatsapp,
  .contact-card-email,
  .contact-card-address {
    grid-column: span 12;
    transform: none;
  }

  .contact-card {
    box-shadow: 0 7px 0 rgba(47, 29, 76, 0.92);
  }
}

@media (max-width: 640px) {
  body.contact-funky-page {
    padding-top: 94px;
  }

  .contact-groove-shell {
    width: calc(100% - 18px);
    margin-bottom: 38px;
  }

  .contact-hero-card,
  .contact-card,
  .contact-note-board {
    border-radius: 20px;
  }

  .contact-hero-card h1 {
    font-size: clamp(30px, 14vw, 46px);
  }

  .contact-card {
    padding: 16px;
  }

  .contact-email-link {
    font-size: 20px;
  }
}
