/* ==========================================================================
   The Pet Retreat — Main Stylesheet
   ========================================================================== */

:root {
  --bg: #FAF7F2;
  --bg-alt: #F2ECE1;
  --ink: #0F223D;
  --ink-soft: #2B4263;
  --ink-muted: #5D728F;
  --paper: #FFFFFF;
  --accent: #C8973E;
  --accent-light: #F9F3E5;
  --accent-ink: #503708;
  --moss: #1E3A5F;
  --moss-light: #325B8E;
  --moss-soft: #E9F0FA;
  --line: #E6DCCB;
  --line-subtle: #F0E9DC;
  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  --shadow-sm: 0 4px 14px rgba(15, 34, 61, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 34, 61, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 34, 61, 0.13);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --transition-fast: 0.2s var(--ease);
  --transition-normal: 0.35s var(--ease);
  --transition-slow: 0.6s var(--ease);
}

/* ---------- Global Resets & Typography ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

:target,
.anchor-target,
[id] {
  scroll-margin-top: 96px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
  cursor: pointer;
}

button,
[role="button"],
select,
summary,
label[for] {
  cursor: pointer;
}

/* Accessibility Focus States */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Screen Reader Only Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Respect Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

ul,
ol {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
}

section {
  position: relative;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.wrap-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ---------- Native Cursor Support ---------- */
#cur-dot,
#cur-ring,
.paw-trail-dot,
.paw-click-stamp {
  display: none !important;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid var(--ink);
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: color var(--transition-normal), border-color var(--transition-normal);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
  z-index: -1;
  border-radius: var(--radius-full);
}

.btn:hover::before {
  transform: translateY(0);
}

.btn:hover {
  color: var(--paper);
}

.btn .arrow {
  transition: transform var(--transition-normal);
  display: inline-block;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn.solid {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn.solid::before {
  background: var(--accent);
}

.btn.solid:hover {
  color: var(--accent-ink);
  border-color: var(--accent);
}

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

.btn.accent::before {
  background: var(--ink);
}

.btn.accent:hover {
  color: var(--paper);
  border-color: var(--ink);
}

.btn.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

/* ---------- Header & Navigation ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  padding: 22px 0;
  transition: padding var(--transition-normal), background var(--transition-normal), box-shadow var(--transition-normal);
}

header.scrolled {
  padding: 14px 0;
  background: rgba(245, 242, 234, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  box-shadow: 0 2px 10px rgba(15, 34, 61, 0.12);
  flex-shrink: 0;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  background: #FFF;
}

.logo:hover .brand-logo-img {
  transform: rotate(-6deg) scale(1.06);
  box-shadow: 0 4px 14px rgba(200, 151, 62, 0.35);
}

.foot-logo-img {
  width: 52px;
  height: 52px;
  border-width: 2px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-normal), background var(--transition-normal);
}

.logo:hover .logo-mark {
  transform: rotate(-10deg) scale(1.05);
  background: var(--moss);
}

.logo-mark svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  font-size: 14.5px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--ink);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  font-weight: 600;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active::after {
  background: var(--moss);
}

/* ---------- Services Dropdown Navigation ---------- */
.nav-item-dropdown {
  position: relative;
  list-style: none;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.nav-dropdown-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  margin-left: 2px;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform 0.25s var(--ease);
}

.nav-dropdown-btn:hover {
  background: rgba(15, 34, 61, 0.08);
  border-color: var(--line);
  color: var(--ink);
}

.nav-dropdown-btn svg,
.dropdown-chevron {
  transition: transform 0.25s var(--ease);
}

.nav-item-dropdown:hover .nav-dropdown-btn svg,
.nav-item-dropdown.is-open .nav-dropdown-btn svg,
.nav-dropdown-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* Hover bridge between trigger link and dropdown panel */
.nav-item-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 20px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 620px;
  max-width: 92vw;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(15, 34, 61, 0.16);
  padding: 22px 24px 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 550;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #FFFFFF;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.is-open .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
}

.nav-dropdown-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-dropdown-heading {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
  padding: 0 8px;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--ink);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.nav-dropdown-item::after {
  display: none !important;
}

.nav-dropdown-item:hover {
  background: var(--bg);
  transform: translateX(4px);
}

.dropdown-item-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.dropdown-item-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.dropdown-item-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.dropdown-item-price {
  font-size: 11.5px;
  color: var(--ink-muted);
}

.dropdown-item-price strong {
  color: var(--moss);
  font-weight: 600;
}

.nav-dropdown-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.dropdown-footer-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
}

.dropdown-footer-all::after {
  display: none !important;
}

.dropdown-footer-all:hover {
  color: var(--accent);
}

.dropdown-footer-wa {
  font-size: 12px;
  font-weight: 600;
  color: #167A3E;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.dropdown-footer-wa::after {
  display: none !important;
}

.dropdown-footer-wa:hover {
  background: rgba(37, 211, 102, 0.22);
  transform: scale(1.03);
}

/* Mobile Drawer Dropdown Styles */
.mobile-dropdown-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mobile-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-dropdown-toggle {
  background: var(--bg);
  border: 1px solid var(--line);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  padding: 0;
  transition: transform 0.25s var(--ease), background var(--transition-fast);
}

.mobile-dropdown-toggle:hover {
  background: var(--line-subtle);
}

.mobile-dropdown-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0 10px 14px;
  border-left: 2px solid var(--accent);
  margin: 8px 0 12px 6px;
}

