/* ═══════════════════════════════════════════
   FURRY FRIENDS HQ — Premium Design System
   ═══════════════════════════════════════════ */

:root {
  /* Palette */
  --cream: #faf6f1;
  --cream-soft: #f4ede3;
  --cream-mid: #ede0cf;
  --brown: #3d2b1f;
  --brown-mid: #6b4c35;
  --brown-light: #9b7055;
  --gold: #b8832a;
  --gold-light: #d4a44c;
  --gold-pale: #f5e6c8;
  --teal: #2d7d6f;
  --teal-light: #44a090;
  --teal-pale: #d4ede9;
  --white: #ffffff;
  --text: #2a1e14;
  --text-mid: #5c3d28;
  --text-light: #7a5a42;
  --border: #e2cfbb;
  --shadow-color: rgba(61, 43, 31, 0.12);

  /* Type */
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;

  /* Spacing */
  --r: 16px;
  --r-sm: 10px;
  --r-lg: 28px;
  --r-xl: 40px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--serif);
  line-height: 1.2;
  color: var(--text);
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
}
h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}
p {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.ey-gold {
  background: var(--gold-pale);
  color: var(--gold);
}
.ey-teal {
  background: var(--teal-pale);
  color: var(--teal);
}
.ey-brown {
  background: var(--cream-mid);
  color: var(--brown-mid);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(61, 43, 31, 0.25);
}
.btn-primary:hover {
  background: #2a1e14;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61, 43, 31, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}
.btn-outline:hover {
  background: var(--brown);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184, 131, 42, 0.3);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 131, 42, 0.4);
}
.btn-white {
  background: var(--white);
  color: var(--brown);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.82rem;
}

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250, 246, 241, 0.95);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}
.site-nav.scrolled {
  box-shadow: 0 4px 24px var(--shadow-color);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  flex-shrink: 0;
}
.nav-logo .paw {
  font-size: 1.3rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  transition: all 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--brown);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mob-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 899;
  flex-direction: column;
  padding: 24px 5%;
  gap: 4px;
  overflow-y: auto;
}
.mob-menu.open {
  display: flex;
}
.mob-menu a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--r);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s;
}
.mob-menu a:hover {
  background: var(--cream-soft);
}
.mob-menu .btn {
  margin-top: 12px;
  justify-content: center;
}

