/* ===== Classy Cubs — global styles ===== */

:root {
  --cream: #FBF3E7;
  --cream-mid: #F3E4D0;
  --teal-tint: #E9F4F3;
  --teal: #4FADAA;
  --teal-shadow: #327E7B;
  --teal-deep: #2E8385;
  --gold: #F6C15C;
  --gold-shadow: #C9962F;
  --gold-tint: #FBEAD4;
  --terracotta: #C97B2E;
  --brown-heading: #3B2A1E;
  --brown-body: #4A3626;
  --brown-muted: #6B5643;
  --brown-footnote: #8A7358;
  --tan-surface: #DFC9A0;
  --dashed-border: #E7D3AE;
  --white: #fff;

  --radius-pill: 999px;
  --radius-card-sm: 18px;
  --radius-card-lg: 28px;
  --shadow-card: 0 10px 24px rgba(74, 54, 38, 0.1);
  --shadow-card-deep: 0 14px 28px rgba(74, 54, 38, 0.18);
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--brown-body);
  line-height: 1.6;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-mid) 55%, var(--teal-tint) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Baloo 2", sans-serif;
  color: var(--brown-heading);
  margin: 0 0 0.5em;
  font-weight: 800;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--teal-deep);
  text-decoration: none;
}

a:hover {
  color: var(--terracotta);
}

::selection {
  background: var(--gold);
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 6vw;
}

.section {
  padding: 56px 0;
}