.mobile-dropdown-content.is-open {
  display: flex;
}

.mobile-dropdown-content a {
  font-family: 'Sora', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: var(--ink-soft) !important;
  text-decoration: none;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.mobile-dropdown-content a:hover {
  color: var(--ink) !important;
  transform: translateX(4px);
}

.mobile-dropdown-content small {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
}

.mobile-dropdown-all {
  font-weight: 700 !important;
  color: var(--accent) !important;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid var(--line-subtle);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Burger menu button */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  cursor: pointer;
  z-index: 600;
  background: none;
  border: none;
  padding: 12px 8px;
  touch-action: manipulation;
}

.burger span {
  position: absolute;
  left: 8px;
  width: calc(100% - 16px);
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
}

.burger span:nth-child(1) {
  top: 12px;
}

.burger span:nth-child(2) {
  top: 21px;
}

.burger span:nth-child(3) {
  top: 30px;
}

.burger.active span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.burger.active span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  background: var(--paper);
  box-shadow: -10px 0 30px rgba(23, 36, 28, 0.15);
  z-index: 550;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  padding: 90px 28px 36px;
  visibility: hidden;
  pointer-events: none;
  transition: right .4s var(--ease), visibility .4s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-drawer.open {
  right: 0;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(23, 36, 28, 0.4);
  backdrop-filter: blur(4px);
  z-index: 520;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--ink);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.mobile-nav-links a.active,
.mobile-nav-links a:hover {
  color: var(--moss);
  transform: translateX(6px);
}

.mobile-nav-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 14px;
  color: var(--ink-soft);
}

.mobile-nav-footer p {
  margin-bottom: 16px;
}

/* ---------- Page Hero (Subpages) ---------- */
.page-hero {
  padding: 150px 0 60px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-subtle);
}

.page-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.1;
  margin: 18px 0 16px;
}

.page-hero p {
  font-size: 17.5px;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Home Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 0 90px;
  overflow: hidden;
  position: relative;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  z-index: -1;
  animation: float 14s ease-in-out infinite;
}

.blob-a {
  width: 540px;
  height: 540px;
  background: var(--accent);
  top: -160px;
  right: -140px;
  opacity: .25;
}

.blob-b {
  width: 440px;
  height: 440px;
  background: var(--moss);
  bottom: -160px;
  left: -120px;
  opacity: .2;
  animation-delay: -6s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -24px) scale(1.06);
  }
}

.paw-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.paw-field svg {
  position: absolute;
  opacity: .14;
  animation: drift 20s linear infinite;
}

@keyframes drift {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-40px) rotate(8deg);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}

.hero .eyebrow {
  display: inline-block;
  animation: heroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.04;
  margin: 22px 0 24px;
  animation: heroFadeIn 0.8s 0.12s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 em {
  font-style: normal;
  color: var(--moss);
}

.hero p {
  font-size: 17.5px;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 36px;
  animation: heroFadeIn 0.8s 0.22s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroFadeIn 0.8s 0.32s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(155deg, #E7DCC0, #CFDCC6 55%, #B9CDBE);
  box-shadow: 0 20px 50px rgba(15, 34, 61, 0.12);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  animation: heroScaleIn 1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-media:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 65px rgba(15, 34, 61, 0.18);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-media:hover img {
  transform: scale(1.04);
}

.hero-media .grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(23, 36, 28, .12) 1px, transparent 1px);
  background-size: 14px 14px;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-media .hero-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(15, 34, 61, 0.14);
  border: 1px solid rgba(217, 164, 65, 0.3);
  z-index: 2;
  animation: badgeGentlyFloat 4s ease-in-out infinite;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-media .hero-badge:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(15, 34, 61, 0.2);
}

.hero-media .hero-badge span {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--moss);
}

