/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black:   #1D1D1F;
  --white:   #FFFFFF;
  --grey:    #6E6E73;
  --light:   #F5F5F7;
  --blue:    #0071E3;
  --blue-dk: #0077ED;
  --border:  #D2D2D7;
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Navbar ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  height: 52px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
}
.nav-logo {
  font-size: 19px; font-weight: 600; letter-spacing: -0.3px;
  color: var(--black);
}
.nav-logo sup { font-size: 10px; font-weight: 400; color: var(--grey); vertical-align: super; }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  font-size: 13px; color: var(--black); padding: 0 12px; height: 52px;
  display: flex; align-items: center; opacity: 0.85;
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { color: var(--blue); opacity: 1; }
.nav-cta {
  font-size: 13px; background: var(--blue); color: white;
  padding: 7px 16px; border-radius: 20px; font-weight: 500;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--blue-dk); }

/* ── Hero ── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  text-align: center; overflow: hidden;
  padding-bottom: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.42);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.03); }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 24px; }
.hero-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #6EC6FF; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700; letter-spacing: -1.5px; line-height: 1.05;
  color: white; margin-bottom: 18px;
}
.hero p {
  font-size: clamp(16px, 2vw, 21px); color: rgba(255,255,255,0.75);
  line-height: 1.5; margin-bottom: 36px; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  font-size: 15px; font-weight: 500;
  background: var(--blue); color: white;
  padding: 13px 28px; border-radius: 30px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--blue-dk); transform: scale(1.02); }
.btn-ghost {
  font-size: 15px; font-weight: 500;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white; padding: 13px 28px; border-radius: 30px;
  transition: background 0.2s;
  display: inline-block;
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

/* ── Billboard sections (Apple-style full-bleed feature) ── */
.billboard {
  position: relative; height: 85vh; min-height: 520px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.billboard-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.billboard-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}
.billboard-content {
  position: relative; z-index: 2;
  padding: 64px 64px; color: white; max-width: 620px;
}
.billboard-content .eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: #6EC6FF; margin-bottom: 14px;
}
.billboard-content h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; letter-spacing: -1px; line-height: 1.1;
  margin-bottom: 16px;
}
.billboard-content p {
  font-size: 16px; color: rgba(255,255,255,0.78);
  line-height: 1.65; margin-bottom: 28px; font-weight: 300;
}
.btn-link {
  font-size: 15px; color: #6EC6FF; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(110,198,255,0.4);
  padding-bottom: 2px;
  transition: color 0.15s;
}
.btn-link:hover { color: white; border-color: rgba(255,255,255,0.5); }
.btn-link::after { content: '→'; font-size: 16px; }

/* ── Stat strip ── */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 40px 24px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-number {
  font-size: 40px; font-weight: 700; letter-spacing: -1px;
  color: var(--blue); margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: var(--grey); }

/* ── Services tiled grid ── */
.tile-section { background: var(--light); padding: 80px 24px; }
.tile-header { text-align: center; margin-bottom: 56px; }
.tile-header .eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.tile-header h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 700;
  letter-spacing: -0.8px; color: var(--black);
}
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px; max-width: 1200px; margin: 0 auto;
}
.tile {
  background: var(--white); overflow: hidden;
  transition: transform 0.25s; cursor: pointer;
  display: block; color: inherit;
}
.tile:hover { transform: scale(1.01); z-index: 2; position: relative; }
.tile img { height: 260px; object-fit: cover; }
.tile-body { padding: 28px 28px 32px; }
.tile-body .tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.tile-body h3 {
  font-size: 20px; font-weight: 600; letter-spacing: -0.3px;
  margin-bottom: 10px; color: var(--black);
}
.tile-body p { font-size: 14px; color: var(--grey); line-height: 1.6; }

