/* ============================================================
   COCO & CO. DOG CONCIERGE — STYLES
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  --straw:      #FAE3B1;
  --terracotta: #CF5527;
  --wine:       #7D2027;
  --sky:        #5FA8C2;
  --olive:      #998731;
  --choc:       #673C34;

  --font-display: 'Clash Display', 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-script:  'Caveat', cursive;

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   28px;
  --r-pill: 999px;

  --max-w: 1200px;
  --sec-v: 112px;
  --sec-v-sm: 72px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { display: block; max-width: 100%; }
a { text-decoration: none; }
button { font-family: inherit; }

body {
  background: var(--straw);
  color: var(--choc);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none), (max-width: 768px) { body { cursor: auto; } }

/* ---- CUSTOM CURSOR ---- */
.cursor {
  width: 22px;
  height: 22px;
  border: 2px solid var(--terracotta);
  border-radius: 50%;
  position: fixed;
  inset: 0;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease, background .2s ease, border-color .2s ease;
  will-change: left, top;
}
.cursor.hovered {
  width: 42px;
  height: 42px;
  background: rgba(207,85,39,.12);
  border-color: var(--wine);
}
@media (hover: none), (max-width: 768px) { .cursor { display: none; } }

/* ---- CONTAINER ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-headline {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 52px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .01em;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.03); box-shadow: 0 6px 24px rgba(0,0,0,.14); }
.btn-primary { background: var(--olive); color: var(--straw); }
.btn-primary:hover { background: #7a6c27; }
.btn-lg { font-size: 18px; padding: 18px 44px; }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  padding: 20px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.nav.scrolled {
  background: var(--wine);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.22);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---- LOGO LOCKUP (nav + footer) ---- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--choc);
  transition: color .3s ease;
  text-decoration: none;
}
.nav.scrolled .nav-logo { color: var(--straw); }

.logo-mark {
  width: 30px;
  height: auto;
  flex-shrink: 0;
  transition: filter .3s ease;
}
.logo-mark-lg { width: 44px; }

/* PNG illustration — transparent bg */
.logo-mark-img {
  width: auto;
  height: 44px;
  object-fit: contain;
}
.logo-mark-img.logo-mark-lg { height: 54px; }
/* On dark nav/footer: invert to white */
.nav.scrolled .logo-mark-img,
.footer-logo-lockup .logo-mark-img {
  filter: brightness(0) invert(1);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.01em;
  line-height: 1.05;
  color: inherit;
}
.logo-amp {
  color: var(--terracotta);
  font-style: normal;
  transition: color .3s ease;
}
.nav.scrolled .logo-amp { color: var(--olive); }

.logo-tagline {
  font-family: 'Magoa', var(--font-display), serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .04em;
  color: inherit;
  opacity: .72;
  line-height: 1.2;
  padding-left: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--choc);
  letter-spacing: .01em;
  transition: color .2s ease;
}
.nav.scrolled .nav-links a { color: rgba(250,227,177,.85); }
.nav-links a:hover { color: var(--terracotta); }
.nav.scrolled .nav-links a:hover { color: var(--olive); }

.nav-cta {
  background: var(--terracotta) !important;
  color: var(--straw) !important;
  padding: 10px 24px;
  border-radius: var(--r-pill);
  font-weight: 600;
  transition: transform .2s ease, background .2s ease !important;
}
.nav-cta:hover { transform: scale(1.04); background: #b8451e !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--choc);
  border-radius: 2px;
  transition: background .3s ease;
}
.nav.scrolled .nav-hamburger span { background: var(--straw); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--wine);
  padding: 12px 28px 28px;
}
.nav-mobile.open { display: flex; }

