/* =============================================================
   PawFloors — Main Stylesheet
   Wild Mint Studio
   ============================================================= */

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

:root {
  --cream:        #FDF6E8;
  --cream-dark:   #F5E8C8;
  --ink:          #2A1F0E;
  --ink-soft:     #4A3820;
  --ink-muted:    rgba(42,31,14,0.45);
  --cork:         #C4923A;
  --cork-light:   #E8B86A;
  --sage:         #7A9E7E;
  --sage-light:   #A8C4AA;
  --terracotta:   #C4604A;
  --sky:          #7AB4C4;
  --yellow:       #F0C84A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* =============================================================
   NAV
   ============================================================= */

.pf-nav {
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

.pf-nav__logo {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  transform: rotate(-1deg);
  transition: color 0.2s;
}
.pf-nav__logo:hover { color: var(--cork); }
.pf-nav__logo .paw { font-size: 1.4rem; }

.pf-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.pf-nav__links a {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.pf-nav__links a:hover { color: var(--cork); }

.pf-nav__cta {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  background: var(--cork);
  padding: 10px 28px;
  border-radius: 50px;
  transform: rotate(1deg);
  display: inline-block;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 3px 3px 0 var(--ink);
}
.pf-nav__cta:hover {
  transform: rotate(-1deg) translateY(-2px);
  background: var(--cork-light);
}

/* =============================================================
   HERO
   ============================================================= */

.pf-hero {
  min-height: 90vh;
  padding: 40px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.pf-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.pf-blob--1 {
  width: 500px; height: 400px;
  background: var(--cork-light);
  opacity: 0.15;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  top: -80px; right: -60px;
}
.pf-blob--2 {
  width: 300px; height: 280px;
  background: var(--sage-light);
  opacity: 0.2;
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  bottom: 40px; left: -40px;
}
.pf-blob--3 {
  width: 180px; height: 160px;
  background: var(--yellow);
  opacity: 0.25;
  border-radius: 55% 45% 48% 52% / 42% 58% 42% 58%;
  top: 30%; right: 42%;
}

.pf-hero__left { position: relative; z-index: 2; }

.pf-hero__eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cork);
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 16px;
}

.pf-hero__headline {
  font-family: 'Caveat', cursive;
  font-size: clamp(56px, 7vw, 100px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--ink);
}

.pf-hero__headline .underline-wiggly {
  position: relative;
  display: inline-block;
  color: var(--cork);
}
.pf-hero__headline .underline-wiggly::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='8'%3E%3Cpath d='M0,4 C10,0 20,8 30,4 C40,0 50,8 60,4 C70,0 80,8 90,4 C95,2 98,3 100,4' stroke='%23C4923A' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 100px 8px;
}

.pf-hero__sub {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 420px;
  margin-bottom: 40px;
}

.pf-hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 36px;
  border-radius: 50px;
  display: inline-block;
  transform: rotate(-1deg);
  box-shadow: 4px 4px 0 var(--cork);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: rotate(1deg) translateY(-3px);
  box-shadow: 6px 6px 0 var(--cork);
}

.btn-secondary {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2.5px dashed var(--cork);
  transition: background 0.2s, transform 0.2s;
  transform: rotate(1deg);
}
.btn-secondary:hover {
  background: var(--cream-dark);
  transform: rotate(-1deg);
}

