/* =========================================================
   Anna the Groomer — Landing Page Styles
   Brand: teal (primary), navy (deep), pink (accent), cream
   ========================================================= */

:root {
  /* Palette — defaults; overridden by Tweaks */
  --teal: #0E7C86;
  --teal-deep: #0A5A63;
  --teal-soft: #B7DDDF;
  --navy: #0B2545;
  --pink: #F7B8C9;
  --pink-deep: #E88FA7;
  --cream: #F6F1E7;
  --cream-warm: #EFE6D2;
  --paper: #FBF8F1;
  --ink: #10202E;
  --ink-soft: #3E4E5C;
  --ink-mute: #6B7A86;
  --line: #E6DFCE;

  /* Type */
  --serif: "Fraunces", "Fraunces Fallback", "Playfair Display", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "Caveat", "Homemade Apple", cursive;

  /* Spacing */
  --container: 1240px;
  --pad: clamp(20px, 4vw, 48px);
  --radius: 18px;
  --radius-lg: 28px;
}

/* Palette variants */
body[data-palette="teal"]   { --accent: var(--teal);  --accent-deep: var(--teal-deep); --hero-bg: var(--teal);  --hero-ink: #FFFBF2; }
body[data-palette="navy"]   { --accent: var(--navy);  --accent-deep: #061A36;         --hero-bg: var(--navy);  --hero-ink: #FFFBF2; }
body[data-palette="pink"]   { --accent: var(--pink-deep); --accent-deep: #C76A85;      --hero-bg: var(--pink);  --hero-ink: var(--navy); }
body[data-palette="cream"]  { --accent: var(--teal);  --accent-deep: var(--teal-deep); --hero-bg: var(--cream); --hero-ink: var(--navy); }

/* Typography variants */
body[data-type="editorial"] { --display: var(--serif); --display-weight: 400; --display-style: normal; }
body[data-type="modern"]    { --display: var(--sans);  --display-weight: 700; --display-style: normal; letter-spacing: -0.02em; }
body[data-type="handcraft"] { --display: var(--serif); --display-weight: 300; --display-style: italic; }

/* Reset-ish */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Headings — !important across the board because Tailwind's preflight
   (loaded after this file via src/index.css) resets all heading styles. */
h1, h2, h3, h4 {
  font-family: var(--display, var(--serif)) !important;
  font-weight: var(--display-weight, 400) !important;
  font-style: var(--display-style, normal) !important;
  color: var(--navy);
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
/* !important is required because main.tsx loads src/index.css (Tailwind preflight)
   AFTER this stylesheet, and Tailwind's reset wipes h1/h2 font-size to `inherit`,
   which is why the headline appeared big at first paint and then shrank. */
h1 { font-size: clamp(38px, 5.4vw, 76px) !important; }
h2 { font-size: clamp(32px, 4.4vw, 58px) !important; }
h3 { font-size: clamp(22px, 2vw, 28px) !important; }

p  { text-wrap: pretty; }

.script {
  font-family: var(--script);
  font-weight: 400;
  font-style: normal;
  color: var(--accent, var(--teal));
  letter-spacing: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent, var(--teal));
  font-family: var(--sans);
}

/* ---------- Top Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(12px);
  background: color-mix(in oklab, var(--paper) 82%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.brand-mark-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.brand-mark-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
footer .brand-mark-logo {
  background: rgba(255,255,255,0.95);
}
footer .brand-mark-logo img {
  padding: 2px;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand-name small {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
@media (max-width: 780px) { .nav-links { display: none; } }

/* Buttons */
.btn {
  --bg: var(--accent, var(--teal));
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bg);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 30px -12px color-mix(in oklab, var(--bg) 70%, transparent); }
.btn:active { transform: translateY(0); }
.btn-ghost {
  --bg: transparent;
  --fg: var(--navy);
  border-color: color-mix(in oklab, var(--navy) 30%, transparent);
}
.btn-ghost:hover { --bg: var(--navy); --fg: #fff; }
.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-lg { padding: 18px 28px; font-size: 16px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 48px 0 72px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; } }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  background: var(--pink);
  color: var(--navy);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--navy);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero h1 .accent {
  font-family: var(--script);
  font-weight: 500;
  font-style: normal;
  color: var(--accent, var(--teal));
  font-size: 0.85em;
  display: inline-block;
  line-height: 1;
  transform: rotate(-3deg);
  margin-left: 0.1em;
  vertical-align: -0.02em;
}
.hero h1 { line-height: 1.08; }
.hero-copy { padding-bottom: 8px; }

.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 48px 0 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-ctas .meta {
  color: var(--ink-mute);
  font-size: 13px;
  margin-left: 4px;
}

.hero-strip {
  display: flex;
  gap: 26px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-strip .stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-strip .stat b {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
}
.hero-strip .stat span {
  font-size: 13px;
  color: var(--ink-mute);
}

/* Hero visual collage */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 4.3;
  width: 100%;
}
.hero-photo {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(11, 37, 69, .35);
  background: var(--cream-warm);
}
.hero-photo.main { top: 0; left: 8%; width: 68%; height: 78%; }
.hero-photo.small { bottom: 4%; right: 0; width: 46%; height: 48%; }
.hero-photo.chip { top: 10%; right: 0; width: 38%; height: 26%; background: var(--pink); }
.hero-badge {
  position: absolute;
  bottom: 38%;
  left: 0;
  background: var(--paper);
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 18px 40px -18px rgba(11,37,69,.35);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-badge .avatars {
  display: flex;
}
.hero-badge .avatars span {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--paper);
  margin-left: -8px;
  display: grid; place-items: center;
  font-size: 11px; color: #fff; font-weight: 600;
}
.hero-badge .avatars span:first-child { margin-left: 0; background: var(--pink-deep); }
.hero-badge .avatars span:nth-child(2) { background: var(--navy); }
.hero-badge .avatars span:nth-child(3) { background: var(--teal); }
.hero-badge b { font-family: var(--serif); font-size: 15px; color: var(--navy); }
.hero-badge small { color: var(--ink-mute); font-size: 12px; display: block; }

/* ---------- Section shared ---------- */
section { padding: 96px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
.section-head .title { max-width: 32ch; }
.section-head .title p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 18px;
  max-width: 48ch;
}
@media (max-width: 780px) { .section-head { flex-direction: column; align-items: flex-start; } }

/* ---------- Why Mobile ---------- */
.why {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  transition: transform .2s, border-color .2s;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.why-card .icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: color-mix(in oklab, var(--accent, var(--teal)) 14%, var(--paper));
  color: var(--accent, var(--teal));
  border-radius: 12px;
  margin-bottom: 18px;
}
.why-card h3 { font-size: 20px; margin-bottom: 8px; }
.why-card p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.5; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-photo {
  aspect-ratio: 4/5;
  background: var(--teal-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 140px; height: 140px;
  background: var(--pink);
  border-radius: 50%;
  z-index: -1;
}
.about-copy h2 { margin-bottom: 20px; }
.about-copy p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.about-copy p.lede {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  color: var(--navy);
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 22px;
}
.about-sign {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px;
}
.about-sign .sig {
  font-family: var(--script);
  font-size: 34px;
  color: var(--accent);
}

/* ---------- Credentials ---------- */
.credentials {
  background: var(--navy);
  color: #E8EEF6;
  padding: 80px 0;
}
.credentials h2, .credentials h3 { color: #fff; }
.credentials .eyebrow { color: var(--pink); }
.credentials p { color: #B7C4D4; }
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  margin-top: 36px;
}
@media (max-width: 820px) { .cred-grid { grid-template-columns: 1fr; } }

.cred-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.cred-card .year {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--pink);
  line-height: 1;
  font-weight: 500;
}
.cred-card h4 {
  font-family: var(--serif);
  font-size: 19px;
  color: #fff;
  margin: 0 0 6px;
  font-weight: 500;
}
.cred-card p { font-size: 14px; margin: 0; color: #B7C4D4; }

/* ---------- Gallery ---------- */
.gallery-head { align-items: flex-end; }
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  transition: all .15s;
}
.filter:hover { border-color: var(--accent); color: var(--accent); }
.filter.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 14px;
}
@media (max-width: 820px) { .gallery-grid { grid-auto-rows: 100px; } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 80px; } }