/* ── IMAGE PLACEHOLDER ── */
.img-ph {
  background: linear-gradient(
    135deg,
    var(--cream-soft) 0%,
    var(--cream-mid) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 2px dashed var(--border);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.img-ph::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f030";
  font-size: 2rem;
}
.img-ph:has(img) {
  border: none;
  background: none;
}
.img-ph:has(img)::before,
.img-ph:has(img) > span {
  display: none;
}
.img-ph img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* ── FONT AWESOME ICON NORMALIZATION ── */
.qc-icon i,
.social-strip-icon i,
.foot-social a i,
.hbtn i,
.bi i,
.partner-icon i {
  line-height: 1;
}
.star-row i,
.stars i {
  color: var(--gold);
  font-size: 0.85em;
  margin-right: 1px;
}
.hbtn {
  font-size: 1rem;
  color: var(--text-light);
}
.hbtn i {
  transition: all 0.2s var(--ease);
}
.hbtn.saved i {
  color: #e0455f;
}
.hbtn.saved .fa-heart {
  font-weight: 900;
}
a i.fa-solid,
a i.fa-regular,
a i.fa-brands,
button i.fa-solid,
button i.fa-regular,
button i.fa-brands {
  line-height: 1;
}
.btn i,
.quick-faq-link i,
.nf button i {
  font-size: 0.85em;
}
.qc-icon .fa-whatsapp {
  color: #128c7e;
}
.img-ph-sm::before {
  font-size: 1.5rem;
}
.img-ph span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

/* ── LAYOUT ── */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}
.section {
  padding: 96px 5%;
}
.s-header {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.s-header p {
  font-size: 1rem;
  margin-top: 12px;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
.reveal.vis {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
.reveal-left.vis {
  opacity: 1;
  transform: none;
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
.reveal-right.vis {
  opacity: 1;
  transform: none;
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}
.reveal-scale.vis {
  opacity: 1;
  transform: scale(1);
}

/* stagger children */
.stagger > *:nth-child(1) {
  transition-delay: 0.05s;
}
.stagger > *:nth-child(2) {
  transition-delay: 0.12s;
}
.stagger > *:nth-child(3) {
  transition-delay: 0.19s;
}
.stagger > *:nth-child(4) {
  transition-delay: 0.26s;
}
.stagger > *:nth-child(5) {
  transition-delay: 0.33s;
}
.stagger > *:nth-child(6) {
  transition-delay: 0.4s;
}

/* floating paw animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px var(--shadow-color);
}

/* ── TAGS / BADGES ── */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--cream-soft);
  color: var(--brown-mid);
}
.tag-teal {
  background: var(--teal-pale);
  color: var(--teal);
}
.tag-male {
  background: #e8f0fe;
  color: #3b5bdb;
}
.tag-female {
  background: #fce4ec;
  color: #c2185b;
}

/* ── STARS ── */
.stars {
  color: var(--gold);
  letter-spacing: 3px;
}

/* ── DIVIDER ── */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 20px 0;
}
.divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* ── PUPPY GRID ── */
.puppy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.puppy-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.puppy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px var(--shadow-color);
}
.puppy-card-img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--cream-soft);
}
.puppy-card-img .img-ph {
  height: 100%;
  border-radius: 0;
  border: none;
}
.puppy-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.puppy-card:hover .puppy-card-img img {
  transform: scale(1.06);
}
.puppy-card-body {
  padding: 18px 20px;
}
.puppy-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.puppy-breed {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.puppy-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.puppy-card .btn {
  width: 100%;
  justify-content: center;
  padding: 11px;
  font-size: 0.84rem;
}
.hbtn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}
.hbtn:hover {
  transform: scale(1.15);
}
.badge-new {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.badge-status {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  z-index: 2;
}
.badge-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.badge-available {
  color: #2f9e44;
}
.badge-pending {
  color: #e8590c;
}
.badge-adopted {
  color: #e03131;
}

/* ── PRICE NOTICE ── */
.price-notice {
  background: var(--cream-soft);
  padding: 18px 5%;
}
.price-notice-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 22px;
  box-shadow: 0 2px 12px var(--shadow-color);
}
.price-notice-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.price-notice p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0;
}
@media (max-width: 640px) {
  .price-notice-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ── FILTER BAR ── */
.filter-bar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  box-shadow: 0 2px 12px var(--shadow-color);
}
.filter-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.filter-select {
  padding: 9px 36px 9px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.84rem;
  color: var(--text);
  appearance: none;
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A6450' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.2s;
}
.filter-select:focus {
  border-color: var(--gold);
}
.filter-count {
  margin-left: auto;
  font-size: 0.82rem;
  color: var(--text-light);
}
.reset-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--sans);
}

/* ── WAITLIST BOX ── */
.waitlist-box {
  background: var(--cream-soft);
  border-radius: var(--r-xl);
  padding: 64px 48px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.waitlist-box::before {
  content: "🐾";
  font-size: 8rem;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.05;
  pointer-events: none;
}
.wl-paw {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.wl-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 28px auto 0;
}
.wl-form input {
  flex: 1;
  padding: 13px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.wl-form input:focus {
  border-color: var(--gold);
}
.wl-form button {
  padding: 13px 28px;
  border-radius: 100px;
  background: var(--brown);
  color: var(--white);
  border: none;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
}
.wl-form button:hover {
  background: #2a1e14;
  transform: translateY(-1px);
}

/* ── TESTIMONIAL CARDS ── */
.testi-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow-color);
}
.testi-card blockquote {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin: 12px 0 16px;
}

/* ── STEPS ── */
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(61, 43, 31, 0.25);
}

/* ── ACCORDION ── */
.acc-item {
  background: var(--white);
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  margin-bottom: 10px;
}
.acc-item.open {
  border-color: var(--gold);
  box-shadow: 0 4px 16px var(--shadow-color);
}
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  gap: 12px;
}
.acc-trigger:hover {
  color: var(--brown);
}
.acc-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cream-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition:
    transform 0.3s var(--ease),
    background 0.2s;
}
.acc-item.open .acc-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
}
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.acc-body-inner {
  padding: 4px 22px 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ── FEATURE CARDS ── */
.feature-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow-color);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.fi-gold {
  background: var(--gold-pale);
}
.fi-teal {
  background: var(--teal-pale);
}
.fi-cream {
  background: var(--cream-soft);
}