.pf-hero__right {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pf-hero__circle {
  width: 380px;
  height: 380px;
  background: var(--cream-dark);
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 160px;
  position: relative;
  border: 3px solid rgba(196,146,58,0.2);
  animation: pf-wobble 6s ease-in-out infinite;
}

.pf-hero__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

@keyframes pf-wobble {
  0%, 100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
  33%       { border-radius: 40% 60% 45% 55% / 48% 52% 60% 40%; }
  66%       { border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%; }
}

.pf-hero__illustration { position: relative; max-width: 500px; width: 100%; }

.floating-tag {
  position: absolute;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  background: white;
  border-radius: 12px;
  padding: 10px 18px;
  box-shadow: 3px 3px 12px rgba(42,31,14,0.12);
  white-space: nowrap;
  border: 2px solid transparent;
}
.floating-tag--1 {
  font-size: 1rem;
  top: 10px; right: 0;
  color: var(--sage);
  border-color: var(--sage-light);
  transform: rotate(3deg);
  animation: pf-float1 4s ease-in-out infinite;
}
.floating-tag--2 {
  font-size: 0.95rem;
  bottom: 20px; left: -10px;
  color: var(--terracotta);
  border-color: rgba(196,96,74,0.3);
  transform: rotate(-4deg);
  animation: pf-float2 5s ease-in-out infinite;
}
.floating-tag--3 {
  font-size: 0.9rem;
  top: 40%; right: -20px;
  color: var(--cork);
  border-color: var(--cork-light);
  transform: rotate(2deg);
  animation: pf-float1 3.5s ease-in-out infinite 0.5s;
}

@keyframes pf-float1 {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50%       { transform: rotate(3deg) translateY(-8px); }
}
@keyframes pf-float2 {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50%       { transform: rotate(-4deg) translateY(-10px); }
}

/* =============================================================
   TRUST STRIP
   ============================================================= */

.pf-trust {
  padding: 28px 48px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.pf-trust__item {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pf-trust__item span { color: var(--cork-light); font-size: 1.1rem; }

/* =============================================================
   PROBLEM
   ============================================================= */

.pf-problem {
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

.pf-problem__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pf-problem__visual { position: relative; }

.pf-problem__card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 6px 6px 0 var(--cream-dark), 6px 6px 0 2px var(--ink-muted);
  transform: rotate(-2deg);
  position: relative;
  z-index: 2;
}
.pf-problem__card-label {
  font-family: 'Caveat', cursive;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pf-problem__card p {
  font-size: 1.5rem;
  font-family: 'Caveat', cursive;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}

.pf-problem__card-2 {
  background: var(--sage-light);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 4px 4px 0 rgba(42,31,14,0.15);
  transform: rotate(2.5deg);
  position: absolute;
  bottom: -30px; right: -20px;
  z-index: 1;
  max-width: 220px;
}
.pf-problem__card-2 p {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.pf-problem__text h2 {
  font-family: 'Caveat', cursive;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--ink);
}
.pf-problem__text p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.scribble-underline {
  display: inline;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='10'%3E%3Cpath d='M0,7 C20,2 40,10 60,6 C80,2 100,9 120,5 C140,1 160,8 180,5 C190,3 196,4 200,6' stroke='%23C4923A' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 10px;
  padding-bottom: 8px;
}

/* =============================================================
   WHY CORK
   ============================================================= */

.pf-why {
  padding: 100px 48px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.pf-why__blob {
  position: absolute;
  width: 600px; height: 500px;
  background: rgba(196,146,58,0.06);
  border-radius: 55% 45% 40% 60% / 50% 55% 45% 50%;
  top: -100px; right: -100px;
  pointer-events: none;
}

.pf-why__header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
.pf-why__header h2 {
  font-family: 'Caveat', cursive;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 16px;
}
.pf-why__header h2 em {
  font-style: italic;
  color: var(--cork-light);
}
.pf-why__header p {
  font-size: 1rem;
  color: rgba(253,246,232,0.55);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

.pf-why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.pf-why__card {
  background: rgba(253,246,232,0.05);
  border: 1.5px solid rgba(253,246,232,0.1);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
}
.pf-why__card:nth-child(2) { transform: translateY(20px); }
.pf-why__card:nth-child(2):hover { transform: translateY(12px); }
.pf-why__card:hover {
  background: rgba(196,146,58,0.08);
  border-color: rgba(196,146,58,0.3);
}

.pf-why__card-emoji {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}
.pf-why__card h3 {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.2;
}
.pf-why__card p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(253,246,232,0.55);
}
.pf-why__card-tag {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--cork);
  color: var(--cream);
  font-family: 'Caveat', cursive;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
}

/* =============================================================
   TESTIMONIAL
   ============================================================= */

.pf-quote {
  padding: 100px 48px;
  background: var(--cream-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pf-quote__bg-paw {
  position: absolute;
  font-size: 280px;
  opacity: 0.05;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}
.pf-quote blockquote {
  font-family: 'Caveat', cursive;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  max-width: 800px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}
.pf-quote blockquote em {
  color: var(--cork);
  font-style: italic;
}
.pf-quote__author {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.pf-quote__author::before,
.pf-quote__author::after {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--ink-muted);
}

/* =============================================================
   BENEFITS
   ============================================================= */

.pf-benefits {
  padding: 120px 48px;
  position: relative;
}
.pf-benefits__heading {
  font-family: 'Caveat', cursive;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 70px;
  color: var(--ink);
  transform: rotate(-1deg);
  display: inline-block;
  width: 100%;
}

.pf-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pf-benefit {
  background: white;
  padding: 36px 32px;
  border-radius: 4px;
  box-shadow: 4px 4px 16px rgba(42,31,14,0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pf-benefit:nth-child(1) { transform: rotate(-1.5deg); }
.pf-benefit:nth-child(2) { transform: rotate(1deg); }
.pf-benefit:nth-child(3) { transform: rotate(0.8deg); }
.pf-benefit:nth-child(4) { transform: rotate(-1deg); }
.pf-benefit:hover { transform: rotate(0) scale(1.02) !important; z-index: 2; box-shadow: 6px 6px 24px rgba(42,31,14,0.12); }

.pf-benefit::before {
  content: '';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 20px;
  background: rgba(196,146,58,0.4);
  border-radius: 2px;
}

.pf-benefit__icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}
.pf-benefit h3 {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.pf-benefit p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 400;
}

/* =============================================================
   STATS
   ============================================================= */

.pf-stats {
  background: var(--sage);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.pf-stat {
  background: rgba(253,246,232,0.12);
  padding: 48px 32px;
  text-align: center;
  transition: background 0.3s;
}
.pf-stat:hover { background: rgba(253,246,232,0.2); }
.pf-stat__number {
  font-family: 'Caveat', cursive;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.pf-stat__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(253,246,232,0.7);
  line-height: 1.5;
  letter-spacing: 0.05em;
}

/* =============================================================
   CTA
   ============================================================= */

.pf-cta {
  padding: 160px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pf-cta__blob-1 {
  position: absolute;
  width: 400px; height: 350px;
  background: var(--cork-light);
  opacity: 0.12;
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  top: -50px; left: -80px;
  pointer-events: none;
}
.pf-cta__blob-2 {
  position: absolute;
  width: 300px; height: 280px;
  background: var(--sage-light);
  opacity: 0.2;
  border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%;
  bottom: -40px; right: -60px;
  pointer-events: none;
}
.pf-cta__inner { position: relative; z-index: 2; }
.pf-cta__tag {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sage);
  background: rgba(122,158,126,0.12);
  border: 1.5px solid var(--sage-light);
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 28px;
  transform: rotate(-1deg);
  display: inline-block;
}
.pf-cta h2 {
  font-family: 'Caveat', cursive;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.pf-cta h2 em { color: var(--cork); font-style: italic; }
.pf-cta p {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 48px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.pf-cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-main {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--cork);
  color: var(--cream);
  padding: 18px 52px;
  border-radius: 50px;
  display: inline-block;
  transform: rotate(-1.5deg);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-cta-main:hover {
  transform: rotate(1deg) translateY(-4px);
  box-shadow: 7px 7px 0 var(--ink);
}

.btn-cta-sub {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  padding: 18px 36px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2.5px solid var(--ink);
  transform: rotate(1deg);
  transition: transform 0.25s, background 0.25s;
}
.btn-cta-sub:hover {
  transform: rotate(-1deg);
  background: var(--cream-dark);
}

/* =============================================================
   FOOTER
   ============================================================= */

.pf-footer {
  background: var(--ink);
  padding: 60px 48px 40px;
}
.pf-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(253,246,232,0.1);
}
.pf-footer__logo {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  transform: rotate(-1deg);
  display: inline-block;
}
.pf-footer__logo span { color: var(--cork-light); }
.pf-footer__tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: rgba(253,246,232,0.4);
  transform: rotate(1deg);
  display: inline-block;
}
.pf-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pf-footer__copy {
  font-size: 0.8rem;
  color: rgba(253,246,232,0.3);
}

/* =============================================================
   SCROLL REVEAL
   ============================================================= */

.pf-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.pf-reveal.is-visible { opacity: 1; transform: translateY(0); }

.pf-reveal--rotate {
  opacity: 0;
  transform: translateY(30px) rotate(-2deg);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.pf-reveal--rotate.is-visible { opacity: 1; transform: translateY(0) rotate(-2deg); }

.pf-reveal--delay-1 { transition-delay: 0.1s; }
.pf-reveal--delay-2 { transition-delay: 0.2s; }
.pf-reveal--delay-3 { transition-delay: 0.3s; }

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 1024px) {
  .pf-nav { padding: 20px 28px; }
  .pf-hero { padding: 24px 28px 60px; gap: 24px; }
  .pf-hero__circle { width: 300px; height: 300px; font-size: 120px; }
  .pf-problem { padding: 80px 28px; }
  .pf-why { padding: 80px 28px; }
  .pf-quote { padding: 80px 28px; }
  .pf-benefits { padding: 80px 28px; }
  .pf-cta { padding: 100px 28px; }
  .pf-footer { padding: 48px 28px 32px; }
}

@media (max-width: 768px) {
  .pf-nav__links { display: none; }
  .pf-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 20px 24px 60px;
  }
  .pf-hero__right { display: none; }
  .pf-trust { gap: 20px; padding: 24px; }
  .pf-problem__inner { grid-template-columns: 1fr; gap: 50px; }
  .pf-why__cards { grid-template-columns: 1fr; }
  .pf-why__card:nth-child(2) { transform: none; }
  .pf-benefits__grid { grid-template-columns: 1fr; }
  .pf-stats { grid-template-columns: repeat(2, 1fr); }
  .pf-footer__top { flex-direction: column; gap: 16px; text-align: center; }
  .pf-footer__bottom { flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .pf-hero__circle,
  .floating-tag,
  .floating-tag--1,
  .floating-tag--2,
  .floating-tag--3 { animation: none; }
  .pf-reveal,
  .pf-reveal--rotate { transition: none; opacity: 1; transform: none; }
}

/* =============================================================
   PRODUCTS SECTION
   ============================================================= */

.pf-products {
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.pf-products__header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.pf-products__header h2 {
  font-family: 'Caveat', cursive;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 16px;
}

.pf-products__header h2 em {
  font-style: italic;
  color: var(--cork-light);
}

.pf-products__header p {
  font-size: 1rem;
  color: rgba(253,246,232,0.55);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

.pf-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

/* Product card — white sticky-note style matching .pf-benefit */
.pf-product-card {
  background: white;
  border-radius: 4px;
  padding: 40px 32px 32px;
  box-shadow: 4px 4px 16px rgba(42,31,14,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Tape strip on top — same as .pf-benefit::before */
.pf-product-card::before {
  content: '';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 20px;
  background: rgba(196,146,58,0.4);
  border-radius: 2px;
}

.pf-product-card:nth-child(1) { transform: rotate(-1.5deg); }
.pf-product-card:nth-child(2) { transform: rotate(1deg); }
.pf-product-card:nth-child(3) { transform: rotate(0.8deg); }
.pf-product-card:hover {
  transform: rotate(0) scale(1.02) !important;
  z-index: 2;
  box-shadow: 6px 6px 24px rgba(42,31,14,0.12);
}

/* Cork-coloured tag — top right, same pattern as .pf-why__card-tag */
.pf-product-card__tag {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--cork);
  color: var(--cream);
  font-family: 'Caveat', cursive;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
}

.pf-product-card__emoji {
  font-size: 2.8rem;
  margin-bottom: 6px;
  display: block;
  line-height: 1;
}

.pf-product-card h3 {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.pf-product-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 400;
  flex: 1;
}

.pf-product-card__cta {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cork);
  display: inline-block;
  margin-top: 6px;
}

.pf-products__footer {
  text-align: center;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}

/* =============================================================
   TESTIMONIALS — multi-card
   ============================================================= */

.pf-testimonials {
  padding: 100px 48px;
  background: var(--cream-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Same giant background paw as the single testimonial section */
.pf-testimonials__bg-paw {
  position: absolute;
  font-size: 280px;
  opacity: 0.05;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}

.pf-testimonials__heading {
  font-family: 'Caveat', cursive;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto 70px;
  transform: rotate(-1deg);
  display: inline-block;
  position: relative;
  z-index: 1;
}

.pf-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Card — same white sticky-note pattern as .pf-benefit */
.pf-tcard {
  background: white;
  border-radius: 4px;
  padding: 40px 32px 32px;
  box-shadow: 4px 4px 16px rgba(42,31,14,0.08);
  position: relative;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pf-tcard::before {
  content: '';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 20px;
  background: rgba(196,146,58,0.4);
  border-radius: 2px;
}

.pf-tcard:nth-child(1) { transform: rotate(-1.5deg); }
.pf-tcard:nth-child(2) { transform: rotate(1deg) translateY(20px); }
.pf-tcard:nth-child(3) { transform: rotate(0.8deg); }
.pf-tcard:hover {
  transform: rotate(0) scale(1.02) !important;
  z-index: 2;
  box-shadow: 6px 6px 24px rgba(42,31,14,0.12);
}

.pf-tcard__quote {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--ink);
  font-style: normal;
  margin-bottom: 20px;
}

.pf-tcard__quote em {
  color: var(--cork);
  font-style: italic;
}

.pf-tcard__footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid rgba(42,31,14,0.08);
  padding-top: 16px;
}

.pf-tcard__author {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.pf-tcard__detail {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* =============================================================
   RESPONSIVE — products + testimonials
   ============================================================= */

@media (max-width: 900px) {
  .pf-products { padding: 80px 28px; }
  .pf-products__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pf-product-card:nth-child(1),
  .pf-product-card:nth-child(2),
  .pf-product-card:nth-child(3) { transform: none; }

  .pf-testimonials { padding: 80px 28px; }
  .pf-testimonials__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pf-tcard:nth-child(1),
  .pf-tcard:nth-child(2),
  .pf-tcard:nth-child(3) { transform: none; }
}