.mobile-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--straw);
  padding: 14px 0;
  border-bottom: 1px solid rgba(250,227,177,.1);
  transition: color .2s ease;
}
.mobile-link:hover { color: var(--olive); }
.mobile-cta {
  margin-top: 20px;
  background: var(--terracotta);
  color: var(--straw) !important;
  padding: 16px 24px !important;
  border-radius: var(--r-pill);
  text-align: center;
  border-bottom: none !important;
  font-weight: 600;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  background: var(--straw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 130px 28px 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -15%; right: -8%;
  width: 55vw; height: 55vw;
  max-width: 680px; max-height: 680px;
  background: radial-gradient(circle, rgba(207,85,39,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -6%;
  width: 40vw; height: 40vw;
  max-width: 480px; max-height: 480px;
  background: radial-gradient(circle, rgba(125,32,39,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  width: 100%;
  max-width: var(--max-w);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(40px, 6vw, 84px);
  color: var(--choc);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.hero-subhead {
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 400;
  color: var(--choc);
  opacity: .72;
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.hero-trust {
  font-size: 14px;
  font-weight: 500;
  color: var(--olive);
  max-width: 420px;
  line-height: 1.65;
  margin-bottom: 32px;
  padding: 12px 16px;
  background: rgba(153,135,49,.08);
  border-left: 3px solid var(--olive);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: rgba(125,32,39,.055);
  border-radius: var(--r-lg);
  border: 2px dashed rgba(103,60,52,.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
}

.hero-paw-wrap { animation: float 3.2s ease-in-out infinite; }
.hero-paw { font-size: 72px; line-height: 1; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}

/* Real photo */
.hero-coco-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--r-lg);
  display: block;
}

.hero-img-label {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--choc);
  opacity: .6;
  position: absolute;
  bottom: 16px;
  right: 20px;
}

.hero-accent-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-dot-1 {
  width: 18px; height: 18px;
  background: var(--terracotta);
  top: -10px; right: 28px;
  animation: pulse-dot 2.4s ease-in-out infinite;
}
.hero-dot-2 {
  width: 12px; height: 12px;
  background: var(--olive);
  bottom: 32px; left: -10px;
  animation: pulse-dot 2.4s ease-in-out infinite .6s;
}
.hero-dot-3 {
  width: 8px; height: 8px;
  background: var(--olive);
  top: 40%; right: -14px;
  animation: pulse-dot 2.4s ease-in-out infinite 1.2s;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: .7; }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .38;
  pointer-events: none;
}
.hero-scroll-hint span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--choc);
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--choc), transparent);
  animation: scroll-pulse 1.6s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: .38; }
  50% { opacity: .85; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-image-wrap { max-width: 320px; }
  .hero-img-placeholder { aspect-ratio: 1; }
  .hero-subhead { margin-inline: auto; }
}
@media (max-width: 480px) {
  .hero { padding-top: 110px; }
  .hero-headline { font-size: 38px; }
}

/* ============================================================
   VIBE STRIP
   ============================================================ */
.vibe-strip {
  background: var(--wine);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-wrapper {
  display: flex;
  width: 100%;
  animation: marquee 28s linear infinite;
}
.marquee-content {
  flex-shrink: 0;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--straw);
  padding-right: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.vibe-strip:hover .marquee-wrapper { animation-play-state: paused; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--straw);
  padding: var(--sec-v) 0;
}

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

.step-card {
  background: var(--straw);
  border: 1.5px solid var(--choc);
  border-radius: var(--r-md);
  padding: 40px 32px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, opacity .65s ease, translate .65s ease;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(103,60,52,.13);
}

.step-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 18px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--choc);
  margin-bottom: 12px;
  line-height: 1.2;
}
.step-desc {
  font-size: 15px;
  color: var(--choc);
  opacity: .78;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .how-it-works { padding: var(--sec-v-sm) 0; }
}

/* ============================================================
   PRICING
   ============================================================ */

/* ---- AirTag callout band ---- */
.airtag-band {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--olive);
  color: var(--straw);
  border-radius: var(--r-md);
  padding: 22px 28px;
  margin-bottom: 36px;
}
.airtag-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}
.airtag-text {
  font-size: 15px;
  line-height: 1.65;
}
.airtag-text strong {
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--straw);
}

/* ---- Founding member rows ---- */
.pricing-item--founding {
  background: rgba(95,168,194,.1);
  border-left: 3px solid var(--sky);
}
.pricing-item--founding:hover { background: rgba(95,168,194,.16); }

.founding-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: var(--sky);
  color: #fff;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  line-height: 1.4;
}

.pricing-section {
  background: var(--wine);
  padding: var(--sec-v) 0 0;
}
.pricing-section .section-headline { color: var(--straw); }

.pricing-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 44px;
}

