/* === WHY AYE PET — STYLES === */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

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

:root {
  --black: #0F0F0F;
  --black-warm: #141210;
  --gold: #F0B429;
  --gold-dark: #D49B1F;
  --gold-light: #F7D070;
  --gold-glow: rgba(240, 180, 41, 0.15);
  --white: #FFFFFF;
  --cream: #FAF8F5;
  --grey-50: #FAFAFA;
  --grey-100: #F5F5F5;
  --grey-200: #E5E5E5;
  --grey-300: #D4D4D4;
  --grey-400: #A3A3A3;
  --grey-500: #737373;
  --grey-600: #525252;
  --grey-700: #404040;
  --grey-800: #262626;
  --grey-900: #171717;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-gold: 0 4px 20px rgba(240, 180, 41, 0.2);
  --nav-height: 64px;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

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

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

/* === SCROLL REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

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

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
  border-bottom: 1px solid rgba(240, 180, 41, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  letter-spacing: -0.02em;
}

.nav-logo img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a, .nav-links button {
  color: var(--grey-400);
  background: none;
  border: none;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}

.nav-links a:hover, .nav-links button:hover {
  background: rgba(240, 180, 41, 0.1);
  color: var(--gold);
}

.nav-links .btn-gold {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  margin-left: 8px;
}

.nav-links .btn-gold:hover {
  background: var(--gold-light);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

/* === MAIN CONTENT === */
.main {
  margin-top: var(--nav-height);
}

.section {
  padding: 80px 24px;
  position: relative;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-warm {
  background: var(--black-warm);
  color: var(--white);
}

.section-cream {
  background: var(--cream);
  color: var(--black);
}

.section-grey {
  background: var(--grey-50);
  color: var(--black);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-subtitle {
  color: var(--grey-400);
  margin-bottom: 48px;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 520px;
}

.section-cream .section-subtitle {
  color: var(--grey-600);
}

.gold-accent {
  color: var(--gold);
}

/* === HERO === */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--nav-height));
  min-height: calc(100svh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Subtle grain texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 1;
}

/* Gold radial glow behind logo */
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 32px;
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px rgba(240, 180, 41, 0.2), 0 0 80px rgba(240, 180, 41, 0.08);
  animation: heroLogoIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroLogoIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  animation: heroTextIn 0.8s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 .gold-accent {
  display: block;
  font-size: 0.45em;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}

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

.hero-tagline {
  color: var(--grey-400);
  font-size: 1.1rem;
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: heroTextIn 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  animation: heroTextIn 0.8s 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  animation: heroTextIn 0.8s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--grey-500);
  font-weight: 500;
}

.hero-trust-icon {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--black);
  flex-shrink: 0;
  font-weight: 700;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 48px;
  text-align: center;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.15);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240, 180, 41, 0.05);
}

.btn-secondary {
  background: var(--grey-200);
  color: var(--black);
}

.btn-secondary:hover {
  background: var(--grey-300);
}

.btn-danger {
  background: #DC2626;
  color: var(--white);
}

.btn-danger:hover {
  background: #B91C1C;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  min-height: 36px;
}

.btn-block {
  width: 100%;
}