/* ── STAT CARDS ── */
.stat-card {
  text-align: center;
  padding: 24px;
}

/* ── CONTACT ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}
.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px;
  border: 1px solid var(--border);
}
.form-card h2 {
  margin-bottom: 8px;
}
.form-card > p {
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  margin-bottom: 16px;
}
label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 7px;
}
input,
textarea,
select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  background: var(--white);
}
textarea {
  resize: vertical;
  min-height: 130px;
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A6450' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--cream);
  padding-right: 36px;
}
.info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-item {
  background: var(--cream-soft);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  border: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.info-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.info-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.info-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}
.map-ph {
  background: var(--cream-mid);
  border-radius: var(--r-lg);
  aspect-ratio: 16/5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.map-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px 32px;
  text-align: center;
  box-shadow: 0 8px 32px var(--shadow-color);
}
.map-card h4 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.map-card p {
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.map-card a {
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
}

/* ── DARK SECTION ── */
.dark-section {
  background: var(--brown);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 80% 50%,
    rgba(184, 131, 42, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.dark-section h2 {
  color: var(--white);
}
.dark-section p {
  color: rgba(255, 255, 255, 0.78);
}

/* ── HERO IMAGE ── */
.hero-img-wrap {
  position: relative;
}
.hero-img-wrap .img-ph {
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
}
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -16px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: 0 8px 32px var(--shadow-color);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge .bi {
  font-size: 1.8rem;
}
.hero-badge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}
.hero-badge span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ── PROOF ROW ── */
.proof-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-avs {
  display: flex;
}
.proof-avs span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  background: var(--cream-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brown-mid);
  margin-left: -8px;
}
.proof-avs span:first-child {
  margin-left: 0;
}
.proof-text {
  font-size: 0.82rem;
  color: var(--text-light);
}
.proof-text strong {
  color: var(--text);
  display: block;
}

/* ── NEWSLETTER ── */
.nf {
  display: flex;
  gap: 8px;
}
.nf input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.84rem;
  width: auto;
}
.nf input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.nf input:focus {
  border-color: var(--gold-light);
  outline: none;
  background: rgba(255, 255, 255, 0.15);
}
.nf button {
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--gold);
  border: none;
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.84rem;
  transition: background 0.2s;
}
.nf button:hover {
  background: var(--gold-light);
}

/* ── FOOTER ── */
footer {
  background: var(--brown);
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 5% 36px;
}
.foot-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 32px;
}
.foot-brand .logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.foot-brand p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
  max-width: 240px;
}
.foot-col h5 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
}
.foot-col a {
  display: block;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 11px;
  transition: color 0.2s;
}
.foot-col a:hover {
  color: var(--white);
}
.foot-col p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 0;
}
.foot-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  flex-wrap: wrap;
  gap: 10px;
}

/* ── FOOTER NEWSLETTER SIGNUP ── */
.foot-newsletter {
  max-width: 1280px;
  margin: 0 auto 40px;
  padding: 32px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 28px;
}
.foot-newsletter h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--white);
  margin: 0 0 8px;
}
.foot-newsletter p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}
.nl-form {
  display: flex;
  gap: 10px;
  width: 100%;
}
.nl-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 13px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.2s;
}
.nl-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.nl-form input[type="email"]:focus {
  border-color: var(--teal-light);
}
.nl-form .nl-btn {
  padding: 13px 24px;
  border-radius: 100px;
  border: none;
  background: var(--teal);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.nl-form .nl-btn:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}