.pricing-category {
  background: var(--straw);
  border-radius: var(--r-md);
  overflow: hidden;
}
.pricing-cat-header {
  background: var(--choc);
  color: var(--straw);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 13px 28px;
}

.pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(103,60,52,.1);
  transition: background .2s ease;
}
.pricing-item:last-child { border-bottom: none; }
.pricing-item:hover { background: rgba(95,168,194,.07); }
.pricing-item--popular { background: rgba(153,135,49,.07); }

.pricing-item-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.pricing-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--choc);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.pricing-detail {
  font-size: 13px;
  color: var(--choc);
  opacity: .58;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--olive);
  white-space: nowrap;
  flex-shrink: 0;
}
.pricing-per {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--choc);
  opacity: .55;
}

.popular-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  background: var(--olive);
  color: var(--straw);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  line-height: 1.4;
}

.pricing-note {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--straw);
  opacity: .8;
  text-align: center;
  margin-bottom: 44px;
  font-style: italic;
}
.pricing-cta { text-align: center; }

/* ---- Coco illustration strip ---- */
.coco-strip {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  margin-top: 20px;
  padding: 0 20px;
  overflow: hidden;
}
.coco-strip-img {
  width: 25%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.28;
  transition: opacity .4s ease, transform .4s ease;
}
.coco-strip-img:hover {
  opacity: 0.65;
  transform: translateY(-8px) scale(1.05);
}

@media (max-width: 768px) {
  .pricing-menu { grid-template-columns: 1fr; }
  .pricing-section { padding: var(--sec-v-sm) 0; }
  .coco-strip-img { width: 48%; max-width: none; }
  .coco-strip { flex-wrap: wrap; gap: 8px; margin-top: 40px; }
}

/* ============================================================
   BOOKING
   ============================================================ */
.booking-section {
  background: var(--straw);
  padding: var(--sec-v) 0;
}

.building-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--choc);
  opacity: .78;
  margin-bottom: 18px;
}

.building-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}
.building-btn {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--choc);
  background: transparent;
  border: 2px solid var(--choc);
  border-radius: var(--r-pill);
  padding: 12px 28px;
  cursor: pointer;
  transition: all .22s ease;
}
.building-btn:hover,
.building-btn.active {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--straw);
}

.calendly-wrap {
  background: var(--straw);
  border: 1.5px solid rgba(103,60,52,.2);
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 200px;
}
.calendly-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 56px 28px;
}
.calendly-hint {
  font-size: 16px;
  color: var(--choc);
  opacity: .45;
  text-align: center;
}

/* Waitlist */
.waitlist-block {
  margin-top: 48px;
  text-align: center;
}
.waitlist-note {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--choc);
  opacity: .7;
  margin-bottom: 22px;
  font-style: italic;
}

.inline-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.inline-input {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--choc);
  background: transparent;
  color: var(--choc);
  min-width: 260px;
  outline: none;
  transition: border-color .2s ease;
}
.inline-input::placeholder { color: var(--choc); opacity: .45; }
.inline-input:focus { border-color: var(--terracotta); }

@media (max-width: 640px) {
  .booking-section { padding: var(--sec-v-sm) 0; }
  .inline-form { flex-direction: column; align-items: stretch; }
  .inline-input { min-width: unset; width: 100%; }
}

/* ============================================================
   FOUNDER STORY
   ============================================================ */
.founder-section {
  background: var(--straw);
  padding: var(--sec-v) 0;
  border-top: 1px solid rgba(103,60,52,.1);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.founder-img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: rgba(125,32,39,.06);
  border-radius: var(--r-lg);
  border: 2px dashed rgba(103,60,52,.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-img-label {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--choc);
  opacity: .38;
}
.founder-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--r-lg);
  display: block;
}

.founder-body {
  font-size: 17px;
  line-height: 1.85;
  color: var(--choc);
  margin-bottom: 22px;
}
.founder-pullquote {
  border-left: 4px solid var(--wine);
  padding: 14px 0 14px 26px;
  margin: 30px 0;
  font-style: italic;
  font-size: 19px;
  color: var(--terracotta);
  line-height: 1.65;
  list-style: none;
}
.founder-closing {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
  color: var(--terracotta);
  margin-top: 28px;
  line-height: 1.5;
}
.founder-signature {
  font-family: var(--font-script);
  font-size: 24px;
  color: var(--choc);
  margin-top: 16px;
}