.hero-media .tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--paper);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  border: 1px solid var(--line-subtle);
}

.hero-media .tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 6px rgba(37, 211, 102, 0.6);
  animation: pulseBeacon 2s infinite;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroScaleIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(24px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes badgeGentlyFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* ---------- Marquee Strip ---------- */
.marquee-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

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

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  white-space: nowrap;
}

.marquee-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Section Heading ---------- */
.sec-head {
  max-width: 660px;
  margin: 0 auto 60px;
  text-align: center;
}

.sec-head h2 {
  font-size: clamp(30px, 3.8vw, 46px);
  margin-top: 14px;
}

.sec-head p {
  color: var(--ink-soft);
  margin-top: 14px;
  font-size: 16.5px;
}

/* ---------- Services Section & Rows ---------- */
.services {
  padding: 120px 0;
}

.service-row {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
  border-top: 1px solid var(--line);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  position: relative;
}

.service-row.in-view {
  opacity: 1;
  transform: translateY(0);
}

.service-row:nth-child(even) .service-media {
  order: 2;
}

.service-media {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: 0 12px 36px rgba(15, 34, 61, 0.08);
  background: #EFEADC;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.service-row:hover .service-media {
  box-shadow: 0 24px 55px rgba(15, 34, 61, 0.14);
}

/* Primary service image (scoped so nested icons/mascots do not expand) */
.service-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition-slow);
  display: block;
}

.service-row:hover .service-media > img {
  transform: scale(1.04);
}

/* Animated Mascot Peeker on Service Media Cards */
.popup-pet-peeker {
  position: absolute;
  top: -24px;
  right: 28px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  animation: peekerFloat 4s ease-in-out infinite;
}

.service-row:nth-child(even) .popup-pet-peeker {
  right: auto;
  left: 28px;
}

.peeker-bubble {
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid var(--accent);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 18px rgba(15, 34, 61, 0.14);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  margin-bottom: -6px;
  position: relative;
  z-index: 2;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.service-row:hover .peeker-bubble {
  transform: scale(1.06) translateY(-2px);
  border-color: var(--moss);
}

.blink-star-icon {
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  max-height: 15px !important;
  flex-shrink: 0;
  animation: starBlink 2s ease-in-out infinite;
}

.pet-svg-wrap {
  width: 58px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  filter: drop-shadow(0 3px 6px rgba(15, 34, 61, 0.14));
}

.pet-svg-wrap svg {
  width: 100%;
  height: 100%;
}

@keyframes peekerFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes starBlink {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.25) rotate(18deg);
    opacity: 0.85;
  }
}

.service-media .num {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: 'Fraunces', serif;
  font-size: 14px;
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(15, 34, 61, 0.1);
  border: 1px solid rgba(217, 164, 65, 0.25);
  color: var(--ink);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.service-row:hover .service-media .num {
  transform: scale(1.08);
  border-color: var(--accent);
  color: var(--moss);
}

.service-copy h3 {
  font-size: clamp(24px, 2.8vw, 34px);
  margin: 14px 0 14px;
}

.service-copy p {
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 480px;
}

.service-list {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.service-list li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
  align-items: flex-start;
}

.service-list li::before {
  content: "✦";
  color: var(--accent);
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 2px;
}

/* ---------- Services Catalog Cards (3-Column Grid Matching Gallery Layout) ---------- */
.services-catalog {
  padding: 80px 0 120px;
  background: var(--bg);
}

.services-grid-detailed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  transition: all 0.4s var(--ease);
}

.service-card-detailed {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.service-card-detailed:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 34, 61, 0.14);
  border-color: rgba(200, 151, 62, 0.45);
}

.service-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #EFEADC;
}

.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  filter: brightness(0.95) contrast(1.02);
  display: block;
}

.service-card-detailed:hover .service-card-img-wrap img {
  transform: scale(1.08);
  filter: brightness(1.02) contrast(1.04);
}

/* Card Header Badges (Top Overlays matching .gal-tile-top) */
.service-card-top {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
  pointer-events: none;
}

.service-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: rgba(15, 34, 61, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 253, 248, 0.2);
  color: #FFFDF8;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-cat-badge .cat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.service-num-pill {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 151, 62, 0.35);
  color: var(--navy);
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.service-card-body {
  padding: 24px 22px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-location-tag {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent-ink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card-detailed h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}

.service-card-detailed:hover h3 {
  color: var(--accent-ink);
}

.service-card-detailed p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.6;
}