.nl-form .nl-btn:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}
.nl-msg {
  min-height: 18px;
  font-size: 0.8rem;
  margin-top: 10px;
}
.nl-msg.ok {
  color: #7fd6c4;
}
.nl-msg.err {
  color: #ffb3a7;
}
.nl-consent {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}
@media (max-width: 900px) {
  .foot-newsletter {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .foot-newsletter {
    padding: 24px;
  }
  .nl-form {
    flex-direction: column;
  }
  .nl-form input[type="email"],
  .nl-form .nl-btn {
    width: 100%;
  }
}

/* ── TEAM CARDS ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow-color);
}
.team-img {
  aspect-ratio: 1;
}
.team-img .img-ph {
  height: 100%;
  border-radius: 0;
  border: none;
}
.team-body {
  padding: 22px;
}
.team-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.team-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.team-bio {
  font-size: 0.86rem;
}

/* ── VALUE PILLARS ── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pillar {
  background: var(--cream-soft);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s var(--ease);
}
.pillar:hover {
  transform: translateY(-3px);
}
.pillar-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

/* ── CTA BANNER ── */
.cta-banner {
  border-radius: var(--r-xl);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #d4a44c 100%);
}
.cta-banner-dark {
  background: linear-gradient(135deg, var(--brown) 0%, #2a1e14 100%);
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-banner::before {
  content: "🐾";
  font-size: 12rem;
  position: absolute;
  right: -30px;
  bottom: -30px;
  opacity: 0.06;
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}

/* ── FAQ LAYOUT ── */
.faq-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}
.faq-sidebar {
  position: sticky;
  top: 90px;
}
.faq-sidebar-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}
.faq-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-cat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
  background: none;
  border: none;
  font-family: var(--sans);
  text-align: left;
  width: 100%;
}
.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: var(--cream-soft);
  color: var(--brown);
  font-weight: 600;
}
.faq-cat {
  margin-bottom: 52px;
  scroll-margin-top: 100px;
}
.faq-cat-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.faq-cat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cream-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.faq-cat-title h2 {
  font-size: 1.3rem;
  margin-bottom: 0;
}

/* ── PARTNER CARDS ── */
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.partner-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow-color);
}
.partner-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

/* ── GROOMING STEPS ── */
.groom-step {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.groom-step:last-child {
  border-bottom: none;
}
.groom-num {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}

/* ── RESPONSIBLE BREEDING SPECIFICS ── */
.check-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border);
  margin-bottom: 12px;
}
.check-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--cream-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-featured .stars {
  margin-bottom: 8px;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .puppy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .partner-grid {
    grid-template-columns: 1fr;
  }
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-sidebar {
    position: static;
  }
  .faq-sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .review-mosaic {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .section {
    padding: 64px 5%;
  }
  .puppy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .foot-bottom {
    flex-direction: column;
    text-align: center;
  }
  .wl-form {
    flex-direction: column;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    padding: 48px 28px;
  }
  .hero-badge {
    left: 0;
  }
  .map-ph {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 480px) {
  .puppy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .pillar-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 360px) {
  .puppy-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE GRID UTILITIES (mobile-safe)
   Replaces all inline grid-template-columns
   ═══════════════════════════════════════════ */
.g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.g2-start {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.g2-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.g2-tight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.g2-sm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.g2-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.g2-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 32px;
}
.g2-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.g2-simple {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.g3-tight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.g-review {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  overflow: hidden;
  padding: 0;
}
.g-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.wrap-1280 {
  max-width: 1280px;
  margin: 0 auto;
}

/* ── PHONE BREAKPOINTS FOR ALL GRID UTILITIES ── */
@media (max-width: 900px) {
  .g2,
  .g2-start,
  .g2-wide,
  .g2-card,
  .g2-form,
  .g3,
  .g3-sm,
  .g4 {
    grid-template-columns: 1fr 1fr;
  }
  .g4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .g2,
  .g2-start,
  .g2-wide,
  .g2-tight,
  .g2-sm,
  .g2-card,
  .g2-form,
  .g2-info,
  .g2-simple,
  .g3,
  .g3-sm,
  .g3-tight,
  .g4 {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .g2-tight > div {
    margin-top: 0 !important;
  }
  .g2-form {
    padding: 20px !important;
  }
  .g-review {
    grid-template-columns: 1fr !important;
  }
  .g-review .img-ph {
    aspect-ratio: 16/9;
    border-radius: var(--r-lg) var(--r-lg) 0 0 !important;
  }
  .g-cta {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 24px !important;
  }
  .g-cta > div:last-child {
    justify-self: center;
  }
}
@media (max-width: 420px) {
  .g3,
  .g3-sm,
  .g3-tight,
  .g4 {
    grid-template-columns: 1fr !important;
  }
}

/* ═══════════════════════════════════════════
   CONTACT PAGE — Quick Contact Cards & Social
   ═══════════════════════════════════════════ */
.quick-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.quick-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--shadow-color);
  border-color: var(--gold);
}
.quick-contact-card {
  min-width: 0;
}
.quick-contact-card > div:last-child {
  min-width: 0;
  flex: 1 1 auto;
}
.qc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.qc-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}
.qc-val {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.social-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream-soft);
  border-radius: var(--r-lg);
  padding: 20px 28px;
  border: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.social-strip-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
}
.social-strip-icons {
  display: flex;
  gap: 10px;
}
.social-strip-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.25s var(--ease);
}
.social-strip-icon:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 131, 42, 0.3);
}