@media (max-width: 768px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-section { padding: var(--sec-v-sm) 0; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  background: var(--straw);
  padding: var(--sec-v) 0;
  border-top: 1px solid rgba(103,60,52,.1);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}
.review-card {
  background: var(--straw);
  border: 1.5px solid rgba(103,60,52,.28);
  border-radius: var(--r-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease, opacity .65s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(103,60,52,.12);
}
.review-stars { color: var(--terracotta); letter-spacing: 2px; font-size: 15px; }
.review-quote {
  font-size: 14px;
  line-height: 1.75;
  color: var(--choc);
  opacity: .85;
  flex: 1;
}
.review-footer { display: flex; align-items: center; gap: 4px; margin-top: 4px; }
.review-client { font-size: 14px; font-weight: 600; color: var(--choc); }
.review-dog { font-size: 14px; font-weight: 600; color: var(--olive); }

.dog-photo-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.dog-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(103,60,52,.1);
  box-shadow: 0 0 0 3px var(--straw), 0 0 0 5px rgba(103,60,52,.25);
  overflow: hidden;
  flex-shrink: 0;
}
.dog-circle-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.dog-circle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.dog-circle-name {
  font-family: var(--font-script);
  font-size: 15px;
  color: var(--choc);
  opacity: .7;
}

@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .reviews-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .reviews-section { padding: var(--sec-v-sm) 0; } }

/* ============================================================
   BUILDING PARTNERS
   ============================================================ */
.partners-section {
  background: var(--wine);
  padding: var(--sec-v) 0;
  text-align: center;
}
.partners-section .section-headline { color: var(--straw); }
.partners-copy {
  font-size: 18px;
  color: var(--straw);
  opacity: .85;
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.75;
}
@media (max-width: 768px) { .partners-section { padding: var(--sec-v-sm) 0; } }

/* ============================================================
   COMING SOON
   ============================================================ */
.coming-section {
  background: var(--straw);
  padding: var(--sec-v) 0;
  border-top: 1px solid rgba(103,60,52,.1);
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.teaser-card {
  border-radius: var(--r-md);
  padding: 44px 36px;
  transition: transform .25s ease;
}
.teaser-card:hover { transform: translateY(-6px); }

.teaser-terracotta { background: var(--terracotta); }
.teaser-dusty      { background: var(--olive); }
.teaser-olive      { background: var(--olive); }

.teaser-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: .68;
  margin-bottom: 18px;
}
.teaser-terracotta .teaser-tag,
.teaser-olive .teaser-tag { color: var(--straw); }
.teaser-dusty .teaser-tag { color: var(--wine); }

.teaser-title {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 14px;
  letter-spacing: -.01em;
  line-height: 1.15;
}
.teaser-terracotta .teaser-title,
.teaser-olive .teaser-title { color: var(--straw); }
.teaser-dusty .teaser-title { color: var(--wine); }

.teaser-desc {
  font-size: 15px;
  line-height: 1.7;
  opacity: .85;
}
.teaser-terracotta .teaser-desc,
.teaser-olive .teaser-desc { color: var(--straw); }
.teaser-dusty .teaser-desc { color: var(--wine); }

.teaser-tag--available {
  opacity: 1;
  background: var(--straw);
  color: var(--olive) !important;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 10px;
}
.teaser-book-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--straw);
  letter-spacing: .04em;
  opacity: .9;
  transition: opacity .2s ease;
}
.teaser-book-link:hover { opacity: 1; }

.coming-cta { text-align: center; }
.coming-cta-label {
  font-family: var(--font-script);
  font-size: 24px;
  color: var(--choc);
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .teaser-grid { grid-template-columns: 1fr; }
  .coming-section { padding: var(--sec-v-sm) 0; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--wine);
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.6fr;
  gap: 48px;
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(250,227,177,.14);
  align-items: start;
}