.dog-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, opacity .25s;
  cursor: pointer; /* default; swapped for paw cursor on hover via JS */
}
.dog-tile.hidden { display: none; }
.dog-tile .photo {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--serif);
  color: rgba(255,255,255,.75);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.dog-tile .caption {
  position: absolute;
  left: 14px; bottom: 12px;
  right: 14px;
  color: #fff;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.dog-tile .name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.dog-tile .breed {
  font-size: 12px;
  opacity: .85;
  margin-top: 4px;
}
.dog-tile .tag {
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dog-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,37,69,.65) 0%, rgba(11,37,69,.1) 40%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.dog-tile:hover { transform: scale(1.01); }

/* Before/after slider tile */
.ba-tile {
  grid-column: span 6;
  grid-row: span 4;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: ew-resize;
  user-select: none;
}
.ba-tile .side {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ba-tile .after { clip-path: inset(0 0 0 50%); transition: clip-path .05s linear; }
.ba-tile .drag-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,.3);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 3;
}
.ba-tile .drag-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
  pointer-events: none;
  z-index: 4;
  color: var(--navy);
}
.ba-tile .ba-label {
  position: absolute;
  top: 14px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.35);
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 3;
}
.ba-tile .ba-label.l { left: 14px; }
.ba-tile .ba-label.r { right: 14px; }
.ba-tile .ba-hint {
  position: absolute;
  bottom: 14px; left: 14px;
  color: #fff;
  z-index: 3;
}
.ba-tile .ba-hint .name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