.service-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.service-perks li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
}

.service-perks .perk-check {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.service-card-footer {
  margin-top: auto;
  border-top: 1px solid var(--line-subtle);
  padding: 16px 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 253, 248, 0.6);
  border-radius: 0 0 var(--radius) var(--radius);
}

.service-pricing {
  font-size: 11px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.service-pricing strong {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  display: block;
  margin-top: 2px;
}

.service-pricing strong small {
  font-size: 12px;
  font-family: inherit;
  font-weight: 500;
  color: var(--ink-soft);
}

.service-card-footer .btn {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.service-freebies-box {
  background: rgba(217, 164, 65, 0.08);
  border: 1px dashed var(--accent);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin: 10px 0 16px;
  font-size: 12.5px;
}

.service-freebies-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--accent-ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.service-freebies-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-freebies-list li {
  font-size: 12px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-freebies-list li::before {
  content: "✓";
  color: var(--moss);
  font-weight: 700;
  font-size: 11px;
}

.btn-whatsapp-direct {
  background: #25D366 !important;
  color: #FFFFFF !important;
  border: 1px solid #25D366 !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp-direct:hover {
  background: #1EBE5D !important;
  border-color: #1EBE5D !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.38);
}

/* Quick Pricing Menu Table / Summary Card */
.pricing-overview-banner {
  background: var(--paper);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 40px;
  box-shadow: 0 12px 35px rgba(15, 34, 61, 0.08);
  position: relative;
  overflow: hidden;
}

.pricing-overview-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--moss), var(--accent));
}

.pricing-banner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-subtle);
}

.pricing-banner-header h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--navy);
  margin: 0;
}

.pricing-banner-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #167A3E;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
}

.pricing-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.pricing-quick-item {
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.pricing-quick-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(15, 34, 61, 0.08);
}

.pricing-quick-item.featured {
  background: rgba(217, 164, 65, 0.06);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(217, 164, 65, 0.15);
}

.pricing-item-title {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-item-tag {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--accent);
  color: var(--paper);
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-weight: 700;
}

.pricing-item-rate {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--moss);
  margin: 6px 0;
}

.pricing-item-rate small {
  font-size: 12px;
  font-family: inherit;
  color: var(--ink-soft);
  font-weight: 500;
}

.pricing-item-desc {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.45;
  margin-bottom: 10px;
}

.pricing-item-free-list {
  font-size: 11.5px;
  color: #8B6514;
  background: rgba(217, 164, 65, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.35;
}

.pricing-item-btn {
  margin-top: auto;
  padding: 8px 14px;
  font-size: 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-fast);
}



/* ---------- Gallery & Filter Tabs ---------- */
.gallery {
  padding: 80px 0 120px;
  background: var(--bg);
  position: relative;
  z-index: 1;
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-subtle);
  width: 100%;
}

.gallery-filters {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 100%;
}

.filter-btn {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  user-select: none;
}

.filter-btn .filter-count {
  font-size: 11px;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  background: var(--bg-alt);
  color: var(--ink-muted);
  font-weight: 700;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--ink-muted);
  color: var(--ink);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: 0 4px 16px rgba(23, 36, 28, 0.2);
}

.filter-btn.active .filter-count {
  background: rgba(255, 253, 248, 0.2);
  color: var(--paper);
}

/* Gallery Grid Layout (Clean 3-Column Photography Grid) */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 28px;
  transition: all 0.4s var(--ease);
}

/* Gallery Card (Tile) */
.gal-tile {
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background: #1B2920;
  border: 1px solid rgba(23, 36, 28, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), opacity 0.3s ease;
  cursor: pointer;
  min-height: 240px;
  user-select: none;
}

.gal-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  filter: brightness(0.92) contrast(1.02);
  display: block;
}

.gal-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(23, 36, 28, 0.22);
  border-color: rgba(217, 164, 65, 0.35);
}

.gal-tile:hover img {
  transform: scale(1.07);
  filter: brightness(1) contrast(1.05);
}

/* Card Header Badges (Top Overlays) */
.gal-tile-top {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
  pointer-events: none;
}

.gal-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: rgba(23, 36, 28, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 253, 248, 0.18);
  color: #FFFDF8;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gal-cat-badge .cat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.gal-expand-pill {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.85);
  backdrop-filter: blur(8px);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7) rotate(-15deg);
  transition: all 0.35s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.gal-expand-pill svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gal-tile:hover .gal-expand-pill {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Card Bottom Info Overlay */
.gal-info-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px;
  z-index: 3;
  color: #FFFDF8;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(15, 25, 19, 0.1) 35%,
      rgba(15, 25, 19, 0.75) 70%,
      rgba(15, 25, 19, 0.96) 100%);
  pointer-events: none;
}