.footer-logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--straw);
  text-decoration: none;
  margin-bottom: 14px;
}
.footer-logo-lockup .logo-amp { color: var(--olive); }
.footer-logo-lockup .logo-name { font-size: 24px; }
.footer-logo-lockup .logo-tagline { opacity: .55; }
.footer-city {
  font-size: 14px;
  color: var(--straw);
  opacity: .45;
  margin-top: 4px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  font-size: 15px;
  color: var(--straw);
  opacity: .72;
  transition: color .2s ease, opacity .2s ease;
}
.footer-nav a:hover { color: var(--olive); opacity: 1; }

.footer-social {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.social-icon {
  color: var(--straw);
  opacity: .7;
  transition: color .2s ease, opacity .2s ease;
  line-height: 0;
}
.social-icon:hover { color: var(--olive); opacity: 1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-email a {
  font-size: 14px;
  color: var(--olive);
  transition: opacity .2s ease;
}
.footer-email a:hover { opacity: .8; text-decoration: underline; }
.footer-legal {
  font-size: 12px;
  color: var(--straw);
  opacity: .38;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer { padding: 56px 0 28px; }
}

/* ============================================================
   PRICING — SIZE NOTE
   ============================================================ */
.size-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 20px;
  margin: 4px 8px 8px;
  background: rgba(95,168,194,.1);
  border-left: 3px solid var(--olive);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.size-note svg { flex-shrink: 0; margin-top: 2px; color: var(--olive); }
.size-note-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--choc);
  opacity: .85;
}
.size-note-text strong { opacity: 1; color: var(--choc); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--wine);
  padding: var(--sec-v) 0 var(--sec-v);
  overflow: hidden;
}
.faq-section .section-headline { color: var(--straw); margin-bottom: 12px; }
.faq-sub { font-style: italic; color: var(--olive); }

.faq-header { margin-bottom: 44px; }
.faq-hint-text {
  font-family: var(--font-script);
  font-size: 20px;
  color: var(--straw);
  opacity: .55;
  margin-top: 8px;
}

/* Scrollable track — full bleed, scrolls past container edges */
.faq-scroll-wrap {
  overflow-x: auto;
  overflow-y: visible;
  padding: 12px 28px 32px;
  scrollbar-width: thin;
  scrollbar-color: rgba(250,227,177,.25) transparent;
  cursor: grab;
}
.faq-scroll-wrap::-webkit-scrollbar { height: 4px; }
.faq-scroll-wrap::-webkit-scrollbar-thumb {
  background: rgba(250,227,177,.25);
  border-radius: 4px;
}
.faq-scroll-wrap:active { cursor: grabbing; }

.faq-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-right: 4px;
}

/* --- FLIP CARD --- */
.faq-card {
  width: 260px;
  height: 220px;
  perspective: 1000px;
  flex-shrink: 0;
  cursor: pointer;
  outline: none;
}
.faq-card:focus-visible .faq-inner {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: var(--r-md);
}

.faq-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
@media (hover: hover) {
  .faq-card:hover .faq-inner { transform: rotateY(180deg); }
}
.faq-card.flipped .faq-inner { transform: rotateY(180deg); }

.faq-front,
.faq-back {
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  padding: 28px 24px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
}

.faq-front {
  background: var(--straw);
  border: 1.5px solid rgba(103,60,52,.18);
  justify-content: space-between;
}
.faq-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 8px;
}
.faq-q {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--choc);
  line-height: 1.3;
  flex: 1;
}
.faq-flip-hint {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terracotta);
  opacity: .6;
  margin-top: 12px;
}

.faq-back {
  background: var(--terracotta);
  transform: rotateY(180deg);
  justify-content: center;
}
.faq-a {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: var(--straw);
}

/* Alternating back card colors */
.faq-card:nth-child(3n+2) .faq-back { background: var(--choc); }
.faq-card:nth-child(3n+3) .faq-back { background: var(--olive); }
.faq-card:nth-child(3n+3) .faq-a { color: var(--wine); }

@media (max-width: 768px) {
  .faq-section { padding: var(--sec-v-sm) 0; }
  .faq-scroll-wrap { padding: 12px 20px 28px; }
  .faq-hint-text { font-size: 18px; }
}

/* ============================================================
   UTILITY: success state for forms
   ============================================================ */
.btn.success {
  background: var(--olive) !important;
  transform: none !important;
  box-shadow: none !important;
}