/* Gallery tile size classes */
.t-s  { grid-column: span 3; grid-row: span 2; }
.t-m  { grid-column: span 4; grid-row: span 2; }
.t-l  { grid-column: span 4; grid-row: span 3; }
.t-xl { grid-column: span 6; grid-row: span 3; }
.t-wide { grid-column: span 6; grid-row: span 2; }

@media (max-width: 820px) {
  .t-s  { grid-column: span 6; grid-row: span 2; }
  .t-m  { grid-column: span 6; grid-row: span 2; }
  .t-l  { grid-column: span 6; grid-row: span 3; }
  .t-xl { grid-column: span 12; grid-row: span 3; }
  .t-wide { grid-column: span 12; grid-row: span 2; }
  .ba-tile { grid-column: span 12; grid-row: span 3; }
}
@media (max-width: 520px) {
  .t-s, .t-m  { grid-column: span 3; grid-row: span 2; }
  .t-l, .t-xl, .t-wide, .ba-tile { grid-column: span 6; grid-row: span 3; }
}

/* ---------- Testimonials ---------- */
.quotes {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }

.quote-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  border: 1px solid var(--line);
}
.quote-card .mark {
  font-family: var(--serif);
  font-size: 80px;
  color: var(--pink);
  line-height: 0.6;
  margin-bottom: 10px;
}
.quote-card blockquote {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--navy);
}
.quote-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.quote-card .who .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 14px;
}
.quote-card .who b { display: block; font-size: 15px; color: var(--navy); }
.quote-card .who small { color: var(--ink-mute); font-size: 13px; }
.quote-card .stars { color: #F4B03F; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 820px) { .services-grid { grid-template-columns: 1fr; } }

.service {
  padding: 28px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  transition: border-color .2s, background .2s;
}
.service:hover { border-color: var(--accent); background: color-mix(in oklab, var(--paper) 92%, var(--accent) 8%); }
.service .si {
  width: 56px; height: 56px;
  background: color-mix(in oklab, var(--accent) 14%, var(--paper));
  color: var(--accent);
  border-radius: 14px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.service h3 { font-size: 20px; margin-bottom: 4px; }
.service .desc { color: var(--ink-soft); font-size: 14px; margin: 0; }
.service .price {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}
.service .price small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: right;
}

.services-footnote {
  margin-top: 32px;
  text-align: center;
  color: var(--ink-mute);
  font-size: 14px;
}

/* ---------- Service area / Map ---------- */
.area {
  background: var(--paper);
  position: relative;
}
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .area-grid { grid-template-columns: 1fr; gap: 32px; } }