.gal-location-tag {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.gal-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: #FFFDF8;
  margin-bottom: 6px;
  transition: color var(--transition-fast);
}

.gal-tile:hover .gal-title {
  color: #FFE6A8;
}

.gal-desc-snip {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 253, 248, 0.82);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: opacity var(--transition-normal);
}

.gal-action-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  opacity: 0.9;
  transform: translateX(0);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.gal-tile:hover .gal-action-link {
  transform: translateX(4px);
  color: #FFF;
}

/* ==========================================================================
   Professional Cinematic Lightbox Modal
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 14, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-dialog {
  background: var(--paper);
  border-radius: var(--radius-lg);
  max-width: 1100px;
  width: 100%;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  transform: scale(0.94) translateY(12px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.open .lightbox-dialog {
  transform: scale(1) translateY(0);
}

/* Lightbox Header Bar */
.lightbox-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: var(--paper);
  border-bottom: 1px solid var(--line-subtle);
  z-index: 10;
}

.lightbox-counter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--bg-alt);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.lightbox-counter-badge .paw-icon {
  color: var(--moss);
  font-size: 14px;
}

.lightbox-top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lightbox-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close-btn:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: scale(1.06);
}

/* Lightbox Main Stage (Image + Details Split) */
.lightbox-main-stage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  flex: 1;
  min-height: 420px;
  overflow: hidden;
  background: #111A14;
}

.lightbox-view-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0E1510;
  overflow: hidden;
  padding: 20px;
}

.lightbox-view-area img {
  max-width: 100%;
  max-height: 58vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Navigation Arrow Buttons */
.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(23, 36, 28, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFDF8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: all var(--transition-fast);
  z-index: 5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.lightbox-nav-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.lightbox-nav-btn:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-nav-btn.prev {
  left: 20px;
}

.lightbox-nav-btn.next {
  right: 20px;
}

/* Lightbox Info Drawer */
.lightbox-info-drawer {
  background: var(--paper);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}

.lightbox-info-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lightbox-category-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: var(--accent-light);
  color: var(--accent-ink);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

.lightbox-info-drawer h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--ink);
  line-height: 1.25;
}

.lightbox-info-drawer p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.lightbox-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line-subtle);
}

.lightbox-meta-pill {
  font-size: 12.5px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: var(--bg-alt);
  color: var(--ink-soft);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lightbox-cta-wrap {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* Lightbox Filmstrip (Thumbnail Bottom Bar) */
.lightbox-filmstrip {
  background: #0B120E;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.lightbox-thumb-item {
  flex: 0 0 72px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  opacity: 0.45;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
}

.lightbox-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox-thumb-item:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.lightbox-thumb-item.active {
  opacity: 1;
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(217, 164, 65, 0.4);
}

@media (max-width: 960px) {
  .gallery-toolbar {
    margin-bottom: 28px;
    padding-bottom: 16px;
  }

  .gallery-filters {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 4px 8px;
    flex-wrap: nowrap;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .gallery-filters .filter-btn {
    flex-shrink: 0;
  }

  .gal-grid,
  .services-grid-detailed {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gal-grid {
    grid-auto-rows: 260px;
  }

  .lightbox-main-stage {
    grid-template-columns: 1fr;
  }

  .lightbox-view-area {
    min-height: 280px;
    padding: 14px;
  }

  .lightbox-info-drawer {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .gal-grid,
  .services-grid-detailed {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gal-grid {
    grid-auto-rows: 260px;
  }
}

@media (max-width: 580px) {
  .gal-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .lightbox-dialog {
    max-height: 96vh;
    border-radius: var(--radius);
  }

  .lightbox-topbar {
    padding: 14px 18px;
  }

  .lightbox-info-drawer {
    padding: 18px;
  }

  .lightbox-info-drawer h3 {
    font-size: 20px;
  }

  .lightbox-meta-pills {
    display: none;
  }
}

/* ---------- Stats Section ---------- */
.stats {
  padding: 100px 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-card {
  background: var(--paper);
  padding: 36px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15, 34, 61, 0.1);
  border-color: rgba(200, 151, 62, 0.45);
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 4.2vw, 56px);
  color: var(--moss);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 10px;
  letter-spacing: .02em;
  font-weight: 500;
}

/* ---------- Why Us / About Features ---------- */
.why {
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.why-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(15, 34, 61, 0.12);
  border-color: rgba(200, 151, 62, 0.45);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-6deg);
  background: var(--moss);
  color: #FFFDF8;
}

.foot-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 16px;
  font-weight: 600;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--moss-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.why-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--moss);
}

.why-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- Pillars Overview Cards ---------- */
.pillar-nav-card {
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s var(--ease);
}

.pillar-nav-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--moss);
}

