/* ============================================================
   PINK PUPPY CLUB K9 TRAINING — design tokens & shared styles
   ============================================================ */

:root {
  --ink: #171414;
  --ink-soft: #2b2424;
  --bubblegum: #cf7ea0;
  --bubblegum-light: #e7aec4;
  --rosewood: #b14571;
  --rosewood-dark: #8f3459;
  --blush: #fbe6ee;
  --blush-deep: #f6d3e2;
  --cream: #fffdfb;
  --line: rgba(23, 20, 20, 0.1);

  --font-display: "Fredoka", "Baloo 2", sans-serif;
  --font-marquee: "Bebas Neue", "Oswald", sans-serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 40px -20px rgba(23, 20, 20, 0.35);
  --shadow-card: 0 14px 34px -18px rgba(23, 20, 20, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

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

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rosewood);
  color: var(--cream);
  box-shadow: 0 12px 24px -10px rgba(177, 69, 113, 0.6);
}

.btn-primary:hover {
  background: var(--rosewood-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  border-color: var(--blush);
  color: var(--blush);
}

.btn-outline-light:hover {
  background: var(--blush);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* ---------------- Nav ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 251, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
}

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

.nav-logo img {
  height: 78px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--blush);
  padding: 6px;
  border-radius: var(--radius-pill);
}

.nav-links a {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-links a:hover {
  background: var(--cream);
}

.nav-links a.active {
  background: var(--ink);
  color: var(--cream);
}

.nav-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    padding: 10px;
    gap: 4px;
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    text-align: center;
    padding: 13px 20px;
  }
  .nav-toggle {
    display: block;
  }
  .nav-cta .btn {
    padding: 12px 20px;
    font-size: 0.88rem;
  }
}

/* ---------------- Marquee (signature element) ---------------- */

.marquee {
  background: var(--ink);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.marquee-track span {
  font-family: var(--font-marquee);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--bubblegum-light);
  padding: 0 1.1em;
  white-space: nowrap;
}

.marquee-track span.dot {
  color: var(--rosewood);
  padding: 0 0.6em;
}

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

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ---------------- Brand banner ---------------- */

.brand-banner {
  background: var(--ink);
  padding: 26px 0;
  text-align: center;
}

.brand-banner span {
  font-family: var(--font-marquee);
  letter-spacing: 0.18em;
  font-size: clamp(2rem, 5.6vw, 3.6rem);
  color: var(--bubblegum-light);
}

/* ---------------- Hero ---------------- */

.hero {
  background: var(--blush);
  padding: 76px 0 64px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-marquee);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: var(--rosewood);
  background: var(--cream);
  border: 1px solid var(--blush-deep);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  color: var(--ink);
  max-width: 920px;
  margin: 0 auto;
}

.hero-sub {
  max-width: 640px;
  margin: 26px auto 0;
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* ---------------- Page header (non-home pages) ---------------- */

.page-header {
  background: var(--blush);
  padding: 64px 0 56px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.2rem);
}

.page-header p {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}

.page-header p.free-consult-note {
  margin-top: 22px;
  max-width: 480px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.free-consult-note .pill-badge {
  margin-bottom: 0;
}

/* ---------------- Sections ---------------- */

section {
  padding: 84px 0;
}

.section-dark {
  background: var(--ink);
  color: var(--blush);
}

.section-dark h2 {
  color: var(--bubblegum-light);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
}

.section-head p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}

.section-dark .section-head p {
  color: rgba(251, 230, 238, 0.82);
}

/* ---------------- Feature strip ---------------- */

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

.feature-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.feature-item .feature-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.feature-item .feature-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.feature-item p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .feature-strip {
    grid-template-columns: 1fr;
  }
}

/* ---------------- Class cards ---------------- */

.class-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.class-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.class-card:hover {
  transform: translateY(-6px);
}

.class-card .photo-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.class-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.class-card .card-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.class-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.class-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
  flex: 1;
}

.tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--rosewood);
  background: var(--blush);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  width: fit-content;
}

@media (max-width: 900px) {
  .class-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------- Full class rows (Club Classes page) ---------------- */

.class-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.class-row:last-of-type {
  border-bottom: none;
}

.class-row.reverse .row-photo {
  order: 2;
}

.row-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  width: 100%;
}

.row-photo img.crop-bottom {
  object-position: bottom;
}

.row-photo img.square-photo {
  aspect-ratio: 1 / 1;
}

.row-text h3 {
  font-size: 1.9rem;
  margin-bottom: 16px;
}

.row-text p {
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.7;
}

.class-pricing {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.pricing-cadence {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 10px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 5px 0;
  font-weight: 600;
}

.pricing-row small {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.pricing-row .price {
  color: var(--rosewood);
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .class-row, .class-row.reverse {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 36px 0;
  }
  .class-row.reverse .row-photo {
    order: 0;
  }
}

/* ---------------- Upcoming / membership block ---------------- */

.fit-quiz {
  background: var(--cream);
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--rosewood);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.fit-quiz h2 {
  font-size: 1.6rem;
  margin: 16px 0 10px;
}

.fit-quiz-body > p {
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 26px;
}

.fit-quiz-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
}

.fit-quiz-progress .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}