.eyebrow {
  display: inline-block;
  background: var(--teal-tint);
  color: var(--teal-deep);
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.eyebrow--gold {
  background: var(--gold-tint);
  color: var(--terracotta);
}

.section-title {
  text-align: center;
  font-size: clamp(24px, 3.4vw, 34px);
  margin-bottom: 0.25em;
}

.section-subtitle {
  text-align: center;
  color: var(--brown-muted);
  max-width: 560px;
  margin: 0 auto 2.5em;
  font-size: 17px;
}

/* ---- buttons (3D pop style) ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 17px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn:active {
  transform: translateY(2px);
}

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

.btn--primary:hover {
  color: var(--white);
}

.btn--primary:active {
  box-shadow: 0 3px 0 var(--teal-shadow);
}

.btn--gold {
  background: var(--gold);
  color: var(--brown-heading);
  box-shadow: 0 5px 0 var(--gold-shadow);
  font-size: 16px;
  padding: 12px 26px;
}

.btn--gold:hover {
  color: var(--brown-heading);
}

.btn--gold:active {
  box-shadow: 0 2px 0 var(--gold-shadow);
}

.btn--outline {
  background: var(--white);
  color: var(--terracotta);
  border: 3px solid var(--gold);
  padding: 12px 28px;
  box-shadow: none;
}

.btn--outline:hover {
  background: #fff7e8;
  color: var(--terracotta);
}

.btn--teal-solid {
  background: var(--white);
  color: var(--teal-deep);
}

.btn--teal-solid:hover {
  color: var(--teal-deep);
}

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

/* ---- header / nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 243, 231, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 3px dashed var(--dashed-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6vw;
  flex-wrap: wrap;
  gap: 12px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s;
}

.nav__brand:hover {
  transform: rotate(-3deg) scale(1.03);
}

.nav__brand img {
  height: 58px;
  display: block;
}

.nav__links {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav__links a {
  display: inline-block;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  color: var(--brown-body);
  transition: transform 0.15s, background 0.15s, color 0.15s;
}

.nav__links a:hover {
  transform: translateY(-2px);
  color: var(--brown-body);
}

.nav__links a.active {
  background: var(--teal);
  color: var(--white);
}

.nav__links a.active:hover {
  color: var(--white);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--teal-deep);
  cursor: pointer;
}

@media (max-width: 780px) {
  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-bottom: 3px dashed var(--dashed-border);
    padding: 0 6vw;
  }

  .nav__links.open {
    max-height: 400px;
    padding: 8px 6vw 16px;
  }

  .nav__links li {
    width: 100%;
  }

  .nav__links a {
    display: block;
    text-align: center;
  }
}

/* ---- decorative blobs ---- */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.bg-blob--gold {
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: var(--gold);
  opacity: 0.25;
}

.bg-blob--teal {
  bottom: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: var(--teal);
  opacity: 0.15;
}

/* ---- lion background decoration (home page) ---- */
.lion-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.lion-bg__emoji {
  position: absolute;
  line-height: 1;
  opacity: 0.1;
  filter: grayscale(0.4);
}

main {
  position: relative;
  z-index: 1;
}

/* ---- animations ---- */
@keyframes cc-float-lg {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes cc-wiggle {

  0%,
  100% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(4deg);
  }
}

@keyframes cc-pop {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes cc-spin-slow {
  from {
    transform: rotate(0deg);
  }

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

@media (prefers-reduced-motion: reduce) {

  .hero-photo,
  .wiggle,
  .cc-lion,
  .collection-photo__frame {
    animation: none !important;
  }
}

/* ---- hero ---- */
.hero {
  padding: 70px 6vw 40px;
  text-align: center;
  position: relative;
}

.hero__eyebrow {
  animation: cc-pop 0.5s ease-out;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.08;
  margin: 0 0 18px;
}

.hero h1 .wiggle {
  color: var(--teal);
  display: inline-block;
  animation: cc-wiggle 2.4s ease-in-out infinite;
}

.hero p.tagline {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--brown-muted);
}

/* ---- hero photo trio ---- */
.hero-photos {
  display: flex;
  gap: 18px;
  padding: 20px 6vw 60px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.hero-photo-wrap {
  display: inline-block;
  animation: cc-float-lg 4.2s ease-in-out infinite;
}

.hero-photo-wrap:nth-child(2) {
  margin-top: 28px;
  animation-duration: 4.8s;
  animation-delay: 0.5s;
}

.hero-photo-wrap:nth-child(3) {
  animation-duration: 4.5s;
  animation-delay: 1s;
}

.hero-photo {
  width: 260px;
  height: 340px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-card-deep);
  border: 6px solid var(--white);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-photo--left {
  transform: rotate(-4deg);
}

.hero-photo--right {
  transform: rotate(4deg);
}

.hero-photo-wrap:hover .hero-photo {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 18px 34px rgba(74, 54, 38, 0.26);
}

/* ---- custom order card ---- */
.custom-order {
  padding: 20px 6vw 60px;
  display: flex;
  justify-content: center;
}

.custom-order__card {
  flex: 1;
  min-width: 260px;
  max-width: 480px;
  background: var(--white);
  border-radius: 26px;
  padding: 34px;
  box-shadow: var(--shadow-card);
  text-align: center;
  border: 3px dashed var(--gold);
  transition: transform 0.25s;
}

.custom-order__card:hover {
  transform: translateY(-6px);
}

.custom-order__icon {
  font-size: 40px;
  margin-bottom: 10px;
  display: inline-block;
  animation: cc-wiggle 3s ease-in-out infinite;
}

/* ---- testimonials ---- */
.testimonials-wrap {
  padding: 20px 6vw 60px;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 26px;
}

.testimonials {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card-sm);
  padding: 30px 26px 24px;
  width: 300px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.testimonial-card:nth-child(2) {
  transform: rotate(1.5deg);
}

.testimonial-card:nth-child(3) {
  transform: rotate(-1.5deg);
}

.testimonial-card:hover {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: var(--shadow-card-deep);
}

.testimonial-card__quote {
  position: absolute;
  top: -6px;
  left: 18px;
  font-family: "Baloo 2", sans-serif;
  font-size: 64px;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
}

.testimonial-card__text {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--brown-body);
  margin: 18px 0 14px;
  position: relative;
}

.testimonial-card__author {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--teal-deep);
  margin: 0;
}

/* ---- notice board ---- */
.notice-board-wrap {
  padding: 20px 6vw 60px;
}

.notice-board {
  background: var(--tan-surface);
  border-radius: 26px;
  padding: 34px 30px 40px;
  box-shadow: 0 10px 24px rgba(74, 54, 38, 0.14);
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(rgba(74, 54, 38, 0.08) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}

.notice-board__header {
  text-align: center;
  margin-bottom: 26px;
  position: relative;
}

.exhibitions {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.exhibition-card {
  background: var(--white);
  border-radius: var(--radius-card-sm);
  padding: 26px 20px 20px;
  width: 240px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 18px rgba(74, 54, 38, 0.16);
  transition: transform 0.25s;
}

.exhibition-card:nth-child(1) {
  transform: rotate(-3deg);
}

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

.exhibition-card:nth-child(3) {
  transform: rotate(-2deg);
}

.exhibition-card__pin {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  font-size: 26px;
}

.exhibition-card__date {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--terracotta);
  background: var(--gold-tint);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 10px;
}

.exhibition-card h3 {
  font-size: 19px;
  margin: 0 0 8px;
}

.exhibition-card p {
  margin: 0;
  color: var(--brown-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* ---- founder banner ---- */
.founder-banner {
  background: var(--teal);
  padding: 56px 6vw;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.founder-banner .cc-lion {
  position: absolute;
  top: -30px;
  left: -30px;
  font-size: 90px;
  opacity: 0.15;
  animation: cc-spin-slow 24s linear infinite;
}

.founder-banner__content {
  flex: 1;
  min-width: 260px;
  max-width: 460px;
  position: relative;
}

.founder-banner h2 {
  color: var(--white);
  font-size: 30px;
  margin: 0 0 10px;
}

.founder-banner p {
  color: #E4F5F3;
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 20px;
}

/* ---- footer ---- */
.site-footer {
  text-align: center;
  padding: 40px 6vw;
  color: var(--brown-footnote);
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--teal-deep);
  font-weight: 700;
}

/* ---- page hero (about/collections/contact) ---- */
.page-head {
  text-align: center;
  margin-bottom: 46px;
}

.page-head h1 {
  font-size: clamp(32px, 5vw, 50px);
  margin: 0;
}

.page-head p.tagline {
  color: var(--brown-muted);
  font-size: 17px;
  max-width: 520px;
  margin: 12px auto 0;
}

main.page {
  padding: 64px 6vw 70px;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

/* ---- about page ---- */
.about-intro {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.about-avatar-col {
  flex: 1;
  min-width: 280px;
}

.about-avatar {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--teal-tint);
  display: flex;
  align-items: bottom;
  justify-content: center;
  margin: 0 auto;
  border: 6px solid var(--white);
  box-shadow: 0 10px 24px rgba(74, 54, 38, 0.12);
  overflow: hidden;
}

.about-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
}

.about-avatar span {
  font-family: "Baloo 2", sans-serif;
  font-size: 60px;
  color: var(--teal);
  font-weight: 700;
}

.about-avatar-caption {
  text-align: center;
  font-family: "Baloo 2", sans-serif;
  color: var(--terracotta);
  font-weight: 700;
  margin-top: 14px;
}

.about-story {
  flex: 1.4;
  min-width: 300px;
}

.about-story p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--brown-body);
}

.value-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.value-card {
  flex: 1;
  min-width: 220px;
  background: var(--white);
  border-radius: 20px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(74, 54, 38, 0.08);
  transition: transform 0.25s;
}

.value-card:nth-child(odd):hover {
  transform: translateY(-6px) rotate(-1deg);
}

.value-card:nth-child(even):hover {
  transform: translateY(-6px) rotate(1deg);
}

.value-card__icon {
  font-size: 34px;
  margin-bottom: 8px;
}

.value-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.value-card p {
  margin: 0;
  color: var(--brown-muted);
  font-size: 15px;
  line-height: 1.5;
}

/* ---- collections page ---- */
main.page--collections {
  max-width: 1100px;
}

.collection {
  margin-bottom: 56px;
  border-radius: var(--radius-card-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.collection__watermark {
  position: absolute;
  top: -20px;
  right: 10px;
  font-size: 70px;
  opacity: 0.12;
  transform: rotate(12deg);
}

.collection__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  font: inherit;
}

.collection__title-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.collection__title-row h2 {
  font-size: 27px;
  margin: 0;
}

.collection__tag {
  font-family: "Baloo 2", sans-serif;
  font-size: 14px;
  color: var(--terracotta);
  background: var(--white);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.collection__toggle {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--brown-heading);
  background: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.collection__chevron {
  display: inline-block;
  transition: transform 0.25s;
}

.collection.is-open .collection__chevron {
  transform: rotate(180deg);
}

.collection__blurb {
  color: var(--brown-muted);
  font-size: 15px;
  margin: 12px 0 0;
  max-width: 640px;
  position: relative;
}

.collection__grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
  margin-top: 24px;
}

.collection.is-open .collection__grid {
  display: grid;
}

.collection-photo__frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(74, 54, 38, 0.14);
  border: 5px solid var(--white);
  transition: transform 0.3s;
  display: inline-block;
  width: 100%;
}

.collection-photo__frame:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 16px 30px rgba(74, 54, 38, 0.22);
}

.collection-photo__frame img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.collection-photo__overlay {
  position: absolute;
  inset: 0;
  background: rgba(59, 42, 30, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.collection-photo__frame:hover .collection-photo__overlay {
  opacity: 1;
}

.collection-photo__overlay span {
  background: var(--white);
  color: var(--brown-heading);
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}

.collection-photo__caption {
  margin: 12px 4px 0;
  color: var(--brown-muted);
  font-size: 14px;
  line-height: 1.5;
}

.closing-card {
  background: var(--white);
  border: 3px dashed var(--dashed-border);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  color: var(--brown-footnote);
}

.closing-card p:first-child {
  font-family: "Baloo 2", sans-serif;
  font-size: 20px;
  color: var(--terracotta);
  margin: 0 0 6px;
}

.closing-card p:not(:first-child) {
  margin: 0 0 6px;
  font-size: 15px;
}

.closing-card p:last-child {
  margin: 0;
}

.closing-card__link {
  font-weight: 700;
  text-decoration: underline;
}

/* ---- lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(59, 42, 30, 0.82);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  animation: cc-pop 0.2s ease-out;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 30px;
  background: var(--white);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  color: var(--brown-heading);
}

.lightbox img {
  max-width: min(90vw, 640px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 20px;
  border: 8px solid var(--white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* ---- contact page ---- */
main.page--contact {
  max-width: 900px;
  text-align: center;
}

.contact-note {
  background: var(--gold-tint);
  border-radius: 20px;
  padding: 22px 28px;
  margin: 0 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  max-width: 500px;
}

.contact-note__icon {
  font-size: 28px;
}

.contact-note__text {
  color: #7A5233;
  font-size: 15px;
  line-height: 1.5;
}

.contact-note__text strong {
  color: var(--terracotta);
}

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

@media (max-width: 780px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 22px;
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  border: 3px solid transparent;
  transition: transform 0.25s, border-color 0.25s;
}

.contact-card--whatsapp:hover {
  transform: translateY(-6px) rotate(-1deg);
  border-color: var(--teal);
}

.contact-card--email:hover {
  transform: translateY(-6px) rotate(1deg);
  border-color: var(--gold);
}

.contact-card--facebook:hover {
  transform: translateY(-6px) rotate(-1deg);
  border-color: #4A6EA8;
}

.contact-card--instagram:hover {
  transform: translateY(-6px) rotate(1deg);
  border-color: var(--terracotta);
}

.contact-card__icon {
  font-size: 38px;
}

.contact-card__badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card__badge svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

.contact-card--whatsapp .contact-card__badge {
  background: var(--teal);
}

.contact-card--email .contact-card__badge {
  background: var(--terracotta);
}

.contact-card--facebook .contact-card__badge {
  background: #4A6EA8;
}

.contact-card--instagram .contact-card__badge {
  background: linear-gradient(135deg, var(--gold) 0%, var(--terracotta) 55%, var(--teal) 100%);
}

.contact-card__label {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.contact-card--whatsapp .contact-card__label {
  color: var(--teal-deep);
}

.contact-card--email .contact-card__label {
  color: var(--terracotta);
}

.contact-card--facebook .contact-card__label {
  color: #4A6EA8;
}

.contact-card--instagram .contact-card__label {
  color: var(--terracotta);
}

.contact-card__value {
  font-size: 15px;
  color: var(--brown-muted);
  word-break: break-all;
}

.contact-form-card {
  background: var(--white);
  border-radius: 26px;
  padding: 36px 40px;
  box-shadow: var(--shadow-card);
  max-width: 560px;
  margin: 50px auto 0;
  text-align: left;
  border: 3px dashed var(--dashed-border);
}

.contact-form-card h2 {
  text-align: center;
  font-size: 24px;
  margin: 0 0 6px;
}

.contact-form-card__subtitle {
  text-align: center;
  color: var(--brown-muted);
  font-size: 15px;
  margin: 0 0 26px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-field label {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--brown-heading);
}

.form-field input,
.form-field textarea {
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 2px solid var(--dashed-border);
  background: var(--cream);
  color: var(--brown-body);
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}

.contact-form-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.contact-footnote {
  margin-top: 50px;
  color: var(--brown-footnote);
  font-size: 14px;
}