.quick-faq-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 16px 22px;
  border: 1px solid var(--border);
  transition:
    border-color 0.2s,
    transform 0.2s;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.quick-faq-link:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

/* ── FOOTER SOCIAL ICONS ── */
.foot-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s var(--ease);
  margin-bottom: 0 !important;
}
.foot-social a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* ── RESPONSIVE: quick contact + social strip ── */
@media (max-width: 700px) {
  .quick-contact-card {
    padding: 14px 16px;
  }
  .social-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .social-strip-icons {
    width: 100%;
    justify-content: space-between;
  }
}
/* ═══════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════ */
.cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 30px rgba(61, 43, 31, 0.15);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
  font-family: var(--sans);
}
.cc-banner.show {
  transform: translateY(0);
}
.cc-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 5%;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.cc-text {
  flex: 1;
  min-width: 0;
}
.cc-text h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 6px;
}
.cc-text p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}
.cc-text a {
  color: var(--gold);
  text-decoration: underline;
}
.cc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}
.cc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.cc-btn-accept {
  background: var(--teal);
  color: var(--white);
}
.cc-btn-accept:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}
.cc-btn-reject {
  background: transparent;
  color: var(--text-mid);
  border: 2px solid var(--border);
}
.cc-btn-reject:hover {
  border-color: var(--text-mid);
}
.cc-btn-customize {
  background: transparent;
  color: var(--gold);
  text-decoration: underline;
  padding: 10px 12px;
}
.cc-btn-customize:hover {
  color: var(--gold-light);
}
.cc-btn-save {
  background: var(--brown);
  color: var(--white);
}
.cc-btn-save:hover {
  background: #2a1e14;
}
.cc-prefs {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.cc-prefs.open {
  display: block;
}
.cc-pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.cc-pref-row:last-child {
  border-bottom: none;
}
.cc-pref-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cc-pref-label strong {
  font-size: 0.9rem;
  color: var(--text);
}
.cc-pref-label span {
  font-size: 0.78rem;
  color: var(--text-light);
}
.cc-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.cc-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cc-toggle .slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.25s var(--ease);
}
.cc-toggle .slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.25s var(--ease);
}
.cc-toggle input:checked + .slider {
  background: var(--teal);
}
.cc-toggle input:checked + .slider::before {
  transform: translateX(20px);
}
.cc-toggle input:disabled + .slider {
  opacity: 0.6;
  cursor: not-allowed;
}
.cc-pref-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-settings-btn {
  background: none;
  border: none;
  color: var(--text-mid);
  font-size: 0.88rem;
  font-family: var(--sans);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: color 0.2s;
}
.cookie-settings-btn:hover {
  color: var(--gold);
}

/* Responsive: cookie banner */
@media (max-width: 768px) {
  .cc-inner {
    flex-direction: column;
    gap: 16px;
  }
  .cc-actions {
    width: 100%;
    flex-direction: column;
  }
  .cc-actions .cc-btn {
    width: 100%;
    justify-content: center;
  }
}
.foot-legal .cc-settings-link {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-family: var(--sans);
  cursor: pointer;
  padding: 0;
  margin: 0 8px;
  transition: color 0.2s;
}
.foot-legal .cc-settings-link:hover {
  color: var(--gold);
}

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

/* ═══════════════════════════════════════════
   ACCESSIBILITY: FOCUS STYLES
   ═══════════════════════════════════════════ */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--brown);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 var(--r) var(--r);
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════
   FOOTER ADMIN LOGIN LINK
   ═══════════════════════════════════════════ */
.foot-admin-link {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem !important;
  color: rgba(255, 255, 255, 0.28) !important;
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
  margin-bottom: 0 !important;
}
.foot-admin-link:hover {
  opacity: 1;
  color: rgba(255, 255, 255, 0.55) !important;
}
.contact-qr {
  display: block;
  margin-top: 14px;
  max-width: 132px;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
}