.fit-quiz-progress .dot.filled {
  background: var(--rosewood);
}

.quiz-kicker {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rosewood);
  margin-bottom: 10px;
}

.quiz-question {
  font-size: 1.4rem;
  margin: 0 0 10px;
}

.quiz-hint {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 0 0 24px;
}

.quiz-answers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.quiz-answer {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--blush);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 16px 22px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.quiz-answer:hover {
  border-color: var(--rosewood);
  transform: translateY(-2px);
}

.quiz-back {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.quiz-back:hover {
  color: var(--rosewood);
}

.quiz-result-price {
  color: var(--rosewood);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 14px;
}

.quiz-result-blurb {
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 28px;
}

.quiz-result-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 620px) {
  .fit-quiz {
    padding: 36px 24px;
  }
}

.upcoming-card {
  background: var(--blush);
  border-radius: var(--radius-lg);
  padding: 52px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.pill-badge {
  display: inline-block;
  background: var(--rosewood);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 7px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.upcoming-card h3 {
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.upcoming-card p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1.02rem;
}

.upcoming-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.upcoming-card-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.upcoming-card-cta {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  color: var(--rosewood);
}

/* ---------------- CTA band ---------------- */

.cta-band {
  background: var(--rosewood);
  color: var(--cream);
  text-align: center;
  padding: 64px 0;
}

.cta-band h2 {
  color: var(--cream);
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  margin-bottom: 22px;
}

/* ---------------- Director page ---------------- */

.director-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.director-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.director-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 24px;
}

.badge-icon-link {
  display: inline-flex;
  align-items: center;
}

.badge-icon {
  height: 36px;
  width: 36px;
  object-fit: contain;
}

.director-badges span {
  background: var(--blush);
  color: var(--rosewood);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}

.director-badges a.badge-link {
  background: var(--rosewood);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.2s ease;
}

.director-badges a.badge-link:hover {
  background: var(--rosewood-dark);
}

.director-text h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  margin-bottom: 4px;
}

.director-role {
  color: var(--rosewood);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 20px;
  display: block;
}

.director-text p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.director-quote {
  margin-top: 28px;
  padding: 24px 26px;
  border-left: 4px solid var(--rosewood);
  background: var(--blush);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
}

@media (max-width: 820px) {
  .director-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------- Book page ---------------- */

.book-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  background: var(--ink);
  color: var(--blush);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
}

.contact-card h3 {
  color: var(--cream);
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.contact-card > p {
  color: rgba(251, 230, 238, 0.82);
  line-height: 1.65;
  margin-bottom: 28px;
}

.contact-item {
  margin-bottom: 22px;
}

.contact-item .label {
  display: block;
  font-family: var(--font-marquee);
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--bubblegum-light);
  margin-bottom: 6px;
}

.contact-item a, .contact-item span.value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
}

.contact-item a:hover {
  color: var(--bubblegum-light);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.social-row a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(251, 230, 238, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, transform 0.18s ease;
}

.social-row a:hover {
  background: var(--rosewood);
  transform: translateY(-3px);
}

.social-row svg {
  width: 20px;
  height: 20px;
  fill: var(--cream);
}

.form-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.required-mark {
  color: var(--rosewood);
}

/* ---------------- Success modal ---------------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 20, 20, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 300;
}

.modal-overlay[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 44px 36px 36px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  animation: modalPop 0.22s ease;
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.modal-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.modal-card p {
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 4px;
}

.modal-close:hover {
  color: var(--rosewood);
}

.field input,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  background: var(--blush);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.18s ease, background 0.18s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rosewood);
  background: var(--cream);
}

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

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.checkbox-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blush);
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.checkbox-pill:has(input:checked) {
  border-color: var(--rosewood);
  background: var(--blush-deep);
}

.checkbox-pill input {
  accent-color: var(--rosewood);
  width: 16px;
  height: 16px;
}

.form-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
}

@media (max-width: 900px) {
  .book-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 28px 22px;
  }
}

/* ---------------- Footer ---------------- */

.site-footer {
  background: var(--ink);
  color: var(--blush);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}

.footer-brand img {
  height: 56px;
  margin-bottom: 14px;
}

.footer-brand p {
  color: rgba(251, 230, 238, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--blush);
  border: 2px solid var(--blush);
  border-radius: var(--radius-pill);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.footer-review-btn:hover {
  background: var(--blush);
  color: var(--ink);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-marquee);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: var(--bubblegum-light);
  margin-bottom: 16px;
}

.footer-col a, .footer-col p {
  display: block;
  color: rgba(251, 230, 238, 0.85);
  font-size: 0.95rem;
  margin-bottom: 10px;
  transition: color 0.18s ease;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(251, 230, 238, 0.14);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(251, 230, 238, 0.6);
}

.footer-bottom .social-row a {
  width: 38px;
  height: 38px;
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