/* === SERVICE CARDS === */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: rgba(240, 180, 41, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(240, 180, 41, 0.1);
  background: rgba(255,255,255,0.05);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(240, 180, 41, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  border: 1px solid rgba(240, 180, 41, 0.15);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.service-card p {
  color: var(--grey-400);
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card .price {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

/* === SOCIAL FEED === */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.social-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--grey-200);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
  display: block;
}

.social-card:hover {
  border-color: var(--gold);
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.social-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.social-card-caption {
  padding: 10px 12px;
  font-size: 0.8rem;
  color: var(--grey-600);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.social-skeleton {
  background: var(--grey-200);
  border-radius: var(--radius);
  aspect-ratio: 1;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.social-cta {
  text-align: center;
  padding: 40px 20px;
}

.social-cta p {
  margin-bottom: 16px;
  color: var(--grey-500);
}

.social-embed-wrapper {
  display: flex;
  justify-content: center;
}

.social-embed-wrapper iframe {
  border: none;
  border-radius: var(--radius);
  max-width: 100%;
}

/* === ABOUT === */
.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--grey-400);
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-text p:first-of-type {
  font-size: 1.1rem;
  color: var(--grey-300);
}

.about-visual {
  position: relative;
}

.about-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
}

.about-card:hover {
  border-color: rgba(240, 180, 41, 0.2);
  background: rgba(255,255,255,0.06);
}

.about-card-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}

.about-card h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* === CONTACT === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.contact-text .section-title {
  margin-bottom: 16px;
}

.contact-text-body {
  color: var(--grey-400);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: rgba(240, 180, 41, 0.2);
  background: rgba(255,255,255,0.05);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(240, 180, 41, 0.1);
  border: 1px solid rgba(240, 180, 41, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 0.78rem;
  color: var(--grey-500);
  font-weight: 500;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-card p, .contact-card a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-card a:hover {
  color: var(--gold);
}

/* legacy class for social section contact items */
.contact-info { display: grid; grid-template-columns: 1fr; gap: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--grey-800); border-radius: var(--radius-sm); }
.contact-item-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-item h4 { font-size: 0.85rem; color: var(--grey-400); font-weight: 500; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--white); font-weight: 500; font-size: 1rem; }
.contact-item a:hover { color: var(--gold); }

/* === FOOTER === */
.footer {
  background: var(--black);
  color: var(--grey-500);
  text-align: center;
  padding: 32px 24px;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer a {
  color: var(--grey-400);
}

.footer a:hover {
  color: var(--gold);
}

/* === ADMIN === */
.admin-bar {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  height: 48px;
  background: var(--grey-900);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 8px;
  z-index: 999;
  border-bottom: 1px solid var(--grey-700);
  overflow-x: auto;
}

.admin-bar button {
  background: none;
  border: none;
  color: var(--grey-400);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  min-height: 36px;
}

.admin-bar button:hover, .admin-bar button.active {
  background: var(--grey-800);
  color: var(--gold);
}

.admin-content {
  margin-top: calc(var(--nav-height) + 48px);
  padding: 24px 20px;
  min-height: calc(100vh - var(--nav-height) - 48px);
  background: var(--grey-50);
  color: var(--black);
}

.admin-content .container {
  max-width: 900px;
}

/* === ADMIN: CUSTOMER LIST === */
.search-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.search-bar input {
  flex: 1;
  padding: 10px 16px;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  min-height: 44px;
  background: var(--white);
  color: var(--black);
}

.search-bar input:focus {
  border-color: var(--gold);
}

.customer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.customer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-200);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--black);
}

.customer-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.customer-item-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--black);
}

.customer-item-info p {
  font-size: 0.85rem;
  color: var(--grey-500);
}

.customer-item-dogs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.dog-tag {
  background: var(--gold);
  color: var(--black);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* === ADMIN: FORMS === */
.form-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--grey-200);
  margin-bottom: 20px;
  color: var(--black);
}

.form-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-200);
  color: var(--black);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-600);
}

.form-group label .required {
  color: #DC2626;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px 14px;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  min-height: 44px;
  background: var(--white);
  color: var(--black);
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-actions {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* === ADMIN: DETAIL VIEW === */
.detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.detail-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
}

.detail-header-actions {
  display: flex;
  gap: 8px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.info-row {
  display: flex;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-100);
}

.info-row dt {
  font-size: 0.85rem;
  color: var(--grey-500);
  min-width: 120px;
  font-weight: 500;
}

.info-row dd {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
}

.dog-card {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 12px;
  color: var(--black);
}

.dog-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.dog-card-header h4 {
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--black);
}