.zip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.zip {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}
.zip.hub { background: var(--teal); border-color: var(--teal); color: #fff; }

.map-wrap {
  position: relative;
  aspect-ratio: 5/4;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
#map-svg { display: block; width: 100%; height: 100%; }

/* ---------- Booking ---------- */
.book {
  background: var(--navy);
  color: #fff;
}
.book h2, .book .eyebrow { color: #fff; }
.book .eyebrow { color: var(--pink); }
.book-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 56px;
}
@media (max-width: 900px) { .book-grid { grid-template-columns: 1fr; gap: 32px; } }

.book-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.method {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: background .2s, transform .15s;
}
.method:hover { background: rgba(255,255,255,.10); transform: translateX(2px); }
.method .icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  color: var(--pink);
  border-radius: 10px;
  display: grid; place-items: center;
}
.method b {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  color: #fff;
  margin-bottom: 2px;
  font-weight: 500;
}
.method small { color: #B7C4D4; font-size: 13px; }
.method .arrow {
  color: var(--pink);
  opacity: 0;
  transform: translateX(-4px);
  transition: all .2s;
}
.method:hover .arrow { opacity: 1; transform: translateX(0); }

.form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  transition: border-color .2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none; border-color: var(--pink);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(255,255,255,.4); }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .form-2col { grid-template-columns: 1fr; } }
.form-submit { width: 100%; justify-content: center; background: var(--pink); color: var(--navy); border-color: var(--pink); }
.form-submit:hover { background: #fff; border-color: #fff; }
.form-note { color: #B7C4D4; font-size: 13px; margin-top: 12px; text-align: center; }
.form-success {
  display: none;
  background: rgba(247,184,201,.15);
  border: 1px solid var(--pink);
  color: #fff;
  padding: 18px;
  border-radius: 12px;
  margin-top: 14px;
  font-size: 14px;
}
.form-success.show { display: block; }

/* ---------- Footer ---------- */
footer {
  background: var(--paper);
  padding: 56px 0 40px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-socials { display: flex; gap: 10px; }
.foot-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--navy);
  text-decoration: none;
  transition: all .2s;
}
.foot-socials a:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.foot-copy { color: var(--ink-mute); font-size: 13px; }

/* ---------- Floating book button ---------- */
.fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 60;
  background: var(--accent);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 40px -12px color-mix(in oklab, var(--accent) 70%, transparent);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s;
}
.fab.show { opacity: 1; transform: translateY(0); }
@media (max-width: 520px) { .fab { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 14px; } }

/* ---------- Paw cursor (applied to dog-tile hover via JS) ---------- */
.paw-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 44px; height: 44px;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.5) rotate(-10deg);
  transition: opacity .2s, transform .2s;
}
.paw-cursor.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(-10deg);
}

/* ---------- Tweaks panel ---------- */
#tweaks {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 70;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  width: 280px;
  box-shadow: 0 30px 60px -20px rgba(11,37,69,.25);
  font-family: var(--sans);
  display: none;
}
#tweaks.show { display: block; }
#tweaks h4 {
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin: 0 0 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tweak-close {
  background: none; border: none;
  color: var(--ink-mute); cursor: pointer; padding: 0;
  font-size: 18px; line-height: 1;
}
.tweak-row { margin-bottom: 14px; }
.tweak-row > label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 6px;
  font-weight: 600;
}
.swatches { display: flex; gap: 6px; }
.sw {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s;
}
.sw:hover { transform: scale(1.05); }
.sw.active { border-color: var(--navy); box-shadow: 0 0 0 2px var(--paper) inset; }
.sw-teal { background: var(--teal); }
.sw-navy { background: var(--navy); }
.sw-pink { background: var(--pink-deep); }
.sw-cream { background: var(--cream-warm); }

.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 12px;
  cursor: pointer;
  color: var(--ink-soft);
  font-weight: 500;
  transition: all .15s;
}
.chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Fade-in on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ─── FLOATING ASSISTANT ─── */
.float-assist {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
}

.float-assist:hover .float-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.float-tooltip {
  position: absolute;
  bottom: 72px;
  right: 0;
  background: var(--navy, #0B2545);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.25s ease;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(11, 37, 69, 0.2);
}

.float-tooltip-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

.float-tooltip-sub {
  font-size: 12px;
  opacity: 0.8;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--teal, #0E7C86), #0a5d66);
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(14, 124, 134, 0.35);
  color: #fff;
  position: relative;
}

.float-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 12px;
  height: 12px;
  background: #4ade80;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: assist-pulse 2s infinite;
}

@keyframes assist-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.15); }
}

@media (max-width: 640px) {
  .float-assist { bottom: 18px; right: 18px; }
  .float-btn { width: 56px; height: 56px; }
}