.pillar-nav-card:hover .arrow {
  transform: translateY(4px);
}

@media (max-width: 940px) {
  .pillars-nav-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ---------- Team Section (About Page) ---------- */
.team-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.team-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  height: 240px;
  position: relative;
  overflow: hidden;
  background: #EFEADC;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-avatar img {
  transform: scale(1.06);
}

.team-info {
  padding: 28px;
}

.team-info h4 {
  font-size: 20px;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--moss);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
  display: block;
}

.team-info p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- Values / Philosophy (About Page) ---------- */
.story-section {
  padding: 100px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-media {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: #EFEADC;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  margin: 16px 0 20px;
}

.story-copy p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ---------- Contact & Booking Form ---------- */
.contact-section {
  padding: 90px 0 120px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: flex-start;
}

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

.form-card h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.form-card>p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 30px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.form-control {
  width: 100%;
  padding: 13px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  background: var(--paper);
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(79, 111, 82, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.info-box h3 {
  font-size: 20px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 10px;
  line-height: 1.6;
}

.info-box strong {
  color: var(--ink);
}

.info-highlight {
  background: var(--accent-light);
  border: 1px solid var(--accent);
}

.info-highlight h3 {
  color: var(--accent-ink);
}

/* Accordion Component */
.faq-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-header {
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  user-select: none;
}

.faq-icon {
  font-size: 20px;
  transition: transform var(--transition-normal);
  color: var(--moss);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
  padding: 0 26px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.active .faq-content {
  max-height: 250px;
  padding: 0 26px 24px;
}

/* Toast Feedback */
.toast-msg {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--ink);
  color: var(--paper);
  padding: 16px 26px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

/* ---------- CTA Band ---------- */
.cta-band {
  padding: 110px 0;
}

.cta-inner {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-inner::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .18;
  filter: blur(70px);
  top: -140px;
  left: -100px;
}

.cta-inner::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--moss);
  opacity: .2;
  filter: blur(60px);
  bottom: -100px;
  right: -80px;
}

.cta-inner h2 {
  font-size: clamp(28px, 4vw, 44px);
  max-width: 600px;
  margin: 16px auto 30px;
  color: var(--paper);
}

.cta-inner .btn.solid {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.cta-inner .btn.solid::before {
  background: var(--paper);
}

.cta-inner .btn.solid:hover {
  color: var(--ink);
}

/* ---------- Footer ---------- */
footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
  background: var(--bg);
  margin-top: auto;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 50px;
}

.foot-brand p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.6;
}

footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-weight: 700;
}

footer li {
  margin-bottom: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

footer li a {
  color: var(--ink-soft);
  transition: color var(--transition-fast);
}

footer li a:hover {
  color: var(--moss);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 26px;
  padding-right: 84px; /* Clearance for floating WhatsApp & Call buttons */
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-soft);
}

.foot-copy {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
}

.foot-legal-nav {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.foot-legal-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

.foot-legal-nav a:hover {
  color: var(--accent);
}

.foot-legal-dot {
  color: var(--line);
  font-size: 11px;
  user-select: none;
}

.foot-social {
  display: none;
}

/* ---------- Reveal Utility ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive Breakpoints ---------- */
@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: block;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 940px) {

  .service-row {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 50px 0;
  }

  .service-row:nth-child(even) .service-media {
    order: 0;
  }

  .popup-pet-peeker {
    top: -20px;
    right: 20px;
  }

  .service-row:nth-child(even) .popup-pet-peeker {
    left: 20px;
    right: auto;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {

  .wrap,
  .wrap-narrow {
    padding: 0 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-card {
    padding: 28px 20px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .foot-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding-right: 0;
    padding-bottom: 84px;
  }

  .hero-media .hero-badge {
    top: 14px;
    right: 14px;
    padding: 8px 14px;
    font-size: 11.5px;
  }

  .hero-media .hero-badge span {
    font-size: 17px;
  }

  .hero-media .tag {
    left: 14px;
    bottom: 14px;
    padding: 7px 14px;
    font-size: 11.5px;
  }

  .foot-legal-nav {
    justify-content: center;
  }

  .cta-inner {
    padding: 50px 24px;
  }
}

/* ==========================================================================
   The Pet Retreat — Header Direct Call CTA, Google Reviews & Floating Widgets
   ========================================================================== */

/* Top Corner Header Direct Call Button */
.header-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--paper);
  border: 1.5px solid var(--moss);
  border-radius: var(--radius-full);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(79, 111, 82, 0.12);
  white-space: nowrap;
}

.header-call-btn:hover {
  background: var(--moss);
  color: #FFFDF8;
  border-color: var(--moss);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(79, 111, 82, 0.25);
}

.header-call-btn .call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moss);
  transition: color var(--transition-fast);
}