.dog-card-header .dog-actions {
  display: flex;
  gap: 4px;
}

.dog-detail {
  font-size: 0.85rem;
  color: var(--grey-500);
}

.dog-detail span {
  display: inline-block;
  margin-right: 12px;
}

/* === WALK LOG === */
.walk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  color: var(--black);
}

.walk-table th {
  text-align: left;
  padding: 10px 12px;
  font-weight: 600;
  color: var(--grey-500);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--grey-200);
}

.walk-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--grey-100);
}

.walk-type-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.walk-type-badge.solo { background: #DBEAFE; color: #1D4ED8; }
.walk-type-badge.group { background: #D1FAE5; color: #047857; }
.walk-type-badge.drop_in { background: #FEF3C7; color: #92400E; }

/* === LOGIN MODAL === */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
  color: var(--black);
}

.modal h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -0.02em;
}

.modal .form-group {
  margin-bottom: 16px;
}

.modal .form-error {
  color: #DC2626;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 12px;
  min-height: 20px;
}

/* === PRIVACY PAGE === */
.privacy-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
  color: var(--black);
  background: var(--white);
}

.privacy-content h1 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.privacy-content h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
}

.privacy-content p {
  color: var(--grey-600);
  margin-bottom: 12px;
}

.privacy-content ul {
  color: var(--grey-600);
  margin-bottom: 12px;
  padding-left: 24px;
}

.privacy-content li {
  margin-bottom: 4px;
}

/* === EMPTY STATE === */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--grey-400);
}

.empty-state p {
  margin-bottom: 16px;
}

/* === TOAST === */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--grey-900);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.toast.success { border-left: 4px solid #10B981; }
.toast.error { border-left: 4px solid #DC2626; }

/* === RESPONSIVE === */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .form-group.full-width {
    grid-column: 1 / -1;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .section-title {
    font-size: 2.4rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 100px 24px;
  }

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

  .about-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

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

  .hero h1 {
    font-size: 4rem;
  }

  .hero {
    padding: 120px 24px 100px;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .nav-links {
    gap: 4px;
  }
}

@media (max-width: 639px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid rgba(240, 180, 41, 0.2);
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a, .nav-links button {
    width: 100%;
    justify-content: center;
  }

  .nav-hamburger {
    display: inline-flex;
  }

  .detail-header {
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    padding: 64px 20px 56px;
  }

  .hero-trust {
    gap: 16px;
  }

  .hero-trust-item {
    font-size: 0.78rem;
  }

  .section {
    padding: 56px 20px;
  }

  .section-subtitle {
    margin-bottom: 36px;
  }
}

/* === COLLAPSIBLE FORM SECTIONS === */
.form-section {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-200);
  margin-bottom: 16px;
  overflow: hidden;
}

.form-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--gold);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 48px;
}

.form-section-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.form-section-header .chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.form-section.collapsed .chevron {
  transform: rotate(-90deg);
}

.form-section-body {
  max-height: 2000px;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease;
  padding: 20px;
  opacity: 1;
}

.form-section.collapsed .form-section-body {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

/* === Y/N PILL TOGGLES === */
.pill-toggle {
  display: inline-flex;
  background: var(--grey-100);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
  border: 2px solid var(--grey-200);
  transition: border-color 0.2s;
}

.pill-toggle:focus-within {
  border-color: var(--gold);
}

.pill-toggle input[type="radio"] {
  display: none;
}

.pill-toggle label {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-500);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  min-width: 52px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.pill-toggle input[type="radio"]:checked + label {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.pill-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pill-group > span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-600);
}

/* === FORM SECTION COMPLETION INDICATOR === */
.form-section-header .section-count {
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(0,0,0,0.15);
  color: var(--black);
  padding: 2px 10px;
  border-radius: 50px;
  margin-left: auto;
  margin-right: 12px;
}

/* === UTILITY === */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
