/* =========================================================
   THE PAW CLUB NYC — Premium Pet Care & Concierge
   Luxury, minimal, mobile-first stylesheet
   ========================================================= */

:root {
  /* Palette */
  --ivory: #FBF9F4;
  --beige: #F1ECE0;
  --beige-deep: #ECE5D5;
  --charcoal: #33302A;
  --charcoal-soft: #5C584F;
  --olive: #595E3F;
  --olive-dark: #4A4E34;
  --gold: #BFA46F;
  --gold-soft: #CDB686;
  --line: #E3DCCC;
  --white: #FFFFFF;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1180px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--charcoal); line-height: 1.1; }

.section { padding: 84px 0; }
@media (max-width: 720px) { .section { padding: 60px 0; } }

/* ---------- Decorative rule ---------- */
.rule { display: block; width: 54px; height: 1px; background: var(--gold); margin: 22px 0; }
.rule.center { margin: 18px auto 0; }

.eyebrow, .section-kicker {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
}

.section-head { text-align: center; margin-bottom: 54px; }
.section-kicker { color: var(--charcoal-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.74rem;
  padding: 15px 30px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn-olive { background: var(--olive); color: var(--ivory); }
.btn-olive:hover { background: var(--olive-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-ghost:hover { background: var(--charcoal); color: var(--ivory); }
.btn-block { width: 100%; padding: 17px; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(51,48,42,0.05); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 24px; }

.brand { display: flex; align-items: center; gap: 13px; color: var(--olive); }
.brand-mark { color: var(--gold); display: inline-flex; }
.brand-emblem { width: 56px; height: 45px; display: block; color: var(--gold); }
.brand-text { display: grid; line-height: 1; color: var(--charcoal); }
.brand-name { font-family: var(--serif); font-size: 1.42rem; font-weight: 600; letter-spacing: 0.04em; }
.brand-tag { font-family: var(--sans); font-weight: 500; font-size: 0.54rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }

.main-nav ul { display: flex; gap: 34px; list-style: none; }
.main-nav a {
  font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.74rem;
  color: var(--charcoal); position: relative; padding: 4px 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold); transition: width .3s var(--ease);
}
.main-nav a:hover { color: var(--olive); }
.main-nav a:hover::after { width: 100%; }

.header-cta { padding: 12px 24px; }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--charcoal); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { border-top: 1px solid var(--line); background: var(--ivory); }
.mobile-menu nav { display: flex; flex-direction: column; padding: 12px 24px 22px; }
.mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--line); letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.8rem; }
.mobile-menu a.btn { border: none; margin-top: 16px; color: var(--ivory); }

/* =========================================================
   HERO
   ========================================================= */
.hero { background: var(--ivory); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; padding-top: 56px; padding-bottom: 56px;
}
.hero-copy { max-width: 520px; }
.hero-copy h1 { font-size: clamp(2.6rem, 5.2vw, 4.1rem); margin-top: 18px; letter-spacing: -0.01em; }
.lead { font-size: 1.06rem; color: var(--charcoal-soft); max-width: 46ch; }
.hero-actions { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%; height: 560px; object-fit: cover; border-radius: var(--radius);
  background: var(--beige);
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--ivory); }
.service-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.service-card {
  text-align: center; padding: 40px 18px; position: relative;
  border-right: 1px solid var(--line);
}
.service-card:last-child { border-right: 0; }
.service-icon { color: var(--gold); display: inline-flex; }
.service-icon svg { width: 58px; height: 58px; }
.service-icon.small svg { width: 34px; height: 34px; }
.service-card h3 {
  font-family: var(--sans); font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  font-size: 0.82rem; margin: 18px 0 12px; color: var(--charcoal);
}
.service-card p { font-size: 0.92rem; color: var(--charcoal-soft); max-width: 22ch; margin: 0 auto; }

/* =========================================================
   PRICING
   ========================================================= */
.pricing { background: var(--beige); }
.pricing-card {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 48px 40px; box-shadow: 0 18px 50px rgba(51,48,42,0.04);
}
.price-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; }
.price-col { padding: 0 20px; border-right: 1px solid var(--line); }
.price-col:last-child { border-right: 0; }

.price-col-head {
  background: var(--olive); color: var(--ivory);
  font-family: var(--sans); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  font-size: 0.74rem; text-align: center; padding: 14px 8px; border-radius: var(--radius);
  margin: 0 -8px 22px; line-height: 1.3;
}
.price-col-head small { display: block; font-size: 0.64rem; opacity: 0.85; letter-spacing: 0.1em; margin-top: 2px; }

.price-list { list-style: none; }
.price-list li { display: flex; justify-content: space-between; gap: 10px; font-size: 0.88rem; padding: 7px 0; color: var(--charcoal); }
.price-list .amt { font-weight: 500; color: var(--olive); white-space: nowrap; }
.price-note { font-size: 0.78rem; color: var(--charcoal-soft); margin-top: 16px; line-height: 1.55; }

.price-banner {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 32px; padding: 22px 24px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--beige-deep);
}
.price-banner .service-icon { color: var(--gold); }
.price-banner-text { flex: 1 1 280px; }
.price-banner-text strong { font-family: var(--sans); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.78rem; font-weight: 600; }
.price-banner-text p { font-size: 0.86rem; color: var(--charcoal-soft); margin-top: 4px; }
.price-banner-amt { text-align: right; }
.price-banner-amt .amt { font-family: var(--serif); font-size: 1.25rem; color: var(--olive); display: block; }
.price-banner-amt small { font-size: 0.74rem; color: var(--charcoal-soft); }