.header-call-btn:hover .call-icon {
  color: #FFFDF8;
}

.call-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  position: relative;
  flex-shrink: 0;
}

.call-pulse-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  animation: pulseBeacon 1.8s infinite;
}

@keyframes pulseBeacon {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }

  70% {
    transform: scale(2.2);
    opacity: 0;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .header-call-btn {
    padding: 7px 12px;
    font-size: 12.5px;
    gap: 6px;
  }

  .header-book-btn {
    display: none;
  }
}

@media (max-width: 420px) {
  .header-call-btn {
    padding: 6px 10px;
    font-size: 11.5px;
    gap: 5px;
  }
}

@media (max-width: 390px) {
  .header-call-btn .call-text {
    display: none;
  }

  .header-call-btn {
    padding: 7px 10px;
  }
}

/* Google Reviews & Reputation Section */
.google-reviews-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}

.google-reviews-summary-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 44px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.google-brand-badge {
  display: flex;
  align-items: center;
  gap: 16px;
}

.google-logo-svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.google-score-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.google-score-num {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.google-stars {
  color: #FBBC05;
  font-size: 20px;
  letter-spacing: 2px;
}

.google-review-count {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-top: 4px;
  font-weight: 500;
}

.google-actions-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.btn-google:hover {
  border-color: var(--ink);
  background: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-google.primary {
  background: #1a73e8;
  color: #fff;
  border-color: #1a73e8;
}

.btn-google.primary:hover {
  background: #1557b0;
  border-color: #1557b0;
  color: #fff;
}

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

.review-card-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.review-card-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--moss-light);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--moss);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid var(--moss-soft);
}

.review-author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.review-tag {
  font-size: 12px;
  color: var(--moss);
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-quote-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-style: italic;
  position: relative;
  margin-bottom: 20px;
  flex: 1;
}

.review-quote-text::before {
  content: "“";
  font-family: 'Fraunces', serif;
  font-size: 40px;
  line-height: 0;
  position: absolute;
  top: 10px;
  left: -8px;
  color: var(--line);
  opacity: 0.6;
}

.review-card-footer {
  border-top: 1px solid var(--line-subtle);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-source-link {
  font-size: 12.5px;
  color: #1a73e8;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.review-source-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .reviews-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .google-reviews-summary-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}

/* Floating Quick Contact Bar (WhatsApp + Direct Call) */
.floating-contact-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 490;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 18px rgba(23, 36, 28, 0.22);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(23, 36, 28, 0.3);
  color: #fff;
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.call {
  background: var(--ink);
  border: 2px solid var(--accent);
}

.float-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.float-tooltip {
  position: absolute;
  right: 64px;
  background: var(--ink);
  color: var(--paper);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s, transform 0.2s;
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 600px) {
  .floating-contact-bar {
    bottom: 18px;
    right: 18px;
    gap: 10px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }

  .float-btn svg {
    width: 22px;
    height: 22px;
  }

  .float-tooltip {
    display: none;
  }
}

/* ==========================================================================
   LEGAL PAGES & DOCUMENTATION STYLES (Privacy Policy & Terms)
   ========================================================================== */

.legal-section-wrap {
  padding: 60px 0 100px;
  background: var(--bg);
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 16px rgba(15, 34, 61, 0.04);
}

.legal-sidebar-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-toc-list a {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s var(--ease);
  line-height: 1.4;
}

.legal-toc-list a:hover {
  color: var(--accent);
  background: rgba(200, 151, 62, 0.08);
  transform: translateX(3px);
}

.legal-toc-list a.active {
  color: var(--accent);
  background: rgba(200, 151, 62, 0.12);
  font-weight: 600;
}

.legal-content {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 52px;
  box-shadow: 0 4px 20px rgba(15, 34, 61, 0.04);
}

.legal-header-meta {
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 36px;
}

.legal-meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--bg-alt);
  color: var(--ink-soft);
  border: 1px solid var(--line-subtle);
}