/* ── Pricing ── */
.pricing-section { padding: 96px 24px; background: var(--white); }
.pricing-section .section-header { text-align: center; margin-bottom: 56px; }
.pricing-section .eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.pricing-section h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 700;
  letter-spacing: -0.8px;
}
.pricing-section p.sub {
  font-size: 17px; color: var(--grey); margin-top: 10px; font-weight: 300;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
  max-width: 960px; margin: 0 auto;
}
.pricing-card {
  background: var(--white); padding: 40px 36px;
}
.pricing-card.featured { background: var(--black); color: white; }
.pricing-card .plan-name {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 8px;
}
.pricing-card.featured .plan-name { color: #6EC6FF; }
.pricing-card .price {
  font-size: 44px; font-weight: 700; letter-spacing: -1.5px;
  margin: 12px 0 4px;
}
.pricing-card .price-note {
  font-size: 13px; color: var(--grey); margin-bottom: 28px;
}
.pricing-card.featured .price-note { color: rgba(255,255,255,0.5); }
.pricing-card hr { border: none; border-top: 1px solid var(--border); margin-bottom: 24px; }
.pricing-card.featured hr { border-color: rgba(255,255,255,0.12); }
.pricing-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pricing-card li { font-size: 14px; color: var(--grey); display: flex; gap: 10px; align-items: flex-start; }
.pricing-card.featured li { color: rgba(255,255,255,0.7); }
.pricing-card li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.pricing-card.featured li::before { color: #6EC6FF; }

/* ── Pet cards (adoption) ── */
.pet-section { padding: 96px 24px; background: var(--light); }
.pets-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.pet-card {
  background: var(--white); border-radius: 18px; overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pet-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.pet-card img { height: 240px; object-fit: cover; }
.pet-card-body { padding: 22px 24px 28px; }
.pet-card-body .breed {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 6px;
}
.pet-card-body h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.3px; margin-bottom: 8px; }
.pet-card-body p { font-size: 14px; color: var(--grey); line-height: 1.55; margin-bottom: 20px; }
.adopt-link {
  font-size: 14px; color: var(--blue); font-weight: 500;
  display: inline-flex; align-items: center; gap: 5px;
}
.adopt-link::after { content: '→'; }
.adopt-link:hover { color: var(--blue-dk); }

/* ── Products ── */
.products-section { padding: 96px 24px; }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.product-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.product-card img { height: 200px; object-fit: cover; }
.product-body { padding: 18px 20px 24px; background: var(--white); }
.product-body .category {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 6px;
}
.product-body h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.product-body .product-desc { font-size: 13px; color: var(--grey); margin-bottom: 12px; }
.product-body .product-price { font-size: 17px; font-weight: 700; color: var(--black); }

/* ── About ── */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-img { overflow: hidden; }
.about-img img { height: 100%; object-fit: cover; }
.about-text-block {
  padding: 80px 64px; display: flex;
  flex-direction: column; justify-content: center;
  background: var(--black); color: white;
}
.about-text-block .eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: #6EC6FF; margin-bottom: 16px;
}
.about-text-block h2 {
  font-size: clamp(28px, 3vw, 42px); font-weight: 700;
  letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 20px;
}
.about-text-block p {
  font-size: 16px; color: rgba(255,255,255,0.65);
  line-height: 1.7; margin-bottom: 14px; font-weight: 300;
}

/* ── Values ── */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0; max-width: 100%;
}
.value-item {
  padding: 52px 40px; border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.value-item:nth-child(4n) { border-right: none; }
.value-icon { font-size: 28px; margin-bottom: 16px; }
.value-item h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.2px; }
.value-item p { font-size: 14px; color: var(--grey); line-height: 1.6; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--black); padding: 96px 40px 80px;
  text-align: center;
}
.page-hero .eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: #6EC6FF; margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px); font-weight: 700;
  letter-spacing: -1.5px; color: white; line-height: 1.05; margin-bottom: 16px;
}
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.6); font-weight: 300; }

/* ── Section header ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 700;
  letter-spacing: -0.8px; color: var(--black);
}
.section-header p { font-size: 17px; color: var(--grey); margin-top: 10px; font-weight: 300; }

/* ── Contact / CTA ── */
.cta-section {
  background: var(--black); padding: 96px 40px;
  text-align: center; color: white;
}
.cta-section h2 {
  font-size: clamp(28px, 4vw, 48px); font-weight: 700;
  letter-spacing: -1px; margin-bottom: 16px;
}
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.6); margin-bottom: 36px; font-weight: 300; }
.contact-row {
  display: flex; justify-content: center; gap: 48px;
  flex-wrap: wrap; margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px;
}
.contact-item { text-align: center; }
.contact-item .label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px;
}
.contact-item .value { font-size: 16px; color: white; font-weight: 500; }

/* ── Footer ── */
footer {
  background: #000; padding: 28px 40px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
footer p { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.4); transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── Utility ── */
.pad-section { padding: 96px 40px; }
.max-w { max-width: 1200px; margin: 0 auto; }
.bg-light { background: var(--light); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-right: 1px solid var(--border); }
  .about-split { grid-template-columns: 1fr; }
  .about-img { height: 340px; }
  .about-text-block { padding: 56px 32px; }
  .billboard-content { padding: 40px 32px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 36px; }
  .page-hero { padding: 64px 24px 56px; }
  .pad-section { padding: 64px 24px; }
  .value-item { border-right: none; }
}

/* ── Location Section ── */
.location-section {
  background: var(--black);
  padding: 96px 40px;
  color: white;
}
.location-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.location-text .eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: #6EC6FF; margin-bottom: 16px;
}
.location-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700; letter-spacing: -0.8px;
  line-height: 1.15; margin-bottom: 20px;
}
.location-text p {
  font-size: 16px; color: rgba(255,255,255,0.6);
  line-height: 1.7; font-weight: 300; margin-bottom: 32px;
}
.location-details {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 36px;
}
.location-detail {
  display: flex; gap: 16px; align-items: flex-start;
}
.location-detail .detail-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.location-detail .detail-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.location-detail .detail-value {
  font-size: 15px; color: white; font-weight: 400;
}
.directions-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: white;
  padding: 13px 24px; border-radius: 30px;
  font-size: 15px; font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}
.directions-btn:hover { background: var(--blue-dk); transform: scale(1.02); }
.directions-btn svg { width: 16px; height: 16px; fill: white; }
.map-container {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,0.08);
}
.map-container iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}

@media (max-width: 900px) {
  .location-inner { grid-template-columns: 1fr; gap: 40px; }
  .location-section { padding: 64px 24px; }
}

/* ── Mobile Hamburger Menu ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 300;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 52px 0 0 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  z-index: 199;
  flex-direction: column;
  padding: 32px 28px;
  gap: 0;
  overflow-y: auto;
  transform: translateY(-16px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.3px;
  display: block;
  transition: color 0.15s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu a.active { color: var(--blue); }
.mobile-menu .mobile-cta {
  margin-top: 28px;
  background: var(--blue);
  color: white !important;
  text-align: center;
  padding: 14px 28px !important;
  border-radius: 30px;
  border-bottom: none !important;
  font-size: 16px !important;
}
.mobile-menu .mobile-cta:hover { background: var(--blue-dk); color: white !important; }

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