/* =========================================================
   SERVICE AREA
   ========================================================= */
.service-area { padding: 0; background: var(--ivory); }
.area-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: stretch; }
.area-copy { padding: 84px 6vw 84px 0; max-width: 520px; margin-left: auto; }
.area-copy h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 14px; }
.area-list { list-style: none; margin-top: 30px; display: grid; gap: 22px; }
.area-list li { display: flex; gap: 16px; align-items: flex-start; }
.area-list strong { font-family: var(--sans); font-weight: 500; letter-spacing: 0.05em; font-size: 0.95rem; }
.area-list p { font-size: 0.9rem; color: var(--charcoal-soft); margin-top: 2px; }
.dot { width: 12px; height: 12px; border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.dot-gold { background: var(--gold); }
.dot-olive { background: var(--olive); }
.dot-beige { background: var(--gold-soft); }

.area-map { position: relative; min-height: 520px; background: var(--beige-deep); }
.area-map iframe { width: 100%; height: 100%; min-height: 520px; border: 0; filter: grayscale(0.25) sepia(0.12) saturate(0.9); }
.map-pins { position: absolute; inset: 0; pointer-events: none; }
.pin {
  position: absolute; background: var(--olive); color: var(--ivory);
  font-size: 0.7rem; letter-spacing: 0.06em; padding: 5px 12px; border-radius: 40px;
  box-shadow: 0 4px 14px rgba(51,48,42,0.18); white-space: nowrap;
}
.pin-westchester { top: 12%; right: 28%; }
.pin-newrochelle { top: 22%; right: 12%; background: var(--gold); color: var(--charcoal); }
.pin-williamsburg { top: 56%; left: 38%; background: var(--charcoal); }
.pin-greenpoint { top: 64%; left: 30%; }

/* =========================================================
   TRUST / ABOUT
   ========================================================= */
.trust { background: var(--beige); }
.trust-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.trust-media img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); background: var(--beige-deep); }
.trust-copy h2 { font-size: clamp(2rem, 4vw, 3rem); }
.trust-copy .lead { margin-top: 16px; }
.trust-points { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 28px 0 32px; }
.trust-points li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.trust-points span { color: var(--gold); font-weight: 600; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.contact-intro h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-top: 14px; }
.contact-details { list-style: none; margin-top: 30px; display: grid; gap: 18px; }
.contact-details li { display: flex; align-items: center; gap: 14px; font-size: 0.95rem; }
.contact-details a:hover { color: var(--olive); }
.ci { width: 38px; height: 38px; flex-shrink: 0; border: 1px solid var(--line); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--gold); }
.ci svg { width: 18px; height: 18px; }

.contact-form { background: var(--beige); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal-soft); margin-bottom: 7px; font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 0.95rem; color: var(--charcoal);
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px 14px; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(191,164,111,0.15);
}
.field textarea { resize: vertical; }
.form-status { margin-top: 14px; font-size: 0.88rem; min-height: 1.2em; }
.form-status.success { color: var(--olive); }
.form-status.error { color: #9a4a3a; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--charcoal); color: var(--ivory); }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: center; padding: 44px 24px; }
.brand-footer .brand-emblem { width: 44px; height: 35px; }
.brand-footer .brand-name { color: var(--ivory); font-size: 1.18rem; }
.brand-footer .brand-tag { color: var(--gold-soft); }
.brand-footer .brand-mark { color: var(--gold); }
.footer-nav { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.footer-nav a { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(251,249,244,0.8); }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-contact { display: grid; gap: 6px; justify-items: end; text-align: right; font-size: 0.88rem; color: rgba(251,249,244,0.8); }
.footer-contact a:hover { color: var(--gold-soft); }
.footer-bar { border-top: 1px solid rgba(251,249,244,0.12); }
.footer-bar .container { padding-top: 18px; padding-bottom: 18px; }
.footer-bar p { font-size: 0.78rem; color: rgba(251,249,244,0.6); text-align: center; }

/* =========================================================
   SCROLL REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card:nth-child(3n) { border-right: 0; }
  .service-card:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .price-grid { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .price-col:nth-child(3n) { border-right: 0; }
}

@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { order: -1; }
  .hero-media img { height: 360px; }
  .area-grid, .trust-grid, .contact-grid { grid-template-columns: 1fr; }
  .area-copy { padding: 60px 24px; max-width: none; margin: 0; }
  .area-map { min-height: 380px; }
  .area-map iframe { min-height: 380px; }
  .trust-media { order: -1; }
}

@media (max-width: 620px) {
  .brand-emblem { width: 46px; height: 37px; }
  .brand-name { font-size: 1.18rem; }
  .header-inner .brand-tag { display: none; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .service-card:nth-child(2n) { border-right: 0; }
  .price-grid { grid-template-columns: 1fr; }
  .price-col { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 28px; }
  .price-col:last-child { border-bottom: 0; }
  .form-row { grid-template-columns: 1fr; }
  .price-banner-amt { text-align: left; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-contact { justify-items: center; text-align: center; }
  .pricing-card { padding: 32px 20px; }
}