.meta-pill.highlight {
  background: rgba(200, 151, 62, 0.1);
  color: var(--accent);
  border-color: rgba(200, 151, 62, 0.25);
}

.legal-content h2 {
  font-size: 24px;
  margin: 40px 0 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line-subtle);
  scroll-margin-top: 110px;
  color: var(--ink);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: 18px;
  margin: 24px 0 12px;
  color: var(--ink);
  scroll-margin-top: 110px;
}

.legal-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.legal-content li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.legal-content li strong {
  color: var(--ink);
}

.legal-callout {
  background: linear-gradient(135deg, rgba(200, 151, 62, 0.08) 0%, rgba(200, 151, 62, 0.03) 100%);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.legal-callout.moss {
  background: linear-gradient(135deg, rgba(46, 117, 89, 0.08) 0%, rgba(46, 117, 89, 0.02) 100%);
  border-left-color: var(--moss);
}

.legal-callout h4 {
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-callout p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}

.legal-entity-card {
  margin-top: 40px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 28px;
}

.legal-entity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 14px;
}

.legal-entity-item label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.legal-entity-item span, .legal-entity-item a {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}

.legal-entity-item a:hover {
  color: var(--accent);
}

/* ==========================================================================
   FAQ ACCORDION & SEARCH FILTER STYLES
   ========================================================================== */

.faq-section-wrap {
  padding: 50px 0 100px;
  background: var(--bg);
}

.faq-controls-bar {
  max-width: 860px;
  margin: 0 auto 40px;
}

.faq-search-box {
  position: relative;
  margin-bottom: 24px;
}

.faq-search-input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 50px;
  outline: none;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 16px rgba(15, 34, 61, 0.04);
}

.faq-search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(200, 151, 62, 0.18);
}

.faq-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--ink-muted);
  pointer-events: none;
}

.faq-clear-btn {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 50%;
  display: none;
}

.faq-clear-btn:hover {
  color: var(--ink);
}

.faq-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.faq-pill-btn {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.faq-pill-btn:hover {
  border-color: var(--accent);
  color: var(--ink);
  transform: translateY(-1px);
}

.faq-pill-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(15, 34, 61, 0.15);
}

.faq-pill-btn.active .pill-count {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.pill-count {
  background: var(--bg-alt);
  font-size: 11.5px;
  padding: 2px 7px;
  border-radius: 12px;
  color: var(--ink-muted);
}

/* FAQ Container */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-group-heading {
  font-size: 22px;
  font-weight: 700;
  margin: 44px 0 18px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-group-heading:first-of-type {
  margin-top: 0;
}

.faq-group-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(200, 151, 62, 0.12);
  font-size: 18px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.faq-item:hover {
  border-color: rgba(200, 151, 62, 0.4);
}

.faq-item.open {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(15, 34, 61, 0.06);
}

.faq-question-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: inherit;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.faq-question-btn:hover {
  color: var(--accent);
}

.faq-item.open .faq-question-btn {
  color: var(--accent);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--ink-muted);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer-panel {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-content {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  border-top: 1px solid var(--line-subtle);
  padding-top: 16px;
}

.faq-answer-content p {
  margin: 0 0 12px;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-answer-content ul {
  padding-left: 20px;
  margin: 10px 0;
}

.faq-answer-content li {
  margin-bottom: 6px;
}

.faq-answer-content a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer-content a:hover {
  color: var(--ink);
}

/* Local Area Chips for local SEO */
.area-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.area-tag-chip {
  font-size: 12px;
  font-weight: 600;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Still have questions CTA card */
.faq-help-card {
  margin-top: 50px;
  background: linear-gradient(135deg, var(--ink) 0%, #1A3456 100%);
  border-radius: 16px;
  padding: 36px 40px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.faq-help-info h3 {
  font-size: 22px;
  margin: 0 0 8px;
  color: #FFFFFF;
}

.faq-help-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  max-width: 500px;
}

.faq-help-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Search empty state */
.faq-empty-state {
  text-align: center;
  padding: 48px 24px;
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: 12px;
  display: none;
}

.faq-empty-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .legal-sidebar {
    position: static;
  }

  .legal-content {
    padding: 32px 24px;
  }

  .faq-help-card {
    padding: 28px;
    flex-direction: column;
    text-align: center;
  }

  .faq-help-actions {
    justify-content: center;
    width: 100%;
  }